/* ============================================================
   EPIONE PAIN CENTER — Master Stylesheet
   Design: Warm, organic wellness aesthetic (Squarespace-inspired)
   Palette: Cream (#FDF0E6), Coral (#F08E80), Black (#000000)
   Fonts: Manrope (headings), Nunito Sans (body)
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Primary Palette */
  --cream: #FDF0E6;
  --cream-dark: #F5E4D4;
  --coral: #F08E80;
  --coral-light: #F4A99E;
  --coral-dark: #D8766A;
  --black: #000000;
  --charcoal: #1A1A1A;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #FFF8F2;
  --light-gray: #E8E0D8;
  --medium-gray: #A09890;
  --dark-gray: #5A5550;
  --text-primary: #1A1A1A;
  --text-secondary: #555555;

  /* Accent (for links, icons, subtle highlights) */
  --accent: #D4785C;
  --accent-light: rgba(240,142,128,0.1);

  /* Functional */
  --success: #2E7D32;
  --info: #1565C0;
  --warning: #EF6C00;

  /* Typography */
  --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 7rem);
  --container-max: 1280px;
  --container-narrow: 900px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.10);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 300px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--black);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.lead {
  font-size: clamp(1.125rem, 2vw, 1.3rem);
  line-height: 1.7;
  color: var(--text-secondary);
}

.accent-text {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--coral);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--coral);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-subtitle {
  max-width: 640px;
  margin-bottom: 3rem;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.container--narrow {
  max-width: var(--container-narrow);
}

section {
  padding: var(--section-padding) 0;
}

/* --- Grid Utilities --- */
.grid {
  display: grid;
  gap: 2rem;
}

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

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

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

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

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

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

.btn--large {
  padding: 1.125rem 2.5rem;
  font-size: 1.0625rem;
}

.btn--icon svg {
  width: 18px;
  height: 18px;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253,240,230,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background: rgba(253,240,230,0.98);
  box-shadow: var(--shadow-md);
}

.header-top {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.5rem 0;
  font-size: 0.8125rem;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.7);
}

.header-top a {
  color: rgba(255,255,255,0.85);
}
.header-top a:hover {
  color: var(--coral-light);
}

.header-top__contact {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.header-top__contact span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.header-main {
  padding: 0.75rem 0;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo__icon {
  width: 44px;
  height: 44px;
}

.logo__text {
  display: flex;
  flex-direction: column;
}

.logo__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.logo__tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--coral);
  letter-spacing: 0.05em;
  font-style: italic;
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav__link {
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.main-nav__link:hover,
.main-nav__link.active {
  color: var(--coral);
  background: rgba(240,142,128,0.06);
}

.main-nav__link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--coral);
  border-radius: 1px;
}

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

.nav-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-dropdown__trigger svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown__trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-fast);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__item {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-dropdown__item:hover {
  background: var(--cream);
  color: var(--coral);
  padding-left: 1.25rem;
}

.nav-dropdown__item small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* Header CTA */
.header-cta {
  margin-left: 1rem;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  margin: 5px 0;
  transition: all var(--transition-fast);
  border-radius: 2px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  overflow: hidden;
  padding-top: 6rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(253,240,230,0.85) 0%,
    rgba(253,240,230,0.6) 50%,
    rgba(253,240,230,0.4) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 700px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(240,142,128,0.12);
  border: 1px solid rgba(240,142,128,0.25);
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--coral-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero__title {
  color: var(--black);
  margin-bottom: 1.5rem;
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 500;
}

.hero__title span {
  color: var(--coral);
}

.hero__subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 580px;
}

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

.hero__stats {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Animated accent shapes */
.hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  z-index: 2;
}

.hero__shape--1 {
  width: 600px;
  height: 600px;
  background: var(--coral);
  top: -200px;
  right: -100px;
}

.hero__shape--2 {
  width: 400px;
  height: 400px;
  background: var(--coral-light);
  bottom: -150px;
  left: -100px;
}

/* ============================================================
   SERVICES OVERVIEW
   ============================================================ */
.services-overview {
  background: var(--cream);
}

.services-overview .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-overview .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all var(--transition-base);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(240,142,128,0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(240,142,128,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--coral);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.service-card__link:hover {
  gap: 0.6rem;
}

.service-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

/* ============================================================
   WHY CHOOSE US / TRUST
   ============================================================ */
.trust-section {
  background: var(--white);
}

.trust-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.trust-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.trust-image img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

.trust-image__accent {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 120px;
  height: 120px;
  border-radius: var(--radius-lg);
  background: var(--coral);
  opacity: 0.15;
  z-index: -1;
}

.trust-content .section-label { margin-bottom: 0.75rem; }

.trust-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.trust-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.trust-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(240,142,128,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
}

.trust-item__icon svg {
  width: 20px;
  height: 20px;
}

.trust-item__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.trust-item__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   CONDITIONS TREATED
   ============================================================ */
.conditions-section {
  background: var(--white);
  color: var(--text-primary);
}

.conditions-section .section-label {
  color: var(--coral);
}

.conditions-section .section-title {
  color: var(--black);
}

.conditions-section .section-subtitle {
  color: var(--text-secondary);
}

.conditions-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.conditions-section .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.condition-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--cream);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
  color: var(--text-primary);
  transition: all var(--transition-base);
}

.condition-tag:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
  transform: translateY(-2px);
}

.condition-tag svg {
  width: 18px;
  height: 18px;
  color: var(--coral);
}

.condition-tag:hover svg {
  color: var(--white);
}

.conditions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.conditions-section .btn--outline {
  color: var(--coral);
  border-color: var(--coral);
}
.conditions-section .btn--outline:hover {
  background: var(--coral);
  color: var(--white);
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-section {
  background: var(--cream);
}

.team-section .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.team-section .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

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

.team-card__image {
  aspect-ratio: 3/4;
  background: var(--light-gray);
  overflow: hidden;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-card__image img {
  transform: scale(1.05);
}

.team-card__info {
  padding: 1.5rem;
  text-align: center;
}

.team-card__name {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.team-card__role {
  font-size: 0.875rem;
  color: var(--coral);
  font-weight: 500;
}

/* ============================================================
   MULTIDISCIPLINARY APPROACH
   ============================================================ */
.approach-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.approach-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, var(--white) 0%, transparent 30%);
  pointer-events: none;
}

.approach-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid var(--light-gray);
}

.approach-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: rgba(240,142,128,0.25);
}

.approach-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(240,142,128,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--coral);
}

.approach-card__icon svg {
  width: 32px;
  height: 32px;
}

.approach-card__title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.approach-card__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--white);
}

.testimonials-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-section .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  border: 1px solid var(--light-gray);
}

.testimonial-card__quote {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-card__quote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--coral);
  line-height: 0;
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.testimonial-card__author {
  font-weight: 600;
  color: var(--black);
  font-size: 0.9375rem;
}

.testimonial-card__detail {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: var(--coral);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--charcoal);
  padding: var(--section-padding) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(240,142,128,0.15), transparent);
  border-radius: 50%;
}

.cta-banner__title {
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-banner__text {
  color: rgba(255,255,255,0.75);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.cta-banner__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
  margin-bottom: 1.25rem;
}

.footer-brand .logo__name {
  color: var(--white);
}

.footer-brand .logo__tagline {
  color: var(--coral-light);
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

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

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--coral-light);
  padding-left: 0.25rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--coral-light);
  margin-top: 2px;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

/* ============================================================
   INTERNAL PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--cream);
  padding: 10rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(240,142,128,0.08), transparent 60%);
}

.page-hero__title {
  color: var(--black);
  margin-bottom: 1rem;
  position: relative;
}

.page-hero__breadcrumb {
  font-size: 0.875rem;
  color: var(--text-secondary);
  position: relative;
}

.page-hero__breadcrumb a {
  color: var(--coral);
}
.page-hero__breadcrumb a:hover {
  text-decoration: underline;
}

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.service-detail {
  padding: var(--section-padding) 0;
}

.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
}

.service-detail__content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.service-detail__content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.service-detail__content p {
  margin-bottom: 1.25rem;
}

.service-detail__content ul {
  margin-bottom: 1.25rem;
  padding-left: 0;
}

.service-detail__content ul li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-detail__content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.6;
}

/* Sidebar */
.service-sidebar {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.sidebar-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.sidebar-card__title {
  font-size: 1.0625rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--light-gray);
}

.sidebar-nav a {
  display: block;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--light-gray);
  transition: all var(--transition-fast);
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--coral);
  padding-left: 0.5rem;
}

.sidebar-cta {
  background: var(--coral);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.sidebar-cta h4 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.sidebar-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}

.sidebar-cta .btn {
  width: 100%;
  justify-content: center;
  background: var(--white);
  color: var(--coral);
  border-color: var(--white);
}

.sidebar-cta .btn:hover {
  background: rgba(255,255,255,0.9);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(240,142,128,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--coral);
}

.contact-info__icon svg {
  width: 24px;
  height: 24px;
}

.contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.375rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--text-primary);
  transition: border-color var(--transition-fast);
  margin-bottom: 1.25rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(240,142,128,0.1);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.map-container {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ============================================================
   REFERRAL PAGE
   ============================================================ */
.referral-steps {
  counter-reset: step;
}

.referral-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

.referral-step__number {
  counter-increment: step;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.referral-step__content h3 {
  margin-bottom: 0.5rem;
}

.referral-step__content p {
  font-size: 0.9375rem;
}

/* ============================================================
   CONDITIONS PAGE
   ============================================================ */
.condition-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--light-gray);
  transition: all var(--transition-base);
}

.condition-detail-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(240,142,128,0.2);
}

.condition-detail-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(240,142,128,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--coral);
}

.condition-detail-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.condition-detail-card__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.condition-detail-card__treatments {
  font-size: 0.8125rem;
  color: var(--coral);
  font-weight: 600;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered children */
.stagger > * { transition-delay: calc(var(--i, 0) * 0.1s); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .trust-section .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-detail__grid {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-top { display: none; }

  .main-nav { display: none; }
  .header-cta { display: none; }
  .mobile-toggle { display: block; }

  /* Mobile menu */
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--light-gray);
  }

  .main-nav.open .main-nav__link {
    padding: 0.875rem 1rem;
    color: var(--text-primary);
  }

  .main-nav.open .nav-dropdown__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--cream);
    margin: 0.25rem 0 0.5rem 1rem;
  }

  .main-nav.open .nav-dropdown__item {
    color: var(--text-secondary);
  }

  .main-nav.open .nav-dropdown__item:hover {
    background: rgba(240,142,128,0.06);
    color: var(--coral);
  }

  .hero__stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero__stat {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

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

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-teal { color: var(--coral); }
.text-gold { color: var(--coral); }
.text-navy { color: var(--black); }
.bg-offwhite { background: var(--cream); }
.bg-navy { background: var(--charcoal); }
.bg-white { background: var(--white); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Process/Timeline */
.process-timeline {
  position: relative;
  padding-left: 3rem;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 1.125rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--light-gray);
}

.process-step {
  position: relative;
  margin-bottom: 2.5rem;
}

.process-step::before {
  content: '';
  position: absolute;
  left: -2.375rem;
  top: 0.25rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--coral);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--coral);
}

.process-step h4 {
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9375rem;
}

/* Info Box */
.info-box {
  background: rgba(240,142,128,0.06);
  border-left: 4px solid var(--coral);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.info-box p {
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.info-box svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--coral);
}

.info-box--teal {
  background: rgba(240,142,128,0.06);
  border-left-color: var(--coral);
}

.info-box--gold {
  background: rgba(26,26,26,0.04);
  border-left-color: var(--charcoal);
}

.info-box--gold svg {
  color: var(--charcoal);
}

/* FAQ Accordion */
.faq-item {
  border-bottom: 1px solid var(--light-gray);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--coral);
  transition: transform var(--transition-fast);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

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

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

.faq-answer p {
  padding-bottom: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.8;
}
