/* ═══════════════════════════════════════════════════════════════
   Dr. Shams Taurej Hospital — Premium Redesign
   ═══════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  --navy:       #0a1628;
  --navy-mid:   #112244;
  --primary:    #1a56db;
  --primary-dk: #0e3fc2;
  --primary-lt: #3b82f6;
  --accent:     #0ea5e9;
  --gold:       #f59e0b;
  --gold-lt:    #fef3c7;
  --green:      #059669;
  --green-lt:   #d1fae5;
  --white:      #ffffff;
  --off-white:  #f8fafc;
  --surface:    #f1f5f9;
  --border:     #e2e8f0;
  --text:       #0f172a;
  --text-2:     #334155;
  --text-3:     #64748b;
  --wa-green:   #25d366;
  --wa-dark:    #075e36;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 20px rgba(10,20,60,.1), 0 2px 8px rgba(10,20,60,.06);
  --shadow-lg:  0 20px 60px rgba(10,20,60,.15), 0 8px 24px rgba(10,20,60,.1);
  --shadow-xl:  0 40px 80px rgba(10,20,60,.2);
  --shadow-glow:0 0 30px rgba(26,86,219,.25);

  --r-sm:    8px;
  --r-md:    14px;
  --r-lg:    20px;
  --r-xl:    28px;
  --r-2xl:   40px;
  --r-full:  9999px;

  --font-sans:    "Inter", "Segoe UI", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;

  --transition: 220ms cubic-bezier(.4,0,.2,1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust:100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul[role="list"] { list-style: none; }
address { font-style: normal; }
details summary { cursor: pointer; list-style: none; }
details summary::-webkit-details-marker { display: none; }

/* ─── UTILITY ─── */
.skip-link {
  position: absolute; left: 1rem; top: -6rem; z-index: 30;
  padding: .7rem 1.2rem; border-radius: var(--r-full);
  background: var(--primary); color: var(--white); font-weight: 700;
  transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}
.section-pad { padding: 5rem 0; }
.centered { text-align: center; }

/* ─── ANNOUNCEMENT BAR ─── */
.announce-bar {
  background: linear-gradient(90deg, var(--navy-mid), var(--primary-dk));
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  overflow: hidden;
}
.announce-inner {
  display: flex;
  align-items: center;
  gap: .75rem;
  max-width: 1160px;
  margin: 0 auto;
  padding: .6rem 1rem;
}
.announce-inner p { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.announce-dot {
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 1.6s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
  50% { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
}
.announce-close {
  background: none; border: none; color: rgba(255,255,255,.7);
  font-size: .9rem; cursor: pointer; padding: .2rem .4rem;
  border-radius: var(--r-sm); transition: color var(--transition);
  flex-shrink: 0;
}
.announce-close:hover { color: var(--white); }

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 30px rgba(10,22,60,.1);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 0;
  position: relative;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
}
.brand-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--primary), var(--navy));
  box-shadow: 0 8px 20px rgba(26,86,219,.3);
  flex-shrink: 0;
}
.brand-mark svg { width: 28px; height: 28px; fill: var(--white); }
.brand-text strong { display: block; font-size: .95rem; line-height: 1.1; color: var(--navy); }
.brand-text small { display: block; font-size: .72rem; color: var(--text-3); white-space: nowrap; }

/* Nav links */
.nav-links {
  display: none;
  gap: .1rem;
}
.nav-links a {
  padding: .5rem .75rem;
  border-radius: var(--r-sm);
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-2);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover {
  color: var(--primary);
  background: rgba(26,86,219,.06);
}

/* Nav CTAs */
.nav-ctas { display: none; gap: .6rem; }

.btn-ghost-nav {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem 1rem; border-radius: var(--r-full);
  font-size: .85rem; font-weight: 700;
  border: 1.5px solid var(--border);
  color: var(--text-2);
  transition: all var(--transition);
}
.btn-ghost-nav:hover { border-color: var(--wa-green); color: var(--wa-dark); }
.wa-icon { width: 16px; height: 16px; fill: var(--wa-green); }

.btn-primary-nav {
  display: inline-flex; align-items: center;
  padding: .55rem 1.1rem; border-radius: var(--r-full);
  font-size: .85rem; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(26,86,219,.3);
  transition: all var(--transition);
}
.btn-primary-nav:hover { transform: translateY(-1px); box-shadow: 0 8px 25px rgba(26,86,219,.4); }

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .5rem;
  border-radius: var(--r-sm);
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 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 Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: .1rem;
  padding: .5rem 0 1rem;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mob-link {
  padding: .75rem 1rem; border-radius: var(--r-sm);
  font-weight: 600; color: var(--text-2);
  transition: all var(--transition);
}
.mob-link:hover { background: var(--surface); color: var(--primary); }
.mob-ctas {
  display: flex; gap: .75rem; padding: .5rem 1rem 0;
  flex-wrap: wrap;
}

/* ─── BUTTONS (global) ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.4rem; border-radius: var(--r-full);
  font-weight: 800; font-size: .9rem;
  cursor: pointer; border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  color: var(--white);
  box-shadow: 0 8px 25px rgba(26,86,219,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(26,86,219,.45); }
.btn-primary svg { fill: var(--white); width: 18px; height: 18px; }

.btn-whatsapp {
  background: #e8fff2; color: var(--wa-dark);
  border: 1.5px solid #a7f3d0;
}
.btn-whatsapp:hover { background: #d1fae5; transform: translateY(-2px); }
.btn-whatsapp svg { fill: var(--wa-green); width: 18px; height: 18px; }

.btn-outline {
  background: var(--white); color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: rgba(26,86,219,.06); transform: translateY(-2px); }

/* ─── TYPOGRAPHY ─── */
.eyebrow {
  display: inline-block;
  font-size: .75rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .75rem;
}
h1, h2, h3 { line-height: 1.1; }
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  color: var(--navy);
  letter-spacing: -.03em;
  margin-bottom: 1.2rem;
}
h1 em { font-style: italic; color: var(--primary); }
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  color: var(--navy);
  letter-spacing: -.025em;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.1rem; font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.section-head { max-width: 700px; }
.section-head.centered { margin-inline: auto; }
.section-sub {
  font-size: 1.05rem; color: var(--text-3);
  max-width: 600px; margin-top: .5rem;
}
.section-head.centered .section-sub { margin-inline: auto; }

/* ─── ANIMATIONS ─── */
[data-anim] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: var(--delay, 0s);
}
[data-anim="fade-left"] { transform: translateX(-28px); }
[data-anim="fade-right"] { transform: translateX(28px); }
[data-anim].visible { opacity: 1; transform: translate(0); }

/* ─── HERO ─── */
.hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      rgba(10, 22, 40, 0.82) 0%,
      rgba(10, 36, 80, 0.75) 50%,
      rgba(14, 63, 194, 0.60) 100%
    ),
    url('assets/hospital-front.jpg') center center / cover no-repeat;
  background-attachment: fixed;
}
/* Make text lighter on the photo background */
.hero h1 { color: var(--white); }
.hero h1 em { color: #93c5fd; }
.hero .hero-sub { color: rgba(255,255,255,.88); }
.hero-badge {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.28);
  color: var(--white);
}
.badge-dot { background: #93c5fd; }
.trust-pills span {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
  color: var(--white);
  backdrop-filter: blur(8px);
}

/* Floating particles */
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-particles span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.15), transparent 70%);
  animation: float-up linear infinite;
}
.hero-particles span:nth-child(1)  { width:400px; height:400px; left:-5%;  top:10%;  animation-duration:25s; opacity:.6; }
.hero-particles span:nth-child(2)  { width:300px; height:300px; right:-8%; top:-5%; animation-duration:30s; animation-delay:-8s; opacity:.5; }
.hero-particles span:nth-child(3)  { width:200px; height:200px; left:40%;  top:60%;  animation-duration:20s; animation-delay:-5s; opacity:.4; }
.hero-particles span:nth-child(4)  { width:150px; height:150px; right:20%; bottom:10%; animation-duration:22s; animation-delay:-12s; opacity:.45; }
.hero-particles span:nth-child(5)  { width:100px; height:100px; left:15%;  bottom:20%; animation-duration:18s; animation-delay:-3s; opacity:.35; }
.hero-particles span:nth-child(6)  { width:80px;  height:80px;  right:35%; top:15%;  animation-duration:24s; animation-delay:-7s; opacity:.3; }
.hero-particles span:nth-child(7)  { width:60px;  height:60px;  left:55%;  top:80%;  animation-duration:16s; animation-delay:-2s; opacity:.4; }
.hero-particles span:nth-child(8)  { width:350px; height:350px; right:5%;  bottom:5%; animation-duration:28s; animation-delay:-15s; opacity:.3; }
.hero-particles span:nth-child(9)  { width:50px;  height:50px;  left:70%;  top:30%;  animation-duration:14s; animation-delay:-9s; opacity:.5; }
.hero-particles span:nth-child(10) { width:250px; height:250px; left:30%;  top:-10%; animation-duration:32s; animation-delay:-20s; opacity:.25; }
@keyframes float-up {
  0%   { transform: translateY(0) scale(1); }
  50%  { transform: translateY(-30px) scale(1.05); }
  100% { transform: translateY(0) scale(1); }
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative; z-index: 1;
}

/* Hero badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem 1rem; border-radius: var(--r-full);
  background: rgba(26,86,219,.08);
  border: 1px solid rgba(26,86,219,.18);
  font-size: .8rem; font-weight: 700; color: var(--primary);
  margin-bottom: 1.2rem;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s infinite;
}

.hero-sub {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: var(--text-2);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 2rem;
}

.trust-pills {
  display: flex; flex-wrap: wrap; gap: .55rem;
}
.trust-pills span {
  display: inline-flex; align-items: center;
  padding: .42rem .9rem;
  border-radius: var(--r-full);
  background: var(--white);
  border: 1.5px solid var(--border);
  font-size: .8rem; font-weight: 700; color: var(--text-2);
  box-shadow: var(--shadow-sm);
}

/* Hero visual */
.hero-card-wrap { position: relative; }
.hero-photo-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 360px;
  background: linear-gradient(135deg, #dbeafe, #e0f2fe);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo-frame.no-photo img { display: none; }
.hero-photo-frame .photo-fallback { display: none; }
.hero-photo-frame.no-photo .photo-fallback {
  display: grid; place-content: center; text-align: center;
  position: absolute; inset: 0; padding: 2rem;
  color: var(--primary); font-weight: 700;
}
.fallback-icon { font-size: 3rem; margin-bottom: .5rem; }
.hero-photo-frame.no-photo .photo-fallback p { font-size: 1rem; }
.hero-photo-frame.no-photo .photo-fallback small { color: var(--text-3); font-size: .78rem; }

/* Emergency card */
.emergency-card {
  position: absolute;
  bottom: -1rem; left: -1rem;
  display: flex; align-items: center; gap: .85rem;
  padding: .8rem 1.2rem;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  max-width: 240px;
}
.emg-pulse {
  position: relative;
  width: 12px; height: 12px; flex-shrink: 0;
}
.emg-pulse span {
  display: block;
  width: 12px; height: 12px; border-radius: 50%;
  background: #ef4444;
  animation: pulse-ring 1.5s infinite;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(239,68,68,.5); }
  100% { box-shadow: 0 0 0 12px rgba(239,68,68,0); }
}
.emg-label { font-size: .72rem; font-weight: 600; color: var(--text-3); margin-bottom: .1rem; }
.emg-number { font-size: 1.05rem; font-weight: 900; color: var(--navy); display: block; }
.emg-badge {
  margin-left: auto; flex-shrink: 0;
  padding: .3rem .6rem; border-radius: var(--r-sm);
  background: #fef2f2; color: #ef4444;
  font-size: .72rem; font-weight: 800;
  border: 1px solid #fecaca;
}

/* OPD Float Card */
.opd-float-card {
  position: absolute;
  top: -1rem; right: -1rem;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: .8rem 1rem;
  max-width: 260px;
}
.opd-title { font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); margin-bottom: .5rem; }
.opd-rows { display: flex; flex-direction: column; gap: .35rem; }
.opd-row {
  display: flex; flex-direction: column; gap: .05rem;
  padding: .4rem .5rem; border-radius: var(--r-sm);
  background: var(--surface);
}
.opd-row.highlight { background: rgba(26,86,219,.06); border: 1px solid rgba(26,86,219,.12); }
.opd-loc { font-size: .78rem; font-weight: 700; color: var(--navy); }
.opd-time { font-size: .72rem; color: var(--text-3); }

/* Scroll hint */
.scroll-hint {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  margin-top: 3rem; color: var(--text-3); font-size: .78rem; font-weight: 600;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--text-3);
  border-bottom: 2px solid var(--text-3);
  transform: rotate(45deg);
  animation: bounce-arrow 1.5s infinite;
}
@keyframes bounce-arrow {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

/* ─── STATS STRIP ─── */
.stats-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(26,86,219,.35), transparent 70%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative; z-index: 1;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: inline;
}
.stat-suffix { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 900; color: var(--gold); }
.stat-label { font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.65); margin-top: .4rem; }

/* ─── DOCTOR SECTION ─── */
.doctor-section { background: var(--off-white); }
.doctor-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.doc-photo-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 400px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  box-shadow: var(--shadow-lg);
}
.doc-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.doc-photo-wrap.no-photo img { display: none; }
.doc-photo-wrap .photo-fallback { display: none; }
.doc-photo-wrap.no-photo .photo-fallback {
  display: grid; place-content: center; text-align: center;
  position: absolute; inset: 0; padding: 2rem;
  color: var(--primary); font-weight: 700;
}

.gold-badge-float {
  position: absolute; top: 1.2rem; right: 1.2rem;
  display: flex; align-items: center; gap: .4rem;
  padding: .55rem 1rem; border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: var(--white); font-size: .8rem; font-weight: 800;
  box-shadow: 0 8px 20px rgba(245,158,11,.4);
}

.doc-credentials {
  font-size: 1rem; font-weight: 700; color: var(--primary);
  margin-bottom: .8rem;
}
.specialty-tags {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: 1.5rem;
}
.specialty-tags span {
  padding: .4rem .9rem; border-radius: var(--r-full);
  background: rgba(26,86,219,.08);
  border: 1.5px solid rgba(26,86,219,.2);
  font-size: .8rem; font-weight: 700; color: var(--primary);
}
.doc-bio { color: var(--text-2); line-height: 1.8; margin-bottom: 1.2rem; }
.doc-highlights { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 1.8rem; }
.doc-hl { display: flex; align-items: flex-start; gap: .85rem; }
.hl-icon { font-size: 1.5rem; flex-shrink: 0; }
.doc-hl strong { display: block; font-size: .9rem; color: var(--navy); margin-bottom: .1rem; }
.doc-hl span { font-size: .83rem; color: var(--text-3); }
.doc-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .5rem; }

/* ─── SERVICES ─── */
.services-section {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(26,86,219,.06) 0%, transparent 50%),
    var(--white);
}
.service-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0; transition: opacity var(--transition);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(26,86,219,.25); }
.service-card:hover::before { opacity: 1; }

.service-card.featured {
  background: linear-gradient(135deg, rgba(26,86,219,.04), rgba(14,165,233,.04));
  border-color: rgba(26,86,219,.3);
  box-shadow: var(--shadow-md), 0 0 0 3px rgba(26,86,219,.08);
}
.service-card.featured::before { opacity: 1; }

.featured-badge {
  position: absolute; top: 1rem; right: 1rem;
  padding: .3rem .75rem; border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  color: var(--white); font-size: .72rem; font-weight: 800;
}

.svc-icon-wrap {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: rgba(26,86,219,.08);
  margin-bottom: 1.1rem;
}
.svc-icon-wrap svg { width: 26px; height: 26px; fill: none; stroke: var(--primary); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.emergency-icon { background: rgba(239,68,68,.08); }
.emergency-icon svg { stroke: #ef4444; }

.svc-tag {
  display: inline-block;
  margin-top: .9rem;
  padding: .3rem .7rem; border-radius: var(--r-full);
  background: var(--surface);
  font-size: .72rem; font-weight: 700; color: var(--text-3);
}
.service-card p { color: var(--text-3); font-size: .9rem; line-height: 1.7; }

/* ─── CONDITIONS ─── */
.conditions-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
  position: relative; overflow: hidden;
}
.conditions-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.conditions-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative; z-index: 1;
}
.conditions-text { color: var(--white); }
.conditions-text .eyebrow { color: var(--gold); }
.conditions-text h2 { color: var(--white); }
.conditions-text p { color: rgba(255,255,255,.75); margin-bottom: 1.5rem; }

.conditions-cloud {
  display: flex; flex-wrap: wrap; gap: .65rem;
}
.cond-tag {
  display: inline-flex; align-items: center;
  padding: .55rem 1.1rem; border-radius: var(--r-full);
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.18);
  color: var(--white); font-weight: 700;
  font-size: .85rem;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
  cursor: default;
}
.cond-tag:hover { background: rgba(26,86,219,.4); border-color: rgba(26,86,219,.6); }
.cond-tag.large { font-size: 1rem; padding: .65rem 1.4rem; }
.cond-tag.small { font-size: .78rem; padding: .45rem .9rem; }

/* ─── WHY SECTION ─── */
.why-section { background: var(--off-white); }
.why-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.why-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(26,86,219,.2); }
.why-icon { font-size: 2rem; margin-bottom: .85rem; }
.why-card h3 { font-size: 1rem; }
.why-card p { color: var(--text-3); font-size: .88rem; line-height: 1.7; }

/* ─── FACILITIES GALLERY ─── */
.facilities-section {
  background: linear-gradient(180deg, var(--white) 0%, #f0f6ff 100%);
}
.facilities-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
.facility-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}
.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.facility-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #dbeafe;
}
.facility-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.facility-card:hover .facility-img-wrap img {
  transform: scale(1.06);
}
.facility-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,60,.55), rgba(26,86,219,.35));
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.facility-card:hover .facility-overlay { opacity: 1; }
.facility-zoom-icon {
  font-size: 2.5rem;
  transform: scale(.7);
  transition: transform var(--transition);
}
.facility-card:hover .facility-zoom-icon { transform: scale(1); }

.facility-caption {
  display: flex; align-items: center; gap: .85rem;
  padding: 1rem 1.2rem;
  border-top: 1.5px solid var(--border);
}
.facility-caption-icon {
  font-size: 1.6rem; flex-shrink: 0;
}
.facility-caption strong {
  display: block; font-size: .92rem; font-weight: 700;
  color: var(--navy); margin-bottom: .1rem;
}
.facility-caption span {
  font-size: .78rem; color: var(--text-3); font-weight: 500;
}

/* Facility highlights strip */
.facility-highlights {
  display: flex; flex-wrap: wrap; gap: .75rem;
  justify-content: center;
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--r-xl);
}
.fac-hl-item {
  display: flex; align-items: center; gap: .5rem;
  padding: .6rem 1.1rem;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}
.fac-hl-icon { font-size: 1.1rem; }
.fac-hl-item strong { font-size: .82rem; color: var(--white); font-weight: 700; }

/* ─── LAPAROSCOPY SECTION ─── */

.lapar-section {
  background: linear-gradient(180deg, var(--white) 0%, #f0f6ff 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lapar-layout { display: grid; gap: 3rem; align-items: start; }
.lapar-text > p { color: var(--text-2); margin-bottom: 1.5rem; line-height: 1.8; }

.compare-table {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  font-size: .88rem;
}
.compare-head {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  background: var(--navy); color: var(--white);
  padding: .75rem 1rem; font-weight: 800; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .06em;
}
.open-text { color: rgba(255,255,255,.6); text-align: center; }
.lapar-text-col { color: var(--gold); text-align: center; }
.compare-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  padding: .65rem 1rem;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.compare-row:last-child { border-bottom: none; }
.compare-row:nth-child(even) { background: var(--surface); }
.open-val { text-align: center; color: var(--text-3); text-decoration: line-through; }
.lapar-val { text-align: center; font-weight: 800; color: var(--green); }

.benefit-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-bottom: 1.5rem;
}
.benefit-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-md); padding: 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.b-icon { font-size: 1.6rem; display: block; margin-bottom: .5rem; }
.benefit-card strong { display: block; font-size: .88rem; color: var(--navy); margin-bottom: .2rem; }
.benefit-card p { font-size: .8rem; color: var(--text-3); margin: 0; }

.lapar-cta-box {
  background: linear-gradient(135deg, var(--navy), var(--primary-dk));
  border-radius: var(--r-lg);
  padding: 1.5rem;
  text-align: center;
}
.lapar-cta-box p { color: rgba(255,255,255,.85); margin-bottom: 1rem; font-weight: 600; }

/* ─── OPD SECTION ─── */
.opd-section { background: var(--white); }
.opd-cards {
  display: grid; gap: 1.5rem;
  margin-top: 3rem;
}
.opd-card {
  border-radius: var(--r-xl);
  padding: 2.2rem;
  box-shadow: var(--shadow-md);
}
.primary-opd {
  background: linear-gradient(135deg, var(--navy), var(--primary-dk));
  color: var(--white);
}
.secondary-opd {
  background: var(--white);
  border: 1.5px solid var(--border);
}
.opd-card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.opd-card h3 { font-size: 1.3rem; margin-bottom: .4rem; }
.primary-opd h3 { color: var(--white); }
.opd-location { margin-bottom: 1.2rem; color: rgba(255,255,255,.7); font-size: .9rem; }
.secondary-opd .opd-location { color: var(--text-3); }

.opd-schedule { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.5rem; }
.sch-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .6rem .8rem; border-radius: var(--r-sm);
  background: rgba(255,255,255,.1); font-size: .88rem;
}
.secondary-opd .sch-row { background: var(--surface); }
.sch-day { font-weight: 700; }
.primary-opd .sch-day { color: var(--white); }
.sch-time { font-weight: 600; color: var(--gold); }
.secondary-opd .sch-time { color: var(--primary); }

.opd-btn { width: 100%; justify-content: center; }
.opd-map-link {
  display: block; margin-top: .75rem; text-align: center;
  font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.7);
  transition: color var(--transition);
}
.opd-map-link:hover { color: var(--white); }

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  background:
    radial-gradient(ellipse at 20% 80%, rgba(26,86,219,.05) 0%, transparent 50%),
    var(--off-white);
}
.testimonial-grid {
  display: grid; gap: 1.2rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  margin: 0;
  transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: .85rem; letter-spacing: .05em; }
.testimonial-card blockquote {
  font-size: .93rem; color: var(--text-2); line-height: 1.75;
  margin: 0 0 1.1rem; font-style: italic;
  position: relative;
}
.testimonial-card blockquote::before {
  content: '"';
  font-size: 4rem; line-height: .8;
  color: rgba(26,86,219,.1);
  font-family: var(--font-display);
  position: absolute; top: -.5rem; left: -.5rem;
  pointer-events: none;
}
.testimonial-card figcaption {
  display: flex; align-items: center; gap: .75rem;
}
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white); font-weight: 800; font-size: 1rem;
  display: grid; place-items: center;
}
.testimonial-card figcaption strong { display: block; font-size: .9rem; color: var(--navy); }
.testimonial-card figcaption span { font-size: .8rem; color: var(--text-3); }

.review-cta {
  text-align: center; margin-top: 2.5rem;
}
.review-cta p { color: var(--text-2); font-size: 1.05rem; font-weight: 600; margin-bottom: 1rem; }

/* ─── FAQ ─── */
.faq-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
  position: relative;
}
.faq-layout { display: grid; gap: 3rem; align-items: start; }
.faq-head { color: var(--white); }
.faq-head .eyebrow { color: var(--gold); }
.faq-head h2 { color: var(--white); }
.faq-head p { color: rgba(255,255,255,.7); margin-bottom: 1.5rem; }

.faq-list { display: flex; flex-direction: column; gap: .6rem; }
.faq-item {
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: background var(--transition);
}
.faq-item[open] { background: rgba(255,255,255,.12); border-color: rgba(26,86,219,.4); }
.faq-item summary {
  padding: 1.1rem 1.2rem;
  font-weight: 700; color: var(--white); font-size: .95rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq-item summary::after {
  content: '+'; flex-shrink: 0;
  font-size: 1.3rem; font-weight: 300; color: rgba(255,255,255,.5);
  transition: transform var(--transition);
}
.faq-item[open] summary::after { content: '−'; color: var(--gold); }
.faq-item p {
  padding: 0 1.2rem 1.1rem;
  color: rgba(255,255,255,.75); font-size: .9rem; line-height: 1.75;
}
.faq-item a { color: var(--gold); font-weight: 700; }

/* ─── APPOINTMENT / CONTACT SECTION ─── */
.appointment-section { background: var(--off-white); }
.appt-layout { display: grid; gap: 2rem; margin-top: 3rem; }

.appt-form {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  display: flex; flex-direction: column; gap: .5rem;
  margin-bottom: 1.2rem;
}
.form-group label {
  font-size: .87rem; font-weight: 700; color: var(--navy);
}
.form-group input, .form-group textarea {
  padding: .8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-size: .95rem; color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-3); }
.form-group textarea { resize: vertical; min-height: 90px; }

.appt-submit-btn { width: 100%; justify-content: center; font-size: 1rem; margin-top: .5rem; }
.appt-submit-btn svg { fill: var(--wa-green); }
.appt-submit-btn:hover svg { fill: var(--wa-dark); }

.appt-info-col .contact-card {
  margin-bottom: 0;
}

/* ─── CONTACT ─── */
.contact-section { background: var(--off-white); }
.contact-layout { display: grid; gap: 2rem; margin-top: 3rem; }

.contact-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.contact-icon-row {
  display: flex; gap: 1rem; align-items: flex-start;
  padding-bottom: 1.2rem; margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}
.contact-icon-row:last-of-type { border-bottom: none; margin-bottom: 1.5rem; }
.contact-icon-wrap { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.contact-icon-row strong { display: block; font-size: .88rem; color: var(--navy); margin-bottom: .2rem; }
.contact-icon-row p { color: var(--text-2); font-size: .9rem; margin: 0; line-height: 1.6; }
.contact-phone { display: block; font-size: 1.3rem; font-weight: 900; color: var(--primary); }
.open-tag { display: inline-block; padding: .2rem .6rem; border-radius: var(--r-full); background: var(--green-lt); color: var(--green); font-size: .72rem; font-weight: 800; margin-top: .3rem; }
.contact-wa { display: block; font-weight: 700; color: var(--wa-dark); font-size: .95rem; }
.contact-btns { display: flex; flex-wrap: wrap; gap: .75rem; }

.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 400px;
  border: 1.5px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 3rem 0 1.5rem;
}
.footer-layout {
  display: grid; gap: 2rem;
}
.footer-brand {
  display: flex; align-items: center; gap: .75rem;
}
.footer-logo-mark {
  width: 40px; height: 40px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(255,255,255,.1); border-radius: var(--r-md);
}
.footer-logo-mark svg { width: 26px; height: 26px; fill: var(--white); }
.footer-brand strong { display: block; color: var(--white); font-size: 1rem; }
.footer-brand span { font-size: .8rem; }

.footer-links {
  display: flex; flex-wrap: wrap; gap: .5rem .25rem;
}
.footer-links a {
  padding: .4rem .75rem; border-radius: var(--r-sm);
  font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.65);
  transition: all var(--transition);
}
.footer-links a:hover { color: var(--white); background: rgba(255,255,255,.08); }

.footer-contact {
  display: flex; flex-direction: column; gap: .5rem;
}
.footer-contact p, .footer-contact a { font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.7); }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-direction: column; gap: .4rem;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.4); }
.footer-keywords { color: rgba(255,255,255,.25) !important; font-size: .72rem !important; }

/* ─── FLOATING WHATSAPP ─── */
.floating-whatsapp {
  position: fixed; right: 1.2rem; bottom: 6.5rem; z-index: 18;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--wa-green);
  color: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 8px 25px rgba(37,211,102,.45), 0 0 0 8px rgba(37,211,102,.1);
  transition: all var(--transition);
  animation: wa-enter .5s .5s both;
}
.floating-whatsapp svg { width: 32px; height: 32px; fill: currentColor; }
.floating-whatsapp:hover { transform: scale(1.1); box-shadow: 0 12px 35px rgba(37,211,102,.55); }
@keyframes wa-enter {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.wa-tooltip {
  position: absolute; right: 110%;
  background: var(--navy); color: var(--white);
  padding: .4rem .8rem; border-radius: var(--r-sm);
  font-size: .78rem; font-weight: 700; white-space: nowrap;
  opacity: 0; transform: translateX(8px);
  transition: all var(--transition);
  pointer-events: none;
}
.floating-whatsapp:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ─── MOBILE CALL BAR ─── */
.mobile-call-bar {
  display: none;
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 17;
  border-radius: var(--r-full);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.mobile-call-bar.visible { display: flex; }
.mcb-call {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: .95rem; background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  color: var(--white); font-weight: 800; font-size: .9rem;
}
.mcb-wa {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: .95rem; background: var(--wa-green);
  color: var(--white); font-weight: 800; font-size: .9rem;
}

/* ─── OPD SINGLE CARD ─── */
.opd-cards-single {
  display: grid;
  justify-content: center;
  margin-top: 3rem;
}
.opd-cards-single .opd-card {
  max-width: 600px;
  width: 100%;
}

/* ─── RESPONSIVE ─── */
@media (min-width: 600px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .opd-cards { grid-template-columns: 1fr 1fr; }
  .benefit-cards { grid-template-columns: 1fr 1fr; }
  .appt-layout { grid-template-columns: 1fr 1fr; }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .section-pad { padding: 6.5rem 0; }
  .container { width: min(1160px, calc(100% - 3rem)); }

  .nav-links, .nav-ctas { display: flex; }
  .hamburger { display: none; }

  .hero { padding: 6rem 0 5rem; }
  .hero-grid { grid-template-columns: 1.1fr 0.85fr; gap: 4rem; }

  .doctor-layout { grid-template-columns: 0.75fr 1fr; gap: 4rem; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .facilities-grid { grid-template-columns: repeat(3, 1fr); }

  .conditions-layout { grid-template-columns: 0.7fr 1fr; gap: 4rem; }
  .lapar-layout { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .faq-layout { grid-template-columns: 0.65fr 1fr; gap: 4rem; }
  .appt-layout { grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; }

  .footer-layout { grid-template-columns: 1fr 1fr 1fr; }
  .footer-bottom { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }

  .floating-whatsapp { bottom: 2rem; right: 2rem; }
  .mobile-call-bar { display: none !important; }
}

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

@media (max-width: 599px) {
  .hero-actions .btn { width: 100%; }
  .hero-actions { gap: .65rem; }
  .trust-pills span { font-size: .75rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .opd-float-card { display: none; }
  .emergency-card { position: relative; bottom: auto; left: auto; margin-top: 1rem; max-width: 100%; }
  .hero-card-wrap { display: flex; flex-direction: column; }
  .appt-form { padding: 1.4rem; }
  .contact-card { padding: 1.4rem; }
  .section-pad { padding: 3.5rem 0; }
  .h1, h1 { font-size: clamp(2rem, 9vw, 3rem); }
  h2 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .mob-ctas { flex-direction: column; }
  .mob-ctas .btn { width: 100%; justify-content: center; }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-anim] { opacity: 1; transform: none; }
}

/* ─── FORM FEEDBACK & TOAST ─── */
.form-group input.error, .form-group textarea.error {
  border-color: #ef4444;
  background-color: #fef2f2;
}
.field-error {
  display: block;
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 600;
  min-height: 1rem;
  margin-top: -0.2rem;
}

.form-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 100;
  text-align: center;
  max-width: 90vw;
}
.form-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ─── FAQ ANIMATION IMPROVEMENT ─── */
.faq-item p {
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  margin: 0;
}
.faq-item[open] p {
  max-height: 500px;
  padding-bottom: 1.1rem;
  opacity: 1;
}

/* ─── IOS PARALLAX FIX ─── */
@media (max-width: 599px) {
  .hero { background-attachment: scroll; }
}

/* ─── PRINT STYLES ─── */
@media print {
  .site-header, .announce-bar, .floating-whatsapp, .mobile-call-bar, .footer-bottom, .hero-particles { display: none !important; }
  body { color: #000; background: #fff; }
  .container { width: 100%; max-width: none; }
  .section-pad { padding: 2rem 0; }
  .hero { background: none; color: #000; padding: 2rem 0; }
  .hero h1, .hero p, .hero h2, .section-head h2 { color: #000; }
  .hero h1 em { color: #000; }
  a { text-decoration: none; color: #000; }
  .opd-card { break-inside: avoid; border: 1px solid #ccc; box-shadow: none; color: #000; }
  .primary-opd { background: #fff; color: #000; border: 2px solid #000; }
  .primary-opd h3, .primary-opd .sch-day, .primary-opd .sch-time { color: #000; }
  .service-card, .why-card, .facility-card { border: 1px solid #ccc; box-shadow: none; break-inside: avoid; }
}
