/* ============================================
   Integrative Motion Utah — Premium Design System
   Linear / Raycast inspired — Light Mode
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary: #252d41;
  --primary-container: #3b4358;
  --secondary: #006a61;
  --secondary-light: #00897b;
  --secondary-muted: rgba(0,106,97,0.08);
  --teal-light: #00897b;
  --error: #ba1a1a;

  --surface: #f8f9fc;
  --surface-alt: #f0f2f7;
  --card-bg: #ffffff;

  --on-surface: #1a1f36;
  --on-surface-muted: #525f7f;
  --on-surface-dim: #8792a2;
  --outline: rgba(37,45,65,0.06);
  --on-primary: #ffffff;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 6px 24px rgba(0,0,0,0.03);
  --shadow-card-hover: 0 4px 12px rgba(0,0,0,0.06), 0 16px 40px rgba(0,0,0,0.06);
  --shadow-glow-teal: 0 0 24px rgba(0,106,97,0.35), 0 0 60px rgba(0,106,97,0.15);

  --glass-bg: rgba(255,255,255,0.82);
  --glass-blur: blur(20px);

  --radius: 16px;
  --radius-sm: 10px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--on-surface);
  background: var(--surface);
}

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

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

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-sans);
  color: var(--on-surface);
  line-height: 1.15;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-wrap: balance;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--on-surface-muted);
  line-height: 1.7;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  text-wrap: balance;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  line-height: 1.7;
}

.credential-line {
  color: var(--on-surface-dim);
  font-size: 0.9rem;
}

/* ---------- Layout Sections ---------- */
.section-base {
  padding: 128px 0;
}

.section-alt {
  padding: 128px 0;
  background: var(--surface-alt);
}

.section-dark {
  padding: 128px 0;
  background: var(--primary);
  color: rgba(255,255,255,0.8);
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark .section-label {
  color: var(--secondary-light);
}

.section-dark p {
  color: rgba(255,255,255,0.7);
}

/* ---------- Navigation ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
}

.nav-bar {
  height: 80px;
  transition: all 0.3s;
  background: transparent;
}

.site-header.scrolled .nav-bar {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 0 1px 0 var(--outline);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.nav-logo {
  height: 68px;
  width: auto;
}

/* Show white logo on dark/transparent nav, dark logo when scrolled */
.nav-logo-dark { display: none; }
.nav-logo-light { display: block; }

.site-header.scrolled .nav-logo-dark { display: block; }
.site-header.scrolled .nav-logo-light { display: none; }

.nav-brand-icon {
  color: var(--secondary);
  display: flex;
}

.site-header:not(.scrolled) .nav-brand-icon {
  color: rgba(255,255,255,0.8);
}

.nav-brand-text {
  font-weight: 700;
  font-size: 1rem;
  color: var(--on-surface);
}

.site-header:not(.scrolled) .nav-brand-text {
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
}

.nav-link-item {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--on-surface-muted);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: all 0.2s;
  text-decoration: none;
}

.site-header:not(.scrolled) .nav-link-item {
  color: rgba(255,255,255,0.65);
}

.nav-link-item:hover {
  color: var(--secondary);
}

.nav-link-item.active {
  color: var(--secondary);
  position: relative;
}

.nav-link-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--secondary);
  border-radius: 50%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--on-surface-dim);
  text-decoration: none;
}

.site-header:not(.scrolled) .nav-phone {
  color: rgba(255,255,255,0.7);
}

.nav-cta {
  background: var(--secondary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
}

.nav-cta:hover {
  box-shadow: var(--shadow-glow-teal);
  transform: translateY(-1px);
}

/* Mobile Nav Toggle (hamburger) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--on-surface);
  border-radius: 2px;
  transition: all 0.3s;
}

.site-header:not(.scrolled) .nav-toggle span {
  background: rgba(255,255,255,0.8);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--card-bg);
  box-shadow: var(--shadow-card-hover);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.mobile-menu.open {
  max-height: 500px;
  padding: 1rem 0;
}

.mobile-link {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--on-surface);
  text-decoration: none;
  transition: all 0.2s;
}

.mobile-link:hover {
  color: var(--secondary);
  background: var(--secondary-muted);
}

/* ---------- Buttons ---------- */
.btn-glow {
  background: var(--secondary);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

.btn-glow:hover {
  box-shadow: var(--shadow-glow-teal);
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-container));
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

.btn-ghost {
  background: transparent;
  color: var(--secondary);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

.btn-ghost:hover {
  background: var(--secondary-muted);
}

.btn-ghost-light {
  background: transparent;
  color: rgba(255,255,255,0.8);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

.btn-ghost-light:hover {
  background: rgba(255,255,255,0.1);
}

/* ---------- Hero ---------- */
.hero {
  background: var(--primary);
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,106,97,0.2), transparent 60%);
  top: 15%;
  right: 10%;
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.15;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.25;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
}

.hero-image-badge {
  position: absolute;
  bottom: 20px;
  left: -16px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow-card-hover);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 3;
}

.badge-icon {
  width: 40px;
  height: 40px;
  background: var(--secondary-muted);
  color: var(--secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-badge strong {
  font-size: 0.85rem;
  color: var(--on-surface);
  display: block;
}

.hero-image-badge span {
  font-size: 0.7rem;
  color: var(--on-surface-dim);
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
}

.stat-suffix {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-light);
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  margin-top: 0.25rem;
}

/* ---------- Trust Cards ---------- */
.trust-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--card-bg);
  border: 1px solid var(--outline);
  border-radius: 16px;
  padding: 1.25rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.trust-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--secondary-muted);
  color: var(--secondary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.trust-card strong {
  display: block;
  font-size: 0.85rem;
  color: var(--on-surface);
}

.trust-card span {
  font-size: 0.75rem;
  color: var(--on-surface-dim);
}

/* ---------- Service Cards ---------- */
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--outline);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--secondary-muted);
  color: var(--secondary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: var(--secondary);
  color: #fff;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--on-surface-muted);
  line-height: 1.6;
}

.card-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
  text-decoration: none;
  transition: all 0.3s;
}

.card-link:hover {
  gap: 0.5rem;
}

.card-link i {
  transition: transform 0.3s;
}

/* ---------- Service Detail (services page) ---------- */
.services-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-detail-row {
  background: var(--card-bg);
  border: 1px solid var(--outline);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-detail-row:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.service-detail-row.highlight {
  border-left: 4px solid var(--secondary);
}

.service-detail-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--secondary-muted);
  color: var(--secondary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all 0.3s;
}

.service-detail-icon.highlight {
  background: #fff2e8;
  color: #e8614d;
}

.service-detail-row:hover .service-detail-icon {
  background: var(--secondary);
  color: #fff;
}

.service-detail-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.service-detail-content p {
  font-size: 0.875rem;
  color: var(--on-surface-muted);
  line-height: 1.7;
}

.highlight-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--secondary);
  color: #fff;
  padding: 3px 8px;
  border-radius: 6px;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
}

.benefit-list li {
  font-size: 0.8rem;
  color: var(--on-surface-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.benefit-list li::before {
  content: '\f26a';
  font-family: 'bootstrap-icons';
  color: var(--secondary);
  font-size: 0.65rem;
}

/* ---------- Promo Card ---------- */
.promo-card {
  background: var(--primary);
  border-radius: 20px;
  padding: 2.5rem 2.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.promo-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,106,97,0.3), transparent);
  right: -40px;
  top: -40px;
  pointer-events: none;
}

.promo-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.promo-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
}

/* ---------- Step Cards (dark section) ---------- */
.step-card {
  text-align: center;
  padding: 1.5rem;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(0,106,97,0.15);
  color: var(--secondary-light);
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: 10px;
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}

.step-card:hover .step-num {
  background: var(--secondary);
  color: #fff;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--outline);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.stars {
  color: #d4a853;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.9rem;
  color: var(--on-surface-muted);
  line-height: 1.7;
  font-style: italic;
  border: none;
  padding: 0;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.author-avatar {
  width: 36px;
  height: 36px;
  background: var(--secondary-muted);
  color: var(--secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.testimonial-author strong {
  font-size: 0.85rem;
  color: var(--on-surface);
  display: block;
}

.testimonial-author span {
  font-size: 0.7rem;
  color: var(--on-surface-dim);
}

/* ---------- Doctor Photo ---------- */
.doctor-photo {
  border-radius: 16px;
  overflow: hidden;
}

.doctor-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
}

/* ---------- Office Photo ---------- */
.office-photo {
  border-radius: 16px;
  overflow: hidden;
}

.office-photo img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.mini-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--on-surface);
  padding: 0.6rem 0;
}

.mini-feature i {
  color: var(--secondary);
  font-size: 1rem;
}

/* ---------- Blog ---------- */
.blog-featured {
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--outline);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.blog-category {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--secondary);
  background: var(--secondary-muted);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.blog-featured-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.blog-featured-title a { color: var(--on-surface); text-decoration: none; }
.blog-featured-title a:hover { color: var(--secondary); }

.blog-featured-excerpt {
  color: var(--on-surface-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--on-surface-dim);
}

.blog-meta i { margin-right: 4px; }

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--outline);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  height: 100%;
}

.blog-card:hover {
  border-color: rgba(0,106,97,0.2);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.blog-card-body { padding: 1.5rem; }

.blog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.blog-card-title a { color: var(--on-surface); text-decoration: none; }
.blog-card-title a:hover { color: var(--secondary); }

.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--on-surface-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Blog post content */
.blog-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--on-surface-muted);
}

.blog-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--on-surface);
  margin: 2.5rem 0 1rem;
}

.blog-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--on-surface);
  margin: 2rem 0 0.75rem;
}

.blog-content p { margin-bottom: 1.25rem; }

.blog-content ul, .blog-content ol {
  margin: 0.75rem 0 1.25rem 1.5rem;
}

.blog-content li { margin-bottom: 0.4rem; }

.blog-content strong { color: var(--on-surface); }

.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 1rem;
}

.blog-back:hover { color: rgba(255,255,255,0.8); }

.blog-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.blog-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--on-surface-dim);
  background: var(--surface-alt);
  padding: 4px 12px;
  border-radius: 6px;
}

.blog-author-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--surface-alt);
  border-radius: 12px;
}

.blog-author-photo {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.blog-author-card strong { display: block; margin-bottom: 0.3rem; font-size: 0.95rem; }
.blog-author-card p { font-size: 0.85rem; color: var(--on-surface-muted); margin: 0 0 0.5rem; }

.blog-cta {
  background: var(--primary);
  border-radius: 12px;
  padding: 2rem;
  color: rgba(255,255,255,0.7);
}

.blog-cta h3 { color: #fff; font-size: 1.25rem; margin-bottom: 0.5rem; }
.blog-cta p { color: rgba(255,255,255,0.6); margin-bottom: 1rem; }

/* Quick answer - subtle summary for crawlers/AI */
.quick-answer {
  background: var(--surface-alt);
  border-left: 3px solid var(--secondary);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--on-surface-muted);
  line-height: 1.7;
}

.quick-answer p { margin: 0; }

/* Article FAQ section - accordion style */
.article-faq {
  margin: 2.5rem 0 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--outline);
}

.article-faq h2 {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.article-faq .faq-item {
  background: var(--card-bg);
  border: 1px solid var(--outline);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.5rem;
  padding: 0;
}

.article-faq .faq-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--on-surface);
  margin: 0;
  padding: 1rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.article-faq .faq-item h3::after {
  content: '\F282';
  font-family: 'bootstrap-icons';
  font-size: 0.8rem;
  color: var(--on-surface-dim);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.article-faq .faq-item.open h3::after {
  transform: rotate(180deg);
}

.article-faq .faq-item.open h3 {
  color: var(--secondary);
}

.article-faq .faq-item p {
  font-size: 0.9rem;
  color: var(--on-surface-muted);
  margin: 0;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.25rem;
}

.article-faq .faq-item.open p {
  max-height: 300px;
  padding: 0 1.25rem 1.25rem;
}

/* ---------- Credentials ---------- */
.credentials {
  margin: 1.5rem 0;
}

.cred {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0;
  font-size: 0.875rem;
  color: var(--on-surface);
}

.cred i {
  color: var(--secondary);
  font-size: 0.9rem;
}

/* ---------- Education Timeline ---------- */
.education-timeline {
  margin-top: 2rem;
}

.timeline-heading {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.timeline-entry {
  position: relative;
  padding-left: 1.75rem;
  padding-bottom: 1.25rem;
}

.timeline-entry:last-child {
  padding-bottom: 0;
}

.timeline-entry::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--secondary-muted);
}

.timeline-dot {
  position: absolute;
  left: -4px;
  top: 5px;
  width: 10px;
  height: 10px;
  background: var(--secondary);
  border-radius: 3px;
}

.timeline-entry strong {
  display: block;
  font-size: 0.875rem;
  color: var(--on-surface);
}

.timeline-entry span {
  font-size: 0.8rem;
  color: var(--on-surface-dim);
}

/* ---------- Page Hero ---------- */
.page-hero {
  background: var(--primary);
  padding: 180px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
  text-wrap: balance;
}

.page-hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
}

.page-hero .section-label {
  color: rgba(0,137,123,0.7);
}

/* ---------- Contact Page ---------- */
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--card-bg);
  border: 1px solid var(--outline);
  border-radius: 16px;
  padding: 1.25rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
}

.contact-info-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--secondary-muted);
  color: var(--secondary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-info-card strong {
  font-size: 0.85rem;
  color: var(--on-surface);
  display: block;
}

.contact-info-card span {
  font-size: 0.75rem;
  color: var(--on-surface-dim);
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  height: 360px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--card-bg);
  border: 1px solid var(--outline);
  border-radius: 16px;
  padding: 2.5rem;
}

.form-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.form-subtitle {
  font-size: 0.85rem;
  color: var(--on-surface-dim);
  margin-bottom: 1.5rem;
}

.form-lbl {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--on-surface);
  margin-bottom: 0.25rem;
}

.form-input {
  display: block;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--on-surface);
  transition: all 0.3s;
  outline: none;
}

.form-input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0,106,97,0.1);
}

select.form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238792a2' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-position: right 12px center;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--outline);
  border-radius: 16px;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--on-surface);
  text-align: left;
  gap: 1rem;
}

.faq-trigger i {
  transition: transform 0.3s;
  color: var(--on-surface-dim);
  font-size: 0.8rem;
}

.faq-item.open .faq-trigger i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.85rem;
  color: var(--on-surface-muted);
  line-height: 1.7;
  margin: 0;
}

/* ---------- Condition Tags ---------- */
.condition-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: var(--card-bg);
  border: 1px solid var(--outline);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--on-surface);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
}

.condition-tag i { color: var(--secondary); font-size: 0.9rem; }

.condition-tag:hover {
  border-color: rgba(0,106,97,0.2);
  box-shadow: 0 2px 8px rgba(0,106,97,0.08);
  transform: translateY(-1px);
}

/* ---------- Insurance Note ---------- */
.insurance-note {
  font-size: 0.875rem;
  color: var(--on-surface-muted);
  margin: 0;
}

.insurance-note strong {
  color: var(--on-surface);
}

.insurance-note a {
  color: var(--secondary);
  font-weight: 600;
}

/* ---------- Success Icon ---------- */
.success-icon {
  width: 64px;
  height: 64px;
  background: var(--secondary-muted);
  color: var(--secondary);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 64px 0 80px;
}

.cta-card {
  background: var(--primary);
  border-radius: 20px;
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,106,97,0.25), transparent);
  right: -60px;
  top: -60px;
  pointer-events: none;
}

.cta-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}

.cta-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #1a1f36;
  padding: 4rem 0 1.5rem;
  color: rgba(255,255,255,0.7);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.footer-brand .nav-brand-icon {
  color: var(--secondary-light);
}

.footer-logo {
  height: 48px;
  width: auto;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 280px;
}

.footer-heading {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  transition: all 0.2s;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--secondary-light);
  padding-left: 3px;
}

.contact-links li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.contact-links i {
  color: var(--secondary-light);
  font-size: 0.75rem;
  margin-top: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a {
  color: var(--secondary-light);
}

/* ---------- Booking System ---------- */
.booking-container {
  max-width: 880px;
  margin: 0 auto;
}

.booking-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.75rem;
}

.booking-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 150px;
  position: relative;
  cursor: pointer;
}

.booking-step-dot {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--surface-alt);
  color: var(--on-surface-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}

.booking-step.active .booking-step-dot {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 0 0 4px var(--secondary-muted);
}

.booking-step.completed .booking-step-dot {
  background: var(--secondary);
  color: #fff;
}

.booking-step-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--on-surface-dim);
  transition: all 0.3s;
}

.booking-step.active .booking-step-label,
.booking-step.completed .booking-step-label {
  color: var(--secondary);
}

.booking-step-line {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--surface-alt);
  z-index: 1;
}

.booking-step-line.filled {
  background: var(--secondary);
}

.booking-step:last-child .booking-step-line {
  display: none;
}

.booking-panel {
  display: none;
}

.booking-panel.active {
  display: block;
  animation: panelIn 0.4s ease;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  text-align: center;
}

.panel-subtitle {
  font-size: 0.85rem;
  color: var(--on-surface-dim);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* ---------- Service Select Cards (booking) ---------- */
.service-select-card {
  background: var(--card-bg);
  border: 1.5px solid var(--outline);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.service-select-card:hover {
  border-color: rgba(0,106,97,0.25);
  box-shadow: var(--shadow-card);
}

.service-select-card.selected {
  border-color: var(--secondary);
  background: rgba(0,106,97,0.03);
}

.service-radio {
  width: 18px;
  height: 18px;
  border: 2px solid var(--surface-alt);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.service-select-card.selected .service-radio {
  background: var(--secondary);
  border-color: var(--secondary);
}

.service-select-card.selected .service-radio::after {
  content: '\f26a';
  font-family: 'bootstrap-icons';
  color: #fff;
  font-size: 0.55rem;
}

.service-select-card strong {
  font-size: 0.875rem;
  color: var(--on-surface);
  display: block;
}

.service-select-card span {
  font-size: 0.7rem;
  color: var(--on-surface-dim);
}

/* ---------- Calendar ---------- */
.calendar-wrapper {
  background: var(--card-bg);
  border: 1px solid var(--outline);
  border-radius: 16px;
  overflow: hidden;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--surface);
}

.calendar-header h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0;
}

.cal-nav {
  width: 32px;
  height: 32px;
  border: 1px solid var(--outline);
  border-radius: 8px;
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.75rem;
  color: var(--on-surface);
}

.cal-nav:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 0.5rem;
}

.cal-day-hdr {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--on-surface-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.6rem 0;
}

.calendar-day {
  text-align: center;
  padding: 0.5rem 0;
  font-size: 0.8rem;
  cursor: pointer;
  border-radius: 8px;
  margin: 2px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-weight: 500;
}

.calendar-day:hover:not(.disabled):not(.empty) {
  background: var(--secondary-muted);
  color: var(--secondary);
}

.calendar-day.selected {
  background: var(--secondary);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 0 3px var(--secondary-muted);
}

.calendar-day.today {
  outline: 2px solid var(--secondary-light);
  outline-offset: -2px;
}

.calendar-day.disabled {
  color: var(--on-surface-dim);
  opacity: 0.4;
  cursor: not-allowed;
}

.calendar-day.empty {
  cursor: default;
}

/* ---------- Time Slots ---------- */
.time-slots-panel {
  background: var(--card-bg);
  border: 1px solid var(--outline);
  border-radius: 16px;
  padding: 1.25rem;
}

.slots-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.slots-date {
  font-size: 0.75rem;
  color: var(--on-surface-dim);
  margin-bottom: 1rem;
}

.slots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.time-slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--outline);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  font-family: var(--font-sans);
  color: var(--on-surface);
}

.time-slot:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.time-slot.selected {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
}

.time-slot.unavailable {
  color: var(--on-surface-dim);
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* ---------- Summary Card (booking confirmation) ---------- */
.summary-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  max-width: 500px;
  margin: 0 auto;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  font-size: 0.85rem;
}

.summary-row + .summary-row {
  border-top: 1px solid var(--outline);
}

.summary-row span:first-child {
  color: var(--on-surface-dim);
}

.summary-row span:last-child {
  font-weight: 600;
  color: var(--on-surface);
}

/* ---------- Scroll Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] {
  transition-delay: 100ms;
}

[data-reveal-delay="2"] {
  transition-delay: 200ms;
}

[data-reveal-delay="3"] {
  transition-delay: 300ms;
}

[data-reveal-delay="4"] {
  transition-delay: 400ms;
}

[data-reveal-delay="5"] {
  transition-delay: 500ms;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Spinner ---------- */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Validation ---------- */
.is-invalid {
  border-color: var(--error) !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .nav-bar {
    height: 56px;
  }

  .nav-logo {
    height: 32px;
  }

  .nav-cta {
    font-size: 0.72rem;
    padding: 0.4rem 0.9rem;
  }

  .hero {
    min-height: auto;
    padding: 96px 0 48px;
  }

  .section-base,
  .section-alt,
  .section-dark {
    padding: 80px 0;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }

  .service-detail-row {
    flex-direction: column;
  }

  .cta-card {
    padding: 2.5rem;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }
}

@media (max-width: 767px) {
  .section-base,
  .section-alt,
  .section-dark {
    padding: 64px 0;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .doctor-photo img {
    height: 320px;
  }

  .office-photo img {
    height: 240px;
  }

  .page-hero {
    padding: 140px 0 60px;
  }

  .cta-card {
    padding: 2rem;
  }

  .stat-value {
    font-size: 1.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .nav-actions .nav-phone {
    display: none;
  }
}

/* ---------- Privacy / Long-Form Content ---------- */
.privacy-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--on-surface);
  margin: 2rem 0 0.75rem;
}

.privacy-content h2:first-of-type { margin-top: 0; }

.privacy-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--on-surface);
  margin: 1.25rem 0 0.5rem;
}

.privacy-content p,
.privacy-content li {
  font-size: 0.9rem;
  color: var(--on-surface-muted);
  line-height: 1.7;
}

.privacy-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.privacy-content li { margin-bottom: 0.4rem; }

/* ---------- Premium Polish ---------- */

/* Text selection */
::selection {
  background: rgba(0,106,97,0.15);
  color: var(--on-surface);
}

/* Scrollbar (webkit) */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: #c8cdd5; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #a0a7b3; }

/* Tabular numbers for stats */
.stat-value { font-feature-settings: 'tnum'; }

/* Nav link hover pill */
.nav-link-item { border-radius: 6px; transition: background 0.2s ease, color 0.2s ease; }
.nav-link-item:hover { background: rgba(0,106,97,0.06); }

/* Skip to content (accessibility) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 0.75rem 1.5rem;
  background: var(--secondary);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  z-index: 9999;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

/* Card subtle borders for grounding */
.service-card,
.testimonial-card,
.contact-info-card,
.trust-card {
  border: 1px solid rgba(0,0,0,0.04);
}

/* Hero initial entrance animation */
.hero-content [data-reveal],
.hero-image [data-reveal] {
  transition-delay: calc(var(--reveal-delay, 0) * 80ms);
}

/* Small phone breakpoint */
@media (max-width: 480px) {
  .hero-title { font-size: 2.25rem !important; }
  .hero-stats { gap: 1rem; }
  .stat-value { font-size: 1.5rem; }
  .section-title { font-size: 1.5rem; }
  .calendar-grid { font-size: 0.75rem; }
  .calendar-day { padding: 0.35rem 0; }
  .time-slot { padding: 0.4rem 0.6rem; font-size: 0.75rem; }
  .service-select-card { padding: 0.75rem; }
}
