/* ============================================================
   Dr. Deepika Gupta — Landing Page Styles
   Mobile-first · Performance-optimized · Conversion-focused
   ============================================================ */

/* ---- CUSTOM PROPERTIES ---- */
:root {
    --primary: #0B7B6F;
    --primary-dark: #065C52;
    --primary-light: #E6F5F1;
    --primary-rgb: 11, 123, 111;
    --accent: #F4722B;
    --accent-dark: #D95D18;
    --accent-light: #FFF3EC;
    --accent-rgb: 244, 114, 43;
    --whatsapp: #25D366;
    --whatsapp-dark: #1DAF54;
    --text: #1A202C;
    --text-secondary: #4A5568;
    --text-light: #718096;
    --bg: #FAFCFC;
    --bg-alt: #F0F7F6;
    --white: #FFFFFF;
    --border: #E2E8F0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 4px 12px rgba(0,0,0,0.07);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-bottom: 0; /* mobile now uses the same floating buttons as desktop */
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.25; color: var(--text); font-weight: 700; }
h1 { font-size: clamp(1.8rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 1rem; }
p { color: var(--text-secondary); margin-bottom: 0.75rem; }
.text-accent { color: var(--accent); }
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ---- UTILITY ---- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 24px; border-radius: var(--radius-full); font-weight: 600;
    font-size: 0.95rem; border: none; cursor: pointer; transition: var(--transition);
    text-align: center; line-height: 1.4; font-family: var(--font);
}
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-full { width: 100%; }
.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white); box-shadow: 0 4px 18px rgba(var(--accent-rgb), 0.35);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(var(--accent-rgb), 0.45); color: var(--white); }
.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
    color: var(--white); box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45); color: var(--white); }
.btn-outline {
    background: transparent; color: var(--primary); border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--primary); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); color: var(--white); border-color: var(--white); }

.section-badge {
    display: inline-block; background: var(--primary-light); color: var(--primary);
    padding: 6px 16px; border-radius: var(--radius-full); font-size: 0.85rem;
    font-weight: 600; margin-bottom: 12px; letter-spacing: 0.02em;
}
.section-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.section-header h2 { margin-bottom: 12px; }
.required { color: #e53e3e; }
.optional { color: var(--text-light); font-weight: 400; font-size: 0.85rem; }


/* ============ HEADER ============ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05); transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 64px; gap: 12px;
}
.logo {
    display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.logo-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.1rem;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.logo-tagline { font-size: 0.7rem; color: var(--text-light); font-weight: 500; }
.header-ctas { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-nav { display: flex; align-items: center; justify-content: center; gap: 20px; }
.header-nav a { color: var(--text-secondary); font-size: .86rem; font-weight: 600; white-space: nowrap; }
.header-nav a:hover { color: var(--primary); }
.header-ctas .btn-sm span { display: none; }
@media (min-width: 480px) { .header-ctas .btn-sm span { display: inline; } }

/* Hamburger toggle — hidden on desktop, shown on mobile in the same
   cluster as the WhatsApp / Call Now CTAs so the CTA position never moves */
.mobile-menu-toggle {
    display: none; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
    background: var(--bg-alt); border: 1px solid rgba(0,0,0,0.08);
    color: var(--text); font-size: 1.05rem; cursor: pointer;
    transition: var(--transition);
}
.mobile-menu-toggle:hover { background: var(--primary-light); color: var(--primary); }
.mobile-menu-toggle .fa-times { display: none; }
.mobile-menu-toggle.active .fa-bars { display: none; }
.mobile-menu-toggle.active .fa-times { display: inline; }

@media (max-width: 899px) {
    /* Header stays a single row: logo left, CTAs + hamburger right —
       identical arrangement to desktop, just without the inline nav links */
    .header-inner { height: 64px; min-height: 64px; }
    .mobile-menu-toggle { display: flex; }

    /* Nav becomes a slide-down panel triggered by the hamburger,
       instead of wrapping onto extra lines under the header */
    .header-nav {
        position: fixed; top: 64px; left: 0; right: 0; z-index: 999;
        flex-direction: column; align-items: stretch; justify-content: flex-start;
        gap: 0; width: 100%; padding: 0;
        background: var(--white); box-shadow: var(--shadow-md);
        max-height: 0; overflow: hidden; opacity: 0; visibility: hidden;
        transition: max-height .3s ease, opacity .25s ease, visibility .3s;
    }
    .header-nav.nav-open { max-height: 320px; opacity: 1; visibility: visible; }
    .header-nav a {
        font-size: .95rem; padding: 15px 24px;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .hero { padding-top: 96px; }
}
@media (max-width: 390px) {
    .logo { gap: 7px; }
    .logo-icon { width: 36px; height: 36px; }
    .logo-name { font-size: .86rem; }
    .logo-tagline { font-size: .64rem; }
    .header-ctas { gap: 5px; }
    .header-ctas .btn-sm { padding: 8px 10px; }
    .mobile-menu-toggle { width: 34px; height: 34px; font-size: .95rem; }
}
@media (min-width: 900px) { .header-nav { margin-left: auto; gap: 22px; } }


/* ============ HERO ============ */
.hero {
    position: relative; padding: 100px 0 60px; overflow: hidden;
    background: linear-gradient(170deg, #e8f8f5 0%, #f0fdf9 40%, #ffffff 100%);
    text-align: center; min-height: 80vh; display: flex; align-items: center;
}
.hero-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--white); border: 1px solid var(--border); padding: 8px 18px;
    border-radius: var(--radius-full); font-size: 0.85rem; font-weight: 500;
    color: var(--primary); margin-bottom: 24px; box-shadow: var(--shadow-sm);
}
.hero-badge i { color: var(--primary); }
.hero-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 24px; }
.hero-badges .hero-badge { margin-bottom: 0; }
.hero-badge-clinics { color: var(--accent); }
.hero-badge-clinics i { color: var(--accent); }
.hero-reviews {
    display: inline-flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px;
    margin: -8px auto 28px; padding: 10px 16px; border-radius: var(--radius);
    background: #fff; color: var(--text); border: 1px solid #f5d98b; box-shadow: var(--shadow-sm);
    font-size: .9rem;
}
.hero-reviews:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.hero-rating { font-weight: 800; }
.hero-stars { color: #f59e0b; letter-spacing: 1px; font-size: 1.05rem; }
.hero-reviews strong { color: #3069b3; }
.hero-reviews > i { color: var(--primary); font-size: .75rem; }
.hero h1 { margin-bottom: 20px; }
.hero-sub {
    font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 32px;
    max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.hero-ctas { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; align-items: center; width: 100%; }
.hero-ctas .btn { width: 100%; max-width: 360px; }
.hero-trust {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 24px;
}
.trust-item {
    display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem;
    color: var(--text-light); font-weight: 500;
}
.trust-item i { color: var(--primary); font-size: 0.9rem; }

/* Floating shapes */
.hero-shapes { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.shape {
    position: absolute; border-radius: 50%; opacity: 0.08;
    background: var(--primary);
}
.shape-1 { width: 300px; height: 300px; top: -80px; right: -60px; animation: float 8s ease-in-out infinite; }
.shape-2 { width: 200px; height: 200px; bottom: -50px; left: -40px; animation: float 10s ease-in-out infinite reverse; }
.shape-3 { width: 120px; height: 120px; top: 30%; left: 5%; animation: float 7s ease-in-out infinite 1s; background: var(--accent); opacity: 0.06; }
.shape-4 { width: 80px; height: 80px; bottom: 20%; right: 10%; animation: float 9s ease-in-out infinite 0.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@media (min-width: 600px) {
    .hero-ctas { flex-direction: row; justify-content: center; }
    .hero-ctas .btn { width: 280px; }
    .hero { padding: 120px 0 80px; }
}

/* Hero area tags */
.hero-areas {
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    gap: 8px; margin-top: 24px; padding-top: 20px;
    border-top: 1px solid rgba(var(--primary-rgb), 0.1);
}
.hero-areas-label {
    font-size: 0.8rem; font-weight: 600; color: var(--primary);
    display: inline-flex; align-items: center; gap: 4px; white-space: nowrap;
}
.hero-area-tag {
    display: inline-block; padding: 4px 12px; border-radius: var(--radius-full);
    background: rgba(var(--primary-rgb), 0.07); font-size: 0.78rem;
    font-weight: 500; color: var(--text-secondary); transition: var(--transition);
    border: 1px solid transparent;
}
.hero-area-tag:hover { background: var(--primary-light); color: var(--primary); border-color: rgba(var(--primary-rgb), 0.2); }
.hero-area-more { background: transparent; color: var(--primary); font-weight: 600; text-decoration: underline; border: none; }
.hero-area-more:hover { color: var(--accent); }


/* ============ STATS ============ */
.stats {
    padding: 0; margin-top: -30px; position: relative; z-index: 3;
}
.stats-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
    background: var(--white); border-radius: var(--radius-lg); padding: 24px;
    box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.stat-card { text-align: center; padding: 16px 8px; }
.stat-icon {
    width: 48px; height: 48px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; margin: 0 auto 10px;
    background: var(--primary-light); color: var(--primary); font-size: 1.2rem;
}
.stat-number, .stat-number-text {
    font-size: 2rem; font-weight: 800; color: var(--text);
    display: inline-block;
}
.stat-suffix { display: inline-block; font-size: 1.4rem; font-weight: 700; color: var(--accent); }
.stat-label { font-size: 0.85rem; color: var(--text-light); margin-top: 2px; }

@media (min-width: 768px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 0; padding: 32px; }
    .stat-card { border-right: 1px solid var(--border); }
    .stat-card:last-child { border-right: none; }
}


/* ============ ABOUT ============ */
.about { padding: 80px 0; background: var(--white); }
.about-grid {
    display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
}
.about-image-wrapper {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-md);
}
.about-image-wrapper img { width: 100%; object-fit: cover; }
.about-image-badge {
    position: absolute; bottom: 16px; left: 16px;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
    padding: 10px 16px; border-radius: var(--radius-full);
    display: flex; align-items: center; gap: 8px; font-size: 0.85rem;
    font-weight: 600; color: var(--primary); box-shadow: var(--shadow);
}
.about-image-badge i { color: var(--accent); }

/* ============ CLINIC GALLERY ============ */
.clinic-gallery { padding: 80px 0; background: var(--bg); }
.clinic-gallery-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 900px; margin: 0 auto; }
.clinic-photo { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); min-height: 280px; }
.clinic-photo img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; transition: transform .5s ease; }
.clinic-photo:hover img { transform: scale(1.04); }
.clinic-photo figcaption { position: absolute; inset: auto 0 0; padding: 16px; color: var(--white); background: linear-gradient(transparent, rgba(0,0,0,.78)); font-size: .9rem; font-weight: 600; }
.clinic-photo figcaption i { color: #f7c55a; margin-right: 5px; }
.clinic-location-cards { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 900px; margin: 24px auto 0; }
.clinic-location-card { display: flex; align-items: flex-start; gap: 12px; padding: 20px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.clinic-location-card > i { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border-radius: 50%; background: var(--primary-light); color: var(--primary); }
.clinic-location-card h3 { margin-bottom: 4px; color: var(--primary); font-size: 1rem; }
.clinic-location-card p { margin-bottom: 0; font-size: .9rem; }
@media (min-width: 650px) { .clinic-gallery-grid { grid-template-columns: 1.15fr .85fr; } .clinic-photo { height: 390px; } }
@media (min-width: 650px) { .clinic-location-cards { grid-template-columns: 1fr 1fr; } }
.about-text h2 { margin-bottom: 16px; }
.about-text > p { margin-bottom: 12px; }
.about-highlights { margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.highlight {
    display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem;
    color: var(--text-secondary);
}
.highlight i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

@media (min-width: 768px) {
    .about-grid { grid-template-columns: 1fr 1.3fr; }
}


/* ============ SERVICES ============ */
.services { padding: 80px 0; background: var(--bg); }
.services-grid {
    display: grid; grid-template-columns: 1fr; gap: 20px;
}
.service-card {
    background: var(--white); padding: 28px 24px; border-radius: var(--radius);
    border: 1px solid var(--border); transition: var(--transition); text-align: center;
}
.service-card:hover {
    transform: translateY(-4px); border-color: var(--primary);
    box-shadow: var(--shadow-md);
}
.service-icon {
    width: 56px; height: 56px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; margin: 0 auto 16px;
    background: var(--primary-light); color: var(--primary); font-size: 1.3rem;
    transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--primary); color: var(--white); }
.service-card h3 { color: var(--primary); margin-bottom: 8px; }
.service-card p { font-size: 0.9rem; margin-bottom: 0; }

@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .service-card-general { grid-column: 1 / -1; }
}


/* ============ WHY CHOOSE ============ */
.why-choose { padding: 80px 0; background: var(--white); }
.why-grid {
    display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
}
.why-text h2 { margin-bottom: 12px; }
.why-text > p { margin-bottom: 24px; }
.why-features { display: flex; flex-direction: column; gap: 20px; }
.why-feature {
    display: flex; gap: 16px; align-items: flex-start;
}
.why-icon {
    width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
    background: var(--accent-light); color: var(--accent);
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.why-feature h4 { margin-bottom: 4px; }
.why-feature p { font-size: 0.9rem; margin-bottom: 0; }

.why-card-stack { display: flex; flex-direction: column; gap: 16px; }
.why-mini-card {
    display: flex; align-items: center; gap: 16px; padding: 20px 24px;
    background: var(--bg); border-radius: var(--radius); border: 1px solid var(--border);
    transition: var(--transition);
}
.why-mini-card:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.mini-icon {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    background: var(--primary-light); color: var(--primary);
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.mini-text strong { display: block; font-size: 0.95rem; color: var(--text); }
.mini-text span { font-size: 0.8rem; color: var(--text-light); }

@media (min-width: 768px) {
    .why-grid { grid-template-columns: 1.2fr 1fr; }
}


/* ============ AREAS WE SERVE ============ */
.areas { padding: 80px 0; background: var(--white); }
.areas-grid {
    display: grid; grid-template-columns: 1fr; gap: 24px;
}
.area-card {
    background: var(--bg); border-radius: var(--radius-lg); padding: 28px 24px;
    border: 1px solid var(--border); transition: var(--transition);
}
.area-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.area-card-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.area-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.area-card-header h3 { margin-bottom: 2px; font-size: 1.1rem; }
.area-address { font-size: 0.85rem; color: var(--text-light); margin-bottom: 0; }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.area-tag {
    display: inline-block; padding: 6px 14px; border-radius: var(--radius-full);
    background: var(--white); border: 1px solid var(--border); font-size: 0.82rem;
    font-weight: 500; color: var(--text-secondary); transition: var(--transition);
    cursor: default;
}
.area-tag:hover { background: var(--primary-light); border-color: var(--primary); color: var(--primary); }
.area-map-link {
    display: inline-flex; align-items: center; gap: 6px; font-size: 0.9rem;
    font-weight: 600; color: var(--primary); padding: 8px 0;
}
.area-map-link:hover { color: var(--accent); }
.area-map-link i { font-size: 1rem; }

@media (min-width: 768px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }


/* ============ TESTIMONIALS ============ */
.testimonials { padding: 80px 0; background: var(--bg); }
.testimonials-grid {
    display: grid; grid-template-columns: 1fr; gap: 20px;
}
.testimonial-card {
    background: var(--white); padding: 28px; border-radius: var(--radius);
    border: 1px solid var(--border); transition: var(--transition);
    position: relative;
}
.testimonial-card::before {
    content: '\201C'; position: absolute; top: 16px; right: 24px;
    font-size: 4rem; color: var(--primary-light); font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-stars { margin-bottom: 12px; color: #F59E0B; font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-card > p {
    font-size: 0.95rem; color: var(--text-secondary); font-style: italic;
    margin-bottom: 16px; position: relative; z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.95rem;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--text); }
.testimonial-author span { font-size: 0.8rem; color: var(--text-light); }

@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }


/* ============ BOOK / LEAD FORM ============ */
.book-section { padding: 80px 0; background: var(--white); }
.book-grid {
    display: grid; grid-template-columns: 1fr; gap: 40px;
}
.book-form-wrapper {
    background: var(--bg); border-radius: var(--radius-lg); padding: 32px 24px;
    border: 1px solid var(--border);
}
.book-form-wrapper h2 { margin-bottom: 8px; font-size: 1.5rem; }
.book-form-wrapper > p { margin-bottom: 24px; }

.lead-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
    border-radius: var(--radius); font-size: 1rem; font-family: var(--font);
    color: var(--text); background: var(--white); transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary); box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aab4c0; }
.form-group select { cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23718096' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
}
.phone-input {
    display: flex; align-items: stretch; border: 1.5px solid var(--border);
    border-radius: var(--radius); overflow: hidden; transition: var(--transition);
    background: var(--white);
}
.phone-input:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1); }
.phone-prefix {
    display: flex; align-items: center; padding: 0 12px;
    background: var(--bg); color: var(--text-secondary); font-weight: 600;
    font-size: 0.9rem; border-right: 1.5px solid var(--border); flex-shrink: 0;
}
.phone-input input { border: none !important; box-shadow: none !important; }

.form-note {
    text-align: center; font-size: 0.8rem; color: var(--text-light); margin-bottom: 0; margin-top: 4px;
}
.form-note i { margin-right: 4px; }

.form-message {
    text-align: center; padding: 32px 20px; border-radius: var(--radius);
}
.form-message i { font-size: 3rem; margin-bottom: 12px; }
.form-message h3 { margin-bottom: 8px; }
.form-message.success i { color: var(--primary); }
.form-message.error i { color: #e53e3e; }

/* Alt CTAs */
.alt-card {
    background: linear-gradient(135deg, #f0f9f7, #e6f5f1);
    border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
    border: 1px solid rgba(var(--primary-rgb), 0.1); margin-bottom: 24px;
}
.alt-card h3 { margin-bottom: 8px; }
.alt-card > p { margin-bottom: 20px; }
.alt-card .btn { margin-bottom: 12px; }
.alt-info h4 { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; margin-top: 16px; color: var(--primary); }
.alt-info p { font-size: 0.9rem; margin-bottom: 0; }
.alt-info a { color: var(--primary); font-weight: 500; }
.alt-info a:hover { text-decoration: underline; }

@media (min-width: 768px) {
    .book-grid { grid-template-columns: 1.2fr 1fr; }
    .book-form-wrapper { padding: 40px 32px; }
}


/* ============ MAP ============ */
.map-section { background: var(--bg); }
.map-section iframe { border-radius: 0; }


/* ============ FAQ ============ */
.faq { padding: 80px 0; background: var(--white); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border); border-radius: var(--radius);
    margin-bottom: 12px; overflow: hidden; transition: var(--transition);
}
.faq-item.active { border-color: var(--primary); box-shadow: 0 2px 12px rgba(var(--primary-rgb), 0.08); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 18px 20px; background: none; border: none; cursor: pointer;
    font-family: var(--font); font-size: 1rem; font-weight: 600;
    color: var(--text); text-align: left; gap: 12px;
}
.faq-question i {
    transition: transform 0.3s; color: var(--primary); flex-shrink: 0;
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 20px;
}
.faq-item.active .faq-answer { max-height: 300px; padding: 0 20px 18px; }
.faq-answer p { font-size: 0.95rem; margin-bottom: 0; }
.faq-answer a { color: var(--primary); font-weight: 500; }
.faq-answer a:hover { text-decoration: underline; }


/* ============ FINAL CTA ============ */
.final-cta { padding: 80px 0; background: var(--white); }
.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg); padding: 48px 24px; text-align: center;
    position: relative; overflow: hidden;
}
.cta-box::before {
    content: ''; position: absolute; width: 300px; height: 300px;
    border-radius: 50%; background: rgba(255,255,255,0.05);
    top: -100px; right: -80px;
}
.cta-box::after {
    content: ''; position: absolute; width: 200px; height: 200px;
    border-radius: 50%; background: rgba(255,255,255,0.04);
    bottom: -60px; left: -40px;
}
.cta-box h2 { color: var(--white); margin-bottom: 12px; position: relative; z-index: 1; }
.cta-box p { color: rgba(255,255,255,0.85); margin-bottom: 28px; position: relative; z-index: 1; }
.cta-buttons {
    display: flex; flex-direction: column; gap: 12px; align-items: center;
    position: relative; z-index: 1;
}
@media (min-width: 600px) { .cta-buttons { flex-direction: row; justify-content: center; } .cta-box { padding: 60px 40px; } }


/* ============ FOOTER ============ */
.site-footer {
    background: var(--text); color: rgba(255,255,255,0.75); padding: 60px 0 80px;
}
.footer-grid {
    display: grid; grid-template-columns: 1fr; gap: 32px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo .logo-icon { background: rgba(255,255,255,0.1); }
.footer-logo .logo-name { color: var(--white); }
.footer-logo .logo-tagline { color: rgba(255,255,255,0.5); }
.site-footer p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-links a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.08); display: flex; align-items: center;
    justify-content: center; color: rgba(255,255,255,0.7); font-size: 1.1rem;
    transition: var(--transition);
}
.social-links a:hover { background: var(--primary); color: var(--white); }
.footer-col h4 { color: var(--white); margin-bottom: 16px; font-size: 1rem; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--white); }
.contact-list li {
    display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
}
.contact-list li i { color: var(--primary); margin-top: 4px; flex-shrink: 0; }
.contact-list li a { color: rgba(255,255,255,0.65); }
.contact-list li a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08); margin-top: 40px;
    padding-top: 20px; text-align: center;
}
.footer-bottom p { font-size: 0.8rem; margin-bottom: 0; }

@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1.5fr; } }


/* ============ FLOATING WHATSAPP ============ */
.whatsapp-float {
    position: fixed; bottom: 90px; right: 20px; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--whatsapp); color: var(--white); font-size: 1.6rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition); animation: pulse-wa 2s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }
.wa-tooltip {
    position: absolute; right: 64px; background: var(--white);
    color: var(--text); padding: 8px 14px; border-radius: 8px;
    font-size: 0.85rem; font-weight: 500; white-space: nowrap;
    box-shadow: var(--shadow); opacity: 0; transform: translateX(10px);
    transition: var(--transition); pointer-events: none;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* Same floating WhatsApp bubble on every screen size */
@media (max-width: 767px) { .whatsapp-float { bottom: 20px; right: 16px; width: 50px; height: 50px; font-size: 1.4rem; } }
@media (min-width: 768px) { .whatsapp-float { bottom: 30px; right: 30px; } }

/* Floating "Book Consultation" pill — kept clear of the WhatsApp bubble, same on mobile and desktop */
.desktop-book-bar {
    display: inline-flex; position: fixed; left: 50%; bottom: 22px; z-index: 998;
    transform: translateX(-50%); align-items: center; justify-content: center; gap: 8px;
    padding: 13px 26px; border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--white);
    font-size: .95rem; font-weight: 700; box-shadow: 0 6px 22px rgba(var(--accent-rgb), .35);
    white-space: nowrap;
}
.desktop-book-bar:hover { color: var(--white); transform: translateX(-50%) translateY(-2px); box-shadow: 0 9px 28px rgba(var(--accent-rgb), .45); }

@media (max-width: 767px) {
    .desktop-book-bar { bottom: 18px; padding: 12px 22px; font-size: .9rem; }
}


/* ============ ANIMATIONS ============ */
[data-animate] {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].visible {
    opacity: 1; transform: translateY(0);
}

/* Stagger children in grids */
.services-grid [data-animate]:nth-child(2) { transition-delay: 0.1s; }
.services-grid [data-animate]:nth-child(3) { transition-delay: 0.2s; }
.services-grid [data-animate]:nth-child(4) { transition-delay: 0.3s; }
.services-grid [data-animate]:nth-child(5) { transition-delay: 0.4s; }
.services-grid [data-animate]:nth-child(6) { transition-delay: 0.5s; }

.testimonials-grid [data-animate]:nth-child(2) { transition-delay: 0.15s; }
.testimonials-grid [data-animate]:nth-child(3) { transition-delay: 0.3s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    [data-animate] { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}
