/* =========================================
       ROOT — GOLD THEME (matches index.html)
    ========================================= */
    :root {
      --gold-deep:  #8B6914;
      --gold-dark:  #A8812A;
      --gold:       #C9A363;
      --gold-mid:   #D4AA6A;
      --gold-light: #E8C98A;
      --gold-soft:  #F5E6C8;
      --gold-pale:  #FBF3E2;
      --gold-glow:  #FFD98A;

      --dark:       #1A1208;
      --dark-mid:   #2D200C;
      --dark-warm:  #3D2C12;
      --brown:      #5C3D1A;

      --ivory:      #FFFDF6;
      --cream:      #FBF6EC;
      --cream-mid:  #F5EDD8;
      --beige:      #EDE0C4;
      --white:      #FFFFFF;

      --text-dark:  #1A1208;
      --text-mid:   #4A3418;
      --text-muted: #7A6040;
      --text-light: #A0886A;

      --border:       #E0CCA0;
      --border-light: #EDE0C4;

      --shadow-sm: 0 2px 16px rgba(180,130,30,.10);
      --shadow-md: 0 8px 40px rgba(180,130,30,.16);
      --shadow-lg: 0 24px 64px rgba(180,130,30,.22);

      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --radius-xl: 36px;

      --font-display: 'Playfair Display', Georgia, serif;
      --font-body:    'DM Sans', sans-serif;
      --font-accent:  'Cormorant Garamond', Georgia, serif;
      --transition:   all 0.38s cubic-bezier(.4,0,.2,1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font-body); color: var(--text-dark); background: var(--ivory); overflow-x: hidden; line-height: 1.7; }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; transition: var(--transition); }
    ul { list-style: none; padding: 0; margin: 0; }

    /* ---- WhatsApp ---- */
    .whatsapp-float {
      position: fixed; bottom: 24px; right: 24px; z-index: 999;
      width: 56px; height: 56px; background: #25D366; color: white;
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 1.7rem; box-shadow: 0 6px 24px rgba(37,211,102,.45);
      animation: waPulse 2.5s infinite;
    }
    .whatsapp-float:hover { transform: scale(1.1); color: white; }
    @keyframes waPulse {
      0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
      50%      { box-shadow: 0 6px 36px rgba(37,211,102,.75); }
    }
    #scroll-top {
      position: fixed; bottom: 92px; right: 24px; width: 44px; height: 44px;
      background: var(--dark-mid); color: var(--gold-light); border: 1px solid var(--gold-dark);
      border-radius: 50%; font-size: 1rem; cursor: pointer; z-index: 900;
      opacity: 0; visibility: hidden; transition: var(--transition);
      display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md);
    }
    #scroll-top.show { opacity: 1; visibility: visible; }
    #scroll-top:hover { background: var(--gold-dark); color: white; transform: translateY(-3px); }

    /* =========================================
       NAVBAR
    ========================================= */
    .navbar-main {
      position: sticky; top: 0; z-index: 1000;
      background: rgba(255,253,246,.97); backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border-light);
      box-shadow: 0 2px 20px rgba(180,130,30,.08);
    }
    .navbar-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 88px; max-width: 1280px; margin: 0 auto; padding: 0 24px;
    }
    .brand-logo { display: flex; align-items: center; gap: 10px; }
    .brand-icon { width: 72px; height: 72px; border-radius: 13px; display: flex; align-items: center; justify-content: center; }
    .brand-icon img { width: 100%; height: 100%; object-fit: contain; border-radius: 13px; }
    .brand-text .clinic-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--dark-warm); }
    .brand-text .clinic-sub  { font-size: .68rem; color: var(--gold-dark); font-weight: 500; letter-spacing: .8px; text-transform: uppercase; }
    .nav-links { display: flex; align-items: center; gap: 6px; }
    .nav-links a { font-size: .95rem; font-weight: 500; color: var(--text-mid); padding: 8px 14px; border-radius: 8px; transition: var(--transition); }
    .nav-links a:hover, .nav-links a.active { color: var(--gold-dark); background: var(--gold-pale); }
    .nav-cta {
      background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
      color: white !important; padding: 10px 22px !important; border-radius: 50px !important;
      font-weight: 600 !important; box-shadow: 0 4px 16px rgba(169,129,42,.35);
    }
    .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 7px 22px rgba(169,129,42,.5); color: white !important; }
    .nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; color: var(--dark-warm); cursor: pointer; padding: 8px; }

    .mobile-nav {
      display: none; position: fixed; inset: 0;
      background: linear-gradient(160deg, var(--dark) 0%, var(--dark-warm) 100%);
      z-index: 999; flex-direction: column; padding: 80px 40px 40px;
      transform: translateX(100%); transition: transform .4s ease;
    }
    .mobile-nav.open { transform: translateX(0); display: flex; }
    .mobile-nav a { font-family: var(--font-display); font-size: 1.6rem; color: rgba(255,240,200,.85); padding: 16px 0; border-bottom: 1px solid rgba(212,170,106,.18); transition: var(--transition); }
    .mobile-nav a:hover { color: var(--gold-glow); padding-left: 12px; }
    .mobile-nav-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--gold-light); font-size: 1.5rem; cursor: pointer; }

    /* =========================================
       PAGE HERO
    ========================================= */
    .page-hero {
      background:
        linear-gradient(105deg, rgba(20,12,2,.93) 0%, rgba(45,32,12,.88) 50%, rgba(140,100,30,.65) 100%),
        url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?w=1600&q=80&fit=crop') center/cover no-repeat;
      padding: 50px 0 60px; position: relative; overflow: hidden;
    }
    .page-hero::after {
      content: ''; position: absolute; inset: 0;
      background-image: linear-gradient(rgba(212,170,106,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,170,106,.03) 1px, transparent 1px);
      background-size: 60px 60px; pointer-events: none;
    }
    .page-hero-content { position: relative; z-index: 2; }
    .breadcrumb { background: none; padding: 0; margin: 0; }
    .breadcrumb-item a { color: rgba(212,170,106,.75); font-size: .82rem; }
    .breadcrumb-item a:hover { color: var(--gold-glow); }
    .breadcrumb-item.active { color: rgba(255,240,200,.45); font-size: .82rem; }
    .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,240,200,.3); }
    .page-hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(212,170,106,.18); border: 1px solid rgba(212,170,106,.45);
      color: var(--gold-soft); padding: 7px 18px; border-radius: 50px;
      font-size: .76rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
      margin: 14px 0 22px;
    }
    .page-hero h1 {
      font-family: var(--font-display); font-size: clamp(2rem,4.5vw,3.2rem);
      color: white; font-weight: 700; line-height: 1.2; margin-bottom: 14px;
    }
    .page-hero h1 em { font-style: normal; color: var(--gold-glow); }
    .page-hero p { color: rgba(255,240,200,.65); font-size: .97rem; max-width: 560px; }

    /* =========================================
       SHARED SECTION UTILITIES
    ========================================= */
    section { padding: 96px 0; }
    .section-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--gold-pale); color: var(--gold-dark); padding: 6px 16px;
      border-radius: 50px; font-size: .76rem; font-weight: 700;
      letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; border: 1px solid var(--border);
    }
    .section-title { font-family: var(--font-display); font-size: clamp(1.85rem,3.5vw,2.7rem); font-weight: 700; color: var(--dark-warm); line-height: 1.25; margin-bottom: 14px; }
    .section-title span { color: var(--gold-dark); }
    .section-divider { width: 56px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-glow)); border-radius: 3px; margin: 14px 0 22px; }
    .text-center .section-divider { margin: 14px auto 22px; }
    .section-sub { color: var(--text-muted); font-size: 1rem; max-width: 560px; line-height: 1.82; }

    .btn-gold {
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: white; padding: 13px 28px; border-radius: 50px; font-weight: 600; font-size: .9rem;
      display: inline-flex; align-items: center; gap: 8px;
      box-shadow: 0 4px 18px rgba(169,129,42,.38); transition: var(--transition); border: none;
    }
    .btn-gold:hover { color: white; transform: translateY(-2px); box-shadow: 0 8px 26px rgba(169,129,42,.55); }
    .btn-outline-gold {
      background: transparent; color: var(--gold-dark); padding: 12px 28px;
      border-radius: 50px; font-weight: 600; font-size: .9rem;
      border: 2px solid var(--gold); display: inline-flex; align-items: center; gap: 8px; transition: var(--transition);
    }
    .btn-outline-gold:hover { background: var(--gold); color: white; }

    /* =========================================
       DOCTOR PROFILE
    ========================================= */
    .doctor-profile { background: var(--ivory); }

    .doc-photo-wrap { position: relative; }
    .doc-photo-main {
      width: 100%; height: 560px; border-radius: var(--radius-xl);
      overflow: hidden; box-shadow: var(--shadow-lg); border: 3px solid var(--border);
    }
    .doc-photo-main img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

    /* SVG illustration fallback wrapper */
    .doc-svg-wrap {
      width: 100%; height: 560px; border-radius: var(--radius-xl);
      background: linear-gradient(145deg, var(--gold-pale) 0%, var(--cream-mid) 50%, var(--beige) 100%);
      display: flex; align-items: center; justify-content: center;
      box-shadow: var(--shadow-lg); border: 3px solid var(--border); overflow: hidden; position: relative;
    }
    .doc-svg-wrap::before {
      content: ''; position: absolute; top: -40px; right: -40px;
      width: 200px; height: 200px; border-radius: 50%;
      background: radial-gradient(circle, rgba(212,170,106,.25), transparent 70%);
    }
    .doc-svg-wrap::after {
      content: ''; position: absolute; bottom: -40px; left: -40px;
      width: 180px; height: 180px; border-radius: 50%;
      background: radial-gradient(circle, rgba(201,163,99,.18), transparent 70%);
    }

    .doc-badge {
      position: absolute; bottom: 24px; left: 24px; right: 24px;
      background: rgba(255,253,246,.97); border-radius: var(--radius-md);
      padding: 18px 22px; box-shadow: var(--shadow-lg);
      display: flex; align-items: center; gap: 14px; border: 1px solid var(--border);
    }
    .doc-badge-icon {
      width: 48px; height: 48px; background: var(--gold-pale); border-radius: 12px;
      display: flex; align-items: center; justify-content: center; color: var(--gold-dark);
      font-size: 1.3rem; flex-shrink: 0;
    }
    .doc-badge .nm { font-family: var(--font-display); font-weight: 700; color: var(--dark-warm); font-size: 1rem; }
    .doc-badge .tt { font-size: .76rem; color: var(--text-light); }

    .doctor-name { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--dark-warm); line-height: 1.1; margin-bottom: 6px; }
    .doctor-designation { color: var(--gold-dark); font-weight: 600; font-size: 1rem; margin-bottom: 6px; }
    .doctor-tagline { font-family: var(--font-accent); font-style: italic; color: var(--text-muted); font-size: 1.05rem; margin-bottom: 20px; }
    .doctor-desc { color: var(--text-mid); font-size: .93rem; line-height: 1.88; margin-bottom: 14px; }

    .qual-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 32px; }
    .qual-pill {
      display: inline-flex; align-items: center; gap: 6px; padding: 7px 16px;
      border-radius: 50px; font-size: .82rem; font-weight: 600;
      background: var(--gold-pale); color: var(--gold-deep); border: 1px solid var(--border);
      transition: var(--transition);
    }
    .qual-pill:hover { background: var(--gold); color: white; border-color: var(--gold); }
    .qual-pill.dk { background: linear-gradient(135deg, var(--dark), var(--dark-warm)); color: var(--gold-light); border-color: transparent; }
    .qual-pill.dk:hover { background: linear-gradient(135deg, var(--dark-warm), var(--brown)); }

    /* Doctor quick stats */
    .doc-stat-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
    .doc-stat-item {
      flex: 1; min-width: 100px; text-align: center;
      background: var(--cream); border-radius: var(--radius-md); padding: 20px 14px;
      border: 1px solid var(--border-light);
    }
    .doc-stat-item .dnum { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--gold-dark); line-height: 1; }
    .doc-stat-item .dlbl { font-size: .73rem; color: var(--text-muted); margin-top: 5px; line-height: 1.3; }

    /* =========================================
       QUALIFICATIONS TIMELINE
    ========================================= */
    .qual-timeline { background: var(--cream); }
    .timeline-wrap { position: relative; padding-left: 36px; }
    .timeline-wrap::before {
      content: ''; position: absolute; left: 12px; top: 8px; bottom: 8px;
      width: 2px; background: linear-gradient(180deg, var(--gold), var(--gold-glow), var(--gold-dark));
      border-radius: 2px;
    }
    .timeline-item { position: relative; margin-bottom: 28px; }
    .timeline-dot {
      position: absolute; left: -30px; top: 6px; width: 18px; height: 18px;
      border-radius: 50%; background: var(--gold); border: 3px solid var(--ivory);
      box-shadow: 0 0 0 3px rgba(212,170,106,.35);
    }
    .timeline-card {
      background: var(--ivory); border-radius: var(--radius-md); padding: 26px 28px;
      box-shadow: var(--shadow-sm); border: 1.5px solid var(--border-light);
      border-left: 4px solid var(--gold); transition: var(--transition);
    }
    .timeline-card:hover { box-shadow: var(--shadow-md); border-left-color: var(--gold-dark); transform: translateX(4px); }
    .timeline-card .year-tag {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--gold-pale); color: var(--gold-dark); padding: 3px 12px;
      border-radius: 50px; font-size: .72rem; font-weight: 700;
      letter-spacing: .8px; text-transform: uppercase; margin-bottom: 10px;
      border: 1px solid var(--border);
    }
    .timeline-card h5 { font-family: var(--font-display); font-size: 1.08rem; color: var(--dark-warm); margin-bottom: 8px; }
    .timeline-card p { font-size: .87rem; color: var(--text-muted); margin: 0; line-height: 1.75; }

    /* =========================================
       VISION & MISSION
    ========================================= */
    .vision-mission { background: var(--ivory); }
    .vm-card { border-radius: var(--radius-xl); padding: 48px 40px; height: 100%; position: relative; overflow: hidden; }
    .vm-card.vision { background: linear-gradient(145deg, var(--dark) 0%, var(--dark-mid) 60%, var(--dark-warm) 100%); }
    .vm-card.mission { background: linear-gradient(145deg, var(--gold-dark) 0%, var(--gold) 60%, var(--gold-mid) 100%); }
    .vm-card .vm-num { font-family: var(--font-display); font-size: 7rem; font-weight: 700; position: absolute; top: 16px; right: 24px; line-height: 1; opacity: .06; color: white; }
    .vm-icon-wrap {
      width: 64px; height: 64px; border-radius: 18px; margin-bottom: 24px;
      display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
    }
    .vm-card.vision .vm-icon-wrap { background: rgba(212,170,106,.18); color: var(--gold-light); }
    .vm-card.mission .vm-icon-wrap { background: rgba(255,255,255,.25); color: white; }
    .vm-card h3 { font-family: var(--font-display); font-size: 1.7rem; color: white; margin-bottom: 16px; font-weight: 700; }
    .vm-card p { color: rgba(255,255,255,.78); font-size: .95rem; line-height: 1.85; }
    .vm-card ul { margin-top: 16px; }
    .vm-card ul li {
      display: flex; align-items: flex-start; gap: 10px;
      color: rgba(255,255,255,.78); font-size: .88rem; margin-bottom: 10px; line-height: 1.55;
    }
    .vm-card ul li i { color: var(--gold-light); flex-shrink: 0; margin-top: 3px; font-size: .8rem; }
    .vm-card.mission ul li i { color: rgba(255,255,255,.9); }

    /* =========================================
       STANDARDS GRID
    ========================================= */
    .standards { background: var(--gold-pale); }
    .standard-card {
      background: var(--ivory); border-radius: var(--radius-lg); padding: 32px 24px;
      text-align: center; box-shadow: var(--shadow-sm); border: 1.5px solid var(--border-light);
      transition: var(--transition); height: 100%;
    }
    .standard-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: var(--gold); }
    .standard-icon-wrap {
      width: 68px; height: 68px; border-radius: 20px; margin: 0 auto 18px;
      display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
    }
    .standard-icon-wrap.g1 { background: var(--gold-pale); color: var(--gold-dark); }
    .standard-icon-wrap.g2 { background: var(--cream-mid); color: var(--brown); }
    .standard-icon-wrap.g3 { background: linear-gradient(135deg, var(--gold-pale), var(--cream-mid)); color: var(--gold-deep); }
    .standard-card h5 { font-family: var(--font-display); font-size: 1rem; color: var(--dark-warm); margin-bottom: 8px; font-weight: 600; }
    .standard-card p { font-size: .84rem; color: var(--text-muted); line-height: 1.65; }

    /* =========================================
       PHILOSOPHY / PATIENT CARE
    ========================================= */
    .philosophy { background: var(--ivory); }
    .check-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
    .check-icon {
      width: 30px; height: 30px; background: var(--gold-pale); border-radius: 8px;
      display: flex; align-items: center; justify-content: center; color: var(--gold-dark);
      font-size: .85rem; flex-shrink: 0; margin-top: 1px; border: 1px solid var(--border);
    }
    .check-item p { color: var(--text-mid); font-size: .92rem; margin: 0; line-height: 1.6; }

    .stat-box {
      border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; height: 100%;
      transition: var(--transition);
    }
    .stat-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .stat-box .snum { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; line-height: 1; }
    .stat-box .slbl { font-size: .82rem; color: var(--text-muted); margin-top: 6px; }
    .stat-box .sicon { font-size: 2rem; margin-bottom: 10px; }

    /* =========================================
       SPECIALTIES STRIP
    ========================================= */
    .specialties-strip { background: #45381e; padding: 72px 0; position: relative; overflow: hidden; }
    .specialties-strip::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(212,170,106,.12), transparent 60%); }
    .specialties-strip .container { position: relative; z-index: 2; }
    .specialty-card {
      border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
      background: rgba(255,245,220,.07); border: 1px solid rgba(212,170,106,.22);
      transition: var(--transition); height: 100%; cursor: default;
    }
    .specialty-card:hover { background: rgba(212,170,106,.14); border-color: rgba(212,170,106,.5); transform: translateY(-5px); }
    .specialty-icon {
      width: 68px; height: 68px; border-radius: 18px; margin: 0 auto 18px;
      display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
      background: rgba(212,170,106,.18); color: var(--gold-light);
    }
    .specialty-card h5 { font-family: var(--font-display); font-size: 1.05rem; color: white; margin-bottom: 10px; }
    .specialty-card p { font-size: .83rem; color: rgba(255,240,200,.58); line-height: 1.65; }
    .specialty-count { font-size: .72rem; font-weight: 700; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }

    /* =========================================
       FDA BANNER
    ========================================= */
    .fda-banner { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); padding: 34px 0; }
    .fda-inner { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
    .fda-ico { width: 58px; height: 58px; background: rgba(255,255,255,.22); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: white; }
    .fda-txt h4 { font-family: var(--font-display); color: white; font-size: 1.2rem; margin: 0; }
    .fda-txt p { color: rgba(255,255,255,.85); margin: 0; font-size: .87rem; }

    /* =========================================
       FOOTER
    ========================================= */
    footer { background: var(--dark); color: rgba(255,240,200,.65); }
    .footer-top { padding: 72px 0 48px; border-bottom: 1px solid rgba(212,170,106,.12); }
    .footer-brand .clinic-name { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold-light); margin-bottom: 8px; }
    .footer-brand p { font-size: .87rem; line-height: 1.8; color: rgba(255,240,200,.45); margin-bottom: 20px; }
    .footer-social { display: flex; gap: 10px; }
    .footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(212,170,106,.10); color: #c7a15f; display: flex; align-items: center; justify-content: center; font-size: .9rem; transition: var(--transition); border: 1px solid rgba(212,170,106,.18); }
    .footer-social a:hover { background: var(--gold-dark); color: white; }
    .footer-col h6 { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold-light); margin-bottom: 20px; font-weight: 600; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links li a { font-size: 1rem; color: rgba(255,240,200,.48); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
    .footer-links li a:hover { color: var(--gold-light); padding-left: 6px; }
    .footer-links li a i { font-size: .68rem; color: var(--gold); }
    .footer-ci { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
    .footer-ci i { color: var(--gold); margin-top: 3px; font-size: .9rem; flex-shrink: 0; }
    .footer-ci span { font-size: 1rem; color: #c7a15f; line-height: 1.6; }
    .footer-hours table td { padding: 4px 0; font-size: 1rem; color: #c7a15f; }
    .footer-hours table td:first-child { padding-right: 16px; font-weight: 500; color: rgba(255,240,200,.82); }
    .footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; border-top: 1px solid rgba(212,170,106,.10); }
    .footer-bottom p { font-size: 1rem; color: rgba(255,240,200,.28); margin: 0; }

    /* =========================================
       RESPONSIVE
    ========================================= */
    @media (max-width: 991px) {
      .nav-links { display: none; }
      .nav-toggle { display: flex !important; }
      section { padding: 72px 0; }
      .doc-photo-main, .doc-svg-wrap { height: 550px; }
      .doctor-name { font-size: 2rem; }
      .vm-card { padding: 36px 28px; }
    }
    @media (max-width: 767px) {
      section { padding: 56px 0; }
      .page-hero { padding: 80px 0 60px; }
      .page-hero h1 { font-size: 1.85rem; }
      .doc-photo-main, .doc-svg-wrap { height: 470px; }
      .doc-badge { position: static; margin-top: 16px; border-radius: var(--radius-md); }
      .doctor-name { font-size: 1.7rem; }
      .vm-card { padding: 28px 24px; margin-bottom: 0; }
      .vm-card h3 { font-size: 1.4rem; }
      .stat-box { padding: 24px 16px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .fda-inner { flex-direction: column; gap: 14px; }
      .doc-stat-row { gap: 10px; }
       .navbar-inner {
     padding: 0 12px !important;
 }
     .brand-text .clinic-name {
        font-size: 0.99rem;
    }
    .brand-logo {
    gap: 0px !important;
}
    }
    @media (max-width: 400px) {
      .page-hero h1 { font-size: 1.65rem; }
      .brand-text .clinic-name { font-size: .9rem; }
    }