    /* ─── CSS VARIABLES ────────────────────────────────────── */
    :root {
      --navy:       #0b1f3a;
      --navy-mid:   #163260;
      --blue:       #1858a8;
      --blue-light: #2b72c2;
      --sky:        #4e9cd6;
      --accent:     #e8f3ff;
      --gold:       #e0a030;
      --teal:       #0ea5a0;
      --white:      #ffffff;
      --off-white:  #f4f8fd;
      --text-dark:  #0d1e32;
      --text-mid:   #3a5170;
      --text-light: #6e90b4;
      --border:     #d0e2f4;
      --shadow-sm:  0 2px 16px rgba(11,31,58,.08);
      --shadow-md:  0 8px 36px rgba(11,31,58,.14);
      --shadow-lg:  0 24px 64px rgba(11,31,58,.20);
      --radius:     12px;
      --radius-lg:  20px;
      --transition: .28s cubic-bezier(.4,0,.2,1);
    }

    /* ─── RESET ────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Helvetica Neue', Arial, sans-serif;
      background: var(--white);
      color: var(--text-dark);
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }

    /* ─── UTILITY ──────────────────────────────────────────── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--blue);
      background: var(--accent);
      padding: .35rem 1rem;
      border-radius: 50px;
      margin-bottom: 1rem;
      border: 1px solid rgba(24,88,168,.15);
    }
    .section-tag::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--blue);
      opacity: .6;
    }
    .section-title {
      font-size: clamp(1.75rem, 3.5vw, 2.7rem);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.18;
      margin-bottom: .8rem;
      letter-spacing: -.01em;
    }
    .section-title-accent {
      display: inline-block;
      position: relative;
    }
    .section-title-accent::after {
      content: '';
      position: absolute;
      bottom: -6px; left: 0;
      width: 50%; height: 3px;
      background: linear-gradient(90deg, var(--gold), transparent);
      border-radius: 2px;
    }
    .section-sub {
      font-size: 1rem;
      color: var(--text-mid);
      max-width: 560px;
      line-height: 1.7;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: var(--blue);
      color: var(--white);
      padding: .85rem 2rem;
      border-radius: 50px;
      font-size: .9rem;
      font-weight: 700;
      letter-spacing: .03em;
      transition: var(--transition);
      box-shadow: 0 4px 16px rgba(30,95,168,.35);
    }
    .btn-primary:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,95,168,.4); }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: transparent;
      color: var(--white);
      padding: .85rem 2rem;
      border-radius: 50px;
      border: 2px solid rgba(255,255,255,.5);
      font-size: .9rem;
      font-weight: 600;
      transition: var(--transition);
    }
    .btn-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

    /* Hero action buttons — emergency / book / directions */
    .btn-emergency {
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      background: linear-gradient(135deg, #e5484d, #c62a31);
      color: var(--white);
      padding: .85rem 1.6rem;
      border-radius: 10px;
      font-size: .92rem;
      font-weight: 700;
      letter-spacing: .02em;
      transition: var(--transition);
      box-shadow: 0 6px 20px rgba(220,50,60,.4);
    }
    .btn-emergency:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(220,50,60,.55); background: linear-gradient(135deg, #ef5459, #d3343b); }
    .btn-emergency svg { width: 17px; height: 17px; flex-shrink: 0; }

    .btn-book {
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      background: linear-gradient(135deg, #17b8dd, #0e83c4);
      color: var(--white);
      padding: .85rem 1.6rem;
      border-radius: 10px;
      font-size: .92rem;
      font-weight: 700;
      letter-spacing: .02em;
      transition: var(--transition);
      box-shadow: 0 6px 20px rgba(20,150,200,.4);
    }
    .btn-book:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(20,150,200,.55); background: linear-gradient(135deg, #25c4e8, #1690d2); }
    .btn-book svg { width: 17px; height: 17px; flex-shrink: 0; }

    .btn-directions {
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      background: rgba(255,255,255,.04);
      color: #bfe0ff;
      padding: .85rem 1.6rem;
      border-radius: 10px;
      border: 1.5px solid rgba(160,200,255,.45);
      font-size: .92rem;
      font-weight: 600;
      transition: var(--transition);
    }
    .btn-directions:hover { background: rgba(255,255,255,.12); border-color: #bfe0ff; color: var(--white); }

    /* ─── SCROLL ANIMATIONS ────────────────────────────────── */
    .fade-up { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* ─── TOP BAR ──────────────────────────────────────────── */
    .topbar {
      background: var(--navy);
      color: rgba(255,255,255,.85);

      font-size: .84rem;
      padding: .65rem 0;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
    .topbar-info { display: flex; gap: 1.5rem; flex-wrap: wrap; }
    .topbar-info span { display: flex; align-items: center; gap: .4rem; }
    .topbar-info svg { width: 14px; height: 14px; fill: var(--sky); flex-shrink: 0; }
    .topbar-social { display: flex; gap: .75rem; }
    .topbar-social a {
      width: 28px; height: 28px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.2);
      display: flex; align-items: center; justify-content: center;
      transition: var(--transition);
    }
    .topbar-social a:hover { background: var(--blue); border-color: var(--blue); }
    .topbar-social svg { width: 13px; height: 13px; fill: var(--white); }

    /* ─── HEADER / NAV ─────────────────────────────────────── */
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--white);
      box-shadow: var(--shadow-sm);
      transition: box-shadow var(--transition);
    }
    header.scrolled { box-shadow: var(--shadow-md); }
    nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }

    .logo-wrap { display: flex; align-items: center; text-decoration: none; }
    .header-logo-full {
      height: 52px;
      width: auto;
      max-width: 220px;
      object-fit: contain;
      display: block;
      transition: var(--transition);
    }
    .logo-wrap:hover .header-logo-full { opacity: .85; transform: scale(1.02); }
    @media (max-width: 600px) {
      .header-logo-full { height: 40px; max-width: 160px; }
    }
    @media (max-width: 360px) {
      .header-logo-full { height: 34px; max-width: 130px; }
    }

    .nav-links { display: flex; align-items: center; gap: .25rem; }
    .nav-links a {
      font-size: .87rem;
      font-weight: 600;
      color: var(--text-mid);
      padding: .5rem .9rem;
      border-radius: 6px;
      transition: var(--transition);
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute; bottom: 0; left: 50%; right: 50%;
      height: 2px; background: var(--blue); border-radius: 1px;
      transition: var(--transition);
    }
    .nav-links a:hover { color: var(--blue); }
    .nav-links a:hover::after { left: .9rem; right: .9rem; }
    .nav-links a.active { color: var(--blue); }
    .nav-links a.active::after { left: .9rem; right: .9rem; }

    .nav-cta {
      background: var(--blue);
      color: var(--white) !important;
      padding: .55rem 1.25rem !important;
      border-radius: 50px !important;
      box-shadow: 0 3px 12px rgba(30,95,168,.3);
    }
    .nav-cta:hover { background: var(--navy) !important; }
    .nav-cta::after { display: none !important; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      width: 32px;
      padding: 4px;
    }
    .hamburger span {
      display: block; height: 2px;
      background: var(--navy); border-radius: 2px;
      transition: var(--transition);
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-nav {
      display: none;
      flex-direction: column;
      background: var(--white);
      border-top: 1px solid var(--border);
      padding: 1rem 1.5rem 1.5rem;
      gap: .25rem;
      box-shadow: var(--shadow-md);
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {

      font-size: .95rem;
      font-weight: 600;
      color: var(--text-mid);
      padding: .65rem .5rem;
      border-bottom: 1px solid var(--border);
      transition: var(--transition);
    }
    .mobile-nav a:last-child { border-bottom: none; }
    .mobile-nav a:hover { color: var(--blue); padding-left: 1rem; }

    /* ─── HERO ─────────────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 88vh;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--blue) 100%);
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-bg-pattern {
      position: absolute; inset: 0;
      background-image:
        radial-gradient(circle at 20% 50%, rgba(91,155,213,.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30,95,168,.2) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(91,155,213,.1) 0%, transparent 35%);
      pointer-events: none;
    }
    .hero-grid {
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      padding: 5rem 0;
      width: 100%;
    }
    .hero-text { color: var(--white); }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.2);
      backdrop-filter: blur(10px);
      color: rgba(255,255,255,.9);

      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .15em;
      text-transform: uppercase;
      padding: .4rem 1rem;
      border-radius: 50px;
      margin-bottom: 1.5rem;
    }
    .hero-badge::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #4ade80;
      animation: pulse-green 2s infinite;
    }
    @keyframes pulse-green {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: .6; transform: scale(1.3); }
    }
    .hero-title {
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 1.25rem;
      color: var(--white);
    }
    .hero-title .highlight {
      color: var(--sky);
      position: relative;
      display: inline-block;
    }
    .hero-title .highlight::after {
      content: '';
      position: absolute; bottom: -4px; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--sky), transparent);
      border-radius: 2px;
    }
    .hero-desc {
      font-size: 1.05rem;
      color: rgba(255,255,255,.75);
      margin-bottom: 2rem;
      max-width: 480px;
      line-height: 1.7;
    }
    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
    .hero-stats {
      display: flex;
      gap: 2rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,.15);
    }
    .hero-stat { }
    .hero-stat strong {
      display: block;
      font-size: 1.9rem;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
      letter-spacing: -.02em;
    }
    .hero-stat span {
      font-size: .75rem;
      color: rgba(255,255,255,.55);
      letter-spacing: .04em;
      display: block;
      margin-top: .25rem;
    }

    /* Hero Visual Card */
    .hero-visual { position: relative; display: flex; justify-content: center; }
    .hero-card {
      background: var(--white);
      border: none;
      border-radius: var(--radius-lg);
      padding: 2rem;
      width: 100%;
      max-width: 420px;
      box-shadow: 0 24px 64px rgba(14,34,64,.35), 0 4px 16px rgba(14,34,64,.2);
    }
    .hero-card-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
      padding-bottom: 1.25rem;
      border-bottom: 1px solid var(--border);
    }
    .hero-card-icon {
      width: 56px; height: 56px;
      border-radius: 14px;
      background: var(--accent);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .hero-card-icon svg { width: 28px; height: 28px; fill: var(--blue); }
    .hero-card-title { color: var(--navy); font-size: 1.05rem; font-weight: 700; }
    .hero-card-sub { color: var(--text-light); font-size: .8rem; }
    .service-pills { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.5rem; }
    .pill {
      background: var(--accent);
      border: 1px solid var(--border);
      color: var(--blue);

      font-size: .75rem;
      font-weight: 600;
      padding: .35rem .85rem;
      border-radius: 50px;
      transition: var(--transition);
    }
    .pill:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
    .hero-timing {
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: .85rem 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .timing-text { color: var(--text-mid); font-size: .82rem; }
    .timing-text strong { color: var(--navy); }
    .timing-badge {
      background: #22c55e;
      color: var(--white);
      font-size: .72rem;
      font-weight: 700;

      padding: .25rem .7rem;
      border-radius: 50px;
      box-shadow: 0 2px 8px rgba(34,197,94,.35);
    }

    /* Floating decorative elements */
    .hero-deco {
      position: absolute;
      border-radius: 50%;
      opacity: .08;
      pointer-events: none;
    }
    .hero-deco-1 { width: 400px; height: 400px; background: var(--sky); top: -100px; right: -100px; }
    .hero-deco-2 { width: 200px; height: 200px; background: var(--blue-light); bottom: -50px; left: 5%; }

    /* ─── TRUST BAR ─────────────────────────────────────────── */
    .trust-bar {
      background: var(--navy);
      padding: 1.25rem 0;
      overflow: hidden;
    }
    .trust-inner {
      display: flex;
      gap: 3rem;
      align-items: center;
      flex-wrap: wrap;
      justify-content: center;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: .6rem;
      color: rgba(255,255,255,.7);
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .03em;
      white-space: nowrap;
    }
    .trust-item svg { width: 18px; height: 18px; fill: var(--sky); flex-shrink: 0; }

    /* ─── SERVICES ──────────────────────────────────────────── */
    .services { padding: 6rem 0; background: var(--off-white); }
    .services-header { text-align: center; margin-bottom: 3.5rem; }
    .services-header .section-sub { margin: 0 auto; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    .service-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 2rem 1.75rem;
      border: 1px solid var(--border);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--blue), var(--teal));
      opacity: 0;
      transition: var(--transition);
    }
    .service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: rgba(24,88,168,.12); }
    .service-card:hover::before { opacity: 1; }
    .service-icon {
      width: 58px; height: 58px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--blue) 0%, var(--navy-mid) 100%);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.25rem;
      transition: var(--transition);
      box-shadow: 0 6px 20px rgba(24,88,168,.25);
    }
    .service-card:hover .service-icon { transform: scale(1.1) rotate(-3deg); box-shadow: 0 8px 28px rgba(24,88,168,.35); }
    .service-icon svg { width: 28px; height: 28px; fill: var(--white); }
    .service-card h3 {
      font-size: 1.08rem; font-weight: 700;
      color: var(--navy); margin-bottom: .45rem;
      letter-spacing: -.01em;
    }
    .service-card p { font-size: .88rem; color: var(--text-mid); line-height: 1.65; }
    .service-list {
      list-style: none; padding: 0; margin: .75rem 0 0;
      display: flex; flex-wrap: wrap; gap: .35rem .45rem;
    }
    .service-list li {
      font-size: .75rem; color: var(--blue);
      background: var(--accent);
      border: 1px solid rgba(24,88,168,.15);
      border-radius: 50px;
      padding: .2rem .7rem;
      white-space: nowrap;
      text-transform: capitalize;
      font-weight: 500;
    }
    .service-link {
      display: inline-flex; align-items: center; gap: .4rem;
      color: var(--blue);
      font-size: .82rem; font-weight: 700;
      margin-top: 1rem;
      transition: var(--transition);
    }
    .service-link:hover { gap: .7rem; }
    .service-link svg { width: 14px; height: 14px; fill: currentColor; }

    /* ─── ABOUT ─────────────────────────────────────────────── */
    .about { padding: 6rem 0; background: var(--white); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .about-visual { position: relative; }
    .about-img-wrap {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .about-badge-card {
      position: absolute;
      bottom: -1.5rem;
      right: -1.5rem;
      background: var(--white);
      border-radius: var(--radius);
      padding: 1.25rem 1.5rem;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .badge-number {
      font-size: 2rem; font-weight: 800;
      color: var(--blue);
      line-height: 1;
      letter-spacing: -.02em;
    }
    .badge-label { font-size: .8rem; color: var(--text-mid); }
    .about-list { margin: 1.5rem 0; display: flex; flex-direction: column; gap: .85rem; }
    .about-list li {
      display: flex; align-items: flex-start; gap: .75rem;
      font-size: .95rem; color: var(--text-mid); line-height: 1.5;
    }
    .about-list li svg { width: 18px; height: 18px; fill: var(--blue); flex-shrink: 0; margin-top: 2px; }
    .about-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
    .about-tag {
      background: var(--accent);
      color: var(--blue);

      font-size: .75rem;
      font-weight: 700;
      padding: .3rem .85rem;
      border-radius: 50px;
      border: 1px solid var(--border);
    }

    /* ─── DOCTORS ───────────────────────────────────────────── */
    .doctors { padding: 6rem 0; background: var(--off-white); }
    .doctors-header { text-align: center; margin-bottom: 3.5rem; }
    .doctors-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 2rem;
    }
    .doctor-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      position: relative;
    }
    .doctor-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--blue), var(--teal));
      opacity: 0;
      transition: var(--transition);
    }
    .doctor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(24,88,168,.12); }
    .doctor-card:hover::after { opacity: 1; }
    .doctor-avatar {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--blue) 100%);
      display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
      position: relative;
      overflow: visible;
      padding-top: 2rem;
      padding-bottom: 0;
      height: auto;
    }
    .doctor-photo-wrap {
      width: 130px;
      height: 130px;
      border-radius: 50%;
      overflow: hidden;
      border: 4px solid var(--white);
      box-shadow: 0 4px 20px rgba(14,34,64,.25);
      position: relative;
      z-index: 2;
      margin-bottom: -1px;
      background: var(--navy-mid);
      flex-shrink: 0;
    }
    .doctor-photo-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
    }
    .doctor-avatar-bg-deco {
      position: absolute; inset: 0;
      background-image: radial-gradient(circle at 30% 60%, rgba(255,255,255,.06) 0%, transparent 55%),
                        radial-gradient(circle at 70% 30%, rgba(91,155,213,.12) 0%, transparent 45%);
      pointer-events: none;
    }
    .doctor-specialty-badge {
      position: absolute; top: 1rem; right: 1rem;
      background: rgba(255,255,255,.15);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,.25);
      color: var(--white);

      font-size: .68rem; font-weight: 700;
      padding: .28rem .75rem;
      border-radius: 50px;
      z-index: 3;
      letter-spacing: .04em;
    }
    .doctor-avatar-spacer {
      height: 2.5rem;
      width: 100%;
    }
    .doctor-body { padding: 1.5rem 1.75rem 1.75rem; text-align: center; }
    .doctor-name {
      font-size: 1.25rem; font-weight: 700;
      color: var(--navy);
      margin-bottom: .25rem;
      letter-spacing: -.01em;
    }
    .doctor-degree {
      font-size: .85rem; color: var(--blue);
      font-weight: 600;
      margin-bottom: 1rem;
    }
    .doctor-section-title {

      font-size: .7rem; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      color: var(--text-light); margin-bottom: .6rem; margin-top: 1rem;
    }
    .doctor-quals li {
      font-size: .85rem; color: var(--text-mid);
      padding: .3rem 0;
      border-bottom: 1px solid var(--border);
      display: flex; align-items: flex-start; gap: .5rem;
    }
    .doctor-quals li:last-child { border-bottom: none; }
    .doctor-quals li::before { content: '▸'; color: var(--blue); font-size: .7rem; flex-shrink: 0; margin-top: 3px; }

    /* ─── STATS ─────────────────────────────────────────────── */
    .stats-section {
      padding: 5rem 0;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--blue) 100%);
      position: relative;
      overflow: hidden;
    }
    .stats-section::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle at 30% 50%, rgba(91,155,213,.15) 0%, transparent 50%),
                        radial-gradient(circle at 70% 50%, rgba(255,255,255,.05) 0%, transparent 40%);
    }
    .stats-grid {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      text-align: center;
    }
    .stat-item { color: var(--white); }
    .stat-item {
      position: relative;
      padding-top: 1rem;
    }
    .stat-item::before {
      content: '';
      position: absolute;
      top: 0; left: 50%; transform: translateX(-50%);
      width: 32px; height: 3px;
      background: linear-gradient(90deg, var(--sky), var(--teal));
      border-radius: 2px;
    }
    .stat-number {
      font-size: clamp(2.4rem, 5vw, 3.4rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1;
      margin-bottom: .5rem;
      letter-spacing: -.02em;
    }
    .stat-number span { color: var(--sky); }
    .stat-desc {
      font-size: .82rem;
      color: rgba(255,255,255,.6);
      font-weight: 500;
      letter-spacing: .02em;
    }
    .stat-divider {
      width: 1px;
      background: rgba(255,255,255,.12);
      margin: auto;
      height: 80%;
      align-self: center;
    }

    /* ─── APPOINTMENT FORM ──────────────────────────────────── */
    .appointment { padding: 6rem 0; background: var(--white); }
    .appointment-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 4rem;
      align-items: start;
    }
    .appointment-info { }
    .appointment-info .section-sub { margin-bottom: 2rem; }
    .contact-item {
      display: flex; align-items: flex-start; gap: 1rem;
      margin-bottom: 1.5rem;
    }
    .contact-icon {
      width: 46px; height: 46px;
      border-radius: 12px;
      background: var(--accent);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .contact-icon svg { width: 20px; height: 20px; fill: var(--blue); }
    .contact-text strong {
      display: block;

      font-size: .8rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .08em;
      color: var(--text-light); margin-bottom: .2rem;
    }
    .contact-text span { font-size: .95rem; color: var(--text-dark); }
    .map-embed {
      border-radius: var(--radius);
      overflow: hidden;
      margin-top: 2rem;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      height: 260px;
      background: var(--off-white);
      display: flex; align-items: center; justify-content: center;
    }
    .map-placeholder {
      text-align: center;
      color: var(--text-light);

      font-size: .85rem;
    }
    .map-placeholder svg { width: 36px; height: 36px; fill: var(--text-light); margin: 0 auto .5rem; }

    /* Form */
    .form-card {
      background: var(--off-white);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      border: 1px solid var(--border);
    }
    .form-title {

      font-size: 1.2rem; font-weight: 700;
      color: var(--navy); margin-bottom: 1.5rem;
    }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: .4rem; }
    .form-group.full { grid-column: 1 / -1; }
    .form-group label {

      font-size: .78rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .06em;
      color: var(--text-mid);
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: .75rem 1rem;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Arial, sans-serif;
      font-size: .92rem;
      color: var(--text-dark);
      background: var(--white);
      transition: var(--transition);
      appearance: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(30,95,168,.1);
    }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%233a5070' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .75rem center; background-size: 20px; padding-right: 2.5rem; }
    .form-submit {
      width: 100%;
      margin-top: 1.25rem;
      padding: .95rem;
      background: linear-gradient(135deg, var(--blue), var(--navy-mid));
      color: var(--white);

      font-size: 1rem; font-weight: 700;
      letter-spacing: .04em;
      border-radius: 10px;
      transition: var(--transition);
      box-shadow: 0 4px 16px rgba(30,95,168,.3);
    }
    .form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,95,168,.4); }

    /* Form Success */
    .form-success {
      display: none;
      text-align: center;
      padding: 2rem;
    }
    .form-success.show { display: block; }
    .form-success svg { width: 60px; height: 60px; fill: #22c55e; margin: 0 auto 1rem; }
    .form-success h3 { color: var(--navy); margin-bottom: .5rem; font-weight: 700; }
    .form-success p { color: var(--text-mid); font-size: .95rem; }

    /* ─── TESTIMONIALS ──────────────────────────────────────── */
    .testimonials { padding: 6rem 0; background: var(--navy); }
    .testimonials-header { text-align: center; margin-bottom: 2rem; }
    .testimonials-header .section-tag { color: var(--sky); background: rgba(78,156,214,.12); border-color: rgba(78,156,214,.2); }
    .testimonials-header .section-tag::before { background: var(--sky); }
    .testimonials-header .section-title { color: var(--white); }
    .testimonials-header .section-sub { color: rgba(255,255,255,.6); }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }
    .testimonial-card {
      background: rgba(255,255,255,.06);
      backdrop-filter: blur(10px);
      border-radius: var(--radius-lg);
      padding: 2rem;
      border: 1px solid rgba(255,255,255,.1);
      transition: var(--transition);
      position: relative;
    }
    .testimonial-card::before {
      content: '\201C';
      position: absolute;
      top: 1.25rem; right: 1.75rem;
      font-size: 4rem;
      line-height: 1;
      color: rgba(78,156,214,.25);
      font-family: Georgia, serif;
      font-weight: 700;
    }
    .testimonial-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); border-color: rgba(255,255,255,.18); }
    .stars { color: var(--gold); font-size: 1rem; margin-bottom: .9rem; letter-spacing: .08em; }
    .testimonial-text {
      font-size: .93rem;
      color: rgba(255,255,255,.78);
      line-height: 1.75;
      font-style: italic;
      margin-bottom: 1.5rem;
    }
    .testimonial-author { display: flex; align-items: center; gap: .75rem; }
    .author-avatar {
      width: 46px; height: 46px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blue), var(--teal));
      display: flex; align-items: center; justify-content: center;
      color: var(--white);
      font-size: 1rem; font-weight: 700;
      flex-shrink: 0;
      box-shadow: 0 3px 12px rgba(0,0,0,.25);
    }
    .author-name {
      font-size: .9rem; font-weight: 700; color: var(--white);
    }
    .author-location { font-size: .78rem; color: rgba(255,255,255,.5); }

    /* ─── FOOTER ────────────────────────────────────────────── */
    footer {
      background: var(--navy);
      color: rgba(255,255,255,.75);
      padding: 4rem 0 0;
      border-top: 3px solid transparent;
      background-image: linear-gradient(var(--navy), var(--navy)), linear-gradient(90deg, var(--blue), var(--teal));
      background-origin: border-box;
      background-clip: padding-box, border-box;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1.5fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }
    .footer-brand { }
    .footer-logo { margin-bottom: 1.25rem; }
    .footer-logo-img {
      height: 72px;
      width: auto;
      object-fit: contain;
      display: block;
      /* logo-white.png is white on black bg — invert the black bg to transparent */
      mix-blend-mode: screen;
      opacity: .92;
      transition: var(--transition);
    }
    .footer-logo-img:hover { opacity: 1; }
    .footer-about { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.6); margin-bottom: 1.5rem; }
    .footer-socials { display: flex; gap: .6rem; }
    .footer-socials a {
      width: 36px; height: 36px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.15);
      display: flex; align-items: center; justify-content: center;
      transition: var(--transition);
    }
    .footer-socials a:hover { background: var(--blue); border-color: var(--blue); }
    .footer-socials svg { width: 16px; height: 16px; fill: rgba(255,255,255,.7); }
    .footer-col h4 {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
      font-size: .75rem; font-weight: 700;
      letter-spacing: .14em; text-transform: uppercase;
      color: var(--white); margin-bottom: 1.25rem;
      padding-bottom: .75rem;
      position: relative;
    }
    .footer-col h4::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 28px; height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--sky));
      border-radius: 2px;
    }
    .footer-col { text-align: left; }
    .footer-links { display: flex; flex-direction: column; gap: .55rem; align-items: flex-start; }
    .footer-links a {
      font-size: .88rem;
      color: rgba(255,255,255,.6);
      transition: var(--transition);
      display: flex; align-items: center; gap: .4rem;
    }
    .footer-links a::before { content: '›'; color: var(--sky); font-size: 1rem; }
    .footer-links a:hover { color: var(--white); padding-left: .35rem; }
    .footer-contact-list { display: flex; flex-direction: column; gap: .75rem; }
    .footer-contact-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.5; }
    .footer-contact-list svg { width: 16px; height: 16px; fill: var(--sky); flex-shrink: 0; margin-top: 2px; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 1.25rem 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: .5rem;
    }
    .footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.38); }
    .footer-bottom-links { display: flex; gap: 1.5rem; }
    .footer-bottom-links a { font-size: .78rem; color: rgba(255,255,255,.38); transition: var(--transition); }
    .footer-bottom-links a:hover { color: var(--sky); }

    /* ─── BACK TO TOP ───────────────────────────────────────── */
    .back-to-top {
      position: fixed;
      bottom: 2rem; right: 2rem;
      width: 46px; height: 46px;
      background: var(--blue);
      color: var(--white);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(30,95,168,.4);
      opacity: 0; pointer-events: none;
      transition: var(--transition);
      z-index: 900;
    }
    .back-to-top.show { opacity: 1; pointer-events: auto; }
    .back-to-top:hover { background: var(--navy); transform: translateY(-3px); }
    .back-to-top svg { width: 20px; height: 20px; fill: var(--white); }

    /* ─── RESPONSIVE ────────────────────────────────────────── */
    @media (max-width: 900px) {
      .hero-content { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
      .hero-stats { gap: 1.25rem; }
      .about-grid { grid-template-columns: 1fr; }
      .about-visual { display: none; }
      .appointment-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-divider { display: none; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .hero { min-height: auto; }
      .hero-content { padding: 3rem 0; }
      .hero-stats { flex-wrap: wrap; gap: 1rem; }
      .hero-btns { flex-direction: column; align-items: flex-start; }
      .topbar-info { flex-direction: column; gap: .3rem; }
    }
    @media (max-width: 600px) {
      .footer-grid { grid-template-columns: 1fr; }
      .form-grid { grid-template-columns: 1fr; }
      .form-group.full { grid-column: 1; }
      .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    }
    @media (max-width: 400px) {
      .stats-grid { grid-template-columns: 1fr; }
    }

    /* ─── ANNOUNCEMENT BANNER ──────────────────────────────── */
    .announcement {
      background: linear-gradient(90deg, var(--blue), var(--sky));
      color: var(--white);
      text-align: center;
      padding: .55rem 1rem;

      font-size: .82rem;
      font-weight: 600;
      position: relative;
    }
    .announcement a { color: var(--white); text-decoration: underline; }
    .announcement .close-ann {
      position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
      cursor: pointer; opacity: .8; font-size: 1.1rem;
    }

    /* ─── SECTION DIVIDERS ──────────────────────────────────── */
    .wave-divider { overflow: hidden; line-height: 0; }
    .wave-divider svg { display: block; width: 100%; }
    /* ─── CAROUSEL ──────────────────────────────────────────── */
    .carousel-section {
      padding: 5rem 0 4rem;
      background: var(--white);
    }
    .carousel-header {
      text-align: center;
      margin-bottom: 2.5rem;
    }
    .carousel-header .section-sub { margin: 0 auto; }

    .carousel-viewport {
      position: relative;
      overflow: hidden;
      width: 100%;
      background: var(--navy);
      /* Slight rounded corners on desktop, full-bleed on mobile */
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      margin-bottom: 2.5rem;
      /* height is driven by the images' aspect ratio */
    }

    .carousel-track {
      display: flex;
      transition: transform .6s cubic-bezier(.77,0,.175,1);
      will-change: transform;
    }

    .carousel-slide {
      min-width: 100%;
      position: relative;
      overflow: hidden;
    }

    .carousel-img {
      width: 100%;
      height: clamp(280px, 55vw, 620px);
      object-fit: cover;
      object-position: center top;
      display: block;
      /* dark overlay via mix-blend so caption is always legible */
      filter: brightness(.88);
      transition: transform 8s ease, filter .6s ease;
    }
    /* Ken-Burns zoom on active slide */
    .carousel-slide.is-active .carousel-img {
      transform: scale(1.04);
      filter: brightness(.82);
    }

    /* Caption overlay */
    .carousel-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(10,25,50,.92) 0%, rgba(10,25,50,.5) 60%, transparent 100%);
      padding: 3rem 2.5rem 2rem;
    }
    .carousel-caption-inner { max-width: 680px; }
    .carousel-cap-tag {
      display: inline-block;

      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--sky);
      background: rgba(91,155,213,.15);
      border: 1px solid rgba(91,155,213,.3);
      padding: .25rem .8rem;
      border-radius: 50px;
      margin-bottom: .65rem;
    }
    .carousel-cap-title {
      font-size: clamp(1.2rem, 3vw, 2rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: .5rem;

    }
    .carousel-cap-desc {
      font-size: .88rem;
      color: rgba(255,255,255,.75);
      line-height: 1.6;
      max-width: 520px;
    }

    /* Prev / Next buttons */
    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px; height: 48px;
      border-radius: 50%;
      background: rgba(255,255,255,.12);
      backdrop-filter: blur(8px);
      border: 1.5px solid rgba(255,255,255,.25);
      color: var(--white);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: var(--transition);
      z-index: 10;
    }
    .carousel-btn:hover {
      background: var(--blue);
      border-color: var(--blue);
      transform: translateY(-50%) scale(1.08);
    }
    .carousel-btn svg { width: 22px; height: 22px; }
    .carousel-prev { left: 1.25rem; }
    .carousel-next { right: 1.25rem; }

    /* Dot indicators */
    .carousel-dots {
      position: absolute;
      bottom: 1.25rem;
      right: 1.5rem;
      display: flex;
      gap: .5rem;
      z-index: 10;
    }
    .carousel-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,.35);
      border: none;
      cursor: pointer;
      transition: var(--transition);
      padding: 0;
    }
    .carousel-dot.active {
      background: var(--white);
      width: 24px;
      border-radius: 4px;
    }

    /* Pause/Play button */
    .carousel-pause {
      position: absolute;
      bottom: 1.1rem;
      left: 1.25rem;
      width: 32px; height: 32px;
      border-radius: 50%;
      background: rgba(255,255,255,.12);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,.2);
      color: var(--white);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: var(--transition);
      z-index: 10;
    }
    .carousel-pause:hover { background: rgba(255,255,255,.25); }
    .carousel-pause svg { width: 16px; height: 16px; }

    /* Swipe hint on mobile */
    @media (max-width: 600px) {
      .carousel-viewport { border-radius: 0; margin-left: -1.5rem; margin-right: -1.5rem; }
      .carousel-btn { display: none; }
      .carousel-cap-desc { display: none; }
      .carousel-caption { padding: 2rem 1.25rem 1.5rem; }
    }

    /* Facility pills */
    .facility-pills {
      display: flex;
      flex-wrap: wrap;
      gap: .6rem;
      justify-content: center;
    }
    .facility-pill {
      background: var(--white);
      border: 1.5px solid var(--border);
      color: var(--text-mid);

      font-size: .8rem;
      font-weight: 600;
      padding: .45rem 1rem;
      border-radius: 50px;
      transition: var(--transition);
      cursor: default;
      box-shadow: var(--shadow-sm);
    }
    .facility-pill:hover {
      background: var(--accent);
      border-color: var(--blue);
      color: var(--blue);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(30,95,168,.12);
    }

    /* ─── CAROUSEL ──────────────────────────────────────────── */
    .btn-call {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: #22c55e;
      color: var(--white);
      padding: .85rem 1.75rem;
      border-radius: 50px;

      font-size: .9rem;
      font-weight: 700;
      letter-spacing: .04em;
      transition: var(--transition);
      box-shadow: 0 4px 16px rgba(34,197,94,.35);
      position: relative;
      overflow: hidden;
    }
    .btn-call::before {
      content: '';
      position: absolute; inset: 0;
      background: rgba(255,255,255,.15);
      border-radius: inherit;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s ease;
    }
    .btn-call:hover::before { transform: scaleX(1); }
    .btn-call:hover { background: #16a34a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(34,197,94,.4); }

    /* Floating call button (mobile sticky) */
    .floating-call {
      display: none;
      position: fixed;
      bottom: 5.5rem;
      right: 1.5rem;
      z-index: 901;
      background: #22c55e;
      color: var(--white);
      width: 54px; height: 54px;
      border-radius: 50%;
      align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(34,197,94,.5);
      transition: var(--transition);
      animation: ring-pulse 2.5s infinite;
    }
    .floating-call svg { width: 24px; height: 24px; fill: var(--white); }
    .floating-call:hover { transform: scale(1.1); }
    @keyframes ring-pulse {
      0%, 100% { box-shadow: 0 4px 20px rgba(34,197,94,.5); }
      50% { box-shadow: 0 4px 32px rgba(34,197,94,.8), 0 0 0 8px rgba(34,197,94,.15); }
    }
    @media (max-width: 768px) {
      .floating-call { display: flex; }
    }

    /* Contact call link */
    .contact-call-link {
      display: inline-flex;
      align-items: center;
      color: var(--blue);
      font-weight: 700;
      font-size: 1.05rem;

      text-decoration: none;
      transition: var(--transition);
    }
    .contact-call-link:hover { color: var(--navy); text-decoration: underline; }

    /* ─── SUCCESS RATE BANNER ───────────────────────────────── */
    .success-banner {
      background: linear-gradient(135deg, var(--navy) 0%, #0d2d5e 50%, var(--navy-mid) 100%);
      padding: 4.5rem 0;
      position: relative;
      overflow: hidden;
    }
    .success-banner::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        radial-gradient(circle at 10% 50%, rgba(34,197,94,.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 30%, rgba(91,155,213,.1) 0%, transparent 40%);
      pointer-events: none;
    }
    .success-banner::after {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, #22c55e, var(--sky), #22c55e);
    }
    .success-inner {
      position: relative;
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 2.5rem;
      align-items: center;
    }
    .success-icon-wrap {
      width: 72px; height: 72px;
      border-radius: 18px;
      background: rgba(34,197,94,.15);
      border: 1px solid rgba(34,197,94,.3);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      color: #4ade80;
    }
    .success-icon-wrap svg { width: 38px; height: 38px; }
    .success-text-block { }
    .success-label {

      font-size: .7rem; font-weight: 700;
      letter-spacing: .18em; text-transform: uppercase;
      color: #4ade80;
      margin-bottom: .5rem;
    }
    .success-headline {
      font-size: clamp(1.3rem, 2.5vw, 1.75rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: .65rem;
    }
    .success-headline span {
      color: #4ade80;
      font-style: italic;
    }
    .success-desc {
      font-size: .88rem;
      color: rgba(255,255,255,.65);
      line-height: 1.7;
      max-width: 600px;
    }
    .success-metrics {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-shrink: 0;
    }
    .success-metric { text-align: center; }
    .success-metric-num {

      font-size: 2.2rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
      margin-bottom: .3rem;
    }
    .success-metric-num span { color: #4ade80; font-size: 1.4rem; }
    .success-metric-label {

      font-size: .72rem;
      color: rgba(255,255,255,.55);
      font-weight: 600;
      max-width: 90px;
      line-height: 1.3;
    }
    .success-metric-divider {
      width: 1px; height: 50px;
      background: rgba(255,255,255,.12);
    }
    @media (max-width: 1024px) {
      .success-inner { grid-template-columns: auto 1fr; }
      .success-metrics {
        grid-column: 1 / -1;
        justify-content: center;
        border-top: 1px solid rgba(255,255,255,.1);
        padding-top: 1.5rem;
      }
    }
    @media (max-width: 600px) {
      .success-inner { grid-template-columns: 1fr; text-align: center; }
      .success-icon-wrap { margin: 0 auto; }
      .success-desc { margin: 0 auto; }
    }

    /* ─── CUSTOM TAGLINES ───────────────────────────────────── */
    .hero-care-line {

      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255,255,255,.65);
      margin-bottom: 1.25rem;
      margin-top: -.25rem;
    }
    .appt-tagline {
      font-size: 1.45rem;
      font-weight: 700;
      font-style: italic;
      color: var(--blue);
      margin-bottom: .75rem;
      margin-top: -.2rem;
      line-height: 1.3;
    }
    .stats-motto {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      margin-top: 2.75rem;
      position: relative;
    }
    .stats-motto p {
      font-family: Georgia, 'Times New Roman', serif;
      font-size: clamp(1rem, 2.5vw, 1.3rem);
      font-style: italic;
      color: rgba(255,255,255,.85);
      white-space: nowrap;
      letter-spacing: .04em;
    }
    .stats-motto-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
      max-width: 200px;
    }
/* Footer logo — text-based to avoid JPEG background issues */
.footer-logo-text-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: #fff;
}
.footer-logo-icon {
  flex-shrink: 0;
}
.footer-logo-name {
  display: flex;
  flex-direction: column;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  color: #fff;
}
.footer-logo-name small {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .1em;
  opacity: .75;
  margin-top: .2rem;
}

/* ─── UI/UX ENHANCEMENTS ──────────────────────────────────── */

/* WhatsApp Floating Button */
.floating-whatsapp {
  position: fixed;
  bottom: 9.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
}

/* Service cards — accent border on hover */
.service-card {
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--blue), var(--gold)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
}

/* Testimonial card — quote accent */
.testimonial-card {
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-size: 5rem;
  line-height: 1;
  color: var(--blue);
  opacity: 0.1;
  font-family: Georgia, serif;
  pointer-events: none;
}

/* Appointment form — highlight active input */
.appointment input:focus,
.appointment select:focus,
.appointment textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,92,164,.15);
}

/* Doctor cards — subtle lift on hover */
.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Smooth section background transitions */
section { position: relative; }

/* Better stats section icon flair */
.stat-item {
  position: relative;
}
.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: rgba(255,255,255,.3);
  border-radius: 2px;
}

/* Form submit button pulse on focus */
.form-submit:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* Improved back-to-top visibility */
.back-to-top {
  bottom: 1.5rem;
  right: 1.5rem;
}

@media (max-width: 640px) {
  .floating-whatsapp {
    bottom: 9rem;
    right: 1rem;
    width: 50px;
    height: 50px;
  }
}
