/* ==========================================================================
   DR. BINDAL'S DENTAL CLINIC & IMPLANT CENTER — DESIGN SYSTEM
   Sector 11 & 21, Panchkula | Dr. Rajesh Bindal — 31+ Years
   ========================================================================== */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #1A1A1A;
  background: #FAF8F5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* --- DESIGN TOKENS --- */
:root {
  --teal: #0B3C49;
  --teal-dark: #052129;
  --teal-light: #0E7490;
  --gold: #B45309;
  --gold-light: #D97706;
  --cream: #FAF8F5;
  --charcoal: #111827;
  --grey-100: #F3F4F6;
  --grey-300: #9CA3AF;
  --grey-500: #374151;
  --grey-700: #1F2937;
  --grey-900: #111827;
  --green: #059669;
  --red: #DC2626;
  --shadow-sm: 0 2px 4px rgba(15, 76, 92, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 76, 92, 0.12);
  --shadow-lg: 0 20px 60px rgba(15, 76, 92, 0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --container: 1200px;
  --space-section: 100px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--teal-dark);
  line-height: 1.25;
  font-weight: 750;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 0.5rem; }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); margin-bottom: 0.5rem; }
p  { color: #1F2937; font-weight: 450; line-height: 1.65; }

.section-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
}

/* --- LAYOUT --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: var(--space-section) 0; }

/* --- HEADER --- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 76, 92, 0.08);
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--teal-dark);
}
.brand__mark {
  width: 44px; height: 44px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(15, 76, 92, 0.3);
}
.brand__name { font-size: 1.05rem; line-height: 1.1; }
.brand__name small { display: block; font-size: 0.7rem; color: var(--grey-500); font-weight: 500; letter-spacing: 0.05em; }

.nav-list {
  display: flex;
  gap: 32px;
}
.nav-list a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-list a:hover { color: var(--teal); }
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-list a:hover::after { width: 100%; }

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: white !important;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(15, 76, 92, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(15, 76, 92, 0.45);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--teal-dark);
  transition: transform 0.3s, opacity 0.3s;
}

/* --- HERO --- */
.hero {
  position: relative;
  padding: 140px 0 100px;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #FAF7F2 0%, #EEF5F7 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 130%;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.2) 0%, transparent 60%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero__content { position: relative; z-index: 2; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(15, 76, 92, 0.08);
  border-radius: var(--radius-full);
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.hero__eyebrow::before { content: '★'; color: var(--gold); }
.hero h1 { margin-bottom: 20px; color: var(--teal-dark); }
.hero h1 .accent {
  color: #0E7490;
  background: none;
  -webkit-text-fill-color: #0E7490;
}
.hero__desc {
  font-size: 1.15rem;
  color: var(--grey-900);
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: white;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 20px rgba(15, 76, 92, 0.35);
  transition: all 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(15, 76, 92, 0.45); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: white;
  color: var(--teal);
  border: 2px solid var(--teal);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--teal); color: white; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(15, 76, 92, 0.1);
  border-bottom: 1px solid rgba(15, 76, 92, 0.1);
  max-width: 520px;
}
.hero__stat .num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
}
.hero__stat .label {
  font-size: 0.8rem;
  color: var(--grey-500);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero image */
.hero__visual {
  position: relative;
  z-index: 2;
}
.hero__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
}
.hero__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: white;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float 4s ease-in-out infinite;
}
.hero__badge .icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 22px;
}
.hero__badge .text strong { display: block; color: var(--teal-dark); font-size: 1rem; }
.hero__badge .text small { color: var(--grey-500); font-size: 0.8rem; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* --- STATUS BAR --- */
.status-bar {
  background: var(--teal-dark);
  color: white;
  padding: 12px 0;
  font-size: 0.85rem;
}
.status-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.status-indicator::before {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--grey-500);
}
.status-indicator.status-open::before {
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: pulse 2s infinite;
}
.status-indicator.status-closed::before { background: var(--red); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.status-bar__info { color: rgba(255, 255, 255, 0.8); }
.status-bar__info strong { color: white; }

/* --- SECTION HEADERS --- */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-header p { color: #1F2937; font-size: 1.08rem; font-weight: 500; margin-top: 12px; line-height: 1.6; }

/* --- WHY CHOOSE US --- */
.why-us {
  background: linear-gradient(180deg, #FAF7F2 0%, white 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: white;
  padding: 32px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 76, 92, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-card__icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.why-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.why-card p { font-size: 0.92rem; color: #1F2937; line-height: 1.55; font-weight: 450; }

/* --- SERVICES --- */
.services {
  background: white;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  padding: 32px 24px 28px;
  background: linear-gradient(180deg, white, #FAF7F2);
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 76, 92, 0.08);
  overflow: hidden;
  transition: transform 0.3s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.service-card:hover { transform: translateY(-4px); }
.service-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: rgba(15, 76, 92, 0.08);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--teal-dark); }
.service-card p { font-size: 0.92rem; color: #1F2937; margin-bottom: 16px; line-height: 1.55; font-weight: 450; }
.service-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s;
}
.service-card__btn:hover { gap: 12px; }

/* --- BEFORE/AFTER SLIDER --- */
.ba-section {
  background: linear-gradient(180deg, white 0%, #FAF7F2 100%);
}
.ba-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.ba-content h2 { margin-bottom: 20px; }
.ba-content p { margin-bottom: 24px; }
.ba-cases {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.ba-case-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: white;
  border: 2px solid rgba(15, 76, 92, 0.1);
  border-radius: var(--radius-md);
  text-align: left;
  transition: all 0.2s;
}
.ba-case-btn:hover { border-color: var(--teal); }
.ba-case-btn.active {
  border-color: var(--teal);
  background: var(--teal);
  color: white;
}
.ba-case-btn .idx {
  width: 32px; height: 32px;
  border-radius: var(--radius-full);
  background: rgba(15, 76, 92, 0.1);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--teal);
}
.ba-case-btn.active .idx {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.ba-case-btn .info strong { display: block; font-size: 0.95rem; }
.ba-case-btn .info small { color: var(--grey-500); font-size: 0.8rem; }
.ba-case-btn.active .info small { color: #E2E8F0; }

/* Slider */
.ba-slider {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: var(--shadow-lg);
  --pos: 50%;
}
.ba-slider__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.ba-slider__before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-slider__label {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.ba-slider__label-before { left: 16px; }
.ba-slider__label-after { right: 16px; }
.ba-slider__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 3px;
  background: white;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  z-index: 5;
}
.ba-slider__handle::after {
  content: '⇔';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: white;
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.ba-slider__range {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
}

/* --- CLINIC INFO --- */
.clinic-info {
  background: var(--teal-dark);
  color: white;
  position: relative;
  overflow: hidden;
}
.clinic-info::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.clinic-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.clinic-info h2 { color: white; }
.clinic-info .section-eyebrow { color: var(--gold-light); }
.clinic-info p { color: rgba(255, 255, 255, 0.8); }
.clinic-info__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.info-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 22px;
  backdrop-filter: blur(10px);
  transition: transform 0.2s;
}
.info-card:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.12); }
.info-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 20px;
  margin-bottom: 12px;
}
.info-card h4 { color: white; font-size: 1rem; margin-bottom: 6px; }
.info-card p { color: rgba(255, 255, 255, 0.8); font-size: 0.85rem; line-height: 1.5; }

/* --- TIMINGS --- */
.timings { background: #FAF8F5; }
.timings__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.day-card {
  background: white;
  padding: 20px 12px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s;
}
.day-card .day {
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.day-card .time {
  font-size: 0.85rem;
  color: var(--charcoal);
  font-weight: 600;
  margin-bottom: 4px;
}
.day-card .closed {
  font-size: 0.8rem;
  color: var(--red);
  font-weight: 600;
}
.day-card.today {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(212, 165, 116, 0.35);
  transform: translateY(-4px);
}

/* --- DOCTOR PROFILE --- */
.doctor { background: white; }
.doctor__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}
.doctor__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  box-shadow: var(--shadow-lg);
}
.doctor__photo img { width: 100%; height: 100%; object-fit: cover; }
.doctor__badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: white;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  color: var(--teal-dark);
  box-shadow: var(--shadow-md);
  font-size: 0.9rem;
}
.doctor__content .section-eyebrow { margin-bottom: 12px; }
.doctor__content h2 { margin-bottom: 8px; }
.doctor__sub { color: #0E7490; font-size: 1.05rem; margin-bottom: 20px; font-weight: 600; }
.doctor__bio { margin-bottom: 24px; }
.doctor__creds {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.cred-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(15, 76, 92, 0.08);
  border-radius: var(--radius-full);
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 500;
}
.doctor__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, #FAF7F2, #EEF5F7);
  border-radius: var(--radius-md);
  margin-bottom: 28px;
}
.hl { text-align: center; }
.hl .n { font-family: 'Poppins', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--teal); }
.hl .l { font-size: 0.8rem; color: #111827; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

/* --- GALLERY --- */
.gallery { background: #FAF8F5; }
.gallery__filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 20px;
  background: white;
  border: 1px solid rgba(15, 76, 92, 0.1);
  border-radius: var(--radius-full);
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--teal); color: var(--teal); }
.filter-btn.active {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px 16px 12px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item__caption { opacity: 1; }

/* --- TESTIMONIALS --- */
.testimonials { background: white; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: linear-gradient(180deg, white, #FAF7F2);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 76, 92, 0.08);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: -20px; left: 20px;
  font-family: 'Poppins', serif;
  font-size: 6rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.5;
}
.testi-card__stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testi-card__text { margin-bottom: 20px; font-size: 0.98rem; color: #111827; line-height: 1.65; font-weight: 450; }
.testi-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.testi-card__author-info strong { display: block; color: var(--teal-dark); font-size: 0.95rem; }
.testi-card__author-info small { color: #4B5563; font-size: 0.82rem; font-weight: 500; }

/* --- VISIT --- */
.visit { background: linear-gradient(180deg, #FAF7F2 0%, white 100%); }
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.visit__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 400px;
  background: var(--teal-dark);
}
.visit__map iframe {
  width: 100%; height: 100%;
  min-height: 400px;
  border: 0;
}
.visit__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.visit__card {
  background: white;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.visit__card .icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-full);
  background: rgba(15, 76, 92, 0.08);
  color: var(--teal);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-right: 12px;
  vertical-align: middle;
}
.visit__card h4 { display: inline; vertical-align: middle; color: var(--teal-dark); font-size: 1rem; }
.visit__card p { color: #1F2937; font-size: 0.92rem; margin-top: 8px; line-height: 1.5; font-weight: 450; }
.visit__card a.phone-link { color: var(--teal); font-weight: 600; }

/* --- CTA STRIP --- */
.cta-strip {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  padding: 80px 24px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.2) 0%, transparent 60%);
}
.cta-strip .container { position: relative; z-index: 2; }
.cta-strip h2 { color: white; margin-bottom: 16px; }
.cta-strip p { color: rgba(255, 255, 255, 0.85); font-size: 1.05rem; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-strip .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}
.cta-strip .btn-cta:hover { transform: translateY(-2px); }

/* --- FOOTER --- */
.footer {
  background: #0A2A33;
  color: #E2E8F0;
  padding: 60px 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer ul li { margin-bottom: 10px; }
.footer a { color: #E2E8F0; transition: color 0.2s; font-size: 0.9rem; }
.footer a:hover { color: var(--gold); }
.footer__brand p { margin-top: 12px; font-size: 0.88rem; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #CBD5E1;
}

/* --- BOOKING MODAL --- */
dialog.booking {
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
  max-width: 480px;
  width: calc(100% - 32px);
  box-shadow: var(--shadow-lg);
}
dialog.booking::backdrop {
  background: rgba(10, 42, 51, 0.7);
  backdrop-filter: blur(4px);
}
.booking__header {
  padding: 22px 28px 16px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: white;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.booking__header h3 { color: white; font-size: 1.3rem; }
.booking__header p { color: rgba(255, 255, 255, 0.85); font-size: 0.85rem; }
.booking__close {
  color: white;
  font-size: 24px;
  line-height: 1;
  padding: 4px 8px;
  opacity: 0.8;
}
.booking__close:hover { opacity: 1; }
.booking__body { padding: 24px 28px 28px; }
.booking__field { margin-bottom: 16px; }
.booking__field label {
  display: block;
  font-size: 0.85rem;
  color: var(--teal-dark);
  font-weight: 600;
  margin-bottom: 6px;
}
.booking__field input,
.booking__field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(15, 76, 92, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: white;
  color: var(--charcoal);
  transition: border-color 0.2s;
}
.booking__field input:focus,
.booking__field select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 76, 92, 0.1);
}
.booking__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.booking__submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.booking__submit:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4); }

/* --- LIGHTBOX --- */
dialog.lightbox {
  border: none;
  padding: 0;
  max-width: 900px;
  width: 94vw;
  background: transparent;
}
dialog.lightbox::backdrop { background: rgba(0, 0, 0, 0.85); }
.lightbox__img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  display: block;
  margin: 0 auto;
}
.lightbox__caption {
  color: white;
  text-align: center;
  padding: 16px;
  font-size: 0.95rem;
}
.lightbox__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.3); }

/* --- FLOATING WA BUTTON (Desktop) --- */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 50;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }

/* --- MOBILE ACTION DOCK --- */
.mobile-dock { display: none; }

/* --- RESPONSIVE --- */
@media (max-width: 968px) {
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .wa-float { display: none !important; }

  /* Sticky 3-Action Dock */
  .mobile-dock {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 99;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(15, 76, 92, 0.12);
    box-shadow: 0 -8px 24px -8px rgba(15, 76, 92, 0.2);
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  }
  .dock-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-height: 52px;
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.15s, background-color 0.15s;
  }
  .dock-btn:active { transform: scale(0.97); }
  .dock-ico { width: 22px; height: 22px; }
  .dock-call { background: #E6F3F5; color: #0F4C5C; }
  .dock-wa { background: #25D366; color: #FFFFFF; }
  .dock-map { background: #F3F4F6; color: #1F2937; }

  .hero__grid, .clinic-info__grid, .doctor__grid, .visit__grid, .ba-layout { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .timings__grid { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 110px; }
  .nav-list { display: none; }
  .btn-book.nav { display: none; }
  .nav-toggle { display: flex; }
  .site-nav.mobile-active {
    display: flex;
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    background: white;
    padding: 24px;
    box-shadow: var(--shadow-md);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  :root { --space-section: 50px; }
  .hero { padding: 95px 0 45px; min-height: auto; }
  .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .stat-card { padding: 12px 8px; border-radius: 12px; text-align: center; }
  .stat-card strong { font-size: 1.25rem; display: block; }
  .stat-card span { font-size: 0.72rem; line-height: 1.2; display: block; }
  .why-grid, .services-grid, .testi-grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .timings__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .booking__row { grid-template-columns: 1fr; }
  .clinic-info__cards { grid-template-columns: 1fr; }
  .doctor__highlights { grid-template-columns: 1fr; }
}
