  :root{
    --bg: #ffffff;
    --bg-soft: #f4f6fb;
    --ink: #12172d;
    --panel: #ffffff;
    --panel-alt: #f7f8fc;
    --panel-border: #e6e9f4;
    --grid: rgba(18,23,45,0.045);
    --grid-strong: rgba(18,23,45,0.08);
    --red: #ee1441;
    --red-deep: #c8102e;
    --blue: #0044e0;
    --blue-deep: #0033cc;
    --muted: #626b85;
    --mono-dim: #8189a3;
   --font-display: "Poppins", sans-serif;
    --font-body: "Inter", sans-serif;
    --font-mono: "Poppins", sans-serif;
    --container: 1180px;
  }

  *{ margin:0; padding:0; box-sizing:border-box; }
  html{ scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }
  body{
    background:var(--bg);
    color:var(--ink);
    font-family:var(--font-body);
    line-height:1.5;
    overflow-x:hidden;
  }
  img{ max-width:100%; display:block; }
  a{ color:inherit; text-decoration:none; }
  ul{ list-style:none; }
  button{ font-family:inherit; cursor:pointer; }
  section{ position:relative; }

  .wrap{ max-width:var(--container); margin:0 auto; padding:0 clamp(20px,5vw,48px); }

  ::selection{ background:var(--red); color:#fff; }

  a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
    outline:2px solid var(--blue);
    outline-offset:3px;
  }

  /* ---------- scroll progress: ECG trace ---------- */
  #progress-wrap{
    position:fixed; top:0; left:0; right:0; height:3px; z-index:100;
    background:var(--panel-border);
  }
  #progress-bar{
    height:100%; width:0%;
    background:linear-gradient(90deg, var(--red), var(--blue));
    transition:width 0.08s linear;
  }

  .grid-texture{
    background-image:
      linear-gradient(var(--grid) 1px, transparent 1px),
      linear-gradient(90deg, var(--grid) 1px, transparent 1px),
      linear-gradient(var(--grid-strong) 1px, transparent 1px),
      linear-gradient(90deg, var(--grid-strong) 1px, transparent 1px);
    background-size: 22px 22px, 22px 22px, 110px 110px, 110px 110px;
  }
/*  .grid-texture.process {
	    background-image: url('https://gracegpshospital.com/new/wp-content/uploads/2026/07/ecg-pattern-grace.webp');
    background-size: contain;
    background-position: center;
}
.grid-texture.process .pulse-divider svg{
	visibility:hidden;
}
.grid-texture.process .pulse-divider{
	    background-color: transparent;
} */
  /* ---------- emergency strip ---------- */
  .emergency-strip{
    position:relative; z-index:60;
    background: linear-gradient(90deg, var(--red-deep), var(--red));
    display:flex; align-items:center; justify-content:center; gap:10px;
    padding:8px 14px;
    font-family:var(--font-mono);
    font-size:12px;
    font-weight:600;
    letter-spacing:0.03em;
    text-align:center;
    flex-wrap:wrap;
    color:#fff;
  }
  .emergency-strip .tag{
    background:rgba(255,255,255,0.22); padding:2px 8px; border-radius:4px;
    font-weight:700; letter-spacing:0.08em;
  }
  .pulse-dot{
    width:7px; height:7px; border-radius:50%; background:#fff; flex:none;
    animation: blip 1.6s ease-in-out infinite;
	  display: inline-block;
	  margin-right: 5px;
  }
  @keyframes blip{
    0%{ box-shadow:0 0 0 0 rgba(255,255,255,0.6); }
    70%{ box-shadow:0 0 0 8px rgba(255,255,255,0); }
    100%{ box-shadow:0 0 0 0 rgba(255,255,255,0); }
  }
.emergency-cta .pulse-dot{
	    animation: blipp 1.6s ease-in-out infinite;
}
 @keyframes blipp{
    0%{ box-shadow:0 0 0 0 rgb(238 20 65); }
    70%{ box-shadow:0 0 0 8px rgba(255,255,255,0); }
    100%{ box-shadow:0 0 0 0 rgba(255,255,255,0); }
  }
  .emergency-strip a{ color:#fff; font-weight:700; border-bottom:1px solid rgba(255,255,255,0.6); }

  /* ---------- header ---------- */
  header{
    position:sticky; top:0; z-index:59;
    background:rgba(255,255,255,0.85);
    backdrop-filter:blur(14px);
    border-bottom:1px solid var(--panel-border);
  }
  .nav-row{
    display:flex; align-items:center; justify-content:space-between;
    padding:14px clamp(20px,5vw,48px);
  }
  .brand{ display:flex; align-items:center; gap:10px; }
  .brand .logo-chip{ display:flex; align-items:center; }
  .brand .logo-chip img{ height:62px; width:auto; }
  .brand-name{
    font-family:var(--font-display); font-weight:700; font-size:1.02rem;
    letter-spacing:-0.01em; line-height:1.1; color:var(--ink);
  }
  .brand-name small{
    display:block; font-family:var(--font-mono); font-weight:600;
    font-size:9.5px; letter-spacing:0.14em; color:var(--mono-dim); text-transform:uppercase;
    margin-top:2px;
  }

  nav.main-nav{ display:flex; align-items:center; gap:30px; }
  nav.main-nav a{
    font-size:0.88rem; color:var(--muted); font-weight:600;
    position:relative; padding:4px 0;
  }
  nav.main-nav a:hover{ color:var(--ink); }
  nav.main-nav a::after{
    content:""; position:absolute; left:0; bottom:0; width:0; height:2px;
    background:var(--blue); transition:width 0.25s ease;
  }
  nav.main-nav a:hover::after{ width:100%; }
/* Ensure the dropdown parent provides positioning context */
.main-nav .dropdown {
    position: relative;
    display: inline-block;
}

/* Hide the submenu by default and position it directly below the link */
.main-nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 999;
    border-radius: 4px;
    padding: 10px 0;
}

/* Style the links inside the submenu */
.main-nav .dropdown-menu a {
    color: #333333;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

/* Highlight submenu links on hover */
.main-nav .dropdown-menu a:hover {
    background-color: #f1f1f1;
}

/* Show the submenu when hovering over the parent element */
.main-nav .dropdown:hover .dropdown-menu {
    display: block;
}
  .nav-actions{ display:flex; align-items:center; gap:16px; }
  .nav-emergency{
    display:flex; align-items:center; gap:6px;
    font-family:var(--font-mono); font-size:11.5px; font-weight:600; color:var(--muted);
    white-space:nowrap;
  }
  .nav-emergency a{ color:var(--red); font-weight:700; }
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    padding:11px 22px; border-radius:999px; font-size:0.86rem; font-weight:700;
    border:1px solid transparent; white-space:nowrap;
    transition:transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  }
  .btn-primary{
    background:linear-gradient(90deg, var(--red), var(--blue)); color:#fff;
    box-shadow:0 8px 20px rgba(0,68,224,0.2);
	    border:0px solid transparent !important;
  }
  .btn-primary:hover{ transform:translateY(-2px); box-shadow:0 12px 26px rgba(0,68,224,0.3); }
  .btn-ghost{
    background:transparent; color:var(--ink); border-color:var(--panel-border);
  }
  .btn-ghost:hover{ border-color:#fff; color:var(--blue); border-width: 0px; }

  .hamburger{
    display:none; flex-direction:column; gap:4px; background:none; border:none; padding:8px;
  }
  .hamburger span{ width:22px; height:2px; background:var(--ink); border-radius:2px; }

  .mobile-nav{
    display:none;
    position:fixed; inset:0; z-index:80;
    background:rgba(255,255,255,0.98);
    backdrop-filter:blur(10px);
    flex-direction:column;
    padding:24px clamp(20px,6vw,48px);
  }
  .mobile-nav.open{ display:flex; }
  .mobile-nav-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:36px; }
  .mobile-nav a, .mobile-nav .mobile-dropdown button{ font-size:1.3rem; padding:14px 0; border-bottom:1px solid var(--panel-border); font-family:var(--font-display); font-weight:600; color:var(--ink); }
  .mobile-close{ background:none; border:none; color:var(--ink); font-size:1.6rem; line-height:1; padding:8px; }

  /* ---------- hero (keeps photographic treatment with dark scrim for legibility) ---------- */
  .hero{
    position:relative;
    min-height:92vh;
    display:flex; align-items:center;
    padding: 60px clamp(20px,5vw,48px) 90px;
    overflow:hidden;
  }
  .hero-photo{
    position:absolute; inset:0;
    background-size:cover; background-position:center 28%;
    transform:scale(1.05);
  }
  .hero-scrim{
    position:absolute; inset:0;
    background:
      linear-gradient(90deg, rgba(10,14,32,0.92) 8%, rgba(10,14,32,0.68) 45%, rgba(10,14,32,0.35) 75%, rgba(10,14,32,0.7) 100%),
      linear-gradient(180deg, rgba(10,14,32,0.25) 0%, transparent 25%, rgba(10,14,32,0.5) 100%);
  }
  .hero-inner{ position:relative; z-index:2; max-width:640px; }

  .eyebrow-pill{
    display:inline-flex; align-items:center; gap:8px;
    background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.28);
    color:#fff;
    padding:7px 15px; border-radius:999px;
    font-family:var(--font-mono); font-size:11.5px; font-weight:600; letter-spacing:0.1em; text-transform:uppercase;
    margin-bottom:22px;
    opacity:0; animation: rise 0.8s cubic-bezier(.2,.8,.2,1) 0.1s forwards;
  }
  .eyebrow-pill .dot{ width:6px; height:6px; border-radius:50%; background:#5b9bff; }

  @keyframes rise{ from{ opacity:0; transform:translateY(16px);} to{ opacity:1; transform:translateY(0);} }

  .hero h1{
    font-family:var(--font-display); font-weight:800; letter-spacing:-0.02em; line-height:1.04;
    font-size:clamp(2.4rem, 5.4vw, 4rem);
    color:#fff;
    opacity:0; animation: rise 0.8s cubic-bezier(.2,.8,.2,1) 0.22s forwards;
  }
  .hero h1 .accent-blue{ color:#6fa0ff; }

  .hero .subhead{
    margin-top:18px; max-width:52ch; color:rgba(255,255,255,0.82);
    font-size:clamp(1rem, 1.6vw, 1.12rem); line-height:1.65;
    opacity:0; animation: rise 0.8s cubic-bezier(.2,.8,.2,1) 0.34s forwards;
  }
  .hero .subhead strong{ color:#fff; font-weight:700; }

  .hero-cta{
    display:flex; gap:14px; margin-top:32px; flex-wrap:wrap;
    opacity:0; animation: rise 0.8s cubic-bezier(.2,.8,.2,1) 0.46s forwards;
  }
  .hero .hero-cta .btn-ghost{ color:#fff; border-color:rgba(255,255,255,0.4); }
  .hero .hero-cta .btn-ghost:hover, .btn-ghost:hover{ border-color:#ffffff; color:#fff; background:linear-gradient(90deg, var(--red), var(--blue)); }

  .hero-chips{
    position:relative; z-index:2;
    display:flex; gap:14px; flex-wrap:wrap;
    margin-top:46px;
    opacity:0; animation: rise 0.8s cubic-bezier(.2,.8,.2,1) 0.58s forwards;
  }
  .hero-chip{
    display:flex; align-items:center; gap:10px;
    background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.25);
    backdrop-filter:blur(10px);
    padding:12px 18px; border-radius:14px;
  }
  .hero-chip .num{ font-family:var(--font-display); font-weight:800; font-size:1.3rem; }
  .hero-chip .num.r{ color:#ff6b86; }
  .hero-chip .num.b{ color:#6fa0ff; }
  .hero-chip .lbl{ font-size:0.72rem; color:rgba(255,255,255,0.8); line-height:1.3; max-width:11ch; }

  /* ---------- reveal on scroll ---------- */
  .reveal{ opacity:0; transform:translateY(28px); transition:opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.8,.2,1); }
  .reveal.in{ opacity:1; transform:translateY(0); }
  .reveal-delay-1.in{ transition-delay:0.08s; }
  .reveal-delay-2.in{ transition-delay:0.16s; }
  .reveal-delay-3.in{ transition-delay:0.24s; }
  .reveal-delay-4.in{ transition-delay:0.32s; }

  /* ---------- section heading kit ---------- */
  .section-head{ max-width:640px; margin-bottom:48px; }
  .section-eyebrow{
    font-family:var(--font-mono); font-size:11.5px; font-weight:700; letter-spacing:0.16em; text-transform:uppercase;
    color:var(--mono-dim); margin-bottom:12px; display:flex; align-items:center; gap:9px;
  }
  .section-eyebrow .bar{ width:22px; height:2px; background:var(--red); }
  h2{
    font-family:var(--font-display); font-weight:700; letter-spacing:-0.015em;
    font-size:clamp(1.7rem, 3.2vw, 2.5rem); line-height:1.14;
    color:var(--ink);
	 text-transform: capitalize;
  }
  h2 .accent-red{ color:var(--red); }
  h2 .accent-blue{ color:var(--blue); }
  .section-desc{ color:var(--muted); margin-top:14px; font-size:1rem; line-height:1.7; }

  /* ---------- stats strip ---------- */
  .stats{ padding:52px 0; border-top:1px solid var(--panel-border); border-bottom:1px solid var(--panel-border); background:var(--bg-soft); }
  .stats-grid{
    display:grid; grid-template-columns:repeat(4,1fr); gap:20px; text-align:center;
  }
  .stat-num{
    font-family:var(--font-display); font-weight:800; font-size:clamp(1.8rem,3.6vw,2.6rem);
    background:linear-gradient(90deg, var(--red), var(--blue)); -webkit-background-clip:text; background-clip:text; color:transparent;
  }
  .stat-lbl{ font-size:0.82rem; color:var(--muted); margin-top:6px; letter-spacing:0.02em; font-weight:600; }

  /* ---------- about ---------- */
  .about{ padding:110px 0; }
  .about-grid{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:64px; align-items:center; }
  .about-grid-reverse{ grid-template-columns:1.15fr 0.85fr; }
  .about-photo{border-radius:20px; overflow:hidden; box-shadow:0 30px 70px rgba(18,23,45,0.16); }
  .about-photo img{ width:100%; height:100%; object-fit:cover; }
  .about-badge{
    position:absolute; left:18px; bottom:18px;
    background:rgba(255,255,255,0.9); backdrop-filter:blur(8px);
    border:1px solid var(--panel-border);
    border-radius:12px; padding:10px 16px;
    font-family:var(--font-mono); font-size:11px; font-weight:600; letter-spacing:0.06em; color:var(--muted);
    display:flex; align-items:center; gap:8px;
  }
  .about-badge .dot{ width:6px; height:6px; border-radius:50%; background:var(--blue); }

  .about-list{ margin-top:26px; display:grid; gap:14px; }
  .about-list li{ display:flex; align-items:flex-start; gap:12px; font-size:0.95rem; color:var(--muted); font-weight:500; }
  .about-list .ico{
    flex:none; width:26px; height:26px; border-radius:7px; display:flex; align-items:center; justify-content:center;
    background:rgba(238,20,65,0.1); color:var(--red); font-size:14px; margin-top:1px;
  }
  .about-list li:nth-child(even) .ico{ background:rgba(0,68,224,0.1); color:var(--blue); }

  /* ---------- pulse divider (signature) ---------- */
  .pulse-divider{  margin:0 auto; padding:10px 20px 8px;background-color: white; display:none; }
  .pulse-divider svg{ width:100%; height:auto; overflow:visible; display:block; }
  .draw{ stroke-dasharray:1000; stroke-dashoffset:1000; }
  .draw.in{ animation: draw-in 2s cubic-bezier(.3,.7,.2,1) forwards; }
  @keyframes draw-in{ to{ stroke-dashoffset:0; } }
  .blip-node{ opacity:0; animation:node-pulse 2.6s ease-in-out infinite; }
  @keyframes node-pulse{ 0%,100%{opacity:0.25;} 50%{opacity:1;} }

  /* ---------- specialities ---------- */
  .specialities{ padding:100px 0 110px; position:relative; overflow:hidden; }
  .spec-grid{
    display:grid; grid-template-columns:repeat(5, 1fr); gap:18px; margin-top:10px;
  }
  .spec-card{
    background:var(--panel); border:1px solid var(--panel-border); border-radius:16px;
    padding:11px; position:relative; overflow:hidden;
    box-shadow:0 4px 16px rgba(18,23,45,0.04);
    transition:transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .spec-card:hover{ transform:translateY(-6px); border-color:var(--blue); box-shadow:0 16px 34px rgba(18,23,45,0.1); }
  .spec-icon{
    width:36px; height:36px; border-radius:12px; display:flex; align-items:center; justify-content:center;
    font-size:20px; margin-bottom:16px;
  }
  .spec-card.r .spec-icon{ background:rgba(238,20,65,0.1); color:var(--red); }
  .spec-card.b .spec-icon{ background:rgba(0,68,224,0.1); color:var(--blue); }
  .spec-card h3{ font-family:0.98rem; font-weight:600; font-size:1.05rem; margin-bottom:8px; color:var(--ink); }
  .spec-card p{ font-size:0.85rem; color:var(--muted); line-height:1.6; }

  /* ---------- why choose us ---------- */
  .why{ padding:100px 0; background:var(--bg-soft); border-top:1px solid var(--panel-border); border-bottom:1px solid var(--panel-border); }
  .why-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; margin-top:16px; }
  .why-grid-triple{ grid-template-columns:repeat(3,1fr); }
  .why-card{ padding:8px 0; }
  .why-num{
    font-family:var(--font-mono); font-size:11px; font-weight:700; color:var(--mono-dim); letter-spacing:0.1em; margin-bottom:14px;
  }
  .why-card h3{ font-family:var(--font-display); font-size:1.08rem; font-weight:700; margin-bottom:10px; color:var(--ink); }
  .why-card p{ font-size:0.88rem; color:var(--muted); line-height:1.65; }
  .why-icon{
    width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center;
    margin-bottom:16px;
  }
  .why-icon svg{ width:22px; height:22px; }
  .why-card.r .why-icon{ background:rgba(238,20,65,0.1); color:var(--red); }
  .why-card.b .why-icon{ background:rgba(0,68,224,0.1); color:var(--blue); }

  /* ---------- process ---------- */
  .process{ padding:100px 0; }
  .process-row{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:16px; position:relative; }
  .process-step{ position:relative; padding:30px 24px; background:var(--panel); border:1px solid var(--panel-border); border-radius:16px; box-shadow:0 4px 16px rgba(18,23,45,0.04); }
  .process-step .step-tag{
    font-family:var(--font-mono); font-size:11px; font-weight:700; color:var(--red); letter-spacing:0.12em; margin-bottom:14px;
  }
  .process-step h3{ font-family:var(--font-display); font-weight:700; font-size:1.1rem; margin-bottom:10px; color:var(--ink); }
  .process-step p{ font-size:0.88rem; color:var(--muted); line-height:1.6; }
  .process-icon{
    width:46px; height:46px; border-radius:12px; display:flex; align-items:center; justify-content:center;
    margin-bottom:18px; background:linear-gradient(135deg, var(--red), var(--blue)); color:#fff;
  }
  .process-icon svg{ width:23px; height:23px; }

.faq.faq-page, .appointment.contact-page, .process.tpa, .page-testimonials{
	 background: var(--bg-soft);
}
.testimonials .greviews img{
    width: 100px;
    padding: 10px 0;
}
  /* ---------- doctors ---------- */
  .doctors{ padding:100px 0; background:var(--bg-soft); position:relative; overflow:hidden; }
  .doctor-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:16px; }
#doctors-teaser{
	background-color:#fff;
}
#doctors-teaser .doctor-grid{
	grid-template-columns:repeat(5,1fr);
}
#doctors-teaser .badge{
	display:none;
}
  .doctor-card{
    background:var(--panel); border:1px solid var(--panel-border); border-radius:16px; padding:26px 20px; text-align:center;
    box-shadow:0 4px 16px rgba(18,23,45,0.04);
    transition:transform 0.3s ease, box-shadow 0.3s ease;
  }
  .doctor-card:hover{ transform:translateY(-5px); box-shadow:0 16px 34px rgba(18,23,45,0.1); }
  .doctor-avatar{
    width:64px; height:64px; border-radius:50%; margin:0 auto 16px;
    display:flex; align-items:center; justify-content:center;
    font-family:var(--font-display); font-weight:800; font-size:1.2rem;
    background:linear-gradient(135deg, var(--red), var(--blue)); color:#fff;
  }
  .doctor-card h3{ font-family:var(--font-display); font-size:1rem; font-weight:700; color:var(--ink); }
  .doctor-card .role{ font-size:0.8rem; color:var(--muted); margin-top:4px; }
  .doctor-card .badge{
    display:inline-block; margin-top:12px; font-family:var(--font-mono); font-size:9.5px; font-weight:700;
    letter-spacing:0.1em; text-transform:uppercase; color:var(--mono-dim);
    border:1px solid var(--panel-border); border-radius:999px; padding:4px 10px;
  }

  /* ---------- doctor profile cards (2-up, detailed) ---------- */
  .doctor-profile-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:10px; }
  .doctor-profile-card{
    background:var(--panel); border:1px solid var(--panel-border); border-radius:18px;
    padding:30px 28px; box-shadow:0 4px 16px rgba(18,23,45,0.04);
  }
.doctors .section-cta{
	text-align: center;
    margin-top: 20px;
}
  .dp-top{ display:flex; align-items:center; gap:16px; margin-bottom:16px; }
  .dp-avatar{
    flex:none; width:64px; height:64px; border-radius:50%; display:flex; align-items:center; justify-content:center;
    background:linear-gradient(135deg, var(--red), var(--blue));
    box-shadow:0 6px 16px rgba(18,23,45,0.14);
  }
  .dp-avatar svg{ width:34px; height:34px; }
  .doctor-profile-card h3{ font-family:var(--font-display); font-weight:700; font-size:1.12rem; color:var(--ink); }
  .dp-role{ font-size:0.82rem; color:var(--muted); margin-top:3px; }
  .dp-bio{ font-size:0.9rem; color:var(--muted); line-height:1.7; margin-bottom:16px; }
  .dp-tags{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:0px; }
  .dp-tags span{
    font-size:0.74rem; font-weight:600; color:var(--blue); background:rgba(0,68,224,0.08);
    padding:5px 11px; border-radius:999px;
  }

  .team-note{
    max-width:680px; margin:44px auto 0; text-align:center;
    padding:28px 30px; border-radius:16px; background:var(--bg-soft); border:1px solid var(--panel-border);
  }
  .team-note p{ font-size:0.98rem; color:var(--ink); line-height:1.65; font-style:italic; }
  .team-note span{ display:block; margin-top:12px; font-size:0.8rem; color:var(--muted); font-weight:600; font-style:normal; }

  /* ---------- video testimonials (international patients) ---------- */
  .video-testimonials{ padding:100px 0 60px; }
  .video-testimonial-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:24px; margin-top:16px; }
  .video-testimonial-card{
    background:var(--panel); border:1px solid var(--panel-border); border-radius:16px;
    overflow:hidden; box-shadow:0 4px 16px rgba(18,23,45,0.04);
  }
  .vt-poster{
    position:relative; aspect-ratio:16/9; background:#0a0e20; cursor:pointer; overflow:hidden; border:none; padding:0; width:100%;
  }
  .vt-poster img{ width:100%; height:100%; object-fit:cover; display:block; }
  .vt-poster iframe, .vt-poster video{ width:100%; height:100%; display:block; border:0; }
  .vt-play-btn{
    position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
    width:56px; height:56px; border-radius:50%; border:none; pointer-events:none;
    background:rgba(255,255,255,0.92); color:var(--red); font-size:18px;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.25); transition:transform 0.2s ease;
  }
  .vt-poster:hover .vt-play-btn{ transform:translate(-50%,-50%) scale(1.08); }
  .vt-poster.is-playing .vt-play-btn{ display:none; }
  .vt-meta{ padding:18px 20px; }
  .vt-meta h3{ font-family:var(--font-display); font-size:1rem; font-weight:700; color:var(--ink); margin-bottom:8px; }
  .vt-country{
    display:inline-flex; align-items:center; gap:5px; font-family:var(--font-mono); font-size:11px; font-weight:700;
    letter-spacing:0.04em; text-transform:uppercase; color:var(--blue); background:rgba(0,68,224,0.08);
    padding:3px 10px; border-radius:999px; margin-bottom:10px;
  }
  .vt-quote{ font-size:0.86rem; color:var(--muted); line-height:1.6; font-style:italic; }

  /* ---------- testimonials marquee ---------- */
.testimonials{ padding:100px 0 110px;     }
  .testimonials .wrap{ margin-bottom:44px; }
  .marquee-wrap{
    overflow:hidden;
    mask-image:linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image:linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  }
  .marquee-track{
    display:flex; gap:20px; width:max-content;
    animation: marquee-scroll 38s linear infinite;
  }
  .marquee-wrap:hover .marquee-track{ animation-play-state:paused; }
  @keyframes marquee-scroll{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
  }
  .t-card{
    flex:none; width:320px; background:var(--panel); border:1px solid var(--panel-border); border-radius:16px;
    padding:22px 22px 20px; box-shadow:0 4px 16px rgba(18,23,45,0.04);
  }
  .t-avatar{
    width:34px; height:34px; border-radius:50%; display:flex; align-items:center; justify-content:center;
    background:var(--bg-soft); color:var(--mono-dim); margin-bottom:14px;
  }
  .t-avatar svg{ width:18px; height:18px; }
  .t-card p{ font-size:0.92rem; color:var(--ink); line-height:1.65; }
  .t-card span{ display:block; margin-top:14px; font-size:0.76rem; font-weight:700; color:var(--mono-dim); text-transform:uppercase; letter-spacing:0.06em; }

  /* ---------- gallery + lightbox ---------- */
  .gallery{ padding:100px 0 110px; background:var(--bg-soft); }
  .gallery-grid{
    display:grid; grid-template-columns:repeat(4, 1fr); grid-auto-rows:200px; gap:16px; margin-top:10px;
  }
  .gallery-item{
    position:relative; border:none; padding:0; border-radius:14px; overflow:hidden; cursor:zoom-in;
    grid-row:span 1;
  }
  .gallery-item.g-tall{ grid-row:span 2; }
  .gallery-item img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.5s ease; }
  .gallery-item:hover img{ transform:scale(1.06); }
  .g-label{
    position:absolute; left:12px; bottom:12px;
    background:rgba(10,14,32,0.55); backdrop-filter:blur(4px);
    color:#fff; font-size:0.74rem; font-weight:600; letter-spacing:0.03em;
    padding:5px 12px; border-radius:999px;
  }

  .lightbox{
    display:none; position:fixed; inset:0; z-index:90;
    background:rgba(6,9,20,0.92); backdrop-filter:blur(6px);
    align-items:center; justify-content:center; padding:32px;
  }
  .lightbox.open{ display:flex; }
  .lightbox figure{ max-width:min(90vw, 900px); }
  .lightbox img{ width:100%; max-height:78vh; object-fit:contain; border-radius:10px; }
  .lightbox figcaption{ color:rgba(255,255,255,0.82); text-align:center; margin-top:14px; font-size:0.9rem; }
  .lightbox-close{
    position:absolute; top:22px; right:26px; background:none; border:none; color:#fff;
    font-size:2rem; line-height:1; padding:8px;
  }
  .lightbox-prev, .lightbox-next{
    position:absolute; top:50%; transform:translateY(-50%);
    width:48px; height:48px; border-radius:999px; border:1px solid rgba(255,255,255,0.25);
    background:rgba(255,255,255,0.08); color:#fff; font-size:1.8rem; line-height:1;
    display:flex; align-items:center; justify-content:center; cursor:pointer;
  }
  .lightbox-prev:hover, .lightbox-next:hover{ background:rgba(255,255,255,0.18); }
  .lightbox-prev{ left:18px; }
  .lightbox-next{ right:18px; }
  @media (max-width: 640px){
    .lightbox-prev, .lightbox-next{ width:40px; height:40px; font-size:1.5rem; }
    .lightbox-prev{ left:8px; }
    .lightbox-next{ right:8px; }
	  #doctors-teaser .doctor-grid{
		      grid-template-columns: repeat(1, 1fr);
	  }
	  .footer-bottom{
		  padding-bottom: 70px; 
	  }
  }

  /* ---------- FAQ ---------- */
  .faq{ padding:100px 0 110px; }
  .faq-list{ max-width:760px; margin-top:10px; display:grid; gap:12px;     margin-inline: auto;}
  .faq-item{
    background:var(--panel); border:1px solid var(--panel-border); border-radius:14px;
    padding:6px 22px;
  }
  .faq-item summary{
    cursor:pointer; list-style:none; padding:18px 0; font-family:var(--font-display);
    font-weight:700; font-size:0.98rem; color:var(--ink);
    display:flex; align-items:center; justify-content:space-between; gap:16px;
  }
  .faq-item summary::-webkit-details-marker{ display:none; }
  .faq-item summary::after{
    content:"+"; flex:none; font-size:1.3rem; font-weight:400; color:var(--blue);
    transition:transform 0.25s ease;
  }
  .faq-item[open] summary::after{ transform:rotate(45deg); }
  .faq-item p{ font-size:0.9rem; color:var(--muted); line-height:1.7; padding-bottom:18px; margin-top:-6px; }

  /* ---------- shape dividers between sections ---------- */
  .shape-divider{
    position:relative; line-height:0; overflow:hidden;
    height:56px;
  }
  .shape-divider svg{ position:absolute; width:100%; height:100%; left:0; }
  .shape-divider.to-soft{ background:var(--bg); }
  .shape-divider.to-soft svg path{ fill:var(--bg-soft); }
  .shape-divider.to-white{ background:var(--bg-soft); }
  .shape-divider.to-white svg path{ fill:var(--bg); }
  .shape-divider.to-footer{ background:var(--bg); height:64px; }
  .shape-divider.to-footer svg path{ fill:#0d1224; }

  /* ---------- decorative background blobs ---------- */
  .bg-blob{
    position:absolute; border-radius:50%; filter:blur(70px); pointer-events:none; z-index:-1;
  }
  .bg-blob.red{ background:rgba(238,20,65,0.14); }
  .bg-blob.blue{ background:rgba(0,68,224,0.13); }

  /* ---------- appointment ---------- */
  .appointment{ padding:110px 0; position:relative; overflow:hidden; }
  .appt-grid{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:56px; align-items:start; }
  .appt-info-card{
    background:var(--panel); border:1px solid var(--panel-border); border-radius:18px; padding:32px 28px;
    box-shadow:0 4px 16px rgba(18,23,45,0.04);
  }
  .appt-info-card .row{ display:flex; gap:14px; padding:16px 0; border-bottom:1px solid var(--panel-border); }
  .appt-info-card .row:last-child{ border-bottom:none; }
  .appt-info-card .ico{
    flex:none; width:38px; height:38px; border-radius:10px; display:flex; align-items:center; justify-content:center;
    background:rgba(0,68,224,0.1); color:var(--blue); font-size:16px;
  }
  .appt-info-card .row:nth-child(odd) .ico{ background:rgba(238,20,65,0.1); color:var(--red); }
  .appt-info-card .row h4{ font-size:0.92rem; font-weight:700; margin-bottom:3px; color:var(--ink); }
  .appt-info-card .row p{ font-size:0.82rem; color:var(--muted); }
  .appt-info-card .row a{ color:var(--red); font-weight:700; }

  .appt-form{
    background:var(--panel); border:1px solid var(--panel-border); border-radius:18px; padding:36px 32px;
    box-shadow:0 4px 16px rgba(18,23,45,0.04);
  }
  .form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
  .form-field{ display:flex; flex-direction:column; gap:7px; margin-bottom:16px; }
  .form-field.full{ grid-column:1 / -1; }
  .form-field label{ font-size:0.78rem; color:var(--muted); font-weight:600; }
  .form-field input, .form-field select, .form-field textarea{
    background:var(--bg-soft); border:1px solid var(--panel-border); border-radius:10px;
    padding:12px 14px; color:var(--ink); font-family:var(--font-body); font-size:0.92rem;
    transition:border-color 0.2s ease, background 0.2s ease;
  }
  .form-field input::placeholder, .form-field textarea::placeholder{ color:#9aa1b8; }
  .form-field input:focus, .form-field select:focus, .form-field textarea:focus{
    outline:none; border-color:var(--blue); background:#fff;
  }
  .form-field select{ appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23626b85'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; }
  .form-note{ font-size:0.76rem; color:var(--mono-dim); margin-top:6px; font-family:var(--font-mono); }

  /* Contact Form 7 baseline -- keeps a pasted CF7 form on-brand when it's
     dropped into the .appt-form wrapper (homepage appointment form, Contact
     page form), whether the CF7 "Form" tab markup uses the form-grid/
     form-field divs above or plain <label>...[tag]...</label> wrapping with
     a .form-colm div around any two fields that should sit side by side. */
  .wpcf7-form label{
    display:flex; flex-direction:column; gap:7px; margin-bottom:16px;
    font-size:0.78rem; color:var(--muted); font-weight:600;
  }
  .wpcf7-form .form-colm p{ display:grid; grid-template-columns:1fr 1fr; gap:16px;    padding-bottom: 15px; }
  .wpcf7-form .form-colm label{ margin-bottom:0; }
  .wpcf7-form input[type="text"], .wpcf7-form input[type="email"], .wpcf7-form input[type="tel"],
  .wpcf7-form select, .wpcf7-form textarea, .wpcf7-form .wpcf7-number{
    background:var(--bg-soft); border:1px solid var(--panel-border); border-radius:10px;
    padding:12px 14px; color:var(--ink); font-family:var(--font-body); font-size:0.92rem; width:100%;
    font-weight:400;
  }
  .wpcf7-form input:focus, .wpcf7-form select:focus, .wpcf7-form textarea:focus{
    outline:none; border-color:var(--blue); background:#fff;
  }
  .wpcf7-form select{ appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23626b85'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; }
  .wpcf7-form input[type="submit"], .wpcf7-form button[type="submit"]{
    display:flex; align-items:center; justify-content:center; gap:8px; width:100%;
    padding:11px 22px; border-radius:999px; font-size:0.86rem; font-weight:700;
    border:1px solid transparent; white-space:nowrap; cursor:pointer;
    background:linear-gradient(90deg, var(--red), var(--blue)); color:#fff;
    box-shadow:0 8px 20px rgba(0,68,224,0.2);
    transition:transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  }
  .wpcf7-form input[type="submit"]:hover, .wpcf7-form button[type="submit"]:hover{
    transform:translateY(-2px); box-shadow:0 12px 26px rgba(0,68,224,0.3);
  }
  .wpcf7-spinner{ margin-left:10px; }
  .wpcf7-not-valid-tip{ color:var(--red); font-size:0.78rem; margin-top:4px; }
  .wpcf7-response-output{
    margin-top:16px; border-radius:10px; padding:12px 16px; font-size:0.85rem;
    border:1px solid var(--panel-border);
  }
  .wpcf7-mail-sent-ok{ border-color:var(--blue); color:var(--blue); }
  .wpcf7-validation-errors, .wpcf7-acceptance-missing{ border-color:var(--red); color:var(--red); }

  /* ---------- site-wide appointment modal (header "Book Appointment") ---------- */
  .appt-modal{
    display:none; position:fixed; inset:0; z-index:110;
    align-items:center; justify-content:center; padding:24px;
  }
  .appt-modal.open{ display:flex; }
  .appt-modal-backdrop{
    position:absolute; inset:0; background:rgba(6,9,20,0.6); backdrop-filter:blur(4px);
  }
  .appt-modal-panel{
    position:relative; background:var(--panel); border-radius:20px; padding:40px 36px;
    max-width:560px; width:100%; max-height:88vh; overflow-y:auto;
    box-shadow:0 30px 80px rgba(0,0,0,0.3);
  }
  .appt-modal-panel .appt-form{ margin-top:20px; padding:0; background:none; border:none; box-shadow:none; }
  .appt-modal-close{
    position:absolute; top:16px; right:16px; background:var(--bg-soft); border:1px solid var(--panel-border);
    width:36px; height:36px; border-radius:50%; font-size:1.3rem; line-height:1; color:var(--ink);
    display:flex; align-items:center; justify-content:center; cursor:pointer;
  }
  .appt-modal-close:hover{ background:var(--panel-border); }
  @media (max-width:560px){
    .appt-modal-panel{ padding:28px 22px; }
  }

  /* ---------- contact page: embedded map (full width) ---------- */
  .map-embed{
    position:relative; width:100%; height:420px; margin-top:64px;
    border-top:1px solid var(--panel-border); border-bottom:1px solid var(--panel-border);
  }
  .map-embed iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }

  /* ---------- emergency CTA banner ---------- */
  .emergency-cta{
    padding:70px 0; text-align:center;
    background:radial-gradient(ellipse 60% 100% at 50% 0%, rgba(238,20,65,0.08), transparent 70%), var(--bg-soft);
    border-top:1px solid var(--panel-border);
  }
  .emergency-cta h2{ margin-bottom:14px; }
  .emergency-cta p{ color:var(--muted); max-width:520px; margin:0 auto 28px; }
  .emergency-number{
    font-family:var(--font-display); font-weight:800; font-size:clamp(1.8rem,4vw,2.6rem);
    color:var(--red); display:inline-flex; align-items:center; gap:12px;
  }
  .emergency-number .pulse-dot{ background:var(--red); }

  /* ---------- footer ---------- */
  footer{
    position:relative; overflow:hidden;
    padding:72px 0 26px;
    background:linear-gradient(180deg, #0d1224, #090d1c);
    color:#c9cfe6;
  }
  .footer-glow{ position:absolute; border-radius:50%; filter:blur(90px); pointer-events:none; opacity:0.5; }
  .footer-glow.blue{ background:rgba(77,140,255,0.28); width:360px; height:360px; top:-140px; left:-80px; }
  .footer-glow.red{ background:rgba(255,45,77,0.22); width:320px; height:320px; bottom:-140px; right:-60px; }
  .footer-pulse-bg{ position:absolute; left:0; right:0; top:38%; width:100%; height:auto; opacity:0.14; pointer-events:none; }

  .footer-top-rule{
    height:2px; width:100%; max-width:var(--container); margin:0 auto 56px;
    background:linear-gradient(90deg, var(--red), var(--blue));
    opacity:0.8;
  }
#site-footer .appt-info-card{
	background: transparent; 
    border: 0px solid var(--panel-border);
    padding: 0;
}
#site-footer .appt-info-card p, #site-footer .appt-info-card h4{
	color: white;
}
  .footer-grid{ position:relative; z-index:1; display:grid; grid-template-columns:1.3fr 0.8fr 0.8fr 1fr; gap:40px; margin-bottom:48px; }
  .footer-brand .logo-chip{ display:inline-flex; margin-bottom:16px; background:#fff; border-radius:8px; padding:6px 10px; }
  .footer-brand .logo-chip img{ height:60px; }
  .footer-brand p{ font-size:0.86rem; color:#9aa3c9; line-height:1.7; max-width:32ch; }
  .footer-col h4{ font-family:var(--font-display); font-size:0.92rem; font-weight:700; margin-bottom:16px; color:#fff; }
  .footer-col ul{ display:grid; gap:10px; }
  .footer-col a{ font-size:0.86rem; color:#9aa3c9; font-weight:500; }
  .footer-col a:hover{ color:#fff; }
  .footer-bottom{
    position:relative; z-index:1;
    display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px;
    padding-top:24px; border-top:1px solid rgba(255,255,255,0.1);
    font-size:0.78rem; color:#7480ab; font-family:var(--font-mono); font-weight:600;
  }
  .back-to-top{
    display:inline-flex; align-items:center; justify-content:center;
    width:38px; height:38px; border-radius:50%;
    background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.18);
    color:#fff; transition:transform 0.2s ease, background 0.2s ease;
  }
  .back-to-top:hover{ transform:translateY(-3px); background:rgba(255,255,255,0.12); }
  .back-to-top svg{ width:16px; height:16px; }

  /* floating emergency button (mobile) */
  .float-emergency{
    position:fixed; right:18px; bottom:18px; z-index:70;
    background:linear-gradient(90deg, var(--red-deep), var(--red));
    color:#fff; border-radius:999px; padding:13px 20px;
    display:block; align-items:center; gap:8px; font-size:0.82rem; font-weight:700;
    box-shadow:0 10px 26px rgba(238,20,65,0.35);
  }

  /* ---------- testimonials page: masonry layout (vs. homepage marquee) ---------- */
  .testimonial-grid{
    column-count:3; column-gap:20px; margin-top:10px;
  }
  .testimonial-grid .t-card{
    width:auto; display:inline-block; break-inside:avoid; margin:0 0 20px;
  }

  /* ---------- TPA desk / cashless page: partner cards ---------- */
  .tpa-partners{ padding:100px 0 110px; }
  .tpa-partners.alt{ background:var(--bg-soft); border-top:1px solid var(--panel-border); }
  .tpa-partner-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:20px; margin-top:16px; }
  .tpa-partner-card{
    background:var(--panel); border:1px solid var(--panel-border); border-radius:16px;
    padding:24px 20px; text-align:center; box-shadow:0 4px 16px rgba(18,23,45,0.04);
  }
  .tpa-partner-card img{ max-width:100%; max-height:48px; margin:0 auto 14px; display:block; object-fit:contain; }
  .tpa-partner-card span{ font-family:var(--font-display); text-transform: capitalize; font-weight:600; font-size:0.9rem; color:var(--ink); }

/* Hide speciality cards when hidden */
#specialities .spec-card.is-hidden {
    display: none !important;
}

/* Hide TPA/Insurance/Corporates partner cards when hidden */
.tpa-partner-card.is-hidden {
    display: none !important;
}


/* Scrollbar Track & Thumb Styling */
.appt-modal-panel::-webkit-scrollbar {
  width: 8px;
}

.appt-modal-panel::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.appt-modal-panel::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.appt-modal-panel::-webkit-scrollbar-thumb:hover {
  background: #999;
}
  /* ---------- responsive ---------- */
  @media only screen and (max-width:980px){
    nav.main-nav{ display:none; }
    .hamburger{ display:flex; }
    .stats-grid{ grid-template-columns:repeat(2,1fr); gap:30px; }
    .about-grid{ grid-template-columns:1fr; }
    .spec-grid{ grid-template-columns:repeat(2,1fr); }
    .why-grid{ grid-template-columns:repeat(2,1fr); }
    .why-grid-triple{ grid-template-columns:1fr; }
    .process-row{ grid-template-columns:1fr; }
    .doctor-grid{ grid-template-columns:repeat(2,1fr); }
    .doctor-profile-grid{ grid-template-columns:1fr; }
    .appt-grid{ grid-template-columns:1fr; }
    .footer-grid{ grid-template-columns:1fr 1fr; }
    .float-emergency{ display:flex; }
    .gallery-grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:180px; }
    .tpa-partner-grid{ grid-template-columns:repeat(2,1fr); }
    .video-testimonial-grid{ grid-template-columns:repeat(2,1fr); }
    .testimonial-grid{ column-count:2; }
	  .grid-texture.process{
		      background-position: center 150px;
    background-repeat: no-repeat;
	  }
	  /* Mobile Dropdown Styling */
.mobile-dropdown {
    width: 100%;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 0;
    background: none;
    border: none;
    color: var(--ink);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
}

.mobile-dropdown-toggle .arrow {
    transition: transform 0.3s ease;
}

/* Hidden by default on mobile */
.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 15px; /* Indent child links */
    display: flex;
    flex-direction: column;
}

.mobile-dropdown-menu a {
    padding: 10px 0;
    font-size: 1rem;
    opacity: 0.9;
}

/* Expanded State */
.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 200px; /* Adjust if you add more specialties later */
    transition: max-height 0.3s ease-in;
}

.mobile-dropdown.active .mobile-dropdown-toggle .arrow {
    transform: rotate(180deg);
}
	  .mobile-nav .btn{
		  color: var(--bg);
	  }
  }
  @media (max-width:560px){
    .why-grid, .doctor-grid{ grid-template-columns:1fr; }
	  .spec-grid{
		 grid-template-columns:1fr 1fr; 
	  }  
	  .mobile-close, .hamburger, .btn, .btn-primary, a, .faq-item, button{
		    -webkit-tap-highlight-color: transparent;

	  }
    .form-grid{ grid-template-columns:1fr; }
    .wpcf7-form .form-colm{ grid-template-columns:1fr; }
    .footer-grid{ grid-template-columns:1fr; }
    .nav-emergency{ display:none; }
    .gallery-grid{ grid-template-columns:1fr 1fr; grid-auto-rows:150px; }
    .t-card{ width:260px; }
    .tpa-partner-grid{ grid-template-columns:1fr; }
    .video-testimonial-grid{ grid-template-columns:1fr; }
    .testimonial-grid{ column-count:1; }
    .map-embed{ height:280px; }
    .faq-item summary{ font-size:0.9rem; }
    .shape-divider{ height:34px; }
    .shape-divider.to-footer{ height:40px; }
    .bg-blob{ opacity:0.6; transform:scale(0.7); }
	  .wpcf7-form .form-colm p{grid-template-columns: 1fr;}
  }

  @media (prefers-reduced-motion: reduce){
    *, *::before, *::after{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; }
    .reveal{ opacity:1; transform:none; }
    .marquee-track{ animation:none; }
  }


/* ---------- generic fallback templates (blog index, pages, single posts) ---------- */
.generic-content{ padding:80px 0 100px; min-height:50vh; }
.generic-page-wrap{ max-width:1180px; }

/* ---------- 404 page ---------- */
.error-404-wrap{ max-width:560px; margin:0 auto; text-align:center; }
.error-404-search{ display:flex; gap:10px; margin-bottom:28px; }
.error-404-search input{
  flex:1; background:var(--bg-soft); border:1px solid var(--panel-border); border-radius:10px;
  padding:12px 16px; color:var(--ink); font-family:var(--font-body); font-size:0.95rem;
}
.error-404-search input:focus{ outline:none; border-color:var(--blue); background:#fff; }
.error-404-links{ display:flex; flex-wrap:wrap; justify-content:center; gap:12px; margin-bottom:28px; }
.error-404-emergency{ font-size:0.9rem; color:var(--muted); }
.error-404-emergency a{ color:var(--red); font-weight:700; }
@media (max-width:560px){
  .error-404-search{ flex-direction:column; }
}
.generic-page-title{
  font-family:var(--font-display); font-weight:800; font-size:clamp(1.8rem,4vw,2.8rem);
  color:var(--ink); letter-spacing:-0.02em; margin-bottom:20px;
}
.generic-page-thumb{ border-radius:16px; overflow:hidden; margin-bottom:32px; box-shadow:0 12px 30px rgba(18,23,45,0.08); }
.generic-page-thumb img{ width:100%; height:auto; display:block; }
.generic-page-body{ font-size:1.02rem; line-height:1.8; color:var(--muted); }
.generic-page-body h1,.generic-page-body h2, .generic-page-body h3{ font-family:var(--font-display); color:var(--ink); margin:32px 0 14px; }
.generic-page-body p{ margin-bottom:18px; }
.generic-page-body a{ color:var(--blue); text-decoration:underline; }
.generic-post-meta{ font-family:var(--font-mono); font-size:0.8rem; color:var(--mono-dim); margin-bottom:28px; }

.generic-post-list{ display:grid; gap:36px; max-width:760px; }
.generic-post-card{
  padding-bottom:36px; border-bottom:1px solid var(--panel-border);
}
.generic-post-thumb{ display:block; border-radius:14px; overflow:hidden; margin-bottom:18px; }
.generic-post-thumb img{ width:100%; height:auto; display:block; }
.generic-post-card h2{ font-family:var(--font-display); font-size:1.3rem; margin-bottom:10px; }
.generic-post-card h2 a{ color:var(--ink); }
.generic-post-card h2 a:hover{ color:var(--blue); }
.generic-post-excerpt{ color:var(--muted); font-size:0.95rem; line-height:1.7; margin-bottom:16px; }
.generic-pagination{ margin-top:20px; display:flex; gap:10px; }
.generic-pagination a, .generic-pagination span{
  padding:8px 14px; border-radius:8px; border:1px solid var(--panel-border); font-size:0.85rem; color:var(--muted);
}

/* ---------- service page: hero, breadcrumb ---------- */
.eyebrow-pill.dark{
  background:rgba(18,23,45,0.05); border-color:var(--panel-border); color:var(--ink);
}
.eyebrow-pill.dark .dot{ background:var(--blue); }

.breadcrumb{
  display:flex; flex-wrap:wrap; align-items:center; gap:8px;
  font-family:var(--font-mono); font-size:0.76rem; color:var(--mono-dim);
  padding-top:28px; margin-bottom:26px;
}
.breadcrumb a{ color:var(--mono-dim); }
.breadcrumb a:hover{ color:var(--blue); }
.breadcrumb span[aria-current]{ color:var(--ink); font-weight:600; }

.service-hero{ padding-bottom:70px; }
.service-hero.r .eyebrow-pill.dark .dot{ background:var(--red); }
.service-hero-grid{ display:grid; grid-template-columns:1.15fr 0.85fr; gap:48px; align-items:center; }
.service-title{
  font-family:var(--font-display); font-weight:800; letter-spacing:-0.02em; line-height:1.05;
  font-size:clamp(2rem, 4.6vw, 3.2rem); color:var(--ink);
}
.service-tagline{
  margin-top:16px; font-size:1.02rem; line-height:1.6; color:var(--muted); max-width:52ch;
}
.service-hero .hero-cta{ margin-top:30px; }
.service-hero-photo{ border-radius:20px; overflow:hidden; box-shadow:0 24px 60px rgba(18,23,45,0.14); }
.service-hero-photo img{ width:100%; height:100%; object-fit:cover; display:block; }

/* ---------- service page: condition / treatment cards ---------- */
.info-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:18px; margin-top:10px; }
.info-card{
  background:var(--panel); border:1px solid var(--panel-border); border-radius:14px;
  padding:22px 20px; position:relative; overflow:hidden;
  box-shadow:0 4px 16px rgba(18,23,45,0.04);
}
.info-card::before{ content:""; position:absolute; left:0; top:0; bottom:0; width:3px; }
.info-card.r::before{ background:var(--red); }
.info-card.b::before{ background:var(--blue); }
.info-card h3{ font-family:var(--font-display); font-weight:700; font-size:1rem; margin-bottom:8px; color:var(--ink); }
.info-card p{ font-size:0.86rem; color:var(--muted); line-height:1.6; }

/* ---------- service page: CTA band ---------- */
.service-cta{
  padding:70px 0; text-align:center;
  background:radial-gradient(ellipse 60% 100% at 50% 0%, rgba(0,68,224,0.06), transparent 70%);
}
.service-cta h2{ margin-bottom:12px; }
.service-cta p{ color:var(--muted); max-width:480px; margin:0 auto; }

/* ---------- service page: related specialities ---------- */
.related-specialities{ padding:90px 0 110px; }
.related-grid{ display:flex; flex-wrap:wrap; gap:14px; margin-top:10px; }
.related-card{
  display:flex; align-items:center; gap:10px;
  background:var(--panel); border:1px solid var(--panel-border); border-radius:999px;
  padding:12px 20px; font-size:0.9rem; font-weight:600; color:var(--ink);
  transition:transform 0.2s ease, border-color 0.2s ease;
}
.related-card:hover{ transform:translateY(-3px); border-color:#fff; color:#fff; background:linear-gradient(90deg, var(--red), var(--blue));border-width: 0px;}
.related-icon{ font-size:1.1rem; line-height:1; }

/* ---------- service archive (listing of all specialities) ---------- */
.service-archive-hero{ padding:64px 0 40px; text-align:center; }
.service-archive-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:20px; }
.service-archive-card{
  display:block; background:var(--panel); border:1px solid var(--panel-border); border-radius:16px;
  padding:28px 24px; box-shadow:0 4px 16px rgba(18,23,45,0.04);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}
.service-archive-card:hover{ transform:translateY(-6px); box-shadow:0 16px 34px rgba(18,23,45,0.1); }
.service-archive-card h3{ font-family:var(--font-display); font-weight:700; font-size:1.08rem; color:var(--ink); margin-bottom:8px; }
.service-archive-card p{ font-size:0.86rem; color:var(--muted); line-height:1.6; }
.service-archive-card .tag{
  display:inline-block; margin-bottom:14px; font-family:var(--font-mono); font-size:10px; font-weight:700;
  letter-spacing:0.1em; text-transform:uppercase; color:var(--blue);
}

/* ---------- responsive ---------- */
@media (max-width:980px){
  .service-hero-grid{ grid-template-columns:1fr; }
  .service-hero-photo{ order:-1; max-height:280px; }
  .info-grid{ grid-template-columns:repeat(2, 1fr); }
  .service-archive-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width:560px){
  .info-grid{ grid-template-columns:1fr; }
  .service-archive-grid{ grid-template-columns:1fr; }
  .breadcrumb{ font-size:0.7rem; }
  .service-hero{ padding-bottom:50px; }
	#doctors-teaser{
	grid-template-columns:repeat(1,1fr);
}
}
