/* ===== TOP ANNOUNCEMENT BANNER ===== */
.top-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  background: linear-gradient(90deg, #041a2e 0%, #0a3060 40%, #0e4a7a 60%, #041a2e 100%);
  border-bottom: 1px solid rgba(0,188,212,0.3);
  padding: 0;
  font-size: 0.82rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.top-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(0,188,212,0.04) 60px, rgba(0,188,212,0.04) 61px);
  pointer-events: none;
}
.top-banner-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 9px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.tb-left, .tb-right {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
}
.tb-left i, .tb-right i { color: var(--accent-teal); }
.tb-pill {
  background: rgba(0,188,212,0.15);
  border: 1px solid rgba(0,188,212,0.3);
  color: #80deea;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.tb-pill i { color: var(--gold); }
.tb-sep { color: rgba(255,255,255,0.2); }
.tb-center {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.tb-center i.tb-icon { color: var(--accent-teal); font-size: 0.9rem; }
.tb-center a {
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.tb-center a:hover { color: var(--accent-teal); }
.tb-wa {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--wa-green) !important;
  color: white !important;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  transition: all 0.2s;
}
.tb-wa:hover { background: #1fb957 !important; transform: translateY(-1px); }
.tb-close {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.4); font-size: 0.85rem;
  padding: 2px 6px; transition: color 0.2s;
}
.tb-close:hover { color: white; }

/* Offset body for banner height */
body { padding-top: 40px; }

/* Adjust navbar top position to be below banner */
.navbar { top: 40px !important; }

/* Clinic Photo */
.clinic-photo-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--glass);
}
.clinic-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.clinic-photo-wrap:hover .clinic-photo { transform: scale(1.03); }
.clinic-photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(4,18,32,0.92), transparent);
  color: white;
  padding: 20px 18px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.clinic-photo-label i { color: var(--accent-teal); }

@media (max-width: 700px) {
  .tb-left, .tb-right { display: none; }
  .top-banner-inner { justify-content: center; }
  body { padding-top: 38px; }
  .navbar { top: 38px !important; }
}

/* ===== CSS VARIABLES ===== */
:root {
  --blue-900: #041220;
  --blue-800: #071d33;
  --blue-700: #0a2744;
  --blue-600: #0e3860;
  --blue-500: #1a4f8a;
  --blue-400: #1e7fcb;
  --blue-300: #4aa3e0;
  --blue-200: #90caf9;
  --blue-100: #e3f4fd;
  --accent-teal: #00bcd4;
  --accent-green: #4caf50;
  --gold: #f5a623;
  --wa-green: #25d366;
  --white: #ffffff;
  --text-main: #ffffff;
  --text-muted: rgba(255,255,255,0.65);
  --text-dim: rgba(255,255,255,0.40);
  --glass: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.10);
  --shadow: 0 12px 48px rgba(0,0,0,0.35);
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.20);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-main);
  background: var(--blue-700);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== VIDEO BACKGROUND ===== */
.video-bg-wrap {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 50%, var(--blue-800) 100%);
}
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4,18,32,0.88) 0%,
    rgba(10,39,68,0.80) 50%,
    rgba(4,18,32,0.90) 100%
  );
}
.camps-overlay {
  background: linear-gradient(
    160deg,
    rgba(4,18,32,0.90) 0%,
    rgba(10,39,68,0.82) 50%,
    rgba(0,30,60,0.90) 100%
  );
}

/* All content above fixed bg */
nav, section, footer, .wa-float, .scroll-top, .marquee-strip {
  position: relative;
  z-index: 10;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 0 24px;
}
.navbar.scrolled {
  background: rgba(4,18,32,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,188,212,0.3));
  transition: transform 0.3s;
}
.logo-img:hover { transform: scale(1.05); }
.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.80);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: color 0.25s;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0; right: 100%;
  height: 2px;
  background: var(--accent-teal);
  transition: right 0.3s ease;
  border-radius: 2px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }
.mobile-only { display: none; }

.btn-appt {
  background: linear-gradient(135deg, var(--blue-400), var(--blue-300));
  color: white;
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 18px rgba(30,127,203,0.45);
  transition: all 0.3s;
  flex-shrink: 0;
}
.btn-appt:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(30,127,203,0.6); }
.hamburger { display: none; color: white; font-size: 1.4rem; cursor: pointer; padding: 4px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  flex-wrap: wrap;
}
.hero-content { flex: 1; min-width: 300px; max-width: 660px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,127,203,0.15);
  border: 1px solid rgba(30,127,203,0.3);
  color: var(--blue-200);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 22px;
}
.hero-badge i { color: var(--gold); }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 14px;
}
.hero-sub-title {
  display: block;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--blue-300);
  font-weight: 400;
  font-style: italic;
  margin-top: 8px;
}
.hero-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 34px;
}
.hero-desc strong { color: white; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--blue-400), var(--accent-teal));
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 24px rgba(30,127,203,0.45);
  transition: all 0.3s;
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(30,127,203,0.6); }
.btn-primary.big { padding: 16px 34px; font-size: 1rem; }
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: all 0.3s;
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,0.6); }
.btn-ghost { border: 2px solid rgba(255,255,255,0.3); color: white; padding: 12px 26px; border-radius: 30px; font-weight: 600; font-size: 0.92rem; display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s; }
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: white; }

.hero-stats { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat span { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: white; }
.stat small { color: var(--text-muted); font-size: 0.78rem; }
.stat-div { width: 1px; height: 44px; background: rgba(255,255,255,0.15); }

/* Hero Doctor Card */
.hero-doctor-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  overflow: hidden;
  width: 300px;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}
.doc-photo-wrap { position: relative; }
.doc-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.doc-badge-avail {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  color: #81c784;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
  border: 1px solid rgba(76,175,80,0.3);
}
.dot-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4caf50;
  animation: dotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dotPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(76,175,80,0.6); } 50% { box-shadow: 0 0 0 6px transparent; } }
.doc-card-info { padding: 22px 24px 26px; }
.doc-card-info h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: white; margin-bottom: 4px; }
.doc-deg { color: var(--blue-300); font-size: 0.8rem; margin-bottom: 14px; }
.doc-meta { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 0.83rem; margin-bottom: 8px; }
.doc-meta i { color: var(--blue-300); width: 16px; flex-shrink: 0; }
.btn-card {
  display: block;
  margin-top: 18px;
  text-align: center;
  background: linear-gradient(135deg, var(--blue-400), var(--accent-teal));
  color: white;
  padding: 12px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.btn-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(30,127,203,0.5); }

/* ===== MARQUEE ===== */
.marquee-strip {
  background: linear-gradient(90deg, var(--blue-500), var(--blue-400), var(--accent-teal), var(--blue-400), var(--blue-500));
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 42px;
  animation: marquee 28s linear infinite;
}
.marquee-track span { color: rgba(255,255,255,0.9); font-size: 0.88rem; font-weight: 500; display: inline-flex; align-items: center; gap: 10px; }
.marquee-track i { color: rgba(255,255,255,0.6); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== GENERAL SECTION STYLES ===== */
.section { padding: 100px 40px; }
.container { max-width: 1300px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 3px;
  color: var(--blue-300); margin-bottom: 12px;
}
.section-label::before { content: ''; display: inline-block; width: 28px; height: 2px; background: var(--blue-300); border-radius: 2px; }
.section-label.light { color: rgba(255,255,255,0.5); }
.section-label.light::before { background: rgba(255,255,255,0.3); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.9rem); color: white; margin-bottom: 14px; line-height: 1.3; }
.section-header p { color: var(--text-muted); max-width: 620px; margin: 0 auto; font-size: 1.02rem; }
.hl { color: var(--blue-300); }

/* ===== ABOUT ===== */
.about-section { background: rgba(0,0,0,0.1); }
.about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 70px; align-items: center; }
.about-images { position: relative; }
.about-img-main { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.about-img-main img { width: 100%; height: 420px; object-fit: cover; object-position: center; }
.exp-badge {
  position: absolute; bottom: 24px; right: -18px;
  background: linear-gradient(135deg, var(--blue-400), var(--accent-teal));
  color: white; border-radius: 18px; padding: 18px 22px; text-align: center;
  box-shadow: 0 6px 24px rgba(30,127,203,0.5);
}
.exp-badge span { display: block; font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; line-height: 1; }
.exp-badge small { font-size: 0.72rem; opacity: 0.85; }
.about-creds-box { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.cred-row {
  display: flex; align-items: center; gap: 14px;
  background: rgba(30,127,203,0.1); border: 1px solid rgba(30,127,203,0.18);
  border-radius: 12px; padding: 13px 16px;
}
.cred-row i { font-size: 1.1rem; color: var(--blue-300); width: 20px; text-align: center; flex-shrink: 0; }
.cred-row div { display: flex; flex-direction: column; }
.cred-row strong { color: white; font-size: 0.9rem; }
.cred-row span { color: var(--text-muted); font-size: 0.78rem; }

.about-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3vw, 2.6rem); color: white; margin-bottom: 22px; line-height: 1.3; }
.about-text p { color: var(--text-muted); line-height: 1.82; margin-bottom: 16px; font-size: 0.97rem; }
.about-text strong { color: white; }
.about-vals { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.val-item { display: flex; align-items: flex-start; gap: 16px; background: var(--glass); border: 1px solid var(--glass-border); padding: 16px 18px; border-radius: 14px; }
.val-item i { font-size: 1.3rem; color: var(--blue-300); margin-top: 2px; flex-shrink: 0; }
.val-item div { display: flex; flex-direction: column; gap: 2px; }
.val-item strong { color: white; font-size: 0.95rem; }
.val-item span { color: var(--text-muted); font-size: 0.83rem; }

/* ===== SPECIALITIES ===== */
.spec-section {}
.spec-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.spec-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 20px; padding: 28px 24px;
  transition: all 0.35s; position: relative; overflow: hidden;
}
.spec-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-400), var(--accent-teal));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
}
.spec-card:hover { background: rgba(30,127,203,0.14); border-color: rgba(30,127,203,0.3); transform: translateY(-6px); box-shadow: var(--shadow); }
.spec-card:hover::before { transform: scaleX(1); }
.spec-icon { width: 55px; height: 55px; background: linear-gradient(135deg, var(--blue-400), var(--accent-teal)); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 1.45rem; color: white; margin-bottom: 18px; box-shadow: 0 6px 18px rgba(30,127,203,0.4); }
.spec-card h3 { color: white; font-size: 1.02rem; font-weight: 600; margin-bottom: 10px; }
.spec-card p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.68; }

/* ===== TEAM PHOTO SECTION ===== */
.team-photo-section { position: relative; z-index: 10; }
.team-photo-inner { position: relative; max-height: 500px; overflow: hidden; }
.team-photo { width: 100%; height: 500px; object-fit: cover; object-position: center top; display: block; }
.team-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(4,18,32,0.9) 0%, rgba(4,18,32,0.5) 50%, rgba(4,18,32,0.1) 100%);
  display: flex; align-items: center; padding: 60px;
}
.team-quote { max-width: 520px; }
.team-quote i { font-size: 2.5rem; color: var(--accent-teal); opacity: 0.6; margin-bottom: 20px; display: block; }
.team-quote p { font-family: 'Playfair Display', serif; font-size: clamp(1.3rem, 2.5vw, 1.8rem); color: white; font-style: italic; line-height: 1.5; margin-bottom: 18px; }
.team-quote span { color: var(--blue-300); font-size: 0.95rem; font-weight: 600; }

/* ===== CAMPS PREVIEW ===== */
.camps-preview { background: rgba(0,0,0,0.12); }
.camps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 50px; }
.camp-photo-card { border-radius: 18px; overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.camp-photo-card img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.5s ease; display: block; }
.camp-photo-card:hover img { transform: scale(1.06); }
.camp-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: white; padding: 30px 18px 16px;
  font-size: 0.88rem; font-weight: 600;
}
.camps-stats-row { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; padding: 40px; background: rgba(30,127,203,0.1); border-radius: 20px; border: 1px solid rgba(30,127,203,0.15); }
.cstat { text-align: center; }
.cstat span { display: block; font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; color: var(--accent-teal); }
.cstat small { color: var(--text-muted); font-size: 0.85rem; }

/* ===== GALLERY ===== */
.gallery-section {}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gal-item { border-radius: 16px; overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.gal-item.tall { grid-row: span 2; }
.gal-item.wide { grid-column: span 2; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; transition: transform 0.5s ease; display: block; }
.gal-item:hover img { transform: scale(1.05); }
.gal-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82), transparent);
  color: white; padding: 30px 16px 14px;
  font-size: 0.85rem; font-weight: 600;
  opacity: 0; transition: opacity 0.3s;
}
.gal-item:hover .gal-caption { opacity: 1; }

/* ===== APPOINTMENT ===== */
.appt-section { background: rgba(0,0,0,0.1); }
.appt-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.appt-left h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); color: white; margin-bottom: 14px; }
.appt-left > p { color: var(--text-muted); line-height: 1.75; margin-bottom: 30px; }
.timing-box { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 16px; padding: 24px; margin-bottom: 26px; }
.timing-box h4 { color: white; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.timing-box h4 i { color: var(--blue-300); }
.t-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.07); color: var(--text-muted); font-size: 0.88rem; }
.t-row:last-child { border: none; }
.t-row.closed { color: var(--text-dim); text-decoration: line-through; }
.quick-contact { display: flex; gap: 12px; }
.qc-btn { display: flex; align-items: center; gap: 10px; padding: 12px 22px; border-radius: 25px; font-size: 0.88rem; font-weight: 600; border: 2px solid rgba(255,255,255,0.2); color: white; transition: all 0.3s; }
.qc-btn:hover { border-color: var(--blue-300); background: rgba(30,127,203,0.15); }
.qc-btn.wa { border-color: rgba(37,211,102,0.4); color: #81c784; }
.qc-btn.wa:hover { background: rgba(37,211,102,0.12); }
.appt-form-wrap { background: var(--glass); backdrop-filter: blur(16px); border: 1px solid var(--glass-border); border-radius: 24px; padding: 40px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fg { margin-bottom: 20px; }
.fg label { display: block; color: var(--text-muted); font-size: 0.83rem; font-weight: 500; margin-bottom: 8px; }
.fg input, .fg select, .fg textarea {
  width: 100%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 13px 16px; color: white; font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif; transition: all 0.3s; appearance: none;
}
.fg select option { background: var(--blue-700); }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.3); }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none; border-color: var(--blue-400);
  background: rgba(30,127,203,0.12); box-shadow: 0 0 0 3px rgba(30,127,203,0.2);
}
.btn-submit {
  width: 100%; padding: 15px; background: linear-gradient(135deg, var(--blue-400), var(--accent-teal));
  color: white; border: none; border-radius: 14px; font-size: 1rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.3s; box-shadow: 0 6px 24px rgba(30,127,203,0.4); font-family: 'DM Sans', sans-serif;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(30,127,203,0.6); }
.form-success { display: none; text-align: center; padding: 50px 20px; }
.form-success i { font-size: 3.5rem; color: var(--accent-green); margin-bottom: 18px; display: block; }
.form-success h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 10px; }
.form-success p { color: var(--text-muted); }

/* ===== TESTIMONIALS ===== */
.testi-section { background: rgba(0,0,0,0.12); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.testi-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 20px; padding: 28px; transition: all 0.3s; }
.testi-card:hover { background: rgba(30,127,203,0.1); transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.72; margin-bottom: 20px; font-style: italic; }
.ta { display: flex; align-items: center; gap: 12px; }
.tav { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-400), var(--accent-teal)); display: flex; align-items: center; justify-content: center; color: white; font-size: 0.82rem; font-weight: 700; flex-shrink: 0; }
.ta strong { color: white; font-size: 0.88rem; display: block; }
.ta span { color: var(--text-dim); font-size: 0.78rem; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.ci { display: flex; align-items: flex-start; gap: 18px; }
.ci-icon { width: 48px; height: 48px; background: rgba(30,127,203,0.18); border: 1px solid rgba(30,127,203,0.25); border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--blue-300); flex-shrink: 0; }
.ci h4 { color: white; margin-bottom: 5px; font-size: 0.93rem; }
.ci p { color: var(--text-muted); font-size: 0.86rem; line-height: 1.65; }
.ci small { color: var(--text-dim); font-size: 0.78rem; }
.map-area { border-radius: 20px; overflow: hidden; border: 1px solid rgba(30,127,203,0.2); box-shadow: var(--shadow-sm); }
.map-embed { background: rgba(10,39,68,0.5); }
.map-link { display: flex; align-items: center; gap: 8px; padding: 14px 20px; color: var(--blue-300); font-size: 0.83rem; transition: color 0.2s; text-decoration: underline; }
.map-link:hover { color: white; }

/* ===== FOOTER ===== */
.footer { background: rgba(0,0,0,0.5); border-top: 1px solid rgba(255,255,255,0.07); padding: 70px 40px 30px; }
.footer-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.4fr; gap: 50px; margin-bottom: 50px; }
.footer-logo-img { height: 70px; width: auto; object-fit: contain; margin-bottom: 18px; filter: drop-shadow(0 2px 8px rgba(0,188,212,0.2)); }
.footer-brand p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.72; margin-bottom: 22px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.3s; }
.socials a:hover { background: var(--blue-400); color: white; transform: translateY(-2px); border-color: var(--blue-400); }
.footer-links h4 { color: white; font-size: 0.92rem; margin-bottom: 18px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.86rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--blue-300); }
.footer-contact-col h4 { color: white; font-size: 0.92rem; margin-bottom: 18px; }
.footer-contact-col p { color: var(--text-muted); font-size: 0.84rem; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.footer-contact-col i { color: var(--blue-300); margin-top: 2px; flex-shrink: 0; }
.footer-bottom { max-width: 1300px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { color: var(--text-dim); font-size: 0.79rem; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 62px; height: 62px;
  background: var(--wa-green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem; color: white; z-index: 9999;
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  transition: all 0.3s;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 10px 36px rgba(37,211,102,0.7); }
.wa-ripple { position: absolute; inset: -7px; border-radius: 50%; border: 3px solid rgba(37,211,102,0.45); animation: ripple 2s ease-out infinite; }
@keyframes ripple { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } }
.wa-tip {
  position: absolute; right: 76px;
  background: #075e54; color: white; padding: 8px 14px; border-radius: 20px;
  font-size: 0.8rem; white-space: nowrap; opacity: 0;
  transform: translateX(10px); transition: all 0.3s; pointer-events: none;
}
.wa-float:hover .wa-tip { opacity: 1; transform: translateX(0); }

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed; bottom: 102px; right: 30px;
  width: 44px; height: 44px;
  background: rgba(30,127,203,0.75); border: none; border-radius: 50%;
  color: white; font-size: 1rem; cursor: pointer; z-index: 9999;
  opacity: 0; transform: translateY(10px); transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.scroll-top.show { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--blue-400); }

/* ===== ANIMATIONS ===== */
.animate-1 { animation: fadeDown 0.7s ease both; }
.animate-2 { animation: fadeDown 0.85s ease 0.1s both; }
.animate-3 { animation: fadeDown 0.85s ease 0.2s both; }
.animate-4 { animation: fadeDown 0.85s ease 0.3s both; }
.animate-5 { animation: fadeDown 0.85s ease 0.4s both; }
.animate-right { animation: fadeLeft 1s ease 0.3s both; }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .appt-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gal-item.tall { grid-row: span 1; }
  .gal-item.wide { grid-column: span 1; }
}
@media (max-width: 768px) {
  .nav-links, .btn-appt { display: none; }
  .hamburger { display: block; }
  .mobile-only { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(4,18,32,0.98); backdrop-filter: blur(20px);
    align-items: center; justify-content: center; gap: 28px; z-index: 999;
  }
  .nav-links.open a { font-size: 1.3rem; }
  .btn-appt-mobile { background: linear-gradient(135deg, var(--blue-400), var(--accent-teal)); color: white !important; padding: 12px 28px; border-radius: 25px; font-weight: 700 !important; }
  .hero { flex-direction: column; text-align: center; padding: 100px 20px 60px; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-doctor-card { width: 100%; max-width: 320px; margin: 0 auto; }
  .section { padding: 70px 20px; }
  .camps-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .spec-grid { grid-template-columns: 1fr; }
  .team-photo-overlay { padding: 30px; }
  .team-quote p { font-size: 1.1rem; }
  .camps-stats-row { gap: 30px; }
  .about-img-main img { height: 300px; }
  .exp-badge { right: 10px; bottom: 10px; }
}
