
/* =========================================
   EXACT HEADER STYLES
   ========================================= */
.exact-top-bar { background: #0B1120; color: #CBD5E1; font-size: 13px; font-weight: 500; padding: 12px 0; width: 100%; }
.exact-top-bar-inner { display: flex; justify-content: space-between; align-items: center; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.etb-left, .etb-right { display: flex; align-items: center; gap: 32px; }
.etb-item { display: flex; align-items: center; gap: 8px; }
.etb-icon { color: #00A3C4; font-size: 14px; }
.etb-phone { color: white; text-decoration: none; display: flex; align-items: center; gap: 8px; font-weight: 600; }
.etb-socials { display: flex; gap: 12px; align-items: center; }
.etb-socials a { color: #00A3C4; text-decoration: none; border: 1px solid #00A3C4; border-radius: 50%; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; } .etb-socials a:hover { background: #00A3C4; color: white; } .etb-socials a:hover { background: #00A3C4; color: white; }

.exact-header {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    position: sticky; top: 0; z-index: 100;
}
.exact-header-inner { display: flex; justify-content: space-between; align-items: center; max-width: 1280px; margin: 0 auto; padding: 55px 24px; }
.exact-nav { display: flex; gap: 40px; align-items: center; }
.exact-nav a { color: #0F172A; font-weight: 600; font-size: 15px; text-decoration: none; padding: 25px 0; position: relative; transition: color 0.3s ease; }
.exact-nav a.active { color: #00A3C4; }
.exact-nav a.active::after {
    content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: #00A3C4;
}
.exact-nav .caret { font-size: 10px; margin-left: 4px; color: #64748B; }

.exact-btn-book { background: #00A3C4; color: white; padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 14px; text-decoration: none; box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3); display: flex; align-items: center; gap: 8px; transition: all 0.3s ease; } .exact-btn-book:hover { background: #008BA6; }


/* =========================================
   HEADER STYLES (Restored)
   ========================================= */
/* Top Bar Floating */
.top-bar-v4 {
    background: transparent;
    padding-top: 16px;
    position: absolute;
    top: 0; left: 0; width: 100%;
    z-index: 101;
}
.top-bar-pill { background: var(--pp-navy); border-radius: 50px; display: flex; justify-content: space-between; align-items: center; padding: 10px 24px; color: #CBD5E1; font-size: 13px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); margin: 0 auto; max-width: 1200px; }
.tb-left, .tb-right { display: flex; align-items: center; gap: 20px; }
.tb-item { display: flex; align-items: center; gap: 6px; }
.tb-phone { color: white; font-weight: 600; text-decoration: none; }
.tb-social { display: flex; gap: 12px; }
.tb-social a { color: #CBD5E1; display:flex; align-items:center; }

/* Header */
.header-v4 {
    background: white;
    padding-top: 80px; /* space for absolute top bar */
    padding-bottom: 20px;
    border-bottom: 1px solid #E2E8F0;
}
.header-v4-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}
.custom-logo-link img { max-height: 50px; width: auto; }
.site-title { font-size: 24px; color: var(--pp-navy); font-weight: 800; margin:0; }
.logo-area a { text-decoration: none; }

.nav-v4 {
    display: flex;
    gap: 32px;
    align-items: center;
}
.nav-v4 a {
    color: var(--pp-heading);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
}
.nav-v4 a.active {
    color: var(--pp-teal);
    border-bottom: 2px solid var(--pp-teal);
    padding-bottom: 4px;
}
.nav-dropdown a { display: flex; align-items: center; gap: 4px; }
.mobile-toggle-v4 { display: none; background: none; border: none; font-size: 24px; }

@media (max-width: 1024px) {
    .top-bar-v4, .nav-v4, .header-actions-v4 { display: none; }
    .mobile-toggle-v4 { display: block; }
    .header-v4 { padding-top: 20px; }
}

/* ========================================= */


/* =========================================
   1:1 PIXEL-PERFECT MOCKUP DESIGN
   ========================================= */
:root {
  --pp-teal: #00A3C4;
  --pp-navy: #0B1120;
  --pp-gold: #F59E0B;
  --pp-text: #475569;
  --pp-heading: #0F172A;
  --pp-gray: #F8FAFC;
}

body.mockup-exact {
    font-family: 'Inter', sans-serif;
    color: var(--pp-text);
    margin: 0; padding: 0;
    overflow-x: hidden;
}
.mockup-exact h1, .mockup-exact h2, .mockup-exact h3, .mockup-exact h4, .mockup-exact h5 {
    font-family: 'Outfit', sans-serif;
    color: var(--pp-heading);
    margin: 0;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.text-teal { color: var(--pp-teal); }
.bg-gray { background: #F8FAFC; }

/* Buttons */
.btn-primary-teal {
    background: var(--pp-teal); color: white; padding: 14px 28px;
    border-radius: 50px; font-weight: 600; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 10px 20px rgba(13, 148, 136, 0.2);
}
.btn-outline-wa {
    background: white; border: 1.5px solid #10B981; color: #10B981;
    padding: 14px 28px; border-radius: 50px; font-weight: 600; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
}

/* ================== HERO SECTION ================== */
.pp-hero {
    position: relative;
    padding: 40px 0 60px;
    min-height: 800px;
    display: flex; align-items: center;
}
.pp-hero-bg-curve { position: absolute; top: 0; right: 0; width: 40%; height: 100%; background: #E0F2FE; border-bottom-left-radius: 300px; z-index: 1; }
.pp-hero-container {
    display: flex; gap: 40px; align-items: center;
    position: relative; z-index: 2; width: 100%;
}
.pp-hero-left { flex: 1.1; max-width: 650px; }
.pp-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: #F0FDF4; color: var(--pp-teal);
    padding: 8px 16px; border-radius: 50px; font-size: 13px; font-weight: 600;
    margin-bottom: 32px; border: 1px solid #DCFCE7;
}
.pp-hero-title { font-size: 64px; line-height: 1.1; margin-bottom: 24px; letter-spacing: -1px; }
.pp-hero-desc { font-size: 16px; line-height: 1.6; margin-bottom: 40px; color: #475569; }
.pp-hero-actions { display: flex; gap: 16px; margin-bottom: 60px; }
.pp-hero-stats {
    display: flex; gap: 32px; border-top: 1px solid #E2E8F0; padding-top: 32px;
}
.pp-stat { display: flex; align-items: center; gap: 12px; }
.pp-stat-icon { font-size: 24px; }
.pp-stat-text { font-size: 12px; line-height: 1.4; }
.pp-stat-text strong { font-size: 18px; color: var(--pp-heading); }

/* Hero Right (Images) */
.pp-hero-right { flex: 1; position: relative; height: 600px; display: flex; align-items: flex-end; justify-content: flex-end; }
.pp-clinic-bg-wrap { position: absolute; bottom: 80px; right: 0; width: 450px; height: 350px; border-radius: 20px; overflow: hidden; border: 8px solid white; box-shadow: 0 20px 40px rgba(0,0,0,0.1); z-index: 2; }
.pp-clinic-img { width: 100%; height: 100%; object-fit: cover; }
.pp-dr-akriti-img { position: relative; height: 650px; width: auto; z-index: 3; right: 80px; bottom: 0; }
/* Floating Cards */
.pp-float-expert { position: absolute; top: 100px; right: 0; background: white; padding: 16px 20px; border-radius: 16px; display: flex; align-items: center; gap: 16px; box-shadow: 0 15px 35px rgba(0,0,0,0.08); z-index: 4; }
.icon-circle { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.teal-bg { background: var(--pp-teal); color: white; }
.pp-float-expert .float-text { font-size: 13px; line-height: 1.4; }

.pp-float-profile { position: absolute; bottom: 80px; left: -20px; background: white; padding: 24px; border-radius: 20px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); z-index: 4; width: 240px; }
.profile-name { font-size: 18px; margin-bottom: 4px; }
.profile-role { font-size: 12px; color: #64748B; margin-bottom: 12px; }
.profile-link { color: var(--pp-teal); font-weight: 600; font-size: 13px; text-decoration: none; }

/* ================== TRUST STRIP ================== */
.pp-trust-strip { border-bottom: 1px solid #E2E8F0; padding: 24px 0; background: white; }
.pp-trust-inner { display: flex; justify-content: space-between; align-items: center; }
.pp-trust-item { font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 10px; color: var(--pp-heading); }
.t-icon { font-size: 18px; color: var(--pp-teal); }

/* ================== COMMON SECTION ================== */
.pp-section { padding: 80px 0; }
.pp-section-header { margin-bottom: 50px; text-align: center; }
.pp-subheading { display: block; color: var(--pp-teal); font-size: 12px; font-weight: 700; letter-spacing: 2px; margin-bottom: 12px; }
.pp-heading { font-size: 36px; margin-bottom: 16px; }
.pp-subtext { color: #64748B; max-width: 600px; margin: 0 auto; }

/* ================== DOCTORS CARDS ================== */
.pp-doctors-flex { display: flex; gap: 30px; }
.pp-doc-card {
    flex: 1; background: white; border-radius: 24px; padding: 24px;
    display: flex; gap: 32px; align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03); border: 1px solid #E2E8F0;
}
.doc-img-left { width: 240px; min-width: 240px; height: 300px; position: relative; }
.doc-img-bg { position: absolute; inset: 0; border-radius: 20px; z-index: 1; }
.doc-img-bg.teal-bg { background: #E0F2FE; }
.doc-img-bg.gold-bg { background: #FEF3C7; }
.doc-portrait { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }

.doc-content-right { flex: 1; }
.doc-pill { display: inline-block; padding: 6px 14px; border-radius: 50px; font-size: 11px; font-weight: 700; margin-bottom: 16px; }
.teal-pill { background: var(--pp-teal); color: white; }
.gold-pill { background: var(--pp-gold); color: white; }
.doc-name { font-size: 28px; margin-bottom: 8px; }
.doc-edu { font-size: 13px; font-weight: 600; color: #475569; margin-bottom: 16px; }
.doc-desc { font-size: 14px; line-height: 1.6; margin-bottom: 24px; }
.doc-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto; }
.btn-solid-teal, .btn-solid-gold { color: white; padding: 12px 20px; border-radius: 50px; font-weight: 600; font-size: 14px; text-decoration: none; }
.btn-solid-gold { background: var(--pp-gold); }
.btn-outline-teal { border: 1.5px solid var(--pp-teal); color: var(--pp-teal); padding: 12px 20px; border-radius: 50px; font-weight: 600; font-size: 14px; text-decoration: none; }
.btn-outline-gold { border: 1.5px solid var(--pp-gold); color: var(--pp-gold); padding: 12px 20px; border-radius: 50px; font-weight: 600; font-size: 14px; text-decoration: none; }

/* ================== 5-CARD BENTO GRID ================== */
.pp-bento-5grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 3 Columns exactly like mockup */
    gap: 24px;
}
.bento-card {
    border-radius: 24px; overflow: hidden; position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
/* Left Tall Card */
.bento-large {
    grid-column: 1 / 2; grid-row: 1 / 3;
    display: flex; flex-direction: column;
}
.teal-grad-bg { background: linear-gradient(135deg, #00A3C4 0%, #008BA6 100%); }
.bento-large-content { padding: 40px; color: white; flex: 1; }
.b-icon { font-size: 40px; margin-bottom: 24px; }
.b-title { font-size: 32px; color: white; margin-bottom: 16px; }
.b-desc { font-size: 16px; color: #CCFBF1; margin-bottom: 32px; line-height: 1.6; }
.b-link { display: inline-block; background: rgba(255,255,255,0.2); color: white; padding: 12px 24px; border-radius: 50px; font-weight: 600; text-decoration: none; }
.bento-large-img { height: 350px; width: 100%; background-size: cover; background-position: center 20%; margin-top: auto; }

/* Small Cards (Cols 2 & 3) */
.bento-col { display: flex; flex-direction: column; gap: 24px; }
.bento-small {
    display: flex; height: 100%; min-height: 240px;
}
.bg-mint { background: #E0F2FE; }
.bg-pink { background: #FCE7F3; }
.bg-peach { background: #FFEDD5; }
.bg-yellow { background: #FEF9C3; }

.b-small-content { padding: 32px 24px; flex: 1; display: flex; flex-direction: column; }
.b-small-content .b-icon { font-size: 28px; margin-bottom: 16px; }
.b-title-small { font-size: 22px; margin-bottom: 12px; }
.b-desc-small { font-size: 13px; color: #475569; margin-bottom: 24px; line-height: 1.5; flex: 1; }
.b-link-small { font-weight: 700; font-size: 13px; text-decoration: none; display: flex; align-items: center; gap: 4px; }
.text-pink { color: #DB2777; }
.text-gold { color: #D97706; }

.b-small-img { width: 140px; min-width: 140px; background-size: cover; background-position: center; border-radius: 16px; margin: 16px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }

/* ================== REVIEWS ================== */
.pp-reviews-wrapper {
    display: flex; gap: 40px; align-items: center; margin-top: 40px;
}
.review-overall { width: 200px; text-align: center; }
.review-overall h4 { font-size: 24px; margin-bottom: 8px; }
.stars { color: #F59E0B; font-size: 18px; margin-bottom: 4px; }
.review-overall p { font-size: 12px; color: #64748B; margin-bottom: 16px; }
.google-logo { font-size: 24px; font-weight: 700; color: #4285F4; }

.review-cards { display: flex; gap: 20px; flex: 1; overflow: hidden; }
.review-card {
    background: white; padding: 24px; border-radius: 16px; flex: 1; min-width: 250px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.rc-top { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.rc-avatar { width: 40px; height: 40px; background: #E2E8F0; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-weight: 700; }
.rc-top h5 { font-size: 15px; margin-bottom: 4px; }
.rc-top .stars { font-size: 12px; margin: 0; }
.rc-text { font-size: 13px; line-height: 1.5; color: #475569; }
.review-arrows { display: flex; gap: 12px; }
.arrow-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid #CBD5E1; background: white; cursor: pointer; }

/* ================== BANNERS ================== */
.pp-results-banner {
    background: #0369A1; border-radius: 24px; padding: 40px 60px;
    display: flex; justify-content: space-between; align-items: center; color: white;
}
.res-text h2 { color: white; font-size: 32px; margin-bottom: 12px; }
.res-text p { color: #E0F2FE; margin-bottom: 24px; }
.res-images { display: flex; gap: 16px; align-items: center; }
.res-img-box img { width: 120px; height: 120px; border-radius: 12px; object-fit: cover; border: 4px solid white; }
.res-btn { width: 32px; height: 32px; border-radius: 50%; background: rgba(0,0,0,0.3); color: white; border: none; cursor: pointer; }

/* Pre Footer CTA */
.pp-cta-banner {
    position: relative; border-radius: 24px; overflow: hidden;
    background: #0B1120; color: white;
}
.cta-bg-img { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.2; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, #0B1120 40%, transparent 100%); }
.cta-content-wrapper { position: relative; z-index: 2; padding: 60px; display: flex; justify-content: space-between; align-items: center; }
.cta-text-side h2 { color: white; font-size: 36px; margin-bottom: 12px; }
.cta-text-side p { color: #94A3B8; margin-bottom: 24px; max-width: 500px; }
.cta-contact-row { display: flex; gap: 24px; font-size: 13px; color: #CBD5E1; }
.cta-btn-side { display: flex; gap: 16px; }
.btn-pill-green { background: var(--pp-teal); color: white; padding: 14px 28px; border-radius: 50px; font-weight: 600; text-decoration: none; font-size: 14px; border: 2px solid transparent; } .btn-pill-green[style*="transparent"] { border-color: rgba(255,255,255,0.4) !important; background: transparent !important; }

/* ================== FOOTER ================== */
.pp-footer { background: #020617; color: #94A3B8; padding-top: 60px; }
.pp-footer-inner { display: flex; gap: 40px; margin-bottom: 40px; }
.f-col-1 { flex: 1.5; }
.f-logo { color: white; font-size: 24px; margin-bottom: 16px; }
.f-desc { font-size: 14px; line-height: 1.6; margin-bottom: 24px; }
.f-rating { font-size: 13px; margin-bottom: 24px; display: flex; align-items: center; gap: 8px; }
.f-socials a { display: inline-flex; width: 32px; height: 32px; background: #1E293B; color: white; align-items: center; justify-content: center; border-radius: 50%; margin-right: 8px; text-decoration: none; }
.f-col-2, .f-col-3 { flex: 1; }
.f-col-4 { flex: 1.5; }
.pp-footer h4 { color: white; font-size: 16px; margin-bottom: 24px; }
.pp-footer ul { list-style: none; padding: 0; margin: 0; }
.pp-footer li { margin-bottom: 12px; font-size: 14px; }
.pp-footer a { color: #94A3B8; text-decoration: none; }
.pp-footer p { font-size: 13px; margin-bottom: 8px; line-height: 1.5; }
.pp-footer strong { color: white; font-size: 14px; }
.pp-footer-bottom { border-top: 1px solid #1E293B; padding: 24px 0; }
.fb-flex { display: flex; justify-content: space-between; font-size: 13px; }

.wa-float-btn {
    position: fixed; bottom: 30px; right: 30px;
    width: 60px; height: 60px; background: #25D366; color: white;
    border-radius: 50%; display: flex; justify-content: center; align-items: center;
    font-size: 28px; text-decoration: none; box-shadow: 0 10px 20px rgba(37,211,102,0.3); z-index: 1000;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 1024px) {
    .pp-hero-container { flex-direction: column; text-align: center; }
    .pp-hero-bg-curve { position: absolute; top: 0; right: 0; width: 40%; height: 100%; background: #E0F2FE; border-bottom-left-radius: 300px; z-index: 1; }
    .pp-hero-actions, .pp-hero-stats, .cta-contact-row { justify-content: center; }
    .pp-hero-right { flex: 1; position: relative; height: 600px; display: flex; align-items: flex-end; justify-content: flex-end; }
    .pp-dr-akriti-img { position: relative; height: 650px; width: auto; z-index: 3; right: 80px; bottom: 0; }
    .pp-clinic-bg-wrap { position: absolute; bottom: 80px; right: 0; width: 450px; height: 350px; border-radius: 20px; overflow: hidden; border: 8px solid white; box-shadow: 0 20px 40px rgba(0,0,0,0.1); z-index: 2; }
    .pp-float-expert { position: absolute; top: 100px; right: 0; background: white; padding: 16px 20px; border-radius: 16px; display: flex; align-items: center; gap: 16px; box-shadow: 0 15px 35px rgba(0,0,0,0.08); z-index: 4; }
    .pp-float-profile { position: absolute; bottom: 80px; left: -20px; background: white; padding: 24px; border-radius: 20px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); z-index: 4; width: 240px; }
    
    .pp-doctors-flex { flex-direction: column; }
    .pp-doc-card { flex-direction: column; text-align: center; }
    .doc-img-left { width: 240px; min-width: 240px; height: 300px; position: relative; }
    .doc-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto; }
    
    .pp-bento-5grid { grid-template-columns: 1fr; }
    .bento-large { grid-column: 1 / 2; grid-row: auto; }
    
    .pp-reviews-wrapper { flex-direction: column; }
    .review-cards { overflow-x: auto; width: 100%; }
    
    .pp-results-banner, .cta-content-wrapper, .pp-footer-inner { flex-direction: column; text-align: center; }
    .res-images, .cta-btn-side { justify-content: center; margin-top: 24px; }
}


/* Sticky Header Styles */
.exact-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    animation: headerSlideDown 0.4s ease forwards;
}
/* When sticky, we can optionally reduce padding slightly so it doesn't take up too much screen space, but let's keep it matching for now */
.exact-header.is-sticky .exact-header-inner {
    padding: 20px 24px; /* Slightly smaller padding when sticky for better UX */
    transition: all 0.3s ease;
}

@keyframes headerSlideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}
/* Ensure the body gets padding so content doesn't jump when header becomes fixed */
body.header-is-sticky {
    padding-top: 150px; /* Approximate height of header */
}
