/* ==========================================================================
   ALL ABOUT SMILES — DENTAL CLINIC & IMPLANT CENTRE (SALT LAKE, KOLKATA)
   Ultra-High Performance Design System (Framework-Free, Lightning Fast)
   ========================================================================== */

:root {
  --navy: #0b1f38;
  --navy-deep: #061221;
  --navy-soft: #162f4f;
  --teal: #0d7a71;
  --teal-dark: #095952;
  --teal-light: #e5f5f3;
  --gold: #c59b58;
  --gold-dark: #9e7636;
  --gold-light: #fcf4e6;
  --paper: #fbf9f5;
  --paper-soft: #f4f0e8;
  --white: #ffffff;
  --ink: #0f1f33;
  --ink-soft: #384c63;
  --muted: #647a91;
  --line: #e1ebe7;
  --line-dark: rgba(255, 255, 255, 0.12);
  --green: #16a34a;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 12px rgba(11, 31, 56, 0.05);
  --shadow-md: 0 12px 32px -8px rgba(11, 31, 56, 0.12);
  --shadow-lg: 0 24px 60px -15px rgba(11, 31, 56, 0.18);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --hdr-height: 74px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hdr-height) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--gold-light);
  color: var(--navy-deep);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

/* Typography */
h1, h2, h3, h4 {
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 800;
}

h1 {
  font-size: clamp(34px, 4.8vw, 58px);
}

h2 {
  font-size: clamp(28px, 3.4vw, 42px);
}

h3 {
  font-size: 19px;
}

.serif-italic {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--teal);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.kicker::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--gold);
}

.kicker-light {
  color: #9fe2da;
}
.kicker-light::before {
  background: #f1cf88;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: all 0.22s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: scale(0.98);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(13, 122, 113, 0.55);
}

.btn-teal:hover {
  background: var(--teal-dark);
  box-shadow: 0 14px 28px -8px rgba(13, 122, 113, 0.7);
}

.btn-wa {
  background: #1f9d55;
  color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(31, 157, 85, 0.55);
}

.btn-wa:hover {
  background: #178245;
  box-shadow: 0 14px 28px -8px rgba(31, 157, 85, 0.7);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 800;
  box-shadow: 0 10px 24px -8px rgba(197, 155, 88, 0.6);
}

.btn-gold:hover {
  background: #d4a965;
}

.btn-outline {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-light);
}

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-sm {
  min-height: 40px;
  padding: 0 18px;
  font-size: 12.5px;
}

.btn-lg {
  min-height: 54px;
  padding: 0 30px;
  font-size: 14.5px;
}

.btn-block {
  width: 100%;
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  transition: all 0.2s var(--ease);
}

.icon-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

/* Header & Topline */
.topline {
  background: var(--navy-deep);
  color: #a4b7cc;
  font-size: 11px;
  font-weight: 600;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topline .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topline-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topline-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.topline-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topline-contact a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--white);
  font-weight: 700;
}

.topline-contact a:hover {
  color: var(--gold);
}

.header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--hdr-height);
  background: rgba(251, 249, 245, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.24s var(--ease);
}

.header.scrolled {
  box-shadow: 0 10px 30px -10px rgba(11, 31, 56, 0.12);
}

.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  display: grid;
  place-items: center;
  border: 1px solid rgba(197, 155, 88, 0.35);
  box-shadow: 0 4px 12px rgba(11, 31, 56, 0.15);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-title {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--navy);
}

.brand-subtitle {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  position: relative;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 6px 0;
  transition: color 0.2s;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.24s var(--ease);
}

.nav a:hover {
  color: var(--navy);
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hdr-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hdr-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.hdr-call-btn:hover {
  color: var(--teal);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  color: var(--navy);
  place-items: center;
}

/* Live Open / Closed Status Pill */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-open {
  background: #edf9f2;
  color: #12753e;
  border-color: #b9e6cc;
}
.status-open .status-dot {
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.22);
}

.status-closed {
  background: #fff4eb;
  color: #9a3412;
  border-color: #fed7aa;
}
.status-closed .status-dot {
  background: #ea580c;
}

/* HERO SECTION */
.hero {
  position: relative;
  padding: 64px 0 80px;
  background: radial-gradient(1000px 500px at 90% -10%, #e3f4f1 0%, transparent 60%),
              radial-gradient(800px 450px at -10% 100%, #f7edd9 0%, transparent 60%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
}

.hero-content {
  max-width: 600px;
}

.hero-chips {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.stars-gold {
  color: #f59e0b;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero-lead {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-features-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
}

.hero-feat-item svg {
  color: var(--teal);
}

/* Hero Media Card */
.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: var(--navy);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px;
}

.hero-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius-lg) - 4px);
}

.hero-card-badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(11, 31, 56, 0.9);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid rgba(197, 155, 88, 0.4);
  letter-spacing: 0.5px;
}

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.96);
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-card-footer strong {
  font-size: 13px;
  color: var(--navy);
}

.hero-card-footer small {
  display: block;
  font-size: 10.5px;
  color: var(--muted);
}

/* Trust Stats Band */
.stats-band {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  padding: 0 16px;
  border-right: 1px solid var(--line);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.stat-num span {
  color: var(--gold);
}

.stat-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-soft);
  margin-top: 6px;
}

.stat-sub {
  font-size: 11px;
  color: var(--muted);
}

/* SECTION COMMONS */
.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--paper-soft);
}

.section-dark {
  background: var(--navy-deep);
  color: #c9d8e8;
}

.section-dark h2, .section-dark h3 {
  color: var(--white);
}

.sec-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.sec-head p {
  font-size: 16px;
  color: var(--muted);
  margin-top: 12px;
}

/* BEFORE / AFTER INTERACTIVE SLIDER */
.ba-section {
  background: var(--white);
}

.ba-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(40px, 5vw, 70px);
}

.ba-slider-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  user-select: none;
  aspect-ratio: 1 / 1;
  background: #000;
}

.ba-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before {
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  width: 3px;
  margin-left: -1.5px;
  background: var(--white);
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  margin: -23px 0 0 -23px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  display: grid;
  place-items: center;
  color: var(--navy);
}

.ba-slider-box input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
}

.ba-tag {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(11, 31, 56, 0.82);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.ba-tag-left { left: 16px; }
.ba-tag-right { right: 16px; }

.ba-cases-nav {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.ba-case-btn {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  transition: all 0.2s;
}

.ba-case-btn.active, .ba-case-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* TREATMENTS GRID */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.treatment-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), border-color 0.24s;
}

.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #9fe2da;
}

.treatment-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal-light), var(--gold-light));
  color: var(--teal);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.treatment-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-light);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.treatment-card h3 {
  margin-bottom: 10px;
}

.treatment-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.treatment-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
}

.treatment-card:hover .treatment-action {
  color: var(--teal-dark);
}

/* DOCTOR SECTION */
.doctor-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}

.doctor-media {
  position: relative;
}

.doctor-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(197, 155, 88, 0.4);
}

.doctor-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.doctor-creds-badge {
  display: none;
}

.doctor-caption-card {
  margin-top: 12px;
  padding: 14px 18px;
  background: rgba(11, 31, 56, 0.94);
  color: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(197, 155, 88, 0.4);
  box-shadow: var(--shadow-md);
}
.doctor-caption-card strong {
  font-size: 15px;
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
}
.doctor-caption-card small {
  color: #f1cf88;
  font-size: 12px;
  line-height: 1.4;
  display: block;
}

.doc-credentials-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 24px;
}

.doc-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}

.doc-chip svg {
  color: var(--teal);
}

.doc-steps-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
  list-style: none;
}

.doc-step-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.doc-step-num {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.doc-step-item strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 4px;
}

.doc-step-item p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* STERILIZATION & FACILITY SHOWCASE */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.facility-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease);
}

.facility-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.facility-img-wrap {
  aspect-ratio: 1.25 / 1;
  overflow: hidden;
  background: #f0f0f0;
}

.facility-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.facility-card:hover .facility-img-wrap img {
  transform: scale(1.04);
}

.facility-body {
  padding: 22px;
}

.facility-body h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.facility-body p {
  font-size: 13.5px;
  color: var(--muted);
}

/* GALLERY & REAL CLINICAL CASES */
.gallery-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  transition: all 0.2s;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.clinical-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
  border: 1px solid var(--line);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--ease), opacity 0.2s;
}

.gallery-item:hover img {
  transform: scale(1.05);
  opacity: 0.92;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  background: linear-gradient(180deg, transparent, rgba(6, 18, 33, 0.92));
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

/* REVIEWS SECTION */
.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 24px;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.review-stars {
  color: #f59e0b;
  display: flex;
  gap: 3px;
}

.review-text {
  font-size: 14px;
  line-height: 1.65;
  color: #2c3e50;
  flex: 1;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: var(--white);
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 14px;
}

.reviewer-info strong {
  display: block;
  font-size: 13.5px;
  color: var(--navy);
}

.reviewer-info small {
  font-size: 11px;
  color: var(--muted);
}

/* LOCATION & VISIT */
.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.map-card {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e5ece9;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  inset: 0;
}

.visit-info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-item svg {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 3px;
}

.info-item strong {
  display: block;
  font-size: 13.5px;
  color: var(--navy);
  margin-bottom: 2px;
}

.info-item p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
}

.hours-table td {
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--muted);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
}

.hours-table tr.today td {
  color: var(--navy);
  font-weight: 800;
}

/* FINAL CTA */
.final-cta {
  background: radial-gradient(circle at 10% 10%, #16365c 0%, #061221 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px);
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  border: 1px solid rgba(197, 155, 88, 0.35);
  box-shadow: var(--shadow-lg);
}

.final-cta h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.final-cta p {
  color: #a4b7cc;
  font-size: 15px;
}

/* FAQ ACCORDION */
.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item[open] {
  border-color: var(--teal);
  box-shadow: 0 10px 24px -10px rgba(13, 122, 113, 0.18);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  user-select: none;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease), background 0.2s;
  color: var(--navy);
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--teal-light);
  color: var(--teal);
  border-color: var(--teal);
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  background: var(--navy-deep);
  color: #9ab0c7;
  padding: 70px 0 30px;
  font-size: 13.5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h4 {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer ul a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 12px;
}

/* DIALOG RESETS & BASE */
dialog:not([open]) {
  display: none !important;
}

dialog[open] {
  display: block;
}

/* LIGHTBOX MODAL */
.lightbox {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  margin: 0 !important;
  width: min(920px, calc(100% - 32px)) !important;
  max-height: min(90vh, 850px) !important;
  border: 0;
  padding: 0;
  border-radius: 20px;
  background: transparent;
  z-index: 9999;
}

.lightbox::backdrop {
  background: rgba(4, 15, 32, 0.88);
  backdrop-filter: blur(8px);
}

.lightbox-body {
  position: relative;
  background: #091a30;
  border-radius: 20px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 35px 80px -20px rgba(0, 0, 0, 0.7);
}

.lightbox-body img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 12px;
  background: #000;
  display: block;
}

.lightbox-body p {
  color: var(--white);
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  background: var(--white);
  color: var(--navy);
  border: none;
  cursor: pointer;
}

/* BOOKING MODAL */
.dlg {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  margin: 0 !important;
  width: min(500px, calc(100% - 32px)) !important;
  max-height: 90vh !important;
  border: 0;
  padding: 0;
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 35px 80px -20px rgba(11, 31, 56, 0.6);
  z-index: 10000;
  overflow-y: auto;
}

.dlg::backdrop {
  background: rgba(6, 18, 33, 0.75);
  backdrop-filter: blur(8px);
}

.dlg-body {
  padding: 32px;
}

.dlg-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.dlg-head h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.dlg-head p {
  font-size: 13px;
  color: var(--muted);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  font: inherit;
  font-size: 14px;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 122, 113, 0.15);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.phone-field-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  overflow: hidden;
}

.phone-field-wrap:focus-within {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 122, 113, 0.15);
}

.phone-prefix {
  padding: 0 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  background: var(--paper-soft);
  height: 48px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
}

.phone-field-wrap input {
  border: none;
  box-shadow: none;
}

.dlg-note {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
}

/* MOBILE DOCK */
.dock {
  display: none;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 980px) {
  .nav {
    display: none;
  }
  .nav-toggle {
    display: grid;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-visual {
    max-width: 480px;
    margin: 0 auto;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stat-item {
    border-right: none;
  }
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .doctor-grid {
    grid-template-columns: 1fr;
  }
  .ba-grid {
    grid-template-columns: 1fr;
  }
  .clinical-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .visit-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 74px;
  }
  .topline {
    display: none;
  }
  .header {
    height: 66px;
  }
  .header .container {
    padding: 0 16px;
  }
  .brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  .brand-icon svg {
    width: 22px;
    height: 22px;
  }
  .brand-title {
    font-size: 15px;
    line-height: 1.2;
  }
  .brand-subtitle {
    font-size: 8px;
    letter-spacing: 0.12em;
  }
  .hdr-call-btn {
    display: none;
  }
  .hdr-actions .btn-wa {
    display: none;
  }
  .nav-toggle {
    display: grid;
  }
  .section {
    padding: 60px 0;
  }
  .treatments-grid {
    grid-template-columns: 1fr;
  }
  .facility-grid {
    grid-template-columns: 1fr;
  }
  .clinical-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .reviews-track {
    grid-auto-columns: 88%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  
  /* Mobile Action Dock */
  .dock {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1.6fr 1fr;
    gap: 8px;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    background: rgba(251, 249, 245, 0.98);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px -10px rgba(11, 31, 56, 0.22);
  }

  .dock-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 52px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--navy);
  }

  .dock-btn.dock-call {
    background: var(--teal-light);
    color: var(--teal-dark);
  }

  .dock-btn.dock-wa {
    background: #1f9d55;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    flex-direction: row;
    gap: 6px;
    box-shadow: 0 4px 14px rgba(31, 157, 85, 0.4);
  }

  .dock-btn.dock-dir {
    background: #f1f5f9;
  }
  
  /* Mobile Slide-Out Nav */
  .nav.mobile-active {
    display: flex;
    position: absolute;
    top: var(--hdr-height);
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 20px;
    box-shadow: var(--shadow-lg);
    gap: 0;
  }

  .nav.mobile-active a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav.mobile-active a:last-child {
    border-bottom: none;
  }
}
