/* ============================================================
   Sacramento Holistic Dentist — Design System
   Theme: #45B8AC · White · Baby Blue
   Fonts: Playfair Display (headings) + Nunito (body)
   ============================================================ */

:root {
  --primary: #45B8AC;
  --primary-dark: #38a095;
  --primary-deeper: #2a7a70;
  --primary-light: #6dccc6;
  --teal-50: #f0faf9;
  --teal-100: #c8eeeb;
  --teal-200: #95ddd8;
  --baby-blue: var(--teal-100);
  --baby-blue-light: var(--teal-50);
  --blue-accent: var(--primary-light);
  --white: #ffffff;
  --off-white: #f9fafb;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --text-dark: #0f2027;
  --text-heading: #1a5c56;
  --text-body: #374151;
  --text-muted: #6b7280;
  --shadow-sm: 0 2px 8px rgba(69,184,172,0.08);
  --shadow: 0 4px 20px rgba(69,184,172,0.12);
  --shadow-md: 0 8px 30px rgba(69,184,172,0.18);
  --shadow-dark: 0 10px 40px rgba(0,0,0,0.15);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --radius-pill: 100px;
  --transition: all 0.3s ease;
  --container: 1200px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  overflow-x: hidden;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-heading);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; }

/* ---- Layout ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.bg-teal { background: var(--teal-50); }
.bg-white { background: var(--white); }
.bg-blue { background: var(--teal-50); }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--teal-100);
  border: 1px solid var(--teal-200);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  color: var(--text-heading);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.7;
}
.divider-leaf {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px 0 40px;
  color: var(--primary);
  font-size: 1.2rem;
}
.divider-leaf::before,
.divider-leaf::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--teal-200);
  border-radius: 2px;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.83rem;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--primary);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.83rem;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.8);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  color: white;
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--primary);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.83rem;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--primary);
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  color: var(--primary-dark);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.83rem;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid white;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-white:hover {
  background: var(--teal-50);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(69,184,172,0.10);
}
.header-top {
  background: var(--primary-deeper);
  padding: 8px 0;
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.header-top a,
.header-top span {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.header-top a:hover { color: var(--teal-200); }
.header-top .ht-divider { color: rgba(255,255,255,0.3); }
.header-main {
  padding: 12px 0;
}
.header-main .container {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 48px;
  max-width: none;
  margin: 0;
}
.logo { flex-shrink: 0; }
.logo img { height: 56px; width: auto; }
.main-nav { flex: 1; }
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-heading);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  display: block;
  transition: var(--transition);
  white-space: nowrap;
  border: 1px solid transparent;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a {
  color: var(--text-heading);
  background: transparent;
  border-color: var(--primary);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
  border: 1px solid var(--teal-100);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}
.nav-dropdown-mega {
  display: grid;
  grid-template-columns: auto 220px 220px;
  padding: 12px 0;
  left: -120px;
}
.nav-dropdown-mega li a {
  white-space: nowrap;
}
.has-dropdown:hover > .nav-dropdown,
.has-dropdown:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ---- Nested fly-out dropdown ---- */
.nav-flyout {
  position: absolute;
  top: 0;
  left: calc(100% + 2px);
  min-width: 300px;
  white-space: nowrap;
  transform: translateX(-8px);
}
.has-flyout:hover .nav-flyout,
.has-flyout:focus-within .nav-flyout {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.has-flyout > a::after {
  content: '›';
  float: right;
  margin-left: 12px;
  color: var(--primary);
}
.nav-dropdown li a {
  display: block;
  padding: 9px 20px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-body);
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.nav-dropdown li a:hover {
  background: var(--teal-50);
  color: var(--primary);
  border-left-color: var(--primary);
}
.header-cta {
  margin-left: 8px;
  flex-shrink: 0;
  background: white !important;
  color: var(--primary-dark) !important;
  border-color: var(--primary) !important;
}
.header-cta:hover {
  background: var(--teal-50) !important;
  color: var(--primary-deeper) !important;
}

/* ---- Top Bar ---- */
.top-bar {
  background: var(--primary-deeper);
  padding: 7px 48px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.top-bar .lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar .lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.85);
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.05em;
}
.top-bar .lang-btn:hover { border-color: white; color: white; background: rgba(255,255,255,0.15); }
.top-bar .lang-btn.active { background: white; color: var(--primary-deeper); border-color: white; }

/* Suppress Google Translate top bar */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame { display: none !important; }
.goog-te-menu-value:hover { text-decoration: none !important; }
body { top: 0 !important; position: static !important; }
#goog-gt-tt, .goog-te-balloon-frame, .goog-tooltip { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
.skiptranslate { display: none !important; }
.header-mobile-actions {
  display: none;
}
.header-mobile-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-deeper);
  font-size: 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.header-mobile-btn:hover { background: var(--teal-50); color: var(--primary); }
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 1.5px solid var(--teal-200);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-heading);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- Homepage Hero ---- */
.hero-section {
  position: relative;
  min-height: calc(100vh - 170px);
  padding: 64px 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  background-image: url('/images/hero-home.webp');
  background-size: cover;
  background-position: center 30%;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.84) 0%, rgba(0,0,0,0.62) 50%, rgba(0,0,0,0.15) 80%, rgba(0,0,0,0) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 72px 48px;
  margin: 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero-content h1 {
  color: white;
  font-size: clamp(1rem, 5.8vw, 3.8rem);
  white-space: nowrap;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
  line-height: 1.1;
}
.hero-content .hero-subtitle {
  color: var(--teal-100);
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.hero-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 640px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-buttons .btn-primary {
  background: transparent;
  border-color: rgba(255,255,255,0.8);
}
.hero-buttons .btn-primary:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  box-shadow: none;
}
.hero-trust {
  margin-top: 40px;
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(0,0,0,0.35);
  padding: 6px 12px;
  border-radius: 30px;
  backdrop-filter: blur(4px);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  white-space: nowrap;
}
.hero-trust-item svg, .hero-trust-item i {
  color: var(--teal-200);
  font-size: 1rem;
}

/* ---- Inner Page Hero ---- */
.inner-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  background-image: url('/images/inner-hero-bg.webp') !important;
  background-size: 110%;
  background-position: center bottom;
}
.inner-hero-overlay { display: none; }
.inner-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  background: white;
  border-radius: 16px;
  padding: 36px 56px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
}
.inner-hero-content h1 {
  color: var(--primary-deeper);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.87rem;
  font-weight: 600;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { color: var(--primary-dark); }
.breadcrumb li:not(:last-child)::after { content: '>'; margin-left: 8px; color: var(--text-muted); }

/* ---- Trust Strip ---- */
.trust-strip {
  background: white;
  padding: 20px 0;
  border-top: 1px solid var(--teal-100);
  border-bottom: 1px solid var(--teal-100);
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 12px;
  color: var(--primary-deeper);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}
.trust-item i { color: var(--primary); font-size: 1.1rem; }

/* ---- About Section ---- */
.about-section { background: white; }
.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  max-height: 520px;
  box-shadow: var(--shadow-md);
}
.about-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}
.about-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
}
.about-badge-text strong {
  display: block;
  font-size: 1.4rem;
  color: var(--primary-deeper);
  line-height: 1;
}
.about-badge-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}
.about-content .section-label { margin-bottom: 12px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--text-body); margin-bottom: 16px; }
.about-quote {
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  background: var(--teal-50);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-heading);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
}
.about-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }

/* ---- Services Section ---- */
.services-section { background: var(--teal-50); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--teal-100);
  border-left: 3px solid var(--primary);
  transition: var(--transition);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  min-height: 52px;
}
.service-card:hover {
  border-color: var(--primary);
  border-left-color: var(--primary-deeper);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  background: var(--teal-50, #f0faf9);
}
.service-icon { display: none; }
.service-card span {
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.3;
}
.service-card:hover span { color: var(--primary-deeper); }

/* ---- Feature Cards / Why Choose Us ---- */
.features-section { background: white; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--teal-50);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  border: 1px solid var(--teal-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-items: center;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-deeper) 0%, var(--primary) 100%);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.feature-card:hover::before { opacity: 1; }
.feature-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--teal-200);
  line-height: 1;
  margin-bottom: 12px;
}
.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
  color: var(--text-heading);
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 14px;
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0;
  grid-column: 1;
  grid-row: 1;
}

/* ---- Stats Strip ---- */
.stats-strip { background: var(--primary-deeper); padding: 60px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  color: var(--teal-100);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---- Testimonials ---- */
.testimonials-section { background: var(--teal-50); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--teal-200);
  transform: translateY(-3px);
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 14px;
  display: flex;
  gap: 3px;
}
.testimonial-text {
  font-style: italic;
  color: var(--text-body);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--teal-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--text-heading); }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ---- CTA Section ---- */
.cta-section {
  background: url('/images/cta-bg.webp') center center / cover no-repeat;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  background: white;
  border-radius: 20px;
  padding: 56px 60px;
  max-width: 780px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.cta-inner h2 {
  color: var(--primary-deeper);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 14px;
}
.cta-inner p {
  color: var(--text-body);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-inner .section-label {
  background: var(--teal-50);
  border-color: var(--primary);
  color: var(--primary-dark);
}
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cta-form-row-last { grid-template-columns: 120px 2fr 1fr; }
#cta-form .form-group { margin-bottom: 16px; text-align: left; }
#cta-form label { color: var(--text-heading); font-size: 0.85rem; font-weight: 700; display: block; margin-bottom: 6px; }
#cta-form input { width: 100%; padding: 11px 16px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-family: 'Nunito', sans-serif; font-size: 0.95rem; transition: var(--transition); box-sizing: border-box; }
#cta-form input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(69,184,172,0.15); }
.cta-phone {
  color: var(--primary);
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  display: block;
  margin-bottom: 16px;
}
.cta-phone:hover { color: var(--primary-dark); }

/* ---- Blog Grid ---- */
.blog-section { background: white; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--teal-200);
  transform: translateY(-4px);
}
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--teal-50) 0%, var(--teal-100) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
  overflow: hidden;
  text-decoration: none;
  flex-shrink: 0;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  gap: 12px;
}
.blog-card-cat {
  background: var(--teal-100);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
}
.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-heading);
  line-height: 1.35;
}
.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.6;
  margin-bottom: 18px;
}
.blog-card-link {
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.blog-card-link:hover { color: var(--primary-dark); gap: 10px; }

/* ---- Blog List (full page) ---- */
.blog-filter { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.87rem;
  font-weight: 700;
  border: 2px solid var(--gray-200);
  color: var(--text-muted);
  background: white;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}
#blog-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ---- Pricing ---- */
.pricing-intro {
  background: var(--teal-50);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 40px;
  border-left: 5px solid var(--primary);
}
.pricing-intro p { color: var(--text-body); margin: 0 0 18px; font-size: 1rem; }
.pricing-intro p:last-child { margin-bottom: 0; }
.pricing-table {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-bottom: 32px;
}
.pricing-table-header {
  background: var(--primary-deeper);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pricing-table-header h3 {
  color: white;
  font-size: 1.1rem;
  margin: 0;
}
.pricing-table-header i { color: var(--teal-200); font-size: 1.1rem; }
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 13px 24px;
  border-bottom: 1px solid var(--gray-100);
  gap: 20px;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row:nth-child(even) { background: var(--teal-50); }
.pricing-name {
  color: var(--text-body);
  font-size: 0.93rem;
  flex: 1;
}
.pricing-cost {
  color: var(--primary-deeper);
  font-weight: 700;
  font-size: 0.93rem;
  white-space: nowrap;
}
.pricing-footnotes {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--teal-50);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.pricing-footnotes p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
}
.pricing-footnotes p:last-child { margin-bottom: 0; }

/* ---- FAQ Accordion ---- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: white;
  cursor: pointer;
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); background: var(--teal-50); }
.faq-item.open .faq-question { color: var(--primary); background: var(--teal-50); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--text-body);
  font-size: 0.97rem;
  line-height: 1.75;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}
.contact-form { background: white; border-radius: var(--radius-lg); padding: 44px 40px; box-shadow: var(--shadow); border: 1px solid var(--teal-100); }
.contact-form h2 { margin-bottom: 10px; }
.contact-form p { color: var(--text-muted); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--text-body);
  transition: var(--transition);
  outline: none;
  background: var(--gray-50);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(69,184,172,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none;
  background: var(--teal-100);
  border: 1px solid var(--teal-200);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--primary-deeper);
  font-weight: 700;
  margin-top: 16px;
  text-align: center;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-info-card h4 { font-size: 0.87rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; font-family: 'Nunito', sans-serif; }
.contact-info-card p, .contact-info-card a { color: var(--text-heading); font-weight: 700; font-size: 0.97rem; margin: 0; }
.contact-info-card a:hover { color: var(--primary); }
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 20px;
  box-shadow: var(--shadow-sm);
}
.map-embed iframe { width: 100%; height: 260px; border: none; display: block; }

/* ---- Reviews page ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 60px;
}
.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); border-color: var(--teal-200); }
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.reviewer-info { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 46px;
  height: 46px;
  background: var(--teal-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}
.reviewer-info strong { display: block; font-size: 0.93rem; color: var(--text-heading); }
.reviewer-info span { font-size: 0.8rem; color: var(--text-muted); }
.google-badge { display: flex; align-items: center; gap: 6px; }
.google-badge img { width: 20px; height: 20px; }
.review-stars { color: #f59e0b; display: flex; gap: 3px; margin-bottom: 12px; }
.review-text { font-size: 0.95rem; color: var(--text-body); line-height: 1.7; font-style: italic; }
.review-google-icon { color: #4285F4; font-size: 1.1rem; flex-shrink: 0; }
a.review-card { text-decoration: none; display: block; color: inherit; }

/* ---- Content + Sidebar Layout ---- */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.blog-post-sidebar .sidebar-sticky { position: sticky; top: 100px; }
.content-main h2:first-child { margin-top: 0; }
.content-main h4 { font-size: 1.1rem; margin: 20px 0 8px; }
.content-main p { color: var(--text-body); margin-bottom: 16px; font-size: 1rem; }
.content-main ul, .content-main ol {
  margin: 0 0 18px 22px;
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.75;
}
.content-main ul { list-style: disc; }
.content-main ol { list-style: decimal; }
.content-main li { margin-bottom: 6px; }
.content-faq { margin-top: 36px; }
.content-faq h2 { margin-bottom: 24px; }
.sidebar-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--teal-100);
  margin-bottom: 24px;
}
.sidebar-card-header {
  background: var(--primary-deeper);
  padding: 20px 22px;
}
.sidebar-card-header h3 { color: white; font-size: 1.1rem; }
.sidebar-card-header p { color: var(--teal-100); font-size: 0.87rem; margin: 4px 0 0; }
.sidebar-card-body { padding: 22px; }
.sidebar-card-body p { font-size: 0.9rem; color: var(--text-body); margin-bottom: 16px; }
.sidebar-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.87rem;
}
.sidebar-contact-item:last-child { border-bottom: none; }
.sidebar-contact-item i { color: var(--primary); width: 20px; text-align: center; }
.sidebar-contact-item a { color: var(--text-body); font-weight: 700; }
.sidebar-contact-item a:hover { color: var(--primary); }
.sidebar-links { display: flex; flex-direction: column; gap: 2px; }
.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-body);
  transition: var(--transition);
}
.sidebar-links a:hover { background: var(--teal-50); color: var(--primary); padding-left: 20px; }
.sidebar-links a i { color: var(--primary); font-size: 0.85rem; }

/* ---- Smile Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow); }
.gallery-item img { width: 100%; height: 250px; object-fit: cover; }

/* ---- Blog Post Page ---- */
.blog-post-header {
  background: var(--teal-50);
  padding: 60px 0;
  border-bottom: 1px solid var(--teal-100);
}
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.blog-post-cat {
  background: var(--teal-100);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
}
.blog-post-date { font-size: 0.87rem; color: var(--text-muted); font-weight: 600; }
.blog-post-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.15; }
#blog-post-content { max-width: 820px; }
.blog-post-featured-img { margin-bottom: 32px; border-radius: var(--radius-lg); overflow: hidden; }
.blog-post-featured-img img { width: 100%; max-height: 420px; object-fit: cover; display: block; }
#blog-post-content h2 { font-size: 1.7rem; margin: 36px 0 14px; }
#blog-post-content h3 { font-size: 1.3rem; margin: 28px 0 10px; }
#blog-post-content p { color: var(--text-body); margin-bottom: 16px; font-size: 1.02rem; line-height: 1.8; }
#blog-post-content ul, #blog-post-content ol { margin: 0 0 18px 24px; color: var(--text-body); line-height: 1.8; }
#blog-post-content ul { list-style: disc; }
#blog-post-content ol { list-style: decimal; }
#blog-post-content li { margin-bottom: 6px; }
#blog-post-content a { color: var(--primary); text-decoration: underline; }
#blog-post-content a:hover { color: var(--primary-dark); }
#blog-post-content strong { color: var(--text-heading); }

/* ---- About page ---- */
.belief-section {
  background: var(--primary-deeper);
  padding: 60px 0;
  text-align: center;
}
.belief-section blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: white;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.5;
}
.belief-section cite {
  color: var(--teal-200);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ---- Map section ---- */
.location-section { background: var(--teal-50); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.location-info h2 { margin-bottom: 20px; }
.location-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.location-detail i { color: var(--primary); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.location-detail strong { display: block; font-size: 0.87rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; font-family: 'Nunito', sans-serif; }
.location-detail p { color: var(--text-heading); font-weight: 700; margin: 0; font-size: 0.97rem; }
.location-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.location-map iframe { width: 100%; height: 380px; border: none; display: block; }

/* ---- Footer ---- */
.site-footer { background: var(--primary-deeper); }
.footer-main { padding: 70px 0 50px; }
.footer-main .container {
  padding: 0 48px;
  max-width: none;
  margin: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}
.footer-h4-spacer { visibility: hidden; }
.footer-brand img { height: 56px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand-contact img { height: 56px; width: auto; margin-bottom: 32px; }
.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-col h3 {
  color: white;
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  color: var(--teal-200);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  color: rgba(255,255,255,0.65);
  font-size: 0.87rem;
  font-weight: 600;
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--teal-200); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact-item i { color: var(--teal-200); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item p, .footer-contact-item a {
  color: rgba(255,255,255,0.65);
  font-size: 0.87rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}
.footer-contact-item a:hover { color: var(--teal-200); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 48px;
  max-width: none;
  margin: 0;
}
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.82rem; }
.footer-bottom a { color: rgba(255,255,255,0.6); font-size: 0.82rem; font-weight: 600; }
.footer-bottom a:hover { color: var(--teal-200); }
.footer-legal { display: flex; gap: 20px; }

/* ---- Floating CTA (phone) ---- */
.float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  transition: var(--transition);
  color: white;
}
.float-btn:hover { transform: scale(1.1); color: white; }
.float-btn-phone { background: var(--primary); }
.float-btn-phone:hover { background: var(--primary-dark); }

/* ---- Utility ---- */
.text-teal { color: var(--primary); }
.text-muted { color: var(--text-muted); }
/* ---- Content Prose Spacing ---- */
.section-pad > .container > h2 { margin: 44px 0 16px; }
.section-pad > .container > h2:first-child { margin-top: 0; }
.section-pad > .container > h3 { margin: 30px 0 12px; }
.section-pad > .container > ul,
.section-pad > .container > ol { margin-bottom: 24px; }
.section-pad > .container > ul > li,
.section-pad > .container > ol > li { margin-bottom: 10px; line-height: 1.7; }
.content-main h2 { font-size: 1.8rem; margin: 44px 0 16px; }
.content-main h3 { font-size: 1.3rem; margin: 30px 0 12px; }

/* ---- Benefit Grid ---- */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 6px 0 32px;
}
.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.benefit-item-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 0.85rem;
}
.benefit-item-body strong { display: block; color: var(--text-heading); font-size: 0.95rem; margin-bottom: 3px; }
.benefit-item-body span { color: var(--text-body); font-size: 0.87rem; line-height: 1.6; }

/* ---- Option Cards ---- */
.option-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 6px 0 32px;
}
.option-cards-2 { grid-template-columns: repeat(2, 1fr); }
.option-card {
  background: white;
  border: 1px solid var(--teal-200);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
}
.option-card-level {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--primary);
  color: white;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.option-card h3 { font-size: 1.1rem; margin: 0 0 10px; color: var(--text-heading); }
.option-card p { font-size: 0.9rem; color: var(--text-body); line-height: 1.65; margin: 0; }
.option-card-note {
  font-size: 0.81rem;
  color: var(--text-muted);
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--teal-100);
  display: flex;
  align-items: center;
  gap: 6px;
}
.option-card-note i { color: var(--primary); font-size: 0.8rem; }

/* ---- Steps List ---- */
.steps-list { margin: 6px 0 32px; display: flex; flex-direction: column; gap: 14px; }
.step-item { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 2px;
}
.step-body strong { display: block; color: var(--text-heading); font-size: 1rem; margin-bottom: 4px; }
.step-body p { color: var(--text-body); font-size: 0.92rem; line-height: 1.65; margin: 0; }

.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.highlight-box {
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 28px 0;
}
.highlight-box h3 { font-size: 1.15rem; margin-bottom: 10px; }
.highlight-box p { margin: 0; color: var(--text-body); font-size: 0.97rem; }
.price-highlight {
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 28px 0;
  text-align: center;
}
.price-highlight h3 { color: white; margin-bottom: 8px; }
.price-highlight p { color: var(--teal-100); margin: 0; font-size: 0.95rem; }
.price-highlight .big-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  display: block;
  margin: 8px 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
}
.badge-teal { background: var(--teal-100); color: var(--primary); }
.badge-blue { background: var(--teal-100); color: var(--primary-deeper); }

/* ---- 404 ---- */
.error-page { min-height: 70vh; display: flex; align-items: center; text-align: center; padding: 80px 0; }
.error-page h1 { font-size: 6rem; color: var(--primary); opacity: 0.3; line-height: 1; margin-bottom: 16px; }
.error-page h2 { margin-bottom: 14px; }
.error-page p { color: var(--text-muted); margin-bottom: 28px; }

/* ---- Animations ---- */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- iPad Landscape (≤1024px) ---- */
@media (max-width: 1024px) {
  .top-bar { padding: 7px 24px; }
  .header-main .container { padding: 0 24px; }
  .footer-main .container,
  .footer-bottom .container { padding: 0 24px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  .footer-brand-contact { grid-column: 1 / -1; }
  .footer-h4-spacer { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .content-layout { grid-template-columns: 1fr 260px; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 44px 44px; }
}

/* ---- iPad Portrait / Large Phone (≤768px) ---- */
@media (max-width: 768px) {
  .top-bar { padding: 6px 16px; }
  .header-main .container { padding: 0 16px; }
  .footer-main .container,
  .footer-bottom .container { padding: 0 16px; }
  .section-pad { padding: 60px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  /* --- Mobile nav --- */
  .header-mobile-actions { display: flex; align-items: center; gap: 2px; margin-left: auto; }
  .hamburger { display: flex; margin-left: 0; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    width: 55vw;
    min-width: 230px;
    max-width: 300px;
    background: white;
    box-shadow: -4px 8px 30px rgba(0,0,0,0.13);
    padding: 6px 0 16px;
    border-top: 2px solid var(--primary);
    border-bottom-left-radius: 12px;
    z-index: 1003;
    overflow-y: auto;
    max-height: calc(100vh - 80px);
  }
  .main-nav.open { display: block; }
  .main-nav > ul { flex-direction: column; gap: 0; }
  .main-nav > ul > li { border-bottom: 1px solid var(--teal-50); }
  .main-nav > ul > li:last-child { border-bottom: none; }
  .main-nav > ul > li > a {
    padding: 11px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-heading);
  }
  /* Chevron for dropdown parents */
  .main-nav .has-dropdown > a::after {
    content: '▾';
    font-size: 0.7rem;
    color: var(--primary);
    transition: transform 0.2s;
    display: inline-block;
    margin-left: 6px;
    flex-shrink: 0;
  }
  .main-nav .has-dropdown.open > a::after { transform: rotate(-180deg); }
  /* Sub-menu dropdowns — use .main-nav scope for higher specificity */
  .main-nav .nav-dropdown,
  .main-nav .nav-dropdown-mega {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    min-width: 0;
    width: 100%;
    grid-template-columns: 1fr;
    background: var(--teal-50);
    padding: 2px 0;
    border-left: 3px solid var(--primary);
    margin: 0;
    transition: none;
    z-index: auto;
  }
  .main-nav .has-dropdown.open > .nav-dropdown,
  .main-nav .has-dropdown.open > .nav-dropdown-mega { display: block; }
  .main-nav .nav-dropdown li,
  .main-nav .nav-dropdown-mega li {
    border-bottom: 1px solid rgba(69,184,172,0.12);
  }
  .main-nav .nav-dropdown li:last-child,
  .main-nav .nav-dropdown-mega li:last-child { border-bottom: none; }
  .main-nav .nav-dropdown li a,
  .main-nav .nav-dropdown-mega li a {
    padding: 9px 16px;
    font-size: 0.81rem;
    font-weight: 600;
    color: var(--text-heading);
    display: block;
    white-space: normal;
    line-height: 1.35;
    background: none;
  }
  .main-nav .nav-dropdown li a:hover,
  .main-nav .nav-dropdown-mega li a:hover {
    color: var(--primary);
    background: rgba(69,184,172,0.08);
  }
  /* Nested flyout (FAQs sub-items) */
  .main-nav .nav-flyout {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--teal-200);
    border-radius: 0;
    padding: 2px 0;
    background: rgba(69,184,172,0.09);
    margin: 0;
    transition: none;
  }
  .main-nav .has-flyout.open > .nav-flyout { display: block; }
  .main-nav .nav-flyout li a {
    padding: 8px 20px;
    font-size: 0.79rem;
    white-space: normal;
    display: block;
  }
  .header-cta { display: none; }
  .header-main .container { position: relative; }
  /* --- Hero --- */
  .hero-section { min-height: 500px; padding: 32px 0; }
  .hero-overlay { background: linear-gradient(to bottom, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.72) 60%, rgba(0,0,0,0.55) 100%); }
  .hero-content { padding: 40px 24px; }
  .hero-content p { text-shadow: 0 1px 8px rgba(0,0,0,0.5); color: rgba(255,255,255,0.97); }
  .hero-trust { display: none; }
  .hero-badge { font-size: 0.72rem; letter-spacing: 0.07em; padding: 6px 14px; white-space: nowrap; }
  .hero-buttons { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary { font-size: 0.82rem; padding: 11px 18px; }
  /* --- Inner hero --- */
  .inner-hero { height: 300px; }
  .inner-hero-content { padding: 24px 32px; }
  /* --- Sections --- */
  .trust-strip { padding: 12px 0; }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
  .trust-item { font-size: 0.76rem; padding: 7px 10px; border: none; justify-content: flex-start; }
  /* --- Appointment drawer hidden on mobile (replaced by sticky bottom bar) --- */
  .appt-drawer { display: none; }
  .appt-overlay { display: none !important; }
  body { padding-bottom: 60px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 400px; margin: 0 auto; }
  .about-badge { left: 0; }
  .services-section { background: white; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .services-grid .service-card {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--teal-100);
    border-left: 3px solid var(--primary);
    box-shadow: none;
    margin: 0;
  }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  #blog-list-grid { grid-template-columns: 1fr; }
  .content-layout { display: block; }
  .content-sidebar { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand-contact { grid-column: 1 / -1; }
  .footer-h4-spacer { display: none; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-row { flex-direction: column; gap: 4px; }
  .pricing-cost { font-size: 0.87rem; }
  .benefit-grid { grid-template-columns: 1fr; }
  .option-cards, .option-cards-2 { grid-template-columns: 1fr; }
  /* --- CTA --- */
  .cta-inner { padding: 32px 28px; }
  .cta-inner h2 { white-space: normal; }
  .cta-form-row { grid-template-columns: 1fr; }
  /* --- Blog post --- */
  .blog-post-header { padding: 40px 0; }
}

/* ---- Mobile (≤480px) ---- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .header-main .container { padding: 0 12px; }
  .footer-main .container,
  .footer-bottom .container { padding: 0 16px; }
  .section-pad { padding: 50px 0; }
  .logo img { height: 44px; }
  .inner-hero { height: 260px; }
  .inner-hero-content { padding: 18px 20px; }
  .services-grid { grid-template-columns: 1fr; gap: 0; }
  .services-grid .service-card {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--teal-100);
    border-left: 3px solid var(--primary);
    box-shadow: none;
  }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { display: flex; flex-direction: column; gap: 0; }
  .footer-grid > .footer-col { padding-bottom: 28px; }
  .footer-grid > .footer-col:last-child { padding-bottom: 0; }
  /* Collapse the three split service columns into one seamless list */
  .footer-grid > .footer-col:nth-child(3),
  .footer-grid > .footer-col:nth-child(4) { padding-bottom: 0; }
  .footer-grid > .footer-col:nth-child(4),
  .footer-grid > .footer-col:nth-child(5) { padding-top: 8px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-buttons { gap: 8px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-inner { padding: 24px 20px; }
  .float-cta { display: none; }
  .contact-form { padding: 28px 20px; }
}

/* ---- Cookie Banner ---- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: white;
  border-top: 2px solid var(--teal-100);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.10);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.87rem;
  color: var(--text-body);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; }
#cookie-banner p a { color: var(--primary); font-weight: 700; }
.cookie-banner-btns { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cookie-btn-learn { font-size: 0.83rem; font-weight: 700; color: var(--text-muted); text-decoration: underline; }
.cookie-btn-accept {
  background: var(--primary-deeper);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 9px 22px;
  font-size: 0.83rem;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-btn-accept:hover { background: var(--primary); }
.cookie-banner-hide { transform: translateY(100%); opacity: 0; }
@media (max-width: 768px) {
  #cookie-banner { bottom: 60px; padding: 12px 16px; flex-direction: column; align-items: flex-start; gap: 10px; }
  .cookie-banner-btns { width: 100%; justify-content: flex-end; }
}

/* ---- Mobile Sticky Bottom Bar ---- */
.mobile-sticky-bar {
  display: none;
}
@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.18);
  }
  .mobile-sticky-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 14px 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    white-space: nowrap;
  }
  .msb-appt {
    background: white;
    color: var(--primary-deeper);
    border-top: 3px solid var(--primary);
    border-right: 2px solid var(--primary);
  }
  .msb-phone {
    background: white;
    color: var(--primary-deeper);
    border-top: 3px solid var(--primary);
  }
}

/* ---- Appointment Slide-out Drawer ---- */
.appt-drawer {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: 400px;
  z-index: 1000;
  transform: translateX(calc(100% - 44px));
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.appt-drawer.open { transform: translateX(0); }
.appt-drawer-content {
  position: absolute;
  left: 44px;
  top: 0;
  bottom: 0;
  right: 0;
  background: white;
  overflow-y: auto;
  padding: 24px 24px 20px;
  box-shadow: -4px 0 30px rgba(0,0,0,0.15);
}
.appt-drawer-content .cta-form-row { grid-template-columns: 1fr; gap: 0; }
.appt-drawer-content textarea { min-height: unset; }
.appt-drawer-content h2 {
  color: var(--primary-deeper);
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.appt-drawer-content p {
  color: var(--text-body);
  font-size: 0.88rem;
  margin-bottom: 14px;
}
#appt-form .form-group {
  margin-bottom: 12px;
}
#appt-form .form-group label {
  font-size: 0.82rem;
  margin-bottom: 4px;
}
#appt-form input,
#appt-form textarea {
  padding: 9px 12px;
  font-size: 0.88rem;
}
.appt-drawer-tab {
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 44px;
  background: white;
  border: 1px solid var(--primary);
  border-right: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 0;
  cursor: pointer;
  border-radius: 10px 0 0 10px;
  transition: background 0.2s, color 0.2s;
  box-shadow: -3px 0 16px rgba(69,184,172,0.25);
}
.appt-drawer-tab:hover { background: var(--primary); }
.appt-drawer-tab:hover i,
.appt-drawer-tab:hover span { color: white; }
.appt-drawer-tab i {
  color: var(--primary);
  font-size: 1rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.appt-drawer-tab span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--primary);
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.appt-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
}
.appt-overlay.open { display: block; }

/* Font Awesome font-display override: show fallback immediately instead of
   blocking on the webfont (PSI "Font display" audit). Must stay after the
   cdnjs FA stylesheet in document order to take precedence. */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2") format("woff2");
}
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-regular-400.woff2") format("woff2");
}
@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff2") format("woff2");
}
