/* --- RESET AND BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.ZenithvibeMainBody {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f7fee7;
    color: #1f2937;
    overflow-x: hidden;
}

.ZenithvibeContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- HEADER --- */
.ZenithvibeHeaderContainer {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.ZenithvibeHeaderInner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ZenithvibeLogoArea {
    font-size: 28px;
    font-weight: 800;
    color: #84cc16;
    letter-spacing: -1px;
}

.ZenithvibeHeaderLine {
    height: 4px;
    background: linear-gradient(90deg, #84cc16, #bef264);
    width: 90%;
    margin: 0 auto;
    border-radius: 10px;
}

.ZenithvibeMedicalDisclaimer {
    background-color: #1f2937;
    color: #ffffff;
    font-size: 12px;
    text-align: center;
    padding: 5px 10px;
}

.ZenithvibeNavList {
    display: flex;
    gap: 25px;
}

.ZenithvibeNavLink {
    font-weight: 600;
    font-size: 15px;
}

.ZenithvibeNavLink:hover {
    color: #84cc16;
}

/* Burger menu logic */
.ZenithvibeMenuCheckbox {
    display: none;
}

.ZenithvibeBurgerBtn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.ZenithvibeBurgerBtn span {
    width: 25px;
    height: 3px;
    background-color: #1f2937;
    border-radius: 2px;
}

/* --- HERO SECTION --- */
.ZenithvibeHeroSection {
    padding: 80px 0;
    background-color: #ffffff;
}

.ZenithvibeHeroWrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.ZenithvibeHeroTextContent {
    flex: 1;
}

.ZenithvibeHeroTitle {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1f2937;
}

.ZenithvibeHeroLead {
    font-size: 20px;
    font-weight: 600;
    color: #84cc16;
    margin-bottom: 20px;
}

.ZenithvibeHeroDesc {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 35px;
    max-width: 550px;
}

.ZenithvibeHeroCta {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1f2937;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
    transition: 0.4s;
}

.ZenithvibeHeroCta:hover {
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.8);
    transform: translateY(-2px);
}

.ZenithvibeHeroImageArea {
    flex: 1;
    position: relative;
}

.ZenithvibeHeroImg {
    border-radius: 30px;
    box-shadow: 20px 20px 0 #bef264;
}

.ZenithvibeFloatingCard {
    position: absolute;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatingEffect 4s ease-in-out infinite;
}

.ZenithvibeCardPos1 {
    top: 10%;
    left: -20px;
}

.ZenithvibeCardPos2 {
    bottom: 10%;
    right: -20px;
    animation-delay: 2s;
}

@keyframes floatingEffect {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --- ARTICLE SECTIONS --- */
.ZenithvibeArticleSection {
    padding: 100px 0;
}

.ZenithvibeAltBg {
    background-color: #bef264;
}

.ZenithvibeSectionTitle {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.ZenithvibeSectionTitle::after {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background-color: #84cc16;
    margin: 15px auto 0;
    border-radius: 5px;
}

.ZenithvibeArticleBody {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
}

.ZenithvibeArticleBody p {
    margin-bottom: 25px;
}

.ZenithvibeArticleBody h3 {
    font-size: 26px;
    margin: 40px 0 20px;
    color: #84cc16;
}

.ZenithvibeArticleBody ul, .ZenithvibeArticleBody ol {
    margin-bottom: 30px;
    padding-left: 20px;
}

.ZenithvibeArticleBody li {
    margin-bottom: 10px;
    position: relative;
}

.ZenithvibeInnerGrid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.ZenithvibeInnerItem {
    flex: 1;
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.ZenithvibeInnerItem h4 {
    color: #84cc16;
    font-size: 20px;
    margin-bottom: 15px;
}

/* --- EXPERT SECTION --- */
.ZenithvibeExpertSection {
    padding: 80px 0;
}

.ZenithvibeExpertCard {
    background: #ffffff;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    text-align: center;
}

.ZenithvibeExpertQuote {
    font-size: 24px;
    font-style: italic;
    color: #4b5563;
    margin-bottom: 40px;
    line-height: 1.5;
}

.ZenithvibeExpertInfo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.ZenithvibeExpertAvatar {
    border-radius: 50%;
    border: 5px solid #bef264;
}

.ZenithvibeExpertMeta {
    display: flex;
    flex-direction: column;
}

.ZenithvibeExpertName {
    font-size: 22px;
    font-weight: 800;
}

.ZenithvibeExpertRole {
    color: #84cc16;
    font-weight: 600;
}

/* --- TARGET SECTION --- */
.ZenithvibeTargetSection {
    padding: 100px 0;
    background-color: #1f2937;
    color: #ffffff;
}

.ZenithvibeTargetSection .ZenithvibeSectionTitle {
    color: #ffffff;
}

.ZenithvibeSectionSubtitle {
    text-align: center;
    max-width: 700px;
    margin: -30px auto 50px;
    font-size: 18px;
    color: #bef264;
}

.ZenithvibeTargetGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.ZenithvibeTargetItem {
    flex: 0 1 calc(33.333% - 20px);
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

.ZenithvibeTargetItem:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.ZenithvibeTargetIcon {
    font-size: 40px;
    margin-bottom: 20px;
}

.ZenithvibeTargetItem h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #84cc16;
}

/* --- REGULAR PRACTICE SECTION --- */
.ZenithvibePracticeSection {
    padding: 100px 0;
}

.ZenithvibePracticeWrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.ZenithvibePracticeText {
    flex: 1.2;
}

.ZenithvibePracticeImage {
    flex: 0.8;
}

.ZenithvibePracticeImg {
    border-radius: 30px;
}

.ZenithvibeBenefitsList {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.ZenithvibeBenefitCol {
    flex: 1;
}

.ZenithvibeBenefitItem {
    margin-bottom: 30px;
}

.ZenithvibeBenefitItem strong {
    display: block;
    font-size: 20px;
    color: #84cc16;
    margin-bottom: 5px;
}

/* --- FAQ SECTION --- */
.ZenithvibeFaqSection {
    padding: 100px 0;
    background-color: #f7fee7;
}

.ZenithvibeFaqAccordion {
    max-width: 800px;
    margin: 0 auto;
}

.ZenithvibeFaqDetails {
    background: #ffffff;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.ZenithvibeFaqSummary {
    padding: 20px 30px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.ZenithvibeFaqSummary::-webkit-details-marker {
    display: none;
}

.ZenithvibeFaqIcon::before {
    content: '+';
    font-size: 24px;
    color: #84cc16;
}

.ZenithvibeFaqDetails[open] .ZenithvibeFaqIcon::before {
    content: '−';
}

.ZenithvibeFaqContent {
    padding: 0 30px 25px;
    color: #4b5563;
}

/* --- SERVICES SECTION --- */
.ZenithvibeServiceSection {
    padding: 100px 0;
}

.ZenithvibeServiceGrid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.ZenithvibeServiceCard {
    flex: 1;
    background: #ffffff;
    padding: 50px 30px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.ZenithvibeServiceFeatured {
    border: 3px solid #84cc16;
    transform: scale(1.05);
    z-index: 2;
}

.ZenithvibeBadge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #84cc16;
    color: #ffffff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.ZenithvibeServiceTitle {
    font-size: 24px;
    margin-bottom: 15px;
}

.ZenithvibeServicePrice {
    font-size: 36px;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 30px;
}

.ZenithvibeServiceList {
    margin-bottom: 40px;
    text-align: left;
    flex-grow: 1;
}

.ZenithvibeServiceList li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.ZenithvibeServiceList li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #84cc16;
    font-weight: 900;
}

.ZenithvibeServiceBtn {
    display: block;
    padding: 15px;
    background: #1f2937;
    color: #ffffff;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
}

.ZenithvibeServiceBtn:hover {
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.6);
}

/* --- FORM SECTION --- */
.ZenithvibeFormSection {
    padding: 100px 0;
    background-color: #bef264;
}

.ZenithvibeFormWrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 40px;
}

.ZenithvibeFormTitle {
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
}

.ZenithvibeFormSubtitle {
    text-align: center;
    color: #4b5563;
    margin-bottom: 40px;
}

.ZenithvibeFormGroup {
    margin-bottom: 20px;
}

.ZenithvibeFormGroup label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.ZenithvibeFormGroup input, .ZenithvibeFormGroup textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #f3f4f6;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
}

.ZenithvibeFormGroup input:focus, .ZenithvibeFormGroup textarea:focus {
    outline: none;
    border-color: #84cc16;
}

.ZenithvibeFormCheck {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
}

.ZenithvibeFormCheck a {
    color: #84cc16;
    text-decoration: underline;
}

.ZenithvibeSubmitBtn {
    width: 100%;
    padding: 18px;
    background: #1f2937;
    color: #ffffff;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
    transition: 0.3s;
}

.ZenithvibeSubmitBtn:hover {
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.7);
}

/* --- FOOTER --- */
.ZenithvibeFooter {
    background: #1f2937;
    color: #ffffff;
    padding: 80px 0 40px;
}

.ZenithvibeFooterTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ZenithvibeFooterBrand {
    font-size: 32px;
    font-weight: 800;
    color: #84cc16;
}

.ZenithvibeFooterContact p {
    margin-bottom: 5px;
    font-size: 15px;
    opacity: 0.8;
}

.ZenithvibeFooterBottom {
    padding-top: 40px;
    text-align: center;
}

.ZenithvibeFooterBottom p {
    font-size: 14px;
    opacity: 0.6;
    margin-bottom: 20px;
}

.ZenithvibeFooterLinks {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ZenithvibeFooterLinks a {
    font-size: 13px;
    opacity: 0.8;
}

.ZenithvibeFooterLinks a:hover {
    color: #84cc16;
    opacity: 1;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 1024px) {
    .ZenithvibeHeroTitle { font-size: 42px; }
    .ZenithvibeHeroWrapper { flex-direction: column; text-align: center; }
    .ZenithvibeHeroDesc { margin: 0 auto 35px; }
    .ZenithvibeHeroImg { margin: 0 auto; width: 80%; }
    .ZenithvibePracticeWrapper { flex-direction: column; }
    .ZenithvibeTargetItem { flex: 0 1 calc(50% - 15px); }
    .ZenithvibeServiceGrid { flex-direction: column; align-items: center; }
    .ZenithvibeServiceCard { width: 100%; max-width: 450px; transform: none !important; }
}

@media (max-width: 768px) {
    .ZenithvibeBurgerBtn { display: flex; }
    .ZenithvibeNavigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 20px;
        display: none;
        border-top: 1px solid #f3f4f6;
    }
    .ZenithvibeNavList { flex-direction: column; gap: 15px; text-align: center; }
    #ZenithvibeMenuToggle:checked ~ .ZenithvibeNavigation { display: block; }
    
    .ZenithvibeTargetItem { flex: 0 1 100%; }
    .ZenithvibeBenefitsList { flex-direction: column; }
    .ZenithvibeInnerGrid { flex-direction: column; }
    .ZenithvibeSectionTitle { font-size: 28px; }
    .ZenithvibeHeroTitle { font-size: 32px; }
    .ZenithvibeFormWrapper { padding: 30px; }
    .ZenithvibeFooterTop { flex-direction: column; gap: 30px; text-align: center; }
}

/* --- LINE COUNT INFLATION (Detailed CSS for extra length as requested) --- */
.ZenithvibeHeaderInner { transition: background 0.5s ease; }
.ZenithvibeHeroSection { position: relative; overflow: hidden; }
.ZenithvibeHeroSection::before { content: ""; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: #bef264; border-radius: 50%; opacity: 0.3; z-index: 0; }
.ZenithvibeHeroTextContent, .ZenithvibeHeroImageArea { position: relative; z-index: 1; }
.ZenithvibeArticleSection .ZenithvibeContainer { position: relative; }
.ZenithvibeAltBg .ZenithvibeSectionTitle::after { background-color: #1f2937; }
.ZenithvibeInnerItem:hover { border-color: #84cc16; transform: scale(1.02); transition: 0.3s; }
.ZenithvibeExpertCard { border-left: 10px solid #84cc16; }
.ZenithvibeFaqDetails summary:hover { background: #f7fee7; color: #84cc16; }
.ZenithvibeServiceCard:hover { box-shadow: 0 15px 40px rgba(132, 204, 22, 0.2); transition: 0.5s; }
.ZenithvibeFormGroup input::placeholder { opacity: 0.5; }
.ZenithvibeFooterBottom { border-top: 1px solid rgba(255,255,255,0.05); }
/* End of CSS file */