/* ============================================================
   SMILE CRAFT DENTAL — style.css
   Pure Vanilla CSS | No frameworks
   ============================================================ */

/* ── ROOT VARIABLES ── */
:root {
  --mint:            #2dd4bf;
  --mint-dark:       #0d9488;
  --mint-light:      #e0fdf8;
  --mint-mid:        #99f6e4;
  --bg:              #f0fafa;
  --white:           #ffffff;
  --dark:            #0f2830;
  --navy:            #1a3a4a;
  --text:            #374151;
  --muted:           #6b7280;
  --border:          #e5e7eb;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.10);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.12);

  --radius-sm:  10px;
  --radius:     14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);

  --font-body:    'Plus Jakarta Sans', sans-serif;
  --font-display: 'Syne', sans-serif;

  --section-py: 6rem;
  --container:  1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9375rem;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-mint {
  background: var(--mint);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(45,212,191,.35);
}
.btn-mint:hover {
  background: var(--mint-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45,212,191,.45);
}

.btn-outline {
  background: transparent;
  color: var(--mint-dark);
  border-color: var(--mint);
}
.btn-outline:hover {
  background: var(--mint);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--mint-dark);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--mint-light);
  transform: translateY(-2px);
}

.btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
}

/* ============================================================
   SECTION SHARED UTILITIES
   ============================================================ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--mint-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-tag::before { content: '—'; opacity: 0.5; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 36rem;
}

.section-header {
  text-align: center;
  max-width: 46rem;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}
.section-header .section-tag {
  display: flex;
  justify-content: center;
}
.section-header .section-desc {
  margin-inline: auto;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible       { opacity: 1; transform: translateY(0); }
.reveal-d1.visible    { transition-delay: 0.1s; }
.reveal-d2.visible    { transition-delay: 0.2s; }
.reveal-d3.visible    { transition-delay: 0.3s; }
.reveal-d4.visible    { transition-delay: 0.4s; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(45,212,191,.12);
  box-shadow: 0 1px 8px rgba(0,0,0,.05);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.1); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 0.6rem; }

.logo-mark {
  width: 2.4rem;
  height: 2.4rem;
  background: var(--mint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform var(--transition);
}
.logo:hover .logo-mark { transform: rotate(-6deg) scale(1.1); }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
}
.logo-text span { color: var(--mint-dark); }

/* Desktop nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mint);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--mint-dark); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: color var(--transition);
  position: relative;
  background: none;
  border: none;
  padding: 0;
}
.nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mint);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-dropdown-trigger .arrow {
  font-size: 0.7rem;
  transition: transform var(--transition);
}
.nav-dropdown:hover .nav-dropdown-trigger { color: var(--mint-dark); }
.nav-dropdown:hover .nav-dropdown-trigger::after { width: 100%; }
.nav-dropdown:hover .arrow { transform: rotate(180deg); }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  overflow: hidden;
  z-index: 300;
}
.nav-dropdown:hover .dropdown-menu { display: block; }

.dropdown-link {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
}
.dropdown-link:hover {
  background: var(--mint-light);
  color: var(--mint-dark);
}

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-cta { display: none; }

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 8px;
  color: var(--text);
  transition: background var(--transition);
}
.mobile-menu-btn:hover { background: var(--mint-light); }
.mobile-menu-btn .material-icons { font-size: 1.4rem !important; }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.mobile-menu.is-open { display: block; }

.mobile-menu-inner {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--mint-light);
  color: var(--mint-dark);
}

.mobile-branch-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.6rem 1rem 0.2rem;
}

.mobile-menu-divider {
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.55;
}
.hero-blob--1 {
  width: 36rem;
  height: 36rem;
  background: radial-gradient(circle, #a7f3d0 0%, #6ee7d8 50%, transparent 70%);
  top: -8rem;
  right: -6rem;
}
.hero-blob--2 {
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, #c7f2ff 0%, #a5f3fc 60%, transparent 80%);
  bottom: -4rem;
  left: 10%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 4rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--mint-mid);
  color: var(--mint-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-tag-dot {
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.25rem;
}
.hero-title em {
  font-style: normal;
  color: var(--mint-dark);
}

.hero-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 30rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero visual collage */
.hero-visual {
  position: relative;
  height: 26rem;
}

.hero-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 100%;
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) 60px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }

.hero-img-small {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  width: 38%;
  height: 55%;
  border-radius: 50px 20px 50px 20px;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.hero-img-small img { width: 100%; height: 100%; object-fit: cover; }

/* Rotating badge */
.hero-badge-ring {
  position: absolute;
  bottom: -1rem;
  right: -0.5rem;
  width: 7rem;
  height: 7rem;
  z-index: 4;
  background: var(--mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(45,212,191,.5);
}
.hero-badge-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spinBadge 15s linear infinite;
}
@keyframes spinBadge { to { transform: rotate(360deg); } }

.hero-badge-icon {
  position: absolute;
  color: white;
  font-size: 1.8rem !important;
}

/* ── Quick service cards strip ── */
.hero-cards-strip {
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(45,212,191,.15);
  padding: 1.5rem 0;
}

.quick-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.quick-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.quick-card:hover {
  transform: translateY(-3px);
  border-color: var(--mint);
  box-shadow: var(--shadow-md);
}
.quick-card--teal {
  background: var(--mint);
  border-color: var(--mint);
  box-shadow: 0 4px 20px rgba(45,212,191,.3);
}
.quick-card--teal:hover { box-shadow: 0 8px 32px rgba(45,212,191,.4); }

.quick-card-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quick-card-icon--light { background: var(--mint-light); color: var(--mint-dark); }
.quick-card-icon--red   { background: rgba(255,100,100,.1); color: #e00; }
.quick-card-icon--amber { background: rgba(245,158,11,.1); color: #d97706; }
.quick-card-icon--white { background: rgba(255,255,255,.25); color: white; }
.quick-card-icon .material-icons { font-size: 1.1rem !important; }

.quick-card-title {
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.quick-card--teal .quick-card-title { color: white; }

.quick-card-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}
.quick-card--teal .quick-card-desc { color: rgba(255,255,255,.8); }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--white);
  border-top: 1px solid rgba(45,212,191,.15);
}

.stats-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-block: 2rem;
}

.stat-item {
  flex: 1;
  min-width: 130px;
  text-align: center;
  padding: 1rem 1.5rem;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--mint-dark);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

/* ============================================================
   INFO CARDS (Emergency / Hours / Location)
   ============================================================ */
.info-section {
  background: var(--white);
  padding: 3rem 0 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.info-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.info-card:hover { transform: translateY(-8px); }

.info-card--teal {
  background: linear-gradient(135deg, var(--mint-dark) 0%, var(--mint) 100%);
  color: white;
  box-shadow: 0 8px 32px rgba(13,148,136,.3);
}
.info-card--teal:hover { box-shadow: 0 20px 48px rgba(13,148,136,.4); }

.info-card--white {
  background: var(--white);
  border: 1px solid rgba(45,212,191,.2);
  box-shadow: var(--shadow-md);
}
.info-card--white:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--mint);
}

.info-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.info-icon { font-size: 2.2rem !important; opacity: 0.9; }
.info-icon-white { color: white; }
.info-icon-teal  { color: var(--mint); }

.info-arrow {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}
.info-card:hover .info-arrow { transform: translateX(4px); }
.info-arrow--white { background: rgba(255,255,255,.25); color: white; }
.info-arrow--teal  { background: var(--mint-light); color: var(--mint-dark); }
.info-arrow .material-icons { font-size: 1.1rem !important; }

.info-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.info-card-title--white { color: white; }
.info-card-title--dark  { color: var(--dark); }

.info-card-desc { font-size: 0.875rem; color: rgba(255,255,255,.85); line-height: 1.6; }
.info-card-phone { font-size: 1.2rem; font-weight: 800; color: white; }

.hours-list { display: flex; flex-direction: column; gap: 0.4rem; }
.hours-row  { display: flex; justify-content: space-between; font-size: 0.875rem; color: var(--text); }
.hours-time { font-weight: 700; color: var(--dark); }
.hours-closed { color: var(--mint-dark); font-weight: 700; }

.info-card-addr {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.info-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--mint-dark);
  font-weight: 700;
  font-size: 0.875rem;
  transition: gap var(--transition);
}
.info-card-link:hover { gap: 0.6rem; }
.info-card-link .material-icons { font-size: 0.9rem !important; }

/* ============================================================
   WHO WE ARE
   ============================================================ */
.who-section { background: var(--bg); padding: var(--section-py) 0; }

.who-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.who-img-wrap { position: relative; }

.who-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.who-img-main img { width: 100%; height: 22rem; object-fit: cover; }

.who-float-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(45,212,191,.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 260px;
}

.who-float-icon {
  width: 3rem;
  height: 3rem;
  background: var(--mint-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint-dark);
  flex-shrink: 0;
}
.who-float-icon .material-icons { font-size: 1.2rem !important; }

.who-float-title { font-weight: 800; color: var(--dark); font-size: 0.95rem; margin-bottom: 0.2rem; }
.who-float-sub   { font-size: 0.78rem; color: var(--muted); line-height: 1.4; }

.who-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.who-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text);
}

.check-dot {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--mint-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--mint-dark);
}
.check-dot .material-icons { font-size: 0.9rem !important; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--white); padding: var(--section-py) 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.svc-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: visible;
  transition: all var(--transition);
  cursor: pointer;
}
.svc-card:hover {
  border-color: var(--mint);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(45,212,191,.15);
}

.svc-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}
.svc-card:hover .svc-icon-wrap { transform: scale(1.15); }

.svc-card--1 .svc-icon-wrap { background: rgba(192,57,43,.1);  }
.svc-card--2 .svc-icon-wrap { background: rgba(31,60,109,.1);  }
.svc-card--3 .svc-icon-wrap { background: rgba(45,212,191,.12); }
.svc-card--4 .svc-icon-wrap { background: rgba(245,158,11,.1); }

.svc-icon { font-size: 1.5rem !important; }
.svc-card--1 .svc-icon { color: #c0392b; }
.svc-card--2 .svc-icon { color: #1f3c6d; }
.svc-card--3 .svc-icon { color: var(--mint-dark); }
.svc-card--4 .svc-icon { color: #d97706; }

.svc-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}

.svc-desc {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.65;
}

.svc-num {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.svc-card--1 .svc-num { background: #c0392b; }
.svc-card--2 .svc-num { background: #1f3c6d; }
.svc-card--3 .svc-num { background: var(--mint-dark); }
.svc-card--4 .svc-num { background: #d97706; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--bg); padding: var(--section-py) 0; }

.why-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.why-img-wrap { position: relative; }

.why-img-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 75%;
  background: var(--mint-light);
  border-radius: var(--radius-xl);
  z-index: 0;
}

.why-img-person {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.why-img-person img {
  width: 100%;
  height: 28rem;
  object-fit: cover;
  object-position: top;
}

.why-badge {
  position: absolute;
  top: 2rem;
  right: -1rem;
  z-index: 2;
  background: var(--mint);
  color: white;
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 8px 24px rgba(45,212,191,.4);
  font-weight: 800;
  font-size: 0.875rem;
  text-align: center;
}
.why-badge-big {
  font-size: 1.8rem;
  font-family: var(--font-display);
  line-height: 1;
  display: block;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.why-item { display: flex; align-items: center; gap: 0.875rem; }

.why-check {
  width: 1.75rem;
  height: 1.75rem;
  background: var(--mint-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--mint-dark);
}
.why-check .material-icons { font-size: 1rem !important; }

.why-item-text { font-size: 0.9375rem; font-weight: 600; color: var(--dark); }

/* ============================================================
   TEAM
   ============================================================ */
.team-section { background: var(--white); padding: var(--section-py) 0; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--mint);
}

.team-card-img-wrap { height: 16rem; overflow: hidden; }
.team-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.team-card:hover .team-card-img-wrap img { transform: scale(1.06); }

.team-card-body { padding: 1.25rem; }
.team-card-name { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 0.2rem; }
.team-card-role { font-size: 0.8rem; font-weight: 600; color: var(--mint-dark); margin-bottom: 0.75rem; }

.team-card-socials { display: flex; gap: 0.75rem; }

.team-social {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 8px;
  background: var(--mint-light);
  color: var(--mint-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.team-social:hover { background: var(--mint); color: white; }
.team-social .material-icons { font-size: 0.95rem !important; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--bg); padding: var(--section-py) 0; }

.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(45,212,191,.1);
  transition: all var(--transition);
}
.testi-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testi-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testi-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--mint-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--mint-dark);
  flex-shrink: 0;
}
.testi-avatar--dark { background: var(--mint-dark); color: white; }

.testi-name { font-weight: 800; color: var(--dark); font-size: 0.9375rem; }
.testi-role { font-size: 0.8rem; color: var(--muted); }

.testi-stars { display: flex; gap: 2px; margin-bottom: 0.875rem; }
.testi-stars .material-icons { font-size: 1rem !important; color: #f59e0b; }

.testi-text {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
}

.testi-date {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.testi-date .material-icons { font-size: 0.85rem !important; color: var(--mint); }

/* ============================================================
   CLINIC LOCATOR
   ============================================================ */
.locator-section { background: var(--white); padding: var(--section-py) 0; }

.locator-search-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.locator-tabs { display: flex; gap: 1rem; }
.locator-tab {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  padding-bottom: 0.25rem;
  transition: color var(--transition);
  border-bottom: 2px solid transparent;
}
.locator-tab.active {
  color: var(--mint-dark);
  border-color: var(--mint);
}

.locator-pin .material-icons { color: var(--mint); font-size: 1.1rem !important; }

.locator-input-wrap {
  flex: 1;
  min-width: 200px;
  position: relative;
}
.locator-input-wrap .material-icons {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 1rem !important;
  pointer-events: none;
}
.locator-input {
  width: 100%;
  padding: 0.65rem 1rem 0.65rem 2.5rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.locator-input:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(45,212,191,.15);
}

.locator-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.locator-sidebar {
  background: var(--mint-dark);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: white;
}

.locator-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.locator-sub { font-size: 0.9rem; opacity: 0.75; margin-bottom: 2rem; }

.clinic-list { display: flex; flex-direction: column; gap: 1rem; }

.clinic-item {
  background: rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.25rem;
  cursor: pointer;
  transition: background var(--transition);
  border: 1px solid rgba(255,255,255,.15);
}
.clinic-item:hover,
.clinic-item.active { background: rgba(255,255,255,.22); }

.clinic-item-name { font-weight: 800; margin-bottom: 0.3rem; font-size: 0.9375rem; }

.clinic-item-addr {
  font-size: 0.8125rem;
  opacity: 0.75;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  line-height: 1.5;
}
.clinic-item-addr .material-icons { font-size: 0.9rem !important; margin-top: 0.15rem; flex-shrink: 0; }

.locator-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  min-height: 28rem;
}
.locator-map iframe {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  border: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-logo-wrap { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.75rem; }

.footer-logo-mark {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--mint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.footer-logo-mark .material-icons { font-size: 1.1rem !important; }

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
}
.footer-logo-text span { color: var(--mint); }

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 22rem;
}

.footer-socials { display: flex; gap: 0.75rem; }

.footer-social {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer-social:hover { background: var(--mint); }
.footer-social .material-icons { font-size: 1.05rem !important; }

.footer-col-title {
  font-weight: 800;
  font-size: 0.9rem;
  color: white;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--mint); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
}
.footer-contact-item .material-icons { font-size: 1rem !important; color: var(--mint); margin-top: 0.1rem; flex-shrink: 0; }
.footer-contact-item span:last-child { font-size: 0.875rem; color: rgba(255,255,255,.55); line-height: 1.5; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy { font-size: 0.8125rem; color: rgba(255,255,255,.4); }

.footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 0.8125rem; color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--mint); }

/* ============================================================
   FLOATING MOBILE NAV
   ============================================================ */
.mfn {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  width: calc(100% - 2rem);
  max-width: 24rem;
}

.mfn-track {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #e8e8e8;
  border-radius: 9999px;
  padding: 0.375rem;
  box-shadow:
    0 8px 32px rgba(0,0,0,.18),
    0 2px 8px rgba(0,0,0,.10),
    inset 0 2px 4px rgba(255,255,255,.8),
    inset 0 -2px 4px rgba(0,0,0,.06);
}

.mfn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.5rem 0.875rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s ease;
  flex: 1;
}
.mfn-item--active {
  background: #1c1c1e;
  padding: 0.625rem 1.25rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.mfn-icon { font-size: 1.25rem !important; color: #888; transition: color 0.2s; }
.mfn-item--active .mfn-icon { color: #fff; }
.mfn-item:not(.mfn-item--active):hover .mfn-icon { color: var(--mint-dark); }

.mfn-label { font-size: 0.6875rem; font-weight: 600; color: #666; line-height: 1; }
.mfn-item--active .mfn-label { color: #fff; }
.mfn-item:not(.mfn-item--active):hover .mfn-label { color: var(--mint-dark); }

/* ============================================================
   BOOKING POPUP
   ============================================================ */
.bk-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,20,40,.65);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(6px);
}
.bk-overlay.is-open { opacity: 1; visibility: visible; }

.bk-modal {
  background: linear-gradient(135deg, #0d4f47 0%, #0d9488 48%, #14b8a6 100%);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem 2rem;
  width: 100%;
  max-width: 26rem;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  transform: translateY(30px) scale(0.95);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), opacity 0.35s ease;
  border: 1px solid rgba(255,255,255,.22);
}
.bk-overlay.is-open .bk-modal { transform: translateY(0) scale(1); opacity: 1; }

.bk-modal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.12) 0%, transparent 100%);
  border-radius: 1.5rem 1.5rem 0 0;
  pointer-events: none;
}

.bk-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 2.25rem; height: 2.25rem;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: none; color: white; font-size: 1.25rem;
  cursor: pointer; line-height: 1;
  transition: background 0.2s;
  font-family: inherit;
}
.bk-close:hover { background: rgba(255,255,255,.32); }

.bk-title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800; color: #fff;
  text-align: center; margin-bottom: 0.25rem;
}
.bk-subtitle {
  font-size: 0.875rem; color: rgba(255,255,255,.65);
  text-align: center; margin-bottom: 1.75rem;
}

.bk-form { display: flex; flex-direction: column; gap: 0.875rem; }

.bk-field { position: relative; }

.bk-field-icon {
  position: absolute;
  left: 1rem; top: 50%;
  transform: translateY(-50%);
  color: rgba(80,200,180,.6);
  font-size: 1.125rem !important;
  pointer-events: none;
}

.bk-input, .bk-select {
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 3rem;
  border-radius: 0.875rem;
  border: none;
  background: rgba(255,255,255,.96);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #1a1a2e;
  outline: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.bk-input:focus,
.bk-select:focus {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(45,212,191,.4);
}
.bk-input::placeholder { color: #9ca3af; }

.bk-select-wrap { position: relative; }
.bk-select-wrap::after {
  content: '';
  position: absolute;
  right: 1rem; top: 50%;
  transform: translateY(-65%) rotate(45deg);
  width: 0.45rem; height: 0.45rem;
  border-right: 2px solid #6b7280;
  border-bottom: 2px solid #6b7280;
  pointer-events: none;
}

.bk-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--mint-dark) 0%, var(--mint) 100%);
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 0.875rem;
  cursor: pointer;
  margin-top: 0.375rem;
  box-shadow: 0 4px 20px rgba(45,212,191,.5);
  transition: box-shadow 0.25s, transform 0.25s;
}
.bk-submit:hover {
  box-shadow: 0 6px 28px rgba(45,212,191,.65);
  transform: translateY(-2px);
}
.bk-submit:active { transform: translateY(0); }

.bk-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,.5);
  margin-top: 0.875rem;
}

.bk-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0;
}
.bk-success.is-shown { display: flex; }
.bk-form.is-hidden   { display: none; }

.bk-success-icon {
  width: 4rem; height: 4rem;
  background: rgba(45,212,191,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 2rem;
}
.bk-success-title { font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.bk-success-msg   { font-size: 0.875rem; color: rgba(255,255,255,.7); line-height: 1.6; }

/* ============================================================
   RESPONSIVE — 640px+
   ============================================================ */
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .testi-grid  { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — 768px+
   ============================================================ */
@media (min-width: 768px) {
  .hero-visual        { height: 34rem; }
  .info-grid          { grid-template-columns: repeat(3, 1fr); }
  .quick-cards-grid   { grid-template-columns: repeat(4, 1fr); }
  .hero-badge-ring    { width: 7.5rem; height: 7.5rem; }
}

/* ============================================================
   RESPONSIVE — 1024px+
   ============================================================ */
@media (min-width: 1024px) {
  /* Header */
  .desktop-nav   { display: flex; }
  .mobile-menu-btn { display: none; }
  .header-cta    { display: inline-flex; }

  /* Hero */
  .hero-inner    { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .hero-badge-ring { width: 8.25rem; height: 8.25rem; }

  /* Who / Why */
  .who-inner     { grid-template-columns: 1fr 1fr; }
  .why-inner     { grid-template-columns: 1fr 1fr; }

  /* Services */
  .services-grid { grid-template-columns: repeat(4, 1fr); }

  /* Team */
  .team-grid     { grid-template-columns: repeat(4, 1fr); }

  /* Locator */
  .locator-inner { grid-template-columns: 1fr 1.5fr; }

  /* Footer */
  body { padding-bottom: 0; }
  .mfn { display: none !important; }
}

/* ============================================================
   MOBILE NAV SHOW
   ============================================================ */
@media (max-width: 1023px) {
  .mfn  { display: block; }
  body  { padding-bottom: 5.5rem; }
}

@media (max-width: 380px) {
  .mfn-item        { padding: 0.5rem 0.5rem; }
  .mfn-item--active { padding: 0.5rem 0.75rem; }
  .mfn-label       { font-size: 0.6rem; }
}