/* ═══════════════════════════════════════════════════════════════
   Bright Smile Dental — project1.css
   Warm · Family-friendly · Professional
   #4ECDC4 teal · #FF6B6B coral · #2C3E50 dark · #FFF9F0 warm white
═══════════════════════════════════════════════════════════════ */

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

/* ─── Skip link ─── */
.skip-link {
  position: fixed; top: -100%; left: 16px; z-index: 99999;
  background: var(--teal, #4ECDC4); color: var(--dark, #2C3E50);
  padding: 10px 20px; border-radius: 0 0 8px 8px;
  font-weight: 700; font-size: 0.875rem; text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ─── Focus visible ─── */
:focus-visible {
  outline: 2px solid #4ECDC4;
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--teal, #4ECDC4);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn-primary:focus-visible { outline-color: var(--coral); }
.nav-cta:focus-visible { outline-offset: 4px; }

:root {
  --teal: #4ECDC4;
  --teal-d: #38b2aa;
  --teal-l: rgba(78,205,196,0.12);
  --coral: #FF6B6B;
  --coral-d: #e05555;
  --coral-l: rgba(255,107,107,0.1);
  --yellow: #FFE66D;
  --yellow-l: rgba(255,230,109,0.2);
  --dark: #2C3E50;
  --dark-2: #243342;
  --mid: #5a7080;
  --light: #FFF9F0;
  --white: #ffffff;
  --border: rgba(44,62,80,0.1);
  --shadow-sm: 0 2px 12px rgba(44,62,80,0.07);
  --shadow-md: 0 8px 32px rgba(44,62,80,0.12);
  --shadow-lg: 0 24px 64px rgba(44,62,80,0.16);
  --shadow-teal: 0 8px 32px rgba(78,205,196,0.25);
  --shadow-coral: 0 8px 32px rgba(255,107,107,0.25);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-head: 'Nunito', sans-serif;
  --font-body: 'Inter', sans-serif;
  --csb-h: 44px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); overflow-x: hidden; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }
img { max-width: 100%; display: block; }

/* ─── Text selection ─── */
::selection { background: var(--teal); color: white; }

/* ─── Scroll offset for fixed navbar ─── */
section[id] { scroll-margin-top: calc(var(--csb-h) + var(--nav-h) + 16px); }

.section-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0 0; }
section:last-of-type { padding-bottom: 96px; }

/* ─── Section Headers ─── */
.section-header { text-align: center; max-width: 620px; margin: 0 auto 60px; }
.section-header.light h2, .section-header.light p { color: white; }
.section-header.light p { color: rgba(255,255,255,0.65); }
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.15; color: var(--dark);
  letter-spacing: -0.02em; margin-bottom: 14px;
}
.section-header h2 em { font-style: normal; color: var(--teal); }
.section-header p { font-size: 1.05rem; color: var(--mid); line-height: 1.7; }

.section-tag {
  display: inline-block; padding: 5px 14px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; margin-bottom: 14px;
}
.section-tag.teal { background: var(--teal-l); color: var(--teal-d); border: 1px solid rgba(78,205,196,0.25); }
.section-tag.coral { background: var(--coral-l); color: var(--coral-d); border: 1px solid rgba(255,107,107,0.25); }
.section-tag.light { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.2); }

/* Section waves */
.section-wave { line-height: 0; }
.section-wave svg { width: 100%; height: 60px; display: block; }

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: var(--teal); color: white;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  border-radius: 50px; transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover { background: var(--teal-d); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(78,205,196,0.38); }
.btn-primary:active { transform: translateY(0); box-shadow: var(--shadow-teal); }
.btn-primary i { width: 18px; height: 18px; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border: 2px solid var(--dark); color: var(--dark);
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  border-radius: 50px; transition: all 0.25s var(--ease);
}
.btn-secondary:hover { background: var(--dark); color: white; }
.btn-secondary:active { transform: scale(0.98); }
.btn-secondary i { width: 16px; height: 16px; }

/* ═══════════════════ CASE STUDY BAR ═══════════════════ */
#caseStudyBar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--csb-h); background: var(--coral);
  z-index: 2000; display: flex; align-items: center;
}
.csb-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.csb-back {
  display: flex; align-items: center; gap: 6px;
  color: white; font-size: 0.8rem; font-weight: 600;
  opacity: 0.9; transition: opacity 0.2s; white-space: nowrap;
}
.csb-back:hover { opacity: 1; }
.csb-back svg { flex-shrink: 0; }
.csb-center {
  display: flex; align-items: center; gap: 8px;
  color: white; font-size: 0.85rem; text-align: center;
}
.csb-icon { font-size: 1rem; }
.csb-badge {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.2); border-radius: 50px;
  padding: 4px 12px; color: white; font-size: 0.75rem; font-weight: 600;
  white-space: nowrap;
}
.csb-dot { width: 7px; height: 7px; background: #FFE66D; border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }

/* ═══════════════════ NAVBAR ═══════════════════ */
#navbar {
  position: fixed; top: var(--csb-h); left: 0; right: 0;
  z-index: 1000; transition: background 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(255,249,240,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(44,62,80,0.08), 0 4px 24px rgba(44,62,80,0.1);
}
.nav-container {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  height: var(--nav-h); display: flex; align-items: center; gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon {
  width: 40px; height: 40px; background: var(--teal-l);
  border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-icon.small { width: 32px; height: 32px; background: rgba(78,205,196,0.15); border-radius: 8px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--dark); }
.logo-sub { font-family: var(--font-head); font-weight: 600; font-size: 0.72rem; color: var(--teal-d); letter-spacing: 0.04em; }
.nav-links {
  display: flex; align-items: center; gap: 28px; margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem; font-weight: 600; color: var(--mid);
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--teal); border-radius: 1px; transition: width 0.2s;
}
.nav-links a:hover { color: var(--dark); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 600; color: var(--mid); transition: color 0.2s;
}
.nav-phone:hover { color: var(--teal-d); }
.nav-phone i { width: 15px; height: 15px; }
.btn-book {
  padding: 10px 22px; background: var(--coral); color: white;
  font-family: var(--font-head); font-weight: 700; font-size: 0.875rem;
  border-radius: 50px; transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(255,107,107,0.28);
}
.btn-book:hover { background: var(--coral-d); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(255,107,107,0.4); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; margin-left: auto; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: 0.25s; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.nav-mobile {
  display: none; flex-direction: column; background: rgba(255,249,240,0.98);
  backdrop-filter: blur(20px); border-top: 1px solid var(--border);
  padding: 12px 24px 20px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.nav-mobile.open { max-height: 500px; }
.mob-link { padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; font-weight: 600; color: var(--mid); transition: color 0.2s; display: flex; align-items: center; gap: 8px; }
.mob-link:hover { color: var(--dark); }
.mob-phone { color: var(--teal-d); }
.mob-phone i { width: 16px; height: 16px; }
.mob-cta { margin-top: 10px; padding: 13px; text-align: center; background: var(--coral); border-radius: 50px; border-bottom: none; color: white; font-family: var(--font-head); font-weight: 700; justify-content: center; }

/* ═══════════════════ HERO ═══════════════════ */
#hero {
  min-height: 100vh; background: var(--light);
  padding-top: calc(var(--csb-h) + var(--nav-h));
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.hero-bg-blob {
  position: absolute; top: -20%; right: -10%; width: 55%; aspect-ratio: 1;
  background: radial-gradient(ellipse, rgba(78,205,196,0.15) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-container {
  flex: 1; max-width: 1160px; margin: 0 auto; padding: 60px 24px 80px;
  display: grid; grid-template-columns: 55% 45%; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px;
  background: white; border: 1px solid rgba(78,205,196,0.3); border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; color: var(--teal-d); margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.hb-dot { width: 7px; height: 7px; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(78,205,196,0.45); }
  50% { box-shadow: 0 0 0 7px rgba(78,205,196,0); }
}
h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 900; line-height: 1.1; color: var(--dark);
  letter-spacing: -0.03em; margin-bottom: 20px;
}
.highlight-teal { color: var(--teal); position: relative; display: inline-block; }
.highlight-teal::after {
  content: ''; position: absolute; bottom: 2px; left: 0; right: 0;
  height: 8px; background: var(--yellow); opacity: 0.5; border-radius: 4px; z-index: -1;
}
.hero-sub { font-size: 1.1rem; color: var(--mid); line-height: 1.72; margin-bottom: 32px; max-width: 500px; }
.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust {
  display: flex; align-items: center; gap: 0;
  background: white; border-radius: var(--radius); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.trust-item {
  display: flex; align-items: center; gap: 10px; padding: 14px 20px; flex: 1;
}
.trust-star { font-size: 1.2rem; flex-shrink: 0; }
.trust-item div { display: flex; flex-direction: column; }
.trust-item strong { font-family: var(--font-head); font-weight: 800; font-size: 0.95rem; color: var(--dark); }
.trust-item span { font-size: 0.7rem; color: var(--mid); }
.trust-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* Hero image */
.hero-image-wrap { position: relative; }
.hero-image-blob {
  border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
  overflow: hidden; aspect-ratio: 4/5; max-height: 580px;
  box-shadow: var(--shadow-lg);
  animation: blobMorph 8s ease-in-out infinite;
}
@keyframes blobMorph {
  0%,100% { border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%; }
  33% { border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%; }
  66% { border-radius: 50% 50% 60% 40% / 40% 60% 40% 60%; }
}
.hero-image-blob img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute; bottom: 60px; left: -24px;
  background: white; border-radius: var(--radius); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
  animation: float 4s ease-in-out infinite;
}
.hfc-icon { font-size: 1.8rem; }
.hero-float-card div { display: flex; flex-direction: column; }
.hero-float-card strong { font-family: var(--font-head); font-weight: 800; font-size: 0.9rem; color: var(--dark); }
.hero-float-card span { font-size: 0.7rem; color: var(--mid); }
.hero-float-stat {
  position: absolute; top: 30px; right: -20px;
  background: var(--coral); color: white; border-radius: var(--radius); padding: 12px 16px;
  text-align: center; box-shadow: var(--shadow-coral);
  animation: float 4s ease-in-out 1s infinite;
}
.hero-float-stat strong { display: block; font-family: var(--font-head); font-weight: 900; font-size: 1.6rem; line-height: 1; }
.hero-float-stat span { font-size: 0.65rem; opacity: 0.85; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-wave { line-height: 0; margin-top: auto; }
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* ═══════════════════ SERVICES ═══════════════════ */
#services { background: var(--light); padding-top: 96px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; transition: all 0.3s var(--ease);
  cursor: default; transform-style: preserve-3d; will-change: transform;
  display: flex; flex-direction: column;
}
.service-card:hover {
  border-color: var(--teal); box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.sc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  transition: all 0.3s;
}
.sc-icon.teal { background: var(--teal-l); color: var(--teal-d); }
.sc-icon.coral { background: var(--coral-l); color: var(--coral-d); }
.sc-icon.yellow { background: var(--yellow-l); color: #c4a800; }
.sc-icon i { width: 24px; height: 24px; }
.service-card:hover .sc-icon.teal { background: var(--teal); color: white; }
.service-card:hover .sc-icon.coral { background: var(--coral); color: white; }
.service-card:hover .sc-icon.yellow { background: var(--yellow); color: var(--dark); }
.service-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--dark); margin-bottom: 10px; }
.service-card p { font-size: 0.875rem; color: var(--mid); line-height: 1.68; flex: 1; margin-bottom: 20px; }
.sc-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.85rem; font-weight: 700; color: var(--teal-d);
  transition: gap 0.2s, color 0.2s;
}
.sc-link i { width: 14px; height: 14px; }
.sc-link:hover { gap: 8px; }
.sc-link.sc-emergency { color: var(--coral-d); }

/* ═══════════════════ BEFORE / AFTER ═══════════════════ */
#before-after { background: white; padding-top: 96px; }
.ba-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.ba-tab {
  padding: 10px 24px; border: 2px solid var(--border); border-radius: 50px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.875rem; color: var(--mid);
  transition: all 0.2s; cursor: pointer;
}
.ba-tab:hover, .ba-tab.active { border-color: var(--teal); background: var(--teal); color: white; }
.ba-panel { display: none; }
.ba-panel.active { display: block; }
.ba-container {
  position: relative; overflow: hidden; border-radius: var(--radius-xl);
  aspect-ratio: 16/9; max-height: 500px; cursor: col-resize;
  user-select: none; box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.ba-container.mobile-ba { max-width: 340px; margin: 0 auto; aspect-ratio: 9/16; max-height: none; }
.ba-after, .ba-before { position: absolute; inset: 0; }
.ba-before {
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
  transition: none;
}
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%); display: flex; flex-direction: column;
  align-items: center; pointer-events: none; z-index: 10;
}
.ba-line { flex: 1; width: 3px; background: white; box-shadow: 0 0 12px rgba(0,0,0,0.3); }
.ba-circle {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; background: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25); color: var(--teal-d);
}
.ba-circle svg { width: 20px; height: 20px; }

/* Mock website designs */
.mock-after-homepage, .mock-before-homepage,
.mock-after-services, .mock-before-services,
.mock-mobile-after, .mock-mobile-before {
  width: 100%; height: 100%; overflow: hidden;
}
.mock-after-homepage { background: var(--light); }
.mock-before-homepage { background: #f0f0f0; }
.mock-after-services { background: var(--light); }
.mock-before-services { background: #e8e8e8; }
.mock-mobile-after { background: var(--light); }
.mock-mobile-before { background: #ececec; }

/* After homepage mockup */
.mah-nav {
  height: 40px; background: white; display: flex; align-items: center;
  padding: 0 20px; gap: 12px; border-bottom: 1px solid rgba(78,205,196,0.2);
}
.mah-logo { width: 80px; height: 10px; background: var(--teal); border-radius: 3px; }
.mah-links { flex: 1; display: flex; gap: 12px; justify-content: center; }
.mah-links span { display: block; width: 40px; height: 6px; background: #ccc; border-radius: 2px; }
.mah-btn { width: 80px; height: 24px; background: var(--coral); border-radius: 20px; }
.mah-hero { display: flex; gap: 20px; padding: 24px 20px; align-items: center; height: calc(100% - 100px); }
.mah-hero-text { flex: 1; }
.mah-h1 { width: 80%; height: 14px; background: var(--dark); border-radius: 3px; margin-bottom: 8px; }
.mah-h1.short { width: 55%; background: var(--teal); margin-bottom: 12px; }
.mah-p { width: 95%; height: 7px; background: #bbb; border-radius: 2px; margin-bottom: 5px; }
.mah-p.s2 { width: 75%; margin-bottom: 16px; }
.mah-ctas { display: flex; gap: 8px; }
.mah-cbtn { height: 24px; width: 90px; border-radius: 20px; }
.mah-cbtn.primary { background: var(--teal); }
.mah-cbtn:not(.primary) { background: transparent; border: 2px solid var(--dark); width: 80px; }
.mah-hero-img { flex: 1; border-radius: 40% 60% 50% 50% / 50% 50% 40% 60%; background: linear-gradient(135deg, var(--teal-l), rgba(255,107,107,0.15)); aspect-ratio: 1; max-height: 180px; }
.mah-trust { display: flex; gap: 1px; }
.mah-trust span { flex: 1; height: 40px; background: white; border-top: 1px solid rgba(78,205,196,0.15); }
/* Before homepage mockup */
.mbh-nav { height: 40px; background: #1a3c6e; display: flex; align-items: center; padding: 0 16px; justify-content: space-between; }
.mbh-banner { height: 28px; background: #2a5298; width: 100%; }
.mbh-body { padding: 20px 20px; }

/* Labels */
.mah-label {
  position: absolute; bottom: 12px; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px;
  border-radius: 50px; pointer-events: none;
}
.after-label { right: 12px; background: var(--teal); color: white; }
.before-label { left: 12px; background: rgba(44,62,80,0.7); color: white; }

/* BA Metrics */
.ba-metrics {
  display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap;
  justify-content: center;
}
.ba-metric {
  background: var(--light); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px 20px; display: flex; flex-direction: column; gap: 6px; align-items: center;
  text-align: center; flex: 1; min-width: 160px;
}
.bam-label { font-size: 0.72rem; font-weight: 700; color: var(--mid); text-transform: uppercase; letter-spacing: 0.08em; }
.bam-values { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; }
.bam-values svg { color: var(--mid); flex-shrink: 0; }
.bad { color: #ef4444; }
.good { color: #10b981; }

/* ═══════════════════ ABOUT / TEAM ═══════════════════ */
#about { background: var(--light); padding-top: 96px; }
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 80px; }
.about-image { position: relative; }
.about-image img { border-radius: var(--radius-xl); height: 480px; width: 100%; object-fit: cover; box-shadow: var(--shadow-lg); }
.about-img-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: white; border-radius: var(--radius); padding: 14px 20px;
  display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.about-img-badge span { font-size: 1.8rem; }
.about-img-badge div { display: flex; flex-direction: column; }
.about-img-badge strong { font-family: var(--font-head); font-weight: 800; font-size: 0.95rem; color: var(--dark); }
.about-img-badge span:last-child { font-size: 0.7rem; color: var(--mid); }
.about-text .section-tag { margin-bottom: 14px; }
.about-text h2 { font-family: var(--font-head); font-size: clamp(2rem,4vw,2.8rem); font-weight: 900; color: var(--dark); letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 20px; }
.about-text h2 em { font-style: normal; color: var(--teal); }
.about-text p { font-size: 0.95rem; color: var(--mid); line-height: 1.75; margin-bottom: 16px; }
.about-stats { display: flex; gap: 28px; margin: 28px 0; }
.as-item { display: flex; flex-direction: column; }
.as-item strong { font-family: var(--font-head); font-weight: 900; font-size: 1.8rem; color: var(--teal); line-height: 1; }
.as-item span { font-size: 0.75rem; color: var(--mid); margin-top: 2px; }

/* Team */
.team-heading { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--dark); text-align: center; margin-bottom: 40px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; transition: all 0.3s; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tc-image { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.tc-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.team-card:hover .tc-image img { transform: scale(1.05); }
.tc-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(78,205,196,0.85), transparent);
  display: flex; align-items: flex-end; justify-content: flex-end; padding: 16px;
  opacity: 0; transition: opacity 0.3s;
}
.team-card:hover .tc-overlay { opacity: 1; }
.tc-social { display: flex; gap: 8px; }
.tc-social a {
  width: 34px; height: 34px; background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--teal-d);
  transition: all 0.2s;
}
.tc-social a:hover { background: var(--dark); color: white; }
.tc-social i { width: 15px; height: 15px; }
.tc-body { padding: 22px; }
.tc-body h4 { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--dark); margin-bottom: 4px; }
.tc-role { display: block; font-size: 0.78rem; font-weight: 600; color: var(--teal-d); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.tc-body p { font-size: 0.84rem; color: var(--mid); line-height: 1.65; }

/* ═══════════════════ TESTIMONIALS ═══════════════════ */
#testimonials { background: white; padding-top: 96px; }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.t-card {
  background: var(--light); border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 32px; transition: all 0.3s;
}
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(78,205,196,0.2); }
.t-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 4px; letter-spacing: 2px; }
.t-quote-mark {
  font-family: 'Georgia', serif; font-size: 4.5rem; line-height: 0.7;
  color: var(--teal); opacity: 0.2; margin-bottom: -12px; user-select: none;
}
.t-card p { font-size: 0.95rem; color: var(--mid); line-height: 1.72; margin-bottom: 24px; font-style: italic; }
.t-footer { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--border); }
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; color: var(--dark);
  font-family: var(--font-head); font-weight: 800; font-size: 0.8rem; flex-shrink: 0;
}
.t-footer strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--dark); }
.t-footer span { font-size: 0.72rem; color: var(--mid); }
.t-cta { text-align: center; margin-top: 36px; }
.t-google-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 600; color: var(--mid);
  transition: color 0.2s;
}
.t-google-link:hover { color: var(--teal-d); }

/* ═══════════════════ RESULTS DASHBOARD ═══════════════════ */
#results {
  background: var(--dark); padding-top: 96px; padding-bottom: 96px;
  position: relative; overflow: hidden;
}
#results::before {
  content: ''; position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(ellipse, rgba(78,205,196,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 48px; }
.result-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 28px; text-align: center;
  transition: all 0.3s;
}
.result-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.rc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.rc-icon i { width: 22px; height: 22px; }
.rc-num {
  font-family: var(--font-head); font-weight: 900;
  font-size: 2.4rem; color: white; line-height: 1;
  margin-bottom: 8px; display: flex; align-items: baseline;
  justify-content: center; gap: 2px;
}
.rc-num span:first-child:not(.countup) { font-size: 1.6rem; }
.rc-suffix { font-size: 1.6rem; }
.rc-label { font-weight: 700; font-size: 0.82rem; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.rc-sub { font-size: 0.75rem; color: rgba(255,255,255,0.38); }

/* Chart */
.chart-section {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl); padding: 32px; margin-bottom: 40px;
}
.chart-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.chart-header h3 { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: rgba(255,255,255,0.85); }
.chart-legend { display: flex; gap: 20px; }
.legend-item { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.legend-item.teal span { width: 24px; height: 3px; background: var(--teal); border-radius: 2px; }
.legend-item.gray span { width: 24px; height: 3px; background: rgba(255,255,255,0.2); border-radius: 2px; }
.chart-wrap { position: relative; height: 240px; }

.results-cta { text-align: center; }
.results-cta p { color: rgba(255,255,255,0.6); margin-bottom: 16px; font-size: 1.05rem; }
.btn-primary-light {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: var(--teal); color: white;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  border-radius: 50px; transition: all 0.25s; box-shadow: var(--shadow-teal);
}
.btn-primary-light:hover { background: var(--teal-d); transform: translateY(-2px); }
.btn-primary-light i { width: 18px; height: 18px; }

/* ═══════════════════ BOOKING ═══════════════════ */
#booking { background: white; padding-top: 96px; }
.booking-grid { display: grid; grid-template-columns: 420px 1fr; gap: 64px; align-items: start; }
.booking-left h2 { font-family: var(--font-head); font-size: clamp(1.8rem,3.5vw,2.4rem); font-weight: 900; color: var(--dark); letter-spacing: -0.02em; line-height: 1.15; margin: 12px 0 14px; }
.booking-left h2 em { font-style: normal; color: var(--teal); }
.booking-left > p { font-size: 0.95rem; color: var(--mid); line-height: 1.72; margin-bottom: 24px; }
.booking-perks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.booking-perks li { display: flex; align-items: center; gap: 9px; font-size: 0.88rem; color: var(--mid); }
.booking-perks i { color: var(--teal); width: 17px; height: 17px; flex-shrink: 0; }
.booking-contact { display: flex; flex-direction: column; gap: 10px; }
.bc-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; background: var(--light); border: 1px solid var(--border);
  border-radius: var(--radius); transition: all 0.2s;
}
.bc-item:hover { border-color: var(--teal); }
.bc-item i { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; }
.bc-item div { display: flex; flex-direction: column; }
.bc-item span { font-size: 0.72rem; color: var(--mid); }
.bc-item strong { font-size: 0.9rem; color: var(--dark); }

/* Form */
.booking-form { background: var(--light); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 36px; }
.form-success { display: none; text-align: center; padding: 40px 0; }
.form-success.show { display: block; }
.fs-icon { font-size: 3rem; margin-bottom: 12px; }
.form-success h3 { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--dark); margin-bottom: 8px; }
.form-success p { color: var(--mid); font-size: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Float labels */
.form-float { position: relative; margin-bottom: 0; }
.form-row { gap: 14px; margin-bottom: 14px; }
.form-float + .form-float { margin-bottom: 0; }
.booking-form .form-float { margin-bottom: 14px; }
.form-float:last-of-type { margin-bottom: 18px; }
.form-float input,
.form-float select,
.form-float textarea {
  width: 100%; padding: 20px 16px 8px; background: white;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 0.9rem; color: var(--dark); transition: border-color 0.2s; outline: none;
  appearance: none;
}
.form-float textarea { resize: vertical; min-height: 90px; }
.form-float input:focus, .form-float select:focus, .form-float textarea:focus { border-color: var(--teal); }
.form-float input.error, .form-float select.error { border-color: var(--coral); }
.form-float label {
  position: absolute; left: 16px; top: 14px;
  font-size: 0.875rem; color: var(--mid);
  transition: all 0.18s; pointer-events: none;
}
.form-float input:not(:placeholder-shown) ~ label,
.form-float input:focus ~ label,
.form-float select:not([value=""]) ~ label,
.form-float select:focus ~ label,
.form-float textarea:not(:placeholder-shown) ~ label,
.form-float textarea:focus ~ label {
  top: 7px; font-size: 0.68rem; color: var(--teal-d); font-weight: 600; letter-spacing: 0.03em;
}
.form-float select option[value=""] { color: transparent; }

.btn-submit {
  width: 100%; padding: 16px; background: var(--teal); color: white;
  font-family: var(--font-head); font-weight: 800; font-size: 1rem;
  border-radius: 50px; transition: all 0.25s; display: flex; align-items: center;
  justify-content: center; gap: 8px; box-shadow: var(--shadow-teal);
}
.btn-submit:hover { background: var(--teal-d); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(78,205,196,0.38); }
.btn-submit i { width: 20px; height: 20px; }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-note { text-align: center; font-size: 0.73rem; color: var(--mid); margin-top: 10px; }

/* ═══════════════════ LOCATION ═══════════════════ */
#location { background: var(--light); padding-top: 96px; padding-bottom: 96px; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.map-placeholder {
  background: linear-gradient(135deg, rgba(78,205,196,0.08), rgba(255,107,107,0.05));
  border: 1px solid var(--border); border-radius: var(--radius-xl); height: 380px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  position: relative; overflow: hidden;
}
.map-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 29px, rgba(78,205,196,0.06) 30px),
              repeating-linear-gradient(90deg, transparent, transparent 29px, rgba(78,205,196,0.06) 30px);
}
.map-pin { font-size: 3rem; width: 60px; height: 60px; background: var(--coral); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; box-shadow: var(--shadow-coral); z-index: 1; }
.map-pin i { width: 28px; height: 28px; }
.map-label { text-align: center; font-size: 0.9rem; font-weight: 600; color: var(--dark); z-index: 1; line-height: 1.6; }
.map-btn {
  display: flex; align-items: center; gap: 7px; padding: 11px 22px;
  background: var(--teal); color: white; font-family: var(--font-head);
  font-weight: 700; font-size: 0.875rem; border-radius: 50px; transition: all 0.25s; z-index: 1;
  box-shadow: var(--shadow-teal);
}
.map-btn:hover { background: var(--teal-d); transform: translateY(-1px); }
.map-btn i { width: 16px; height: 16px; }
.location-info { display: flex; flex-direction: column; gap: 20px; }
.li-block { display: flex; align-items: flex-start; gap: 14px; padding: 18px; background: white; border-radius: var(--radius); border: 1px solid var(--border); }
.li-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--teal-l); color: var(--teal-d); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.li-icon i { width: 18px; height: 18px; }
.li-block h4 { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--mid); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.li-block p { font-size: 0.9rem; color: var(--dark); line-height: 1.6; }
.li-block a { color: var(--teal-d); font-weight: 600; }
.hours-table { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.hours-table h4 { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: var(--dark); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.hours-table h4 i { width: 18px; height: 18px; color: var(--teal-d); }
.hours-table table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 8px 0; font-size: 0.875rem; border-bottom: 1px solid var(--border); }
.hours-table td:first-child { color: var(--mid); }
.hours-table td:last-child { text-align: right; }
.hours-table tr.closed td { color: #ef4444; }
.hours-table tr:last-child td { border-bottom: none; }

/* ═══════════════════ FOOTER ═══════════════════ */
#footer { background: var(--dark-2); }
.footer-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding: 56px 0 40px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.72; margin: 16px 0 22px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); transition: all 0.2s; }
.footer-social a:hover { border-color: var(--teal); color: var(--teal); }
.footer-social i { width: 15px; height: 15px; }
.footer-col h4 { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a, .footer-col li { font-size: 0.85rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-credit { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.credit-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px 4px 8px; background: rgba(78,205,196,0.15); border: 1px solid rgba(78,205,196,0.25); border-radius: 50px; color: var(--teal); font-weight: 700; font-size: 0.78rem; transition: all 0.2s; }
.credit-badge:hover { background: rgba(78,205,196,0.25); }
.credit-badge span { width: 20px; height: 20px; background: var(--teal); border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; color: var(--dark); font-weight: 900; }

/* ─── Back To Top ─── */
#backToTop { position: fixed; bottom: 22px; right: 22px; width: 44px; height: 44px; background: var(--teal); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.25s; z-index: 500; box-shadow: var(--shadow-teal); }
#backToTop.show { opacity: 1; visibility: visible; }
#backToTop:hover { background: var(--teal-d); transform: translateY(-3px); }
#backToTop:active { transform: translateY(0); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .about-image img { height: 360px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .booking-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .results-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; --csb-h: 40px; }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }
  section { padding-top: 72px; }
  .hero-container { grid-template-columns: 1fr; }
  .hero-image-wrap { max-width: 400px; margin: 0 auto; }
  .hero-trust { flex-direction: column; }
  .trust-divider { width: 100%; height: 1px; }
  .trust-item { justify-content: flex-start; width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .csb-back { display: none; }
  .csb-badge { display: none; }
  .csb-center { flex: 1; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .results-grid { grid-template-columns: 1fr; }
  .ba-tabs { gap: 6px; }
  .ba-tab { padding: 8px 14px; font-size: 0.8rem; }
  .cases-grid { grid-template-columns: 1fr; }
}

/* ─── Before/After Slider ─── */
.ba-slider {
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  aspect-ratio: 1/1;
  border-radius: 12px 12px 0 0;
}
.ba-after {
  position: absolute;
  inset: 0;
}
.ba-before {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 50% 0 0);
}
.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}
.ba-label {
  position: absolute;
  bottom: 10px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.45);
  padding: 3px 10px;
  border-radius: 4px;
  z-index: 3;
  backdrop-filter: blur(4px);
}
.ba-label-before { left: 10px; }
.ba-label-after  { right: 10px; }
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.ba-handle svg {
  width: 18px;
  height: 18px;
  color: #333;
}

/* ─── Cases Grid (Before/After cards) ─── */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.case-card-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.case-card-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.case-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case-card-img-label {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.45);
  padding: 3px 10px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}
.case-card-body {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
}
.case-card-body h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}
.case-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.case-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-l);
  padding: 3px 10px;
  border-radius: 50px;
}
