/*
Theme Name: Enriched Lives Health Service
Theme URI: https://enrichedliveshealthservice.com
Author: Custom Development
Author URI: https://enrichedliveshealthservice.com
Description: Custom WordPress theme for Enriched Lives Health Service, PLLC — a premium house call and telehealth medical practice based in Katy, TX.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Private
Text Domain: enriched-lives
Tags: healthcare, medical, custom-theme, mobile-first
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors */
  --green-900: #0a2e0a;
  --green-800: #133d13;
  --green-700: #1a5c1a;
  --green-600: #2e7d2e;
  --green-500: #3d9c3d;
  --green-400: #5cb85c;
  --green-300: #8fd08f;
  --green-200: #c2e8c2;
  --green-100: #e8f5e8;
  --green-50:  #f4fbf4;

  --teal-700: #0d5c52;
  --teal-600: #12796d;
  --teal-500: #1a9e8f;
  --teal-400: #2bbfae;
  --teal-300: #7dd8ce;
  --teal-100: #d4f2ee;
  --teal-50:  #edfaf8;

  --neutral-900: #0f1a0f;
  --neutral-800: #1c2b1c;
  --neutral-700: #2d3d2d;
  --neutral-600: #4a5e4a;
  --neutral-500: #6b7d6b;
  --neutral-400: #8fa08f;
  --neutral-300: #b8c8b8;
  --neutral-200: #dce8dc;
  --neutral-100: #f0f5f0;
  --neutral-50:  #f8fbf8;
  --white: #ffffff;

  /* Typography */
  --font-display: 'Merriweather', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --font-mono: 'Courier New', monospace;

  /* Spacing */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;

  /* Radii */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(10,46,10,0.08), 0 1px 2px rgba(10,46,10,0.04);
  --shadow-md:  0 4px 16px rgba(10,46,10,0.10), 0 2px 4px rgba(10,46,10,0.06);
  --shadow-lg:  0 12px 40px rgba(10,46,10,0.14), 0 4px 12px rgba(10,46,10,0.08);
  --shadow-xl:  0 24px 64px rgba(10,46,10,0.18);

  /* Transitions */
  --transition-fast:   150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base:   250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   400ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Container */
  --container-max: 1200px;
  --container-pad: clamp(1rem, 5vw, 2.5rem);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--neutral-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.2; font-weight: 700; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: var(--space-md);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--teal-500);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--neutral-900);
  line-height: 1.15;
  margin-bottom: var(--space-lg);
}

.section-title em {
  font-style: italic;
  color: var(--green-600);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--neutral-600);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: var(--space-xl);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

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

.btn-secondary {
  background: transparent;
  color: var(--green-700);
  border-color: var(--green-600);
}
.btn-secondary:hover {
  background: var(--green-100);
  transform: translateY(-2px);
}

.btn-teal {
  background: var(--teal-500);
  color: var(--white);
  border-color: var(--teal-500);
}
.btn-teal:hover {
  background: var(--teal-600);
  border-color: var(--teal-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: var(--white);
  color: var(--green-700);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--green-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  font-size: 1.0625rem;
  padding: 18px 36px;
}

.btn-sm {
  font-size: 0.875rem;
  padding: 10px 20px;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--green-700);
  color: var(--white);
  text-align: center;
  padding: 10px var(--container-pad);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.announcement-bar a {
  color: var(--teal-300);
  font-weight: 600;
  margin-left: 6px;
}

.announcement-bar a:hover { text-decoration: underline; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--green-200);
  transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: var(--space-xl);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

/* ============================================================
   LOGO — Nav (bulletproof: targets every WP class combination)
   PHP filter in functions.php strips inline width/height attrs
   so these CSS rules can actually take effect.
   ============================================================ */

/* The anchor WP wraps around the logo img */
.nav-brand .custom-logo-link {
  display: flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}

/* The img itself — constrain height, let width be proportional */
.nav-brand .custom-logo-link img,
.nav-brand .custom-logo,
.nav-brand img.custom-logo,
.nav-brand a img {
  height: 48px !important;
  width: auto !important;
  max-height: 48px !important;
  max-width: 240px !important;
  min-height: unset !important;
  min-width: unset !important;
  display: block !important;
  object-fit: contain !important;
  object-position: left center !important;
}

/* Footer logo — invert to white */
.footer-brand-logo .custom-logo-link {
  display: flex;
  align-items: center;
  line-height: 0;
}

.footer-brand-logo .custom-logo-link img,
.footer-brand-logo .custom-logo,
.footer-brand-logo img {
  height: 44px !important;
  width: auto !important;
  max-height: 44px !important;
  max-width: 200px !important;
  min-height: unset !important;
  min-width: unset !important;
  display: block !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1) !important;
  opacity: 0.9;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--green-800);
  line-height: 1.2;
}

.nav-brand-tagline {
  font-size: 0.6875rem;
  color: var(--neutral-500);
  font-style: italic;
  line-height: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex: 1;
  justify-content: center;
}

.nav-menu a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--neutral-700);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-menu a:hover, .nav-menu a.active {
  color: var(--green-700);
  background: var(--green-50);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--green-700);
}

.nav-phone svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}









/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  background: var(--white);
  overflow: hidden;
  padding: var(--space-3xl) 0 0;
}

.hero-bg-shape {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: var(--green-50);
  border-radius: 50%;
  z-index: 0;
}

.hero-bg-shape-2 {
  position: absolute;
  bottom: 80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: var(--teal-50);
  border-radius: 50%;
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: var(--space-4xl);
}

.hero-content { padding-right: var(--space-xl); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.02em;
}

.hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green-600);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--neutral-900);
  margin-bottom: var(--space-lg);
}

.hero h1 em {
  font-style: italic;
  color: var(--green-600);
  position: relative;
}

.hero-description {
  font-size: 1.0625rem;
  color: var(--neutral-600);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
  max-width: 460px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.hero-phone-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-phone-cta-icon {
  width: 44px;
  height: 44px;
  background: var(--green-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.hero-phone-cta-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.hero-phone-cta:hover .hero-phone-cta-icon {
  background: var(--green-700);
  transform: scale(1.05);
}

.hero-phone-cta-label {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.hero-phone-cta-hint {
  font-size: 0.75rem;
  color: var(--neutral-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-phone-cta-num {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--green-700);
  font-family: var(--font-display);
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--neutral-600);
  font-weight: 500;
}

.hero-trust-check {
  width: 18px;
  height: 18px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-trust-check svg {
  width: 10px;
  height: 10px;
  color: var(--green-700);
}

/* Hero Right - Visual */
.hero-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--green-100);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(160deg, var(--green-100) 0%, var(--teal-100) 100%);
  color: var(--green-600);
}

.hero-image-placeholder svg { width: 64px; height: 64px; opacity: 0.4; }
.hero-image-placeholder p { font-size: 0.875rem; color: var(--neutral-500); }

/* Floating cards on hero */
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--green-100);
}

.hero-float-card-1 {
  bottom: var(--space-2xl);
  left: -var(--space-xl);
  left: -40px;
  min-width: 200px;
}

.hero-float-card-2 {
  top: var(--space-xl);
  right: -20px;
  min-width: 160px;
}

.float-card-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neutral-500);
  margin-bottom: 4px;
}

.float-card-value {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--green-700);
  line-height: 1;
}

.float-card-sub {
  font-size: 0.75rem;
  color: var(--neutral-500);
  margin-top: 2px;
}

.float-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--teal-50);
  color: var(--teal-700);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-top: 6px;
}

/* Hero wave bottom */
.hero-wave {
  width: 100%;
  margin-top: -2px;
  display: block;
  line-height: 0;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--green-700);
  padding: var(--space-lg) 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-item-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item-icon svg { width: 18px; height: 18px; color: var(--white); }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  padding: var(--space-4xl) 0;
  background: var(--neutral-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--green-100);
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--teal-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover {
  border-color: var(--green-300);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  transition: all var(--transition-base);
}

.service-icon svg { width: 28px; height: 28px; color: var(--green-600); }
.service-card:hover .service-icon { background: var(--green-600); }
.service-card:hover .service-icon svg { color: var(--white); }

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: var(--space-sm);
  font-family: var(--font-display);
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--neutral-600);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-600);
  transition: gap var(--transition-fast);
}

.service-card-link svg { width: 16px; height: 16px; }
.service-card:hover .service-card-link { gap: 10px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
  padding: var(--space-4xl) 0;
  background: var(--white);
}

.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-xl);
}

.how-step {
  display: flex;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
  position: relative;
}

.how-step:last-child { padding-bottom: 0; }

.step-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--green-600);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-line {
  width: 2px;
  flex: 1;
  background: var(--green-100);
  margin: 8px 0;
  min-height: 32px;
}

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

.step-body { padding-top: 8px; }

.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 6px;
}

.step-body p {
  font-size: 0.9375rem;
  color: var(--neutral-600);
  line-height: 1.7;
}

/* How right - visual card */
.how-visual {
  background: var(--green-50);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: 1px solid var(--green-200);
  position: relative;
}

.how-visual-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: var(--space-lg);
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px var(--space-md);
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--green-100);
  font-size: 0.875rem;
}

.hours-day { font-weight: 600; color: var(--neutral-800); }
.hours-time { color: var(--neutral-600); }
.hours-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}
.hours-badge.telehealth {
  background: var(--teal-50);
  color: var(--teal-700);
}
.hours-badge.in-person {
  background: var(--green-100);
  color: var(--green-700);
}

/* ============================================================
   APPOINTMENT TYPES
   ============================================================ */
.appt-section {
  padding: var(--space-4xl) 0;
  background: var(--green-700);
  position: relative;
  overflow: hidden;
}

.appt-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.appt-section .section-title { color: var(--white); }
.appt-section .section-subtitle { color: rgba(255,255,255,0.75); }
.appt-section .section-label { color: var(--teal-300); }
.appt-section .section-label::before { background: var(--teal-300); }

.appt-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.appt-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.appt-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}

.appt-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.appt-card-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}

.appt-card-icon svg { width: 26px; height: 26px; color: var(--white); }

.appt-card-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

.appt-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 8px;
}

.appt-card p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.appt-durations {
  display: flex;
  gap: 8px;
  margin-bottom: var(--space-lg);
}

.duration-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.2);
}

.duration-pill svg { width: 13px; height: 13px; }

.appt-card .btn-white {
  width: 100%;
  justify-content: center;
  font-size: 0.875rem;
  padding: 12px;
}

/* ============================================================
   TELEHEALTH SECTION
   ============================================================ */
.telehealth-section {
  padding: var(--space-4xl) 0;
  background: var(--white);
}

.telehealth-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.telehealth-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.telehealth-feature {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--neutral-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral-200);
  transition: all var(--transition-base);
}

.telehealth-feature:hover {
  border-color: var(--teal-300);
  background: var(--teal-50);
}

.telehealth-feature-icon {
  width: 44px; height: 44px;
  background: var(--teal-100);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.telehealth-feature-icon svg { width: 22px; height: 22px; color: var(--teal-600); }

.telehealth-feature h4 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 4px;
}

.telehealth-feature p {
  font-size: 0.875rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

.telehealth-visual {
  background: var(--teal-50);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: 1px solid var(--teal-100);
  text-align: center;
}

.telehealth-big-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--teal-600);
  line-height: 1;
  margin-bottom: 8px;
}

.telehealth-num-label {
  font-size: 0.9375rem;
  color: var(--neutral-600);
  margin-bottom: var(--space-xl);
}

/* ============================================================
   INSURANCE SECTION
   ============================================================ */
.insurance-section {
  padding: var(--space-4xl) 0;
  background: var(--neutral-50);
}

.insurance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.insurance-card {
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid transparent;
  transition: all var(--transition-base);
}

.insurance-card.covered {
  background: var(--white);
  border-color: var(--green-200);
}

.insurance-card.selfpay {
  background: var(--green-700);
  border-color: var(--green-700);
}

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

.insurance-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-lg);
}

.insurance-card.covered .insurance-card-icon { background: var(--green-100); }
.insurance-card.covered .insurance-card-icon svg { color: var(--green-600); }
.insurance-card.selfpay .insurance-card-icon { background: rgba(255,255,255,0.15); }
.insurance-card.selfpay .insurance-card-icon svg { color: var(--white); }
.insurance-card-icon svg { width: 26px; height: 26px; }

.insurance-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.insurance-card.covered h3 { color: var(--neutral-900); }
.insurance-card.selfpay h3 { color: var(--white); }

.insurance-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.insurance-card.covered p { color: var(--neutral-600); }
.insurance-card.selfpay p { color: rgba(255,255,255,0.8); }

.insurance-note {
  margin-top: var(--space-2xl);
  background: var(--white);
  border: 1px solid var(--green-200);
  border-left: 4px solid var(--green-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-lg) var(--space-xl);
  font-size: 0.9375rem;
  color: var(--neutral-700);
  line-height: 1.7;
}

/* ============================================================
   BOOKING FORM PAGE
   ============================================================ */
.booking-page {
  padding: var(--space-4xl) 0;
  background: var(--neutral-50);
  min-height: 80vh;
}

.booking-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.booking-form-wrapper {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--green-100);
}

/* Multi-step progress */
.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--space-3xl);
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  flex: 1;
}

.progress-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--neutral-200);
  z-index: 0;
}

.progress-step.completed:not(:last-child)::after { background: var(--green-400); }

.progress-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  z-index: 1;
  transition: all var(--transition-base);
  border: 2px solid var(--neutral-200);
  background: var(--white);
  color: var(--neutral-400);
}

.progress-step.active .progress-dot {
  border-color: var(--green-600);
  background: var(--green-600);
  color: var(--white);
}

.progress-step.completed .progress-dot {
  border-color: var(--green-500);
  background: var(--green-500);
  color: var(--white);
}

.progress-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--neutral-500);
  text-align: center;
  white-space: nowrap;
}

.progress-step.active .progress-label { color: var(--green-700); }

/* Form field styles */
.form-section-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--neutral-100);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.form-row.full { grid-template-columns: 1fr; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-md);
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--neutral-700);
  letter-spacing: 0.02em;
}

.form-group label .required {
  color: #e53e3e;
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--neutral-900);
  background: var(--white);
  transition: all var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(46, 125, 46, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--neutral-400); }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7d6b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group textarea { resize: vertical; min-height: 100px; }

/* Appointment type selector */
.appt-type-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.appt-type-option {
  position: relative;
}

.appt-type-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}

.appt-type-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: var(--space-lg);
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
}

.appt-type-label:hover { border-color: var(--green-300); background: var(--green-50); }

.appt-type-option input:checked + .appt-type-label {
  border-color: var(--green-600);
  background: var(--green-50);
}

.appt-type-icon {
  width: 44px; height: 44px;
  background: var(--green-100);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}

.appt-type-icon svg { width: 22px; height: 22px; color: var(--green-600); }

.appt-type-name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--neutral-900);
}

.appt-type-desc {
  font-size: 0.8125rem;
  color: var(--neutral-500);
  line-height: 1.5;
}

/* Duration selector */
.duration-selector {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.duration-option {
  position: relative;
  flex: 1;
}

.duration-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}

.duration-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: var(--space-md);
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
}

.duration-label:hover { border-color: var(--green-300); }
.duration-option input:checked + .duration-label {
  border-color: var(--green-600);
  background: var(--green-50);
}

.duration-mins {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-700);
  line-height: 1;
}

.duration-unit { font-size: 0.75rem; color: var(--neutral-500); }

/* File upload */
.file-upload-area {
  border: 2px dashed var(--neutral-300);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
  background: var(--neutral-50);
}

.file-upload-area:hover { border-color: var(--green-400); background: var(--green-50); }
.file-upload-area.has-file { border-color: var(--green-500); background: var(--green-50); }

.file-upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.file-upload-icon {
  width: 44px; height: 44px;
  background: var(--green-100);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-sm);
}

.file-upload-icon svg { width: 22px; height: 22px; color: var(--green-600); }

.file-upload-text {
  font-size: 0.875rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

.file-upload-text strong { color: var(--green-600); }

.file-upload-hint {
  font-size: 0.75rem;
  color: var(--neutral-400);
  margin-top: 4px;
}

.file-preview {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 8px 12px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--green-200);
  font-size: 0.8125rem;
  color: var(--green-700);
  font-weight: 500;
}

/* Payment type */
.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.payment-option { position: relative; }
.payment-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }

.payment-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: var(--space-md) var(--space-lg);
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
}

.payment-label:hover { border-color: var(--green-300); }
.payment-option input:checked + .payment-label { border-color: var(--green-600); background: var(--green-50); }

.payment-icon {
  width: 36px; height: 36px;
  background: var(--green-100);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.payment-icon svg { width: 18px; height: 18px; color: var(--green-600); }

.payment-text-name { font-size: 0.9375rem; font-weight: 600; color: var(--neutral-900); }
.payment-text-sub { font-size: 0.75rem; color: var(--neutral-500); }

/* Form nav buttons */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--neutral-100);
}

.form-step { display: none; }
.form-step.active { display: block; }

/* Security badge on form */
.form-security {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--neutral-500);
}

.form-security svg { width: 14px; height: 14px; color: var(--green-500); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page { padding: var(--space-4xl) 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-3xl);
  margin-top: var(--space-2xl);
}

.contact-info-card {
  background: var(--green-700);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  color: var(--white);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--white);
  margin-bottom: var(--space-xl);
}

.contact-detail {
  display: flex;
  gap: 14px;
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-detail:last-of-type { border-bottom: none; }

.contact-detail-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg { width: 18px; height: 18px; color: var(--white); }
.contact-detail-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.contact-detail-value { font-size: 0.9375rem; color: var(--white); font-weight: 500; }

.whatsapp-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-top: var(--space-xl);
  transition: all var(--transition-base);
  justify-content: center;
}

.whatsapp-cta:hover { background: #1ebe5d; transform: translateY(-2px); }
.whatsapp-cta svg { width: 20px; height: 20px; }

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

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--space-xl);
}

.footer-brand-col {}
.footer-brand-logo { margin-bottom: var(--space-lg); }
.footer-brand-logo img { height: 48px; filter: brightness(0) invert(1); opacity: 0.9; }

.footer-brand-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
  margin-bottom: var(--space-lg);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social:hover { background: var(--green-600); }
.footer-social svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
.footer-social:hover svg { color: var(--white); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-lg);
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
}

.footer-col ul a:hover { color: var(--green-300); }

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  padding: 4px 0;
  color: rgba(255,255,255,0.55);
}

.footer-hours-row span:first-child { color: rgba(255,255,255,0.75); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal { display: flex; gap: var(--space-lg); }
.footer-legal a { color: rgba(255,255,255,0.35); transition: color var(--transition-fast); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   STICKY MOBILE BAR
   ============================================================ */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--white);
  border-top: 1px solid var(--neutral-200);
  padding: 10px var(--space-md);
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.sticky-call-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green-600);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 14px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
}

.sticky-call-btn:hover { background: var(--green-700); }
.sticky-call-btn svg { width: 18px; height: 18px; }

.sticky-whatsapp-btn {
  width: 52px;
  height: 52px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.sticky-whatsapp-btn:hover { background: #1ebe5d; }
.sticky-whatsapp-btn svg { width: 24px; height: 24px; }

/* ============================================================
   FLOATING WHATSAPP (desktop)
   ============================================================ */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 997;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition-base);
  text-decoration: none;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

.float-whatsapp svg { width: 28px; height: 28px; color: var(--white); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--green-50) 0%, var(--teal-50) 100%);
  padding: var(--space-3xl) 0 var(--space-2xl);
  border-bottom: 1px solid var(--green-100);
}

.page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: var(--space-md); }
.page-hero p { font-size: 1.0625rem; color: var(--neutral-600); max-width: 540px; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--neutral-500);
  margin-bottom: var(--space-md);
}

.breadcrumb a { color: var(--green-600); }
.breadcrumb span { color: var(--neutral-400); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .hero-content { padding-right: 0; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .how-inner { grid-template-columns: 1fr; }
  .telehealth-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .insurance-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-phone { display: none; }

  .hero { padding-top: var(--space-2xl); }
  .hero-float-card { display: none; }

  .trust-bar-inner { justify-content: center; gap: var(--space-lg); }
  .trust-item { flex-basis: calc(50% - var(--space-md)); justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .appt-cards { grid-template-columns: 1fr; }
  .appt-type-selector { grid-template-columns: 1fr; }
  .payment-options { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .booking-form-wrapper { padding: var(--space-xl); }

  .footer-top { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer-brand-desc { max-width: 100%; }

  .float-whatsapp { display: none; }
  .sticky-mobile-bar { display: flex; }

  body { padding-bottom: 80px; }

  .form-progress { gap: 0; }
  .progress-label { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .btn-lg { width: 100%; justify-content: center; }
  .duration-selector { flex-direction: column; }
  .trust-item { flex-basis: 100%; }
  .service-card {
    padding: var(--space-xl) var(--space-lg);
   }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up { animation: fadeUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ============================================================
   WORDPRESS CORE CLASSES
   ============================================================ */
.wp-block-image { margin: var(--space-xl) 0; }
.alignwide { margin-left: -40px; margin-right: -40px; }
.alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); width: 100vw; }
.has-text-align-center { text-align: center; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.875rem; color: var(--neutral-500); text-align: center; margin-top: 8px; }

/* ============================================================
   LOGO — hide text fallback when real logo is uploaded
   ============================================================ */
.custom-logo-link ~ .nav-brand-text,
.has-custom-logo .nav-brand-text,
.nav-brand .custom-logo-link + .nav-brand-text,
body.has-custom-logo .nav-brand-text {
  display: none !important;
}

/* ============================================================
   MOBILE NAV — hide Book Appointment pill from fixed header
   It lives in the mobile drawer instead
   ============================================================ */
@media (max-width: 768px) {
  .nav-book-btn {
    display: none !important;
  }
  .nav-phone {
    display: none !important;
  }
  .nav-brand {
    display: none !important;
  }
  a.custom-logo-link img.custom-logo {
      height: 40px;
  }
}

/* ============================================================
   ANIMATIONS & TRANSITIONS
   Modern scroll-triggered reveals + micro-interactions
   ============================================================ */

/* --- Page load fade-in --- */
#page-wrapper {
  animation: pageFadeIn 0.5s ease both;
}

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

/* --- Scroll reveal base state --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.reveal-left {
  transform: translateX(-32px);
}

.reveal.reveal-right {
  transform: translateX(32px);
}

.reveal.reveal-scale {
  transform: scale(0.94);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* Staggered children */
.reveal-group > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-group.in-view > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.reveal-group.in-view > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.08s; }
.reveal-group.in-view > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.16s; }
.reveal-group.in-view > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.24s; }
.reveal-group.in-view > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.32s; }
.reveal-group.in-view > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.40s; }

/* --- Hero section entrance --- */
.hero-content > * {
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-content .hero-eyebrow  { animation-delay: 0.1s; }
.hero-content h1              { animation-delay: 0.2s; }
.hero-content .hero-description { animation-delay: 0.3s; }
.hero-content .hero-cta-group { animation-delay: 0.4s; }
.hero-content .hero-trust-row { animation-delay: 0.5s; }

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

.hero-visual {
  opacity: 0;
  transform: translateX(24px);
  animation: heroVisualReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

@keyframes heroVisualReveal {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* --- Floating card bounce --- */
.hero-float-card {
  animation: floatBob 4s ease-in-out infinite;
}

.hero-float-card-2 {
  animation-delay: -2s;
  animation-duration: 5s;
}

@keyframes floatBob {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

/* --- Trust bar items --- */
.trust-bar .trust-item {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.trust-bar.in-view .trust-item:nth-child(1) { opacity:1; transform:none; transition-delay:0s; }
.trust-bar.in-view .trust-item:nth-child(2) { opacity:1; transform:none; transition-delay:0.07s; }
.trust-bar.in-view .trust-item:nth-child(3) { opacity:1; transform:none; transition-delay:0.14s; }
.trust-bar.in-view .trust-item:nth-child(4) { opacity:1; transform:none; transition-delay:0.21s; }
.trust-bar.in-view .trust-item:nth-child(5) { opacity:1; transform:none; transition-delay:0.28s; }

/* --- Service cards hover lift --- */
.service-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 48px rgba(10,46,10,0.13);
}

/* --- Button micro-interactions --- */
.btn {
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s ease;
  border-radius: inherit;
}

.btn:hover::after {
  background: rgba(255,255,255,0.08);
}

.btn:active {
  transform: scale(0.97) !important;
}

/* --- Appointment cards hover --- */
.appt-card {
  transition: background 0.3s ease,
              transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s ease;
}

.appt-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

/* --- Telehealth feature rows --- */
.telehealth-feature {
  transition: background 0.25s ease,
              border-color 0.25s ease,
              transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.telehealth-feature:hover {
  transform: translateX(6px);
}

/* --- Insurance cards --- */
.insurance-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s ease;
}

.insurance-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10,46,10,0.12);
}

/* --- Step numbers pulse on view --- */
.step-num {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-step:hover .step-num {
  transform: scale(1.15);
  box-shadow: 0 0 0 6px rgba(46,125,46,0.12);
}

/* --- Sticky header transition --- */
.site-header {
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

/* --- Mobile drawer slide transition --- */


/* Mobile nav links stagger */




/* --- WhatsApp float button pulse --- */
.float-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2.5s ease-out infinite;
  z-index: -1;
}

@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* --- Section label line draw --- */
.section-label::before {
  width: 0;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.in-view .section-label::before,
.section-label.in-view::before {
  width: 24px;
}

/* --- Number counter animation (stat blocks) --- */
.stat-num {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* --- Form field focus transitions --- */
.form-group input,
.form-group select,
.form-group textarea {
  transition: border-color 0.2s ease,
              box-shadow 0.2s ease,
              background 0.2s ease;
}

/* --- File upload area transition --- */
.file-upload-area {
  transition: border-color 0.25s ease,
              background 0.25s ease,
              transform 0.2s ease;
}

.file-upload-area:hover {
  transform: scale(1.01);
}

/* --- Progress dot transitions --- */
.progress-dot {
  transition: background 0.3s ease,
              border-color 0.3s ease,
              transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.progress-step.active .progress-dot {
  transform: scale(1.1);
  box-shadow: 0 0 0 4px rgba(46,125,46,0.15);
}

/* --- Nav link underline slide --- */
.nav-menu a {
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--green-500);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: left;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}

/* --- Announcement bar shimmer --- */
.announcement-bar {
  position: relative;
  overflow: hidden;
}

.announcement-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; bottom: 0;
  width: 60%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  animation: shimmer 3.5s ease infinite;
}

@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 200%; }
}

/* --- Sticky mobile bar entrance --- */
@media (max-width: 768px) {
  .sticky-mobile-bar {
    transform: translateY(100%);
    animation: slideUpBar 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
  }

  @keyframes slideUpBar {
    to { transform: translateY(0); }
  }
}

/* --- Respect reduced motion preference --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   PHASE 3 FIXES
   ============================================================ */

/* --- Checkbox & radio accent color — brand green --- */
input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--green-600);
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

/* --- Mobile menu logo — constrain and breathe --- */




/* --- Mobile menu CTA buttons — fix layout --- */


/* WhatsApp button in mobile menu — contained, not full bleed */

/* --- Hide Book Appointment from mobile nav header --- */
@media (max-width: 768px) {
  .nav-book-btn { display: none !important; }
  .nav-phone    { display: none !important; }
}

/* --- Booking form mobile responsiveness --- */
@media (max-width: 640px) {
  .booking-form-wrapper {
    padding: 1.25rem 1rem;
  }

  .form-progress {
    gap: 0;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .progress-dot {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }

  .appt-type-selector {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .appt-type-label {
    padding: 0.875rem 0.625rem;
    gap: 6px;
  }

  .appt-type-icon {
    width: 36px;
    height: 36px;
  }

  .appt-type-name { font-size: 0.8125rem; }
  .appt-type-desc { font-size: 0.6875rem; display: none; }

  .duration-selector {
    flex-direction: row;
    gap: 10px;
  }

  .payment-options {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .file-upload-area {
    padding: 1rem;
  }

  .form-nav {
    flex-direction: column-reverse;
    gap: 10px;
  }

  .form-nav .btn {
    width: 100%;
    justify-content: center;
  }

  /* Review table on mobile */
  #review-summary table { display: block; overflow-x: auto; }
  #review-summary td { font-size: 0.8125rem; padding: 8px 10px; }
}

/* --- Services page detail rows — stack on mobile --- */
@media (max-width: 900px) {
  .service-detail-row {
    grid-template-columns: 1fr !important;
    direction: ltr !important;
  }
}

/* --- Blog card grid --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.blog-card-image {
  aspect-ratio: 16/9;
  background: var(--green-100);
  overflow: hidden;
  flex-shrink: 0;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

.blog-card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-100), var(--teal-50));
}

.blog-card-image-placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--green-300);
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-cat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-600);
  margin-bottom: 0.75rem;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--neutral-900);
  line-height: 1.35;
  margin-bottom: 0.625rem;
  text-decoration: none;
  display: block;
}

.blog-card-title:hover { color: var(--green-700); }

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--neutral-600);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--neutral-400);
  border-top: 1px solid var(--neutral-100);
  padding-top: 0.875rem;
  margin-top: auto;
}

.blog-card-read-more {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green-600);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.blog-card-read-more:hover { gap: 8px; }

/* Single post */
.single-post-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--neutral-700);
}

.single-post-content h2,
.single-post-content h3 {
  font-family: var(--font-display);
  color: var(--neutral-900);
  margin: 2rem 0 0.75rem;
}

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

.single-post-content img {
  width: 100%;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

.single-post-content ul,
.single-post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  list-style: disc;
}

.single-post-content ol { list-style: decimal; }
.single-post-content li { margin-bottom: 0.5rem; line-height: 1.75; }

.post-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.post-category-badge:hover { background: var(--green-200); }

/* Category filter bar */
.cat-filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cat-filter-btn {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--neutral-200);
  background: var(--white);
  color: var(--neutral-700);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cat-filter-btn:hover,
.cat-filter-btn.active {
  background: var(--green-600);
  border-color: var(--green-600);
  color: var(--white);
}

/* Mobile blog */
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HAMBURGER BUTTON
   ============================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--neutral-800);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1),
              opacity 0.2s ease,
              width 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu, .nav-phone, .nav-book-btn { display: none !important; }
}

/* ============================================================
   MOBILE NAV DRAWER — single authoritative block
   Full-height slide-in from right. Clean, structured, beautiful.
   ============================================================ */

/* Backdrop overlay */
.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  z-index: 998;
  transition: background 0.35s ease;
}

.mobile-nav-backdrop.open {
  display: block;
  background: rgba(0,0,0,0.35);
}

/* Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: #fff;
  z-index: 1010;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.22,1,0.36,1);
  visibility: hidden;
  overflow: hidden;
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}

.mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
}

/* Top bar: logo + close */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--neutral-100);
  flex-shrink: 0;
}

.mobile-nav-header img,
.mobile-nav-header .custom-logo-link img,
.mobile-nav-header .custom-logo {
  height: 40px !important;
  width: auto !important;
  max-width: 160px !important;
  object-fit: contain !important;
  display: block !important;
}

.mobile-nav-header .custom-logo-link {
  display: flex;
  align-items: center;
  line-height: 0;
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--neutral-100);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.mobile-nav-close:hover { background: var(--neutral-200); }

.mobile-nav-close svg {
  width: 16px;
  height: 16px;
  color: var(--neutral-700);
}

/* Scrollable links area */
.mobile-nav-links {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 0;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--neutral-800);
  text-decoration: none;
  border-bottom: 1px solid var(--neutral-50);
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.2s ease;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.3s ease,
              transform 0.3s ease,
              background 0.15s ease,
              color 0.15s ease;
}

.mobile-nav-links a:hover {
  background: var(--green-50);
  color: var(--green-700);
  padding-left: 1.5rem;
}

.mobile-nav-links a .nav-arrow {
  margin-left: auto;
  width: 16px;
  height: 16px;
  color: var(--neutral-300);
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-nav-links a:hover .nav-arrow {
  transform: translateX(3px);
  color: var(--green-500);
}

/* Stagger animation when open */
.mobile-nav.open .mobile-nav-links a:nth-child(1) { opacity:1; transform:none; transition-delay:0.06s; }
.mobile-nav.open .mobile-nav-links a:nth-child(2) { opacity:1; transform:none; transition-delay:0.10s; }
.mobile-nav.open .mobile-nav-links a:nth-child(3) { opacity:1; transform:none; transition-delay:0.14s; }
.mobile-nav.open .mobile-nav-links a:nth-child(4) { opacity:1; transform:none; transition-delay:0.18s; }
.mobile-nav.open .mobile-nav-links a:nth-child(5) { opacity:1; transform:none; transition-delay:0.22s; }
.mobile-nav.open .mobile-nav-links a:nth-child(6) { opacity:1; transform:none; transition-delay:0.26s; }
.mobile-nav.open .mobile-nav-links a:nth-child(7) { opacity:1; transform:none; transition-delay:0.30s; }
.mobile-nav.open .mobile-nav-links a:nth-child(8) { opacity:1; transform:none; transition-delay:0.34s; }

/* Bottom CTA area */
.mobile-nav-footer {
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid var(--neutral-100);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  background: var(--neutral-50);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease 0.36s, transform 0.3s ease 0.36s;
}

.mobile-nav.open .mobile-nav-footer {
  opacity: 1;
  transform: none;
}

.mobile-nav-footer .btn {
  width: 100%;
  justify-content: center;
  padding: 13px 20px;
  font-size: 0.9375rem;
}

.mobile-nav-footer .btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  border-radius: var(--radius-full);
  padding: 13px 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.mobile-nav-footer .btn-whatsapp:hover { background: #1ebe5d; }
.mobile-nav-footer .btn-whatsapp svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   ABOUT PAGE — Mobile responsive fixes
   ============================================================ */
@media (max-width: 900px) {
  /* Who we are grid */
  .about-who-grid {
    grid-template-columns: 1fr !important;
  }

  /* Who we serve grid */
  .about-serve-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Location grid */
  .about-location-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 520px) {
  .about-serve-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Generic two-col grid stacking on mobile */
@media (max-width: 900px) {
  .telehealth-inner,
  .how-inner,
  .contact-grid,
  .insurance-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-inner {
    grid-template-columns: 1fr !important;
  }

  .hero-float-card {
    display: none !important;
  }
}

/* ============================================================
   BOOKING FORM — Submit button fix
   Shorter label + flex-wrap so it never overflows
   ============================================================ */
#submit-btn {
  font-size: 0.9375rem !important;
  padding: 13px 20px !important;
  white-space: normal !important;
  text-align: center !important;
  line-height: 1.3 !important;
  max-width: 100% !important;
}

.form-nav {
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 520px) {
  .form-nav {
    flex-direction: column-reverse;
  }
  .form-nav .btn,
  .form-nav button {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* ============================================================
   BLOG PREVIEW SECTION (homepage)
   ============================================================ */
.blog-preview-section {
  padding: var(--space-4xl) 0;
  background: var(--white);
}

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

@media (max-width: 900px) {
  .blog-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .blog-preview-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RECAPTCHA BADGE — keep it tidy
   ============================================================ */
.grecaptcha-badge {
  visibility: hidden !important;
}

.recaptcha-notice {
  font-size: 0.6875rem;
  color: var(--neutral-400);
  line-height: 1.6;
  margin-top: 8px;
  text-align: center;
}

.recaptcha-notice a {
  color: var(--neutral-400);
  text-decoration: underline;
}

/* About page two-col grids */
@media (max-width: 860px) {
  .about-two-col {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .about-serve-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  .about-serve-grid {
    grid-template-columns: 1fr !important;
  }
}
