:root {
    --primary-green: #046A38;
    --dark-green: #024021;
    --accent-gold: #D4AF37;
    --light-gold: #F4E5B0;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --off-white: #f9fdfa;
    --shadow: 0 10px 30px rgba(4, 106, 56, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--off-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', 'Noto Sans Devanagari', sans-serif;
    color: var(--dark-green);
    font-weight: 700;
}

.hindi-text {
    font-family: 'Noto Sans Devanagari', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header --- */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
}

.mobile-number-header {
    font-size: 14px;
    color: var(--dark-green);
    font-weight: 700;
    margin-top: 2px;
}

.mobile-number-header i {
    color: var(--accent-gold);
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-green);
}

.logo span {
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--primary-green);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #b3901b);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.6);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--primary-green);
    cursor: pointer;
    margin-left: 15px;
}

/* Header Call Button */
.btn-call {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--primary-green);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 700;
    border: 2px solid var(--primary-green);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-call:hover {
    background: var(--primary-green);
    color: white;
}

.animate-ring {
    animation: ring 2s infinite;
}

@keyframes ring {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(15deg); }
    40% { transform: rotate(-15deg); }
    50% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

/* --- Hero Section --- */
.hero {
    padding: 120px 0 100px; /* Restored top padding as it is back at top */
    background: radial-gradient(circle at 70% 30%, #0d6e42 0%, #022013 100%); /* Deeper, richer green */
    color: var(--white);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
    z-index: 998;
}

/* Organic Blob Background Animation */
.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    animation: pulse-blob 10s infinite alternate;
    pointer-events: none;
}

@keyframes pulse-blob {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

/* Subtle pattern overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

/* Background pattern overlay */
.hero::before {
    display: none; /* Removed for cleaner look with form */
}

/* Form Styles */
.lead-form-box {
    background: rgba(255, 255, 255, 0.15); /* Slightly more visible glass */
    backdrop-filter: blur(15px); /* Stronger blur */
    -webkit-backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.3); /* Crisper border */
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    margin-top: 25px;
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

/* Shine effect on form */
.lead-form-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.lead-form-box h3 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

.lead-form-box input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
}

.lead-form-box input:focus {
    outline: 2px solid var(--accent-gold);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-text h1 span {
    background: linear-gradient(to right, #ffd700, #ffecb3, #ffd700); /* Premium Gold Gradient */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    position: relative;
    display: inline-block;
}

.hinglish-tag {
    font-size: 1.5rem;
    color: var(--light-gold);
    font-style: italic;
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap; /* Allow wrapping for mobile layout */
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-feature i {
    color: var(--accent-gold);
    background: rgba(255,255,255,0.1);
    padding: 8px;
    border-radius: 50%;
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255,255,255,0.2)); /* Soft glowing aura */
    /* animation: float 6s ease-in-out infinite; */
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* --- Trust Badges --- */
.trust-strip {
    background: var(--white);
    padding: 30px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-top: -50px;
    position: relative;
    z-index: 999;
    border-radius: 10px;
}

.badges-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.badge span {
    font-weight: 700;
    color: var(--dark-green);
    font-size: 0.9rem;
}

/* --- Solutions Section --- */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    text-align: center; /* Center align by default */
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px; /* Top border instead of left gradient */
    background: linear-gradient(to right, var(--accent-gold), var(--primary-green));
}
    
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.benefit-card h3 {
    margin: 20px 0 15px;
    color: var(--primary-green);
}

/* --- Doctor Section --- */
.doctor-section {
    background-color: #E8F5E9;
}

.doctor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.doctor-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.quote-box {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    position: relative;
    margin-top: 30px;
}

.quote-box::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 40px;
    border-width: 0 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent var(--white) transparent;
}

/* --- Ingredients --- */
.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Equal columns to remove blank space */
    gap: 50px;
    align-items: center;
}

.ingredient {
   background: transparent;
   padding: 0;
   border: none;
   text-align: center; /* Center images */
}

.ingredient img {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* Add shadow to images */
    transition: transform 0.3s ease;
}

.ingredient img:hover {
    transform: scale(1.02);
}

.herb-item h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 15px; /* Space between logo and phone number */
}

.logo-img {
    /* max-height: 50px; */
    width: 120px;
    display: block;
}

/* Original text logo styles - optional to keep or remove */
.logo {
    font-size: 1.8rem;
    margin: 0 auto;
}

/* --- FAQ --- */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--dark-green);
}

.accordion-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-light);
}

.accordion-item.active .accordion-body {
    padding: 0 20px 20px;
    max-height: 200px;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

/* --- Footer --- */
footer {
    background: var(--dark-green);
    color: var(--white);
    padding: 60px 0 20px;
    text-align: center;
}

.footer-logo {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
    display: inline-block;
    background: white;
    border-radius: 12px;
    padding: 4px 72px 4px 12px;
}

.footer-badge {
    position: absolute;
    top: -16px;
    right: -56px;
    width: 160px;
    transform: rotate(345deg);
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
    /* animation: float-badge 3s ease-in-out infinite; */
}

@keyframes float-badge {
    0%, 100% { transform: rotate(15deg) translateY(0); }
    50% { transform: rotate(15deg) translateY(-5px); }
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--white);
    margin: 0 15px;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* --- Mobile Stick Button --- */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 10px 15px;
    padding: 10px 15px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex; /* Changed to flex */
    gap: 10px;
    align-items: center;
}

.sticky-cta .btn-primary {
    flex: 2;
    border-radius: 8px;
    font-size: 1rem;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp {
    flex: 1;
    background: #25D366;
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    font-size: 0; /* Hide text on very small screens, show icon */
}

.btn-whatsapp i {
    font-size: 1.5rem;
}

/* --- Media Queries --- */
@media (min-width: 900px) {
    .sticky-cta {
        display: none;
    }
}

@media (max-width: 900px) {
    .btn-call span {
        display: none; /* Hide number on smaller screens to save space */
    }
    
    .btn-call {
        padding: 8px; /* Circular button on mobile */
        border-radius: 50%;
        width: 40px;
        height: 40px;
        justify-content: center;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}


/* --- Media Queries --- */
/* --- Decorations & Animations --- */
.floating-leaf {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.leaf-1 { animation-delay: 0s; transform: rotate(15deg); }
.leaf-2 { animation-delay: 2s; transform: rotate(-10deg); right: -30px; top: 100px; width: 80px; }
.leaf-3 { animation-delay: 4s; transform: rotate(45deg); left: -20px; bottom: 50px; width: 50px; }

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(192, 57, 43, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(192, 57, 43, 0); }
}

/* Scroll Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Reviews Section --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* --- Side Consultation Button --- */
/* --- Side Consultation Button --- */
.side-consult-btn {
    position: fixed;
    top: 50%;
    right: 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: translateY(-50%) rotate(180deg);
    background: #c0392b;
    color: white !important;
    padding: 25px 10px; /* Padding logic flips due to vertical mode */
    font-weight: 700;
    font-size: 1rem;
    border-radius: 0px 10px 10px 0;
    z-index: 997;
    box-shadow: -4px 0 15px rgba(0,0,0,0.2);
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: side-pulse 2s infinite;
}

.side-consult-btn:hover {
    background: #a93226;
    padding-top: 35px; /* Expands outwards on hover */
}

@keyframes side-pulse {
    0% { transform: translateY(-50%) rotate(180deg) scale(1); }
    50% { transform: translateY(-50%) rotate(180deg) scale(1.05); }
    100% { transform: translateY(-50%) rotate(180deg) scale(1); }
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    z-index: 1;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.stars {
    color: #f1c40f;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.review-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.reviewer-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.reviewer-info span {
    font-size: 0.8rem;
    color: #888;
}

/* Footer Defaults (Desktop) */
footer {
    padding-bottom: 20px; /* Minimal padding for desktop */
}

.floating-whatsapp{
    display: none;
}

/* --- Scattered Decor Leaves --- */
.decor-leaf {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.8; /* Visible but transparent */
    transition: all 0.5s ease;
    animation: sway 6s ease-in-out infinite alternate;
}

.leaf-top-right { top: -20px; right: -20px; width: 100px; transform: rotate(15deg); }
.leaf-bottom-left { bottom: -20px; left: -20px; width: 80px; transform: rotate(-15deg); }
.leaf-top-left { top: -20px; left: -20px; width: 90px; transform: rotate(-45deg); }
.leaf-bottom-right { bottom: -20px; right: -20px; width: 110px; transform: rotate(45deg); }
.leaf-mid-left { top: 50%; left: -40px; width: 60px; transform: translateY(-50%) rotate(90deg); }
.leaf-mid-center { top: 40%; left: 40%; width: 120px; opacity: 0.15; animation: float-random 20s linear infinite; }
.leaf-top-center { top: -40px; left: 50%; transform: translateX(-50%); width: 80px; }

.blur-1 { filter: blur(3px); }
.blur-2 { filter: blur(5px); }

@keyframes sway {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(15px, 20px) rotate(15deg); }
}

@keyframes float-random {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(40px, -40px) rotate(120deg); }
    66% { transform: translate(-30px, 30px) rotate(240deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* --- Mobile Media Queries --- */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    
    /* Hero Mobile Layout - Text First (Natural Flow) */
    .hero-content {
        display: flex !important;
        flex-direction: column;
        padding-top: 20px;
    }

    .hero-image {
        /* order: -1; Removed to keep at bottom */
        margin-top: -60px;
        width: 100%;
    }

    .hero-image {
        /* order: -1; Removed to keep at bottom */
        margin-top: -60px;
        width: 100%;
    }

    .logo-img {
        /* max-height: 40px; */
    }

    .hero-text {
        /* order: 1; Removed */
    }

    .hero-text h1 {
        font-size: 2.2rem; 
    }
    
    footer {
        padding-bottom: 90px !important; /* Space for sticky CTA only on mobile */
    }

    /* Ingredients Mobile Stack */
    .ingredients-content, .ingredients-list {
        grid-template-columns: 1fr !important;
    }
    
    .ingredients-visual {
        margin-top: 30px;
    }

    .lead-form-box {
        margin: 0 auto 30px;
    }

    .doctor-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ingredients-grid, .success-grid {
        grid-template-columns: 1fr !important; /* Stack vertically */
        gap: 30px;
    }
    
    .ingredient img, .doctor-image img {
        height: auto !important; /* Allow natural height */
        max-height: 300px;
        width: 100%;
        margin-bottom: 20px;
    }

    .problem-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .problem-list li {
        justify-content: center;
    }
    


    /* Fixed Corrupted Mobile Query */
    @media (max-width: 900px) {
    .section, .hero {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    /* Hero padding for mobile + urgency bar */
    .hero {
        padding-top: 140px !important; 
        padding-bottom: 60px !important;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .urgency-bar {
        margin-top: 70px;
        font-size: 0.8rem;
    }

    /* Fixed CTA Mobile Layout */
    .sticky-cta {
        display: block !important;
        padding: 10px;
    }
    
    .sticky-cta .btn-primary {
         width: 100%;
         font-size: 1rem;
         padding: 15px;
         justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }
    
    /* Floating WhatsApp Button */
    .floating-whatsapp {
        display: flex !important;
        position: fixed;
        bottom: 80px; /* Above sticky CTA */
        right: 20px;
        width: 60px;
        height: 60px;
        background: #25D366;
        color: white;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        z-index: 1001;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
    }

    footer {
        padding-bottom: 132px !important; /* Extra padding for sticky elements */
    }


}

@media (max-width: 600px) {
    .trust-strip {
        padding: 20px 10px;
    }
    
    .sticky-cta {
        display: block;
    }
    
    footer {
        padding-bottom: 80px; /* Space for sticky CTA */
    }
    
    .badges-grid {
        gap: 10px;
    }
    
    .badge span {
        font-size: 0.7rem;
    }
    
    .badge i {
        font-size: 1.8rem;
    }
}
