/* ============================================================
   NEW HORIZONS THERAPY & WELLNESS – Global Stylesheet
   Palette:
     --teal-deep:   #1A6B72   (primary brand)
     --teal-mid:    #2A9BA5   (accent/links)
     --teal-light:  #E0F4F6   (subtle backgrounds)
     --gold:        #C8963E   (highlight / CTA)
     --gold-light:  #FDF3E3   (warm card bg)
     --charcoal:    #1E2A2E   (headings)
     --slate:       #4A5C61   (body text)
     --mist:        #F4F8F9   (page backgrounds)
     --white:       #FFFFFF
   Typography:
     Display: 'Playfair Display' (Google Fonts) – headings only
     Body:    'DM Sans' (Google Fonts) – all UI / body
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --teal-deep:  #1A6B72;
  --teal-mid:   #2A9BA5;
  --teal-light: #E0F4F6;
  --gold:       #C8963E;
  --gold-light: #FDF3E3;
  --charcoal:   #1E2A2E;
  --slate:      #4A5C61;
  --mist:       #F4F8F9;
  --white:      #FFFFFF;
  --shadow-sm:  0 2px 8px rgba(26,107,114,0.10);
  --shadow-md:  0 6px 24px rgba(26,107,114,0.14);
  --radius:     12px;
  --radius-sm:  6px;
  --transition: 0.28s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--slate);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-deep); }
ul { list-style: none; }
h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', serif;
  color: var(--charcoal);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }

/* ── Layout Helpers ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-title span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.section-title p { color: var(--slate); max-width: 560px; margin: 0.75rem auto 0; }

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

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: #b07e2e;
  border-color: #b07e2e;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(200,150,62,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--teal-deep);
  border-color: var(--teal-deep);
}
.btn-outline:hover {
  background: var(--teal-deep);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--teal-deep);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--teal-light);
  color: var(--teal-deep);
}
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }

/* ── Top Bar ── */
.topbar {
  background: var(--teal-deep);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 0.5rem 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--white); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 1.25rem; }
.topbar-item { display: flex; align-items: center; gap: 0.35rem; }

/* ── Navigation ── */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}
.navbar-brand {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: 'Playfair Display', serif;
  color: var(--teal-deep);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
}
.navbar-brand .logo-icon {
  width: 48px; height: 48px;
  background: var(--teal-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.navbar-brand small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--slate);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: 0.5rem 0.85rem;
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--teal-deep);
  background: var(--teal-light);
}
.nav-link.nav-book {
  background: var(--gold);
  color: var(--white);
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  margin-left: 0.5rem;
}
.nav-link.nav-book:hover { background: #b07e2e; color: var(--white); }

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
  z-index: 100;
}
.nav-item:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 0.55rem 0.9rem;
  color: var(--charcoal);
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}
.dropdown-menu li a:hover { background: var(--teal-light); color: var(--teal-deep); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ══════════════════════════════════════════════════
   HOME PAGE
══════════════════════════════════════════════════ */

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0e3c40 0%, var(--teal-deep) 50%, #2A9BA5 100%);
  overflow: hidden;
}
.hero-bg-shapes {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: var(--white);
}
.hero-shape-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.hero-shape-2 { width: 300px; height: 300px; bottom: -80px; left: 80px; }
.hero-shape-3 { width: 160px; height: 160px; top: 30%; right: 25%; }
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.hero-content { color: var(--white); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: '●';
  color: var(--gold);
  font-size: 0.5rem;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-content h1 em {
  font-style: normal;
  color: #9cdde3;
}
.hero-content > p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2.5rem; }
.hero-meta {
  display: flex; gap: 2rem; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 1.5rem;
}
.hero-meta-item { }
.hero-meta-item strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
}
.hero-meta-item span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}
.hero-card-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
}
.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px 24px 80px 24px;
  background: linear-gradient(160deg, rgba(255,255,255,0.15), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 5rem;
  overflow: hidden;
}
.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 0.6rem;
}
.hero-badge-1 { bottom: 2rem; left: -1.5rem; }
.hero-badge-2 { top: 2rem; right: -1.5rem; }
.hero-badge .badge-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.hero-badge-1 .badge-icon { background: var(--teal-light); color: var(--teal-deep); }
.hero-badge-2 .badge-icon { background: var(--gold-light); color: var(--gold); }
.hero-badge strong {
  display: block; font-size: 0.85rem; color: var(--charcoal); font-family: 'DM Sans', sans-serif;
}
.hero-badge span { font-size: 0.72rem; color: var(--slate); }

/* Quick Features Strip */
.features-strip { background: var(--teal-light); padding: 28px 0; }
.features-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.feature-chip {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--teal-deep);
}
.feature-chip .chip-icon {
  width: 34px; height: 34px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}

/* About Preview */
.about-preview { background: var(--white); }
.about-preview .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--teal-light), #b8e8ec);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  color: var(--teal-deep);
}
.about-stat-card {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--teal-deep);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-stat-card .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.about-stat-card span { font-size: 0.8rem; color: rgba(255,255,255,0.75); }

/* Services Overview */
.services-overview { background: var(--mist); }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
  text-align: center;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-light);
}
.service-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--teal-deep);
  filter: brightness(1.1);
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.88rem; color: var(--slate); margin-bottom: 1rem; }
.service-card .link-arrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-mid);
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.service-card .link-arrow:hover { color: var(--teal-deep); }
.section-cta { text-align: center; margin-top: 2.5rem; }

/* Treatments Overview */
.treatments-overview { background: var(--charcoal); }
.treatments-overview .section-title h2 { color: var(--white); }
.treatments-overview .section-title p { color: rgba(255,255,255,0.65); }
.treatment-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--transition);
}
.treatment-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--teal-mid);
  transform: translateY(-4px);
}
.treatment-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 0.5rem; }
.treatment-card p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.treatment-tag {
  display: inline-block;
  background: rgba(42,155,165,0.2);
  color: #9cdde3;
  font-size: 0.72rem;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
}

/* Therapists */
.therapists { background: var(--white); }
.therapist-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--teal-light);
}
.therapist-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.therapist-photo {
  height: 220px;
  background: linear-gradient(160deg, var(--teal-light), #9cdde3);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  color: var(--teal-deep);
}
.therapist-info { padding: 1.25rem; }
.therapist-info h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.therapist-info .specialty {
  font-size: 0.78rem;
  color: var(--teal-mid);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.4rem;
}
.therapist-info .experience { font-size: 0.82rem; color: var(--slate); margin-bottom: 1rem; }

/* Why Choose Us */
.why-us { background: var(--mist); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex; align-items: flex-start; gap: 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.why-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.why-card h4 { font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.3rem; }
.why-card p { font-size: 0.84rem; color: var(--slate); margin: 0; }

/* Testimonials */
.testimonials { background: var(--teal-deep); }
.testimonials .section-title h2 { color: var(--white); }
.testimonials .section-title p  { color: rgba(255,255,255,0.65); }
.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.testimonial-stars { color: #f5c842; font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.testimonial-text {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.author-name { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.author-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); }

/* Insurance */
.insurance { background: var(--white); }
.insurance-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}
.insurance-logo {
  background: var(--mist);
  border: 1px solid var(--teal-light);
  border-radius: var(--radius);
  padding: 1rem 2rem;
  font-weight: 600;
  color: var(--slate);
  font-size: 0.9rem;
  min-width: 130px;
  text-align: center;
  transition: all var(--transition);
}
.insurance-logo:hover { border-color: var(--teal-mid); color: var(--teal-deep); }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #b07e2e 100%);
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 500px; margin: 0 auto 2rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════
   PAGE BANNERS (inner pages)
══════════════════════════════════════════════════ */
.page-banner {
  background: linear-gradient(135deg, var(--teal-deep), #0e3c40);
  padding: 60px 0;
  text-align: center;
}
.page-banner h1 { color: var(--white); margin-bottom: 0.75rem; }
.breadcrumb {
  display: flex; justify-content: center; gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.4); }

/* ══════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════ */
.about-intro { background: var(--white); }
.about-intro .container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-intro-img {
  width: 100%; aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--teal-light), #9cdde3);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.mvv-section { background: var(--mist); }
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.mvv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  border-top: 4px solid var(--teal-mid);
  box-shadow: var(--shadow-sm);
}
.mvv-card h3 {
  color: var(--teal-deep);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.mvv-card p { font-size: 0.9rem; margin: 0; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2.5rem; }
.value-item {
  display: flex; gap: 0.75rem; align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.value-item .value-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}
.value-item p { font-size: 0.88rem; margin: 0; }
.value-item strong { color: var(--charcoal); display: block; margin-bottom: 0.2rem; }
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.facility-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.facility-img {
  height: 140px;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.facility-card p { padding: 0.9rem; font-size: 0.85rem; font-weight: 600; color: var(--charcoal); margin: 0; }
.certs-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.cert-badge {
  background: var(--teal-light);
  color: var(--teal-deep);
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 0.4rem;
}

/* ══════════════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════════════ */
.services-search { background: var(--mist); padding: 40px 0; }
.search-bar {
  display: flex; align-items: center;
  background: var(--white);
  border: 2px solid var(--teal-light);
  border-radius: 50px;
  padding: 0.6rem 1rem;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
.search-bar input {
  flex: 1;
  border: none; outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: transparent;
}
.search-bar button {
  background: var(--teal-deep);
  border: none;
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  color: var(--white);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
}
.service-categories { padding: 60px 0; }
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.category-tab {
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  border: 2px solid var(--teal-light);
  background: var(--white);
  color: var(--slate);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.category-tab:hover, .category-tab.active {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: var(--white);
}
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--teal-light);
  transition: all var(--transition);
}
.service-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-detail-img {
  height: 180px;
  background: linear-gradient(135deg, var(--teal-light), #9cdde3);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.service-detail-body { padding: 1.5rem; }
.service-detail-body h3 { margin-bottom: 0.5rem; }
.service-detail-body p { font-size: 0.88rem; color: var(--slate); margin-bottom: 0.75rem; }
.service-meta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--slate);
  margin-bottom: 1rem;
}
.service-meta span { display: flex; align-items: center; gap: 0.3rem; }

/* ══════════════════════════════════════════════════
   TREATMENTS PAGE
══════════════════════════════════════════════════ */
.treatment-detail { background: var(--white); }
.treatment-detail .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}
.treatment-content .treatment-img {
  width: 100%; border-radius: var(--radius);
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, var(--teal-light), #9cdde3);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  margin-bottom: 2rem;
}
.info-block { margin-bottom: 2rem; }
.info-block h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--teal-deep); }
.symptom-list, .cause-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem;
}
.symptom-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.88rem;
  background: var(--mist);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
}
.symptom-item::before { content: '✓'; color: var(--teal-mid); font-weight: 700; }
.treatment-sidebar {}
.sidebar-card {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-card h4 { color: var(--teal-deep); margin-bottom: 1rem; font-family: 'DM Sans', sans-serif; font-weight: 700; }
.sidebar-card ul { display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-card ul li { font-size: 0.88rem; display: flex; align-items: center; gap: 0.4rem; }
.sidebar-card ul li::before { content: '→'; color: var(--gold); }

/* ══════════════════════════════════════════════════
   DOCTORS PAGE
══════════════════════════════════════════════════ */
.doctors-filter { background: var(--mist); padding: 40px 0; }
.filter-row {
  display: flex; gap: 1rem; flex-wrap: wrap; align-items: flex-end;
  max-width: 860px; margin: 0 auto;
}
.filter-group { flex: 1; min-width: 160px; }
.filter-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.filter-group select, .filter-group input {
  width: 100%;
  padding: 0.65rem 1rem;
  border: 2px solid var(--teal-light);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}
.filter-group select:focus, .filter-group input:focus { border-color: var(--teal-mid); }
.doctor-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--teal-light);
  transition: all var(--transition);
}
.doctor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.doctor-photo {
  height: 240px;
  background: linear-gradient(160deg, #d8f3f6, #9cdde3);
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
  position: relative;
}
.doctor-availability {
  position: absolute;
  top: 1rem; right: 1rem;
  background: #22c55e;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
}
.doctor-info { padding: 1.5rem; }
.doctor-name { font-size: 1.1rem; margin-bottom: 0.2rem; }
.doctor-qual {
  font-size: 0.78rem;
  color: var(--teal-mid);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.5rem;
}
.doctor-meta { font-size: 0.82rem; color: var(--slate); margin-bottom: 0.3rem; }
.doctor-langs { font-size: 0.78rem; color: var(--slate); margin-bottom: 1rem; }
.doctor-actions { display: flex; gap: 0.5rem; }

/* ══════════════════════════════════════════════════
   BOOK APPOINTMENT
══════════════════════════════════════════════════ */
.booking-section { background: var(--mist); }
.booking-steps {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  position: relative;
}
.booking-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background: var(--teal-light);
  z-index: 0;
}
.step-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem;
  flex: 1;
  max-width: 160px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--teal-light);
  color: var(--slate);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.step-item.active .step-num {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: var(--white);
}
.step-item.done .step-num {
  background: #22c55e;
  border-color: #22c55e;
  color: var(--white);
}
.step-label { font-size: 0.75rem; color: var(--slate); text-align: center; font-weight: 500; }
.step-item.active .step-label { color: var(--teal-deep); font-weight: 600; }
.booking-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  max-width: 760px;
  margin: 0 auto;
}
.booking-form-card h3 { margin-bottom: 2rem; color: var(--teal-deep); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 1rem;
  border: 2px solid var(--teal-light);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal-mid); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.file-upload-area {
  border: 2px dashed var(--teal-light);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}
.file-upload-area:hover { border-color: var(--teal-mid); background: var(--teal-light); }
.file-upload-area input[type="file"] { display: none; }
.file-upload-area .upload-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.file-upload-area p { font-size: 0.88rem; color: var(--slate); margin: 0; }
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.cal-day {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  font-weight: 500;
}
.cal-day.header { font-weight: 700; font-size: 0.72rem; color: var(--slate); cursor: default; }
.cal-day:not(.header):not(.empty):not(.unavailable):hover { border-color: var(--teal-mid); background: var(--teal-light); }
.cal-day.selected { background: var(--teal-deep); color: var(--white); }
.cal-day.today { border-color: var(--gold); color: var(--gold); }
.cal-day.unavailable { color: #ccc; cursor: not-allowed; }
.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.time-slot {
  padding: 0.5rem;
  border: 2px solid var(--teal-light);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.82rem;
  cursor: pointer;
  font-weight: 500;
  transition: all var(--transition);
}
.time-slot:hover { border-color: var(--teal-mid); background: var(--teal-light); }
.time-slot.selected { background: var(--teal-deep); border-color: var(--teal-deep); color: var(--white); }
.time-slot.booked { background: var(--mist); color: #aaa; cursor: not-allowed; border-color: var(--mist); }
.confirmation-box {
  background: var(--teal-light);
  border: 2px solid var(--teal-mid);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.confirmation-box .confirm-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.confirmation-box h3 { color: var(--teal-deep); margin-bottom: 0.5rem; }
.confirmation-box p { color: var(--slate); font-size: 0.9rem; margin-bottom: 1.5rem; }
.appointment-summary {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: left;
  margin-bottom: 1.5rem;
}
.summary-row {
  display: flex; justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--teal-light);
  font-size: 0.88rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-row span:first-child { color: var(--slate); }
.summary-row span:last-child { font-weight: 600; color: var(--charcoal); }

/* ══════════════════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════════════════ */
.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  transition: all var(--transition);
}
.gallery-item:nth-child(4n+1) { grid-column: span 2; aspect-ratio: 16/7; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(26,107,114,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-overlay .zoom-icon { font-size: 2rem; color: var(--white); }

/* ══════════════════════════════════════════════════
   INSURANCE PAGE
══════════════════════════════════════════════════ */
.insurance-page { background: var(--white); }
.insurance-providers .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.provider-card {
  background: var(--white);
  border: 2px solid var(--teal-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.provider-card:hover { border-color: var(--teal-mid); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.provider-logo {
  height: 60px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.provider-card h4 { font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--charcoal); }
.provider-card span { font-size: 0.75rem; color: var(--slate); }
.insurance-steps { background: var(--mist); }
.steps-row {
  display: flex; align-items: flex-start; gap: 0; flex-wrap: wrap;
  counter-reset: steps;
}
.insurance-step {
  flex: 1; min-width: 180px;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}
.insurance-step::after {
  content: '→';
  position: absolute;
  right: -0.5rem;
  top: 2.5rem;
  font-size: 1.4rem;
  color: var(--teal-light);
}
.insurance-step:last-child::after { display: none; }
.step-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--teal-deep);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.insurance-step h4 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.insurance-step p { font-size: 0.82rem; color: var(--slate); margin: 0; }

/* ══════════════════════════════════════════════════
   FAQ PAGE
══════════════════════════════════════════════════ */
.faq-section { background: var(--white); }
.faq-categories {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
  justify-content: center;
}
.faq-cat-btn {
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  border: 2px solid var(--teal-light);
  background: var(--white);
  color: var(--slate);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.faq-cat-btn.active, .faq-cat-btn:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: var(--white);
}
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--teal-light);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%; background: var(--white);
  border: none; cursor: pointer;
  padding: 1.25rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--teal-light); }
.faq-question.open { background: var(--teal-light); color: var(--teal-deep); }
.faq-icon { font-size: 1.2rem; color: var(--teal-mid); flex-shrink: 0; transition: transform var(--transition); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  background: var(--mist);
  font-size: 0.9rem;
  color: var(--slate);
  padding: 0 1.5rem;
}
.faq-answer.open { max-height: 400px; padding: 1.25rem 1.5rem; }

/* ══════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════ */
.contact-section { background: var(--mist); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-block { }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}
.contact-info-card h3 { margin-bottom: 1.25rem; color: var(--teal-deep); }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.1rem;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--teal-deep);
}
.contact-item h4 { font-family: 'DM Sans', sans-serif; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate); margin-bottom: 0.2rem; }
.contact-item p { font-size: 0.9rem; margin: 0; color: var(--charcoal); }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-form-card h3 { margin-bottom: 2rem; color: var(--teal-deep); }
.map-placeholder {
  width: 100%;
  height: 300px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #d0eef1, #b8e8ec);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: var(--teal-deep);
  margin-top: 1.5rem;
  border: 2px solid var(--teal-light);
}
.quick-contact-btns {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem;
}
.quick-btn {
  flex: 1;
  min-width: 130px;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.quick-btn-call { background: var(--teal-deep); color: var(--white); }
.quick-btn-call:hover { background: #145860; color: var(--white); }
.quick-btn-whatsapp { background: #22c55e; color: var(--white); }
.quick-btn-whatsapp:hover { background: #16a34a; color: var(--white); }
.quick-btn-book { background: var(--gold); color: var(--white); }
.quick-btn-book:hover { background: #b07e2e; color: var(--white); }
.social-links {
  display: flex; gap: 0.75rem; margin-top: 1rem; flex-wrap: wrap;
}
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
  font-weight: 700;
}
.social-link:hover { background: var(--teal-deep); color: var(--white); }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo .logo-icon {
  width: 44px; height: 44px;
  background: var(--teal-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}
.footer-logo-text {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.2;
}
.footer-logo-text small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-brand p { font-size: 0.88rem; margin-bottom: 1.25rem; }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--teal-mid); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.footer-contact-item .fc-icon { margin-top: 2px; font-size: 0.9rem; }
.footer-hours { font-size: 0.85rem; }
.footer-hours li {
  display: flex; justify-content: space-between;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-hours li:last-child { border: none; }
.footer-hours span:last-child { color: var(--white); font-weight: 500; }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.65); }
.footer-bottom a:hover { color: var(--teal-mid); }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-4, .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .insurance-providers .container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 55px 0; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { min-height: auto; }
  .about-preview .container,
  .about-intro .container,
  .contact-grid,
  .treatment-detail .container { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .mvv-grid, .why-grid, .testimonial-slider { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(4n+1) { grid-column: span 1; aspect-ratio: 4/3; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; z-index: 1000; }
  .nav-link { font-size: 1.2rem; padding: 0.75rem 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .doctor-actions { flex-direction: column; }
  .time-slots { grid-template-columns: repeat(3, 1fr); }
  .topbar { display: none; }
  .hero-meta { gap: 1rem; }
  .insurance-providers .container { grid-template-columns: repeat(2, 1fr); }
  .steps-row { flex-direction: column; align-items: center; }
  .insurance-step::after { display: none; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(4n+1) { grid-column: span 1; }
  .time-slots { grid-template-columns: repeat(2, 1fr); }
  .insurance-providers .container { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
