/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:     #0a2447;
  --blue:     #1d4ed8;
  --sky:      #0ea5e9;
  --teal:     #0d9488;
  --light:    #f0f9ff;
  --off-white:#f8fafc;
  --white:    #ffffff;
  --text:     #0f172a;
  --muted:    #64748b;
  --border:   #e2e8f0;
  --gold:     #f59e0b;
  --green:    #10b981;
  --indigo:   #6366f1;
  --red:      #ef4444;
  --radius:   14px;
  --radius-sm: 8px;
  --shadow:   0 4px 24px rgba(10,36,71,0.08);
  --shadow-lg: 0 12px 48px rgba(10,36,71,0.14);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.announcement-bar i { font-size: 0.75rem; }
.announcement-bar a { color: var(--sky); }
.announcement-bar a:hover { text-decoration: underline; }
.bar-divider { opacity: 0.3; }
.announcement-bar .fab.fa-whatsapp { color: #25d366; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 16px rgba(10,36,71,0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem; flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-size: 1rem; font-weight: 700; color: var(--navy); }
.logo-sub { font-size: 0.72rem; font-weight: 500; color: var(--sky); letter-spacing: 1px; text-transform: uppercase; }

.nav-links { list-style: none; display: flex; gap: 4px; align-items: center; }
.nav-links a {
  color: var(--muted); font-size: 0.88rem; font-weight: 500;
  padding: 6px 12px; border-radius: 6px; transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--navy); background: var(--off-white); }
.btn-nav {
  background: var(--navy) !important; color: white !important;
  padding: 10px 20px !important; border-radius: 50px !important;
  font-weight: 600 !important;
  transition: background 0.2s !important, transform 0.2s !important;
}
.btn-nav:hover { background: var(--blue) !important; transform: translateY(-1px) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border: none; background: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0a2447 0%, #0f3460 60%, #0a3d5c 100%);
  min-height: 96vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
/* Subtle radial glow behind the visual side */
.hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 55%;
  background: radial-gradient(ellipse at 70% 50%, rgba(14,165,233,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
  position: relative; z-index: 1;
  width: 100%;
}
.hero-text { color: white; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 500;
  margin-bottom: 28px;
}
.hero-badge i { color: var(--sky); }
.hero-text h1 {
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 24px; color: white;
}
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.75);
  margin-bottom: 40px; line-height: 1.8;
  max-width: 480px;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sky); color: white;
  padding: 15px 30px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-primary:hover {
  background: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(14,165,233,0.4);
}
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: white;
  padding: 15px 30px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
}
.hero-reassurance {
  display: flex; gap: 24px; flex-wrap: wrap;
}
.hero-reassurance span {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.65); font-size: 0.85rem;
}
.hero-reassurance i { color: var(--green); }

/* Right: person visual */
.hero-visual {
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  height: 460px;
}
.hero-visual-bg {
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.18) 0%, rgba(14,165,233,0.04) 60%, transparent 100%);
  border: 1px solid rgba(14,165,233,0.15);
}
.hero-person-img {
  position: relative; z-index: 2;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
  animation: heroFloat 4s ease-in-out infinite;
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0%, black 12%, black 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 6%,  black 85%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right,  transparent 0%, black 12%, black 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 6%,  black 85%, transparent 100%);
  mask-composite: intersect;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
.hero-visual.no-photo .hero-person-img { display: none; }
.hero-visual.no-photo .hero-visual-bg {
  width: 380px; height: 380px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(14,165,233,0.06);
  border: 2px dashed rgba(14,165,233,0.3);
  position: relative; left: auto; transform: none;
  border-radius: 50%;
}
.hero-visual.no-photo::before {
  content: '\f4ff'; /* fa-smile */
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  font-size: 120px; color: rgba(14,165,233,0.2);
  position: absolute; z-index: 2;
}
/* Floating cards */
.hero-trust-card {
  position: absolute; bottom: 60px; left: -20px; z-index: 3;
  background: white; border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  display: flex; align-items: center; gap: 12px;
  min-width: 180px;
}
.trust-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.9rem; flex-shrink: 0;
}
.hero-trust-card strong { display: block; font-size: 0.88rem; color: var(--navy); }
.hero-trust-card span { font-size: 0.75rem; color: var(--muted); }
.hero-exp-badge {
  position: absolute; top: 40px; right: -10px; z-index: 3;
  background: var(--sky); color: white;
  border-radius: 16px; padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(14,165,233,0.4);
}
.exp-number { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.exp-label { display: block; font-size: 0.72rem; font-weight: 600; opacity: 0.85; margin-top: 4px; line-height: 1.3; }

/* ===== STATS ===== */
.stats {
  background: white;
  padding: 0;
  box-shadow: var(--shadow);
  position: relative; z-index: 2;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}
.stat {
  padding: 36px 24px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; font-weight: 700; color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { font-size: 1.8rem; color: var(--sky); }
.stat p { font-size: 0.85rem; color: var(--muted); font-weight: 500; }

/* ===== SECTION SHARED ===== */
section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--sky);
  background: rgba(14,165,233,0.08);
  padding: 5px 14px; border-radius: 50px;
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--navy); font-weight: 700;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--muted); font-size: 1rem;
  max-width: 520px; margin: 0 auto;
  line-height: 1.75;
}

/* ===== SERVICES ===== */
.services { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: white; border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex; flex-direction: column; gap: 12px;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: white; flex-shrink: 0;
}
.service-icon.blue { background: linear-gradient(135deg, var(--navy), var(--blue)); }
.service-icon.teal { background: linear-gradient(135deg, #0d9488, #06b6d4); }
.service-icon.indigo { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.service-icon.red { background: linear-gradient(135deg, #ef4444, #f97316); }
.service-icon.gold { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.service-icon.green { background: linear-gradient(135deg, #10b981, #14b8a6); }
.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; font-weight: 700; color: var(--navy);
}
.service-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; flex: 1; }
.service-link {
  font-size: 0.82rem; font-weight: 600; color: var(--sky);
  display: inline-flex; align-items: center; gap: 5px; margin-top: 4px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 9px; }

/* ===== WHY US ===== */
.why-us { background: white; }
.why-us-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: center;
}
.why-us-image {
  position: relative; border-radius: var(--radius);
  overflow: visible; height: 520px;
}
.why-us-image img {
  width: 100%; height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}
.why-us-image.no-image img { display: none; }
.why-us-image-fallback {
  display: none;
  background: linear-gradient(135deg, var(--light), #bae6fd);
  border-radius: var(--radius);
  height: 520px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  border: 2px dashed var(--sky);
  color: var(--muted);
}
.why-us-image.no-image .why-us-image-fallback { display: flex; }
.why-us-image.no-image img { display: none; }
.why-us-image-fallback i { font-size: 64px; opacity: 0.3; }
.why-us-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--border);
}
.why-us-badge i { font-size: 1.8rem; color: var(--gold); }
.why-us-badge strong { display: block; font-size: 0.9rem; color: var(--navy); }
.why-us-badge span { font-size: 0.78rem; color: var(--muted); }

.why-us-text .section-tag { display: inline-block; }
.why-us-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--navy);
  margin: 16px 0 20px;
}
.why-intro { color: var(--muted); line-height: 1.75; margin-bottom: 36px; }
.why-list { display: flex; flex-direction: column; gap: 28px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--light), #bae6fd);
  color: var(--sky); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.why-item strong { display: block; font-size: 0.95rem; color: var(--navy); margin-bottom: 5px; }
.why-item p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ===== ABOUT ===== */
.about { background: var(--off-white); }
.about-inner {
  display: grid; grid-template-columns: 5fr 7fr; gap: 72px;
  align-items: center;
}
.about-image {
  position: relative; height: 480px; border-radius: var(--radius); overflow: hidden;
}
.about-image img { border-radius: var(--radius); }
.about-image.no-image img { display: none; }
.about-image-fallback {
  display: none;
  background: linear-gradient(135deg, var(--light), #bae6fd);
  height: 480px; border-radius: var(--radius);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  border: 2px dashed var(--sky); color: var(--muted);
}
.about-image.no-image .about-image-fallback { display: flex; }
.about-image-fallback i { font-size: 80px; opacity: 0.25; }
.about-image-fallback p { font-size: 0.9rem; }

.about-text .section-tag { display: inline-block; margin-bottom: 12px; }
.about-text h2 {
  font-size: 2.2rem; font-weight: 700; color: var(--navy); margin-bottom: 6px;
}
.doctor-title {
  display: block; color: var(--sky); font-size: 0.9rem;
  font-weight: 600; margin-bottom: 22px;
}
.about-text p { color: var(--muted); line-height: 1.8; font-size: 0.95rem; margin-bottom: 14px; }
.doctor-credentials {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin: 24px 0;
}
.credential {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--muted);
  background: white; border-radius: var(--radius-sm);
  padding: 10px 14px; border: 1px solid var(--border);
}
.credential i { color: var(--sky); flex-shrink: 0; }
.doctor-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.doctor-tags span {
  background: white; color: var(--navy);
  border: 1px solid var(--border);
  padding: 5px 14px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600;
}

/* ===== GALLERY ===== */
.gallery { background: white; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  background: var(--light);
  position: relative;
}
.gallery-item.large {
  grid-column: span 2; grid-row: span 2;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-placeholder {
  position: absolute; inset: 0;
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; color: var(--muted);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
}
.gallery-item.placeholder .gallery-placeholder { display: flex; }
.gallery-item.placeholder img { display: none; }
.gallery-placeholder i { font-size: 2rem; opacity: 0.3; }
.gallery-placeholder p { font-size: 0.8rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.testimonial-card {
  background: white; border-radius: var(--radius);
  padding: 32px; border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-card.featured {
  border-color: var(--sky);
  box-shadow: 0 0 0 1px var(--sky), var(--shadow);
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p {
  color: var(--muted); font-size: 0.9rem; line-height: 1.8;
  margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--navy); }
.testimonial-author span { font-size: 0.78rem; color: var(--muted); }
.review-platforms {
  display: flex; align-items: center; gap: 16px;
  margin-top: 40px; justify-content: center;
  flex-wrap: wrap;
}
.review-platforms span { font-size: 0.85rem; color: var(--muted); }
.review-platform {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 18px; border: 1px solid var(--border); border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; color: var(--navy);
  transition: background 0.2s, border-color 0.2s;
}
.review-platform:hover { background: var(--off-white); border-color: var(--sky); }

/* ===== FAQ ===== */
.faq { background: white; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--sky); }
.faq-question {
  width: 100%; padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem; font-weight: 600; color: var(--navy);
  text-align: left;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--off-white); }
.faq-item.open .faq-question { background: var(--light); }
.faq-question i {
  flex-shrink: 0; font-size: 0.8rem; color: var(--sky);
  transition: transform 0.25s;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 24px 22px; }
.faq-answer p { color: var(--muted); font-size: 0.9rem; line-height: 1.8; }

/* ===== BOOKING ===== */
.booking {
  background: linear-gradient(135deg, var(--navy) 0%, #0f3460 100%);
}
.booking-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.booking-text { color: white; padding-top: 12px; }
.section-tag.light {
  background: rgba(14,165,233,0.2);
  color: var(--sky);
}
.booking-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem); color: white;
  margin: 16px 0 16px;
}
.booking-text > p { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.7; margin-bottom: 28px; }
.booking-contact { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.contact-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 600;
  background: rgba(255,255,255,0.1);
  color: white; border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.2s;
}
.contact-pill:hover { background: rgba(255,255,255,0.18); }
.contact-pill.whatsapp { background: rgba(37,211,102,0.2); border-color: rgba(37,211,102,0.4); }
.contact-pill.whatsapp i { color: #25d366; }
.opening-hours { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 28px; }
.hours-title { font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.hours-row { display: flex; justify-content: space-between; margin-bottom: 10px; }
.hours-row span { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.hours-row strong { color: white; font-size: 0.9rem; }

/* Booking Form */
.booking-form {
  background: white; border-radius: var(--radius);
  padding: 36px; display: flex; flex-direction: column; gap: 18px;
  box-shadow: var(--shadow-lg);
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--text);
  background: white; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.1);
}
.booking-form select { cursor: pointer; }
.booking-form textarea { resize: vertical; }
.btn-submit {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--navy); color: white;
  padding: 16px; border-radius: var(--radius-sm);
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
  font-size: 1rem; font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  margin-top: 4px;
}
.btn-submit:hover { background: var(--blue); transform: translateY(-1px); }
.form-note { text-align: center; font-size: 0.78rem; color: var(--muted); }

/* ===== CONTACT ===== */
.contact { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-info .section-tag { display: inline-block; margin-bottom: 12px; }
.contact-info h2 { font-size: 2rem; font-weight: 700; color: var(--navy); margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: white; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--sky); font-size: 1rem; flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.contact-item p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }
.contact-item a { color: var(--sky); }
.contact-item a:hover { text-decoration: underline; }
.map-embed { border-radius: var(--radius); overflow: hidden; }
.map-embed iframe { display: block; border-radius: var(--radius); }
.map-placeholder {
  background: white; border: 2px dashed var(--border);
  border-radius: var(--radius); height: 360px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: var(--muted);
}
.map-placeholder i { font-size: 3rem; opacity: 0.25; }
.map-placeholder p { font-size: 0.9rem; font-weight: 600; }
.map-placeholder small { font-size: 0.78rem; text-align: center; max-width: 280px; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 64px;
}
.footer-logo .logo-main { color: white; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.7; margin: 16px 0 24px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: background 0.2s, color 0.2s;
}
.social-links a:hover { background: rgba(255,255,255,0.15); color: white; }
.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6); font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }
.footer-cta h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}
.footer-cta p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 18px; }
.footer-cta .btn-primary { font-size: 0.88rem; padding: 11px 22px; }
.footer-whatsapp {
  display: flex; align-items: center; gap: 7px;
  color: #25d366; font-size: 0.88rem; font-weight: 600;
  margin-top: 12px;
}
.footer-whatsapp:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-bottom a { color: rgba(255,255,255,0.5); }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: #25d366; color: white;
  padding: 13px 20px 13px 16px;
  border-radius: 50px;
  box-shadow: 0 6px 28px rgba(37,211,102,0.4);
  font-size: 0.88rem; font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float i { font-size: 1.3rem; }
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(37,211,102,0.5);
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .announcement-bar { display: none; }
  .nav-links {
    display: none; flex-direction: column; gap: 4px;
    position: absolute; top: 70px; left: 0; right: 0;
    background: white; padding: 12px 20px 20px;
    box-shadow: 0 12px 32px rgba(10,36,71,0.12);
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 8px; }
  .nav-links .btn-nav { margin-top: 8px; text-align: center; border-radius: 8px !important; }
  .hamburger { display: flex; }
  .navbar { position: sticky; }

  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; padding: 60px 0 0; }
  .hero-text { text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-btns { justify-content: center; }
  .hero-reassurance { justify-content: center; }
  .hero-visual { height: 380px; margin-top: 24px; }
  .hero-trust-card { left: 0; bottom: 40px; }
  .hero-exp-badge { right: 0; top: 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat:last-child, .stat:nth-last-child(2) { border-bottom: none; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-us-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-us-image { height: 340px; }
  .why-us-badge { bottom: -16px; right: 0; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image { height: 360px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.large { grid-column: span 2; height: 260px; }
  .gallery-item { height: 180px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .booking-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 600px) {
  .hero-content h1 { font-size: 2.2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .doctor-credentials { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .gallery-item.large { height: 200px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
}
