/* ============================================
   UNIFIED DESIGN SYSTEM
   Orlando Podiatrist Site
   Version: 1.0 | Date: 2026-02-03
   ============================================ */

/* ============================================
   1. CSS RESET
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

/* ============================================
   2. DESIGN TOKENS (Single Source of Truth)
   WARM & COMMUNITY-FOCUSED DESIGN - OrlandoHealth Inspired
   ============================================ */
:root {
  /* SOFT HEALTHCARE PALETTE - Professional & Calming */
  --color-primary: #5B9BD5;        /* Soft blue - main CTAs */
  --color-primary-light: #7FB3E0;  /* Lighter blue - hovers */
  --color-primary-dark: #4A7FB8;   /* Deeper blue - active states */
  
  /* SECONDARY - Soft Teal/Mint for healing, professional feel */
  --color-secondary: #6EB5A8;      /* Soft teal - professional accent */
  --color-secondary-light: #8CC9BE;
  --color-secondary-dark: #5A9B8F;
  
  /* ACCENT - Very light blues for backgrounds */
  --color-accent: #A8D5E2;         /* Soft sky blue - highlights */
  --color-accent-light: #D4EDFC;   /* Very light blue - backgrounds */
  --color-accent-subtle: #F0F8FC;  /* Almost white blue - subtle backgrounds */
  
  /* SEMANTIC COLORS - Softer versions */
  --color-success: #5FB97D;        /* Soft green */
  --color-warning: #F4A261;        /* Soft orange */
  --color-danger: #E76F51;         /* Soft red */
  
  /* TEXT - Professional grays (softer) */
  --color-text-primary: #2C3E50;   /* Soft charcoal */
  --color-text-secondary: #5A6C7D;
  --color-text-tertiary: #8894A3;
  
  /* BACKGROUNDS - Clean whites with subtle blue tints */
  --color-bg-primary: #FFFFFF;
  --color-bg-secondary: #F8FBFD;   /* Very subtle blue tint */
  --color-bg-tertiary: #ECF5F9;    /* Light blue gray */
  
  /* BORDERS - Soft and subtle */
  --color-border: #E1EAF1;         /* Soft blue-gray border */
  --color-border-focus: #5B9BD5;   /* Soft blue for focus */
  
  /* TYPOGRAPHY - Friendlier */
  --font-family-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  --font-family-display: 'Inter', var(--font-family-base);
  
  --text-hero: clamp(2rem, 5vw, 3.5rem);
  --text-h1: clamp(1.75rem, 3vw, 2.5rem);
  --text-h2: clamp(1.5rem, 2.5vw, 2rem);
  --text-h3: clamp(1.25rem, 2vw, 1.5rem);
  --text-body-lg: 1.125rem;
  --text-body: 1rem;
  --text-sm: 0.875rem;
  
  --line-height-tight: 1.3;        /* Slightly more generous */
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.75;     /* More relaxed for warmth */
  
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;     /* Use 600 instead of 700 for softer feel */
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  
  /* SPACING (8px grid) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  
  /* SHADOWS - Softer */
  --shadow-sm: 0 1px 3px rgba(255, 115, 80, 0.08);    /* Warm tint */
  --shadow-md: 0 4px 12px rgba(255, 115, 80, 0.1);
  --shadow-lg: 0 8px 24px rgba(255, 115, 80, 0.12);
  --shadow-xl: 0 20px 40px rgba(255, 115, 80, 0.15);
  
  /* BORDER RADIUS - More generous for friendlier feel */
  --radius-sm: 0.5rem;       /* 8px - was 6px */
  --radius-md: 0.75rem;      /* 12px - was 8px */
  --radius-lg: 1rem;         /* 16px - was 12px */
  --radius-xl: 1.5rem;       /* 24px - was 16px */
  --radius-2xl: 2rem;        /* 32px - new */
  --radius-full: 9999px;
  
  /* TRANSITIONS */
  --transition-fast: 150ms ease-out;
  --transition-base: 250ms ease-out;
  --transition-slow: 350ms ease-out;
}

/* ============================================
   3. TYPOGRAPHY - Warm & Approachable
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-semibold);  /* 600 instead of 700 for friendlier feel */
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

h1 { 
  font-size: var(--text-h1);
  color: var(--color-secondary-dark);  /* Darker teal for professional anchor */
}

h2 { 
  font-size: var(--text-h2);
  color: var(--color-secondary);  /* Teal for secondary headings */
}

h3 { 
  font-size: var(--text-h3);
}

p {
  margin-bottom: 1rem;
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);  /* Softer text color */
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-primary-dark);
}

a:focus-visible {
  outline: 3px solid var(--color-border-focus);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ============================================
   4. LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-16) 0;
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-24) 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-lead {
  font-size: var(--text-body-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  max-width: 65ch;
  margin: 0 auto var(--space-12);
}

/* ============================================
   5. SKIP LINK (Accessibility)
   ============================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: var(--space-4) var(--space-6);
  z-index: 1000;
  font-weight: var(--font-weight-semibold);
}

.skip-link:focus {
  top: 0;
}

/* ============================================
   6. NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-base);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  font-family: var(--font-family-display);
  font-weight: var(--font-weight-bold);
  font-size: 1.25rem;
  color: var(--color-primary);
  text-decoration: none;
}

.logo-text {
  display: block;
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-8);
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  color: var(--color-text-primary);
  font-weight: var(--font-weight-medium);
  padding: var(--space-3) var(--space-4);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-blog {
  color: var(--color-accent);
  font-weight: var(--font-weight-semibold);
  position: relative;
}

.nav-blog::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.nav-blog:hover::after {
  transform: scaleX(1);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-3);
  min-width: 44px;
  min-height: 44px;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: white;
  box-shadow: 4px 0 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: left var(--transition-base);
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-20) var(--space-6) var(--space-6);
}

.mobile-menu-content a {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  font-weight: var(--font-weight-medium);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  min-height: 56px;
  display: flex;
  align-items: center;
}

.mobile-menu-phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
}

/* ============================================
   7. BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  font-family: var(--font-family-base);
  font-size: var(--text-body);
  font-weight: var(--font-weight-semibold);
  line-height: 1;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
  min-width: 44px;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

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

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: white;
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

.btn-lg {
  padding: var(--space-6) var(--space-8);
  font-size: var(--text-body-lg);
}

.btn:focus-visible {
  outline: 3px solid var(--color-border-focus);
  outline-offset: 2px;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ============================================
   8. HERO SECTION - Warm & Welcoming
   ============================================ */
.hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-light) 100%);
  color: white;
  padding: var(--space-20) 0 var(--space-16);
  margin-top: 80px;
  overflow: hidden;
}

/* Background image container */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* WARM OVERLAY - Coral/orange tones for community feel */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg, 
    rgba(230, 85, 51, 0.6) 0%,      /* Warm coral - darker */
    rgba(255, 115, 80, 0.5) 50%,    /* Warm coral - mid */
    rgba(255, 148, 114, 0.4) 100%   /* Warm coral - lighter */
  );
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  text-align: center;
}

.hero-content {
  max-width: 640px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}

.hero-headline {
  font-family: var(--font-family-display);
  font-size: var(--text-hero);
  font-weight: var(--font-weight-extrabold);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
  color: white;
}

.hero-subheadline {
  font-size: var(--text-body-lg);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-8);
  color: white;
  opacity: 1;
}

.hero-cta {
  margin-bottom: var(--space-6);
}

.hero-availability {
  font-size: var(--text-sm);
  margin-top: var(--space-3);
  text-align: center;
  color: white;
}

.hero-trust {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  font-size: var(--text-sm);
  opacity: 0.9;
}

/* ============================================
   9. SERVICES SCROLLING MARQUEE
   ============================================ */
.services-marquee {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: white;
  padding: var(--space-6) 0;
  overflow: hidden;
  position: relative;
  border-bottom: 2px solid var(--color-accent);
}

/* Gradient masks to fade pills at edges */
.services-marquee::before,
.services-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;  /* Reduced from 120px */
  z-index: 2;
  pointer-events: none;
}

.services-marquee::before {
  left: 0;
  background: linear-gradient(to right, #1e3a8a 0%, rgba(30, 58, 138, 0.6) 60%, transparent 100%);
}

.services-marquee::after {
  right: 0;
  background: linear-gradient(to left, #1e40af 0%, rgba(30, 64, 175, 0.6) 60%, transparent 100%);
}

.marquee-container {
  display: flex;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}

/* ============================================
   SERVICES MARQUEE - Interactive Pills
   Design System Compliant | WCAG AA
   ============================================ */

.marquee-item {
  /* Layout */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;  /* Ensure pill sizes to content */
  
  /* Spacing - Using 8px grid system */
  padding: 0.875rem 1.75rem;  /* Increased from 0.75rem 1.25rem */
  margin: 0 0.875rem;  /* Increased from 0.75rem */
  min-height: 44px;  /* WCAG 2.1 touch target minimum */
  
  /* Visual Design */
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full, 9999px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  
  /* Typography */
  color: white;
  font-weight: var(--font-weight-semibold, 600);
  font-size: var(--text-body, 1rem);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
  
  /* Interaction */
  cursor: pointer;
  transition: all var(--transition-base, 0.2s) cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  /* overflow: hidden; */ /* REMOVED - was clipping text */
  
  /* Accessibility */
  outline-offset: 4px;
}

/* Shimmer effect overlay */
.marquee-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg, 
    rgba(255, 255, 255, 0.15) 0%, 
    rgba(255, 255, 255, 0.05) 100%
  );
  opacity: 0;
  transition: opacity var(--transition-base, 0.2s) ease;
}

/* Hover State - Clear depth and lift */
.marquee-item:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px) scale(1.03);
}

.marquee-item:hover::before {
  opacity: 1;
}

/* Active State - Tactile "press" feedback */
.marquee-item:active {
  transform: translateY(-1px) scale(1.0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  transition-duration: 0.1s;  /* Faster for immediate feedback */
}

/* Focus State - Keyboard navigation (WCAG 2.1) */
.marquee-item:focus {
  outline: 3px solid var(--color-accent-light, #14b8a6);
  outline-offset: 4px;
  background: rgba(255, 255, 255, 0.25);
}

/* Focus-visible for modern browsers */
.marquee-item:focus-visible {
  outline: 3px solid rgba(20, 184, 166, 0.9);
  outline-offset: 4px;
}

/* Remove focus outline for mouse users (but keep for keyboard) */
.marquee-item:focus:not(:focus-visible) {
  outline: none;
}

/* Reduced motion preference (WCAG) */
@media (prefers-reduced-motion: reduce) {
  .marquee-item {
    transition: none;
  }
  
  .marquee-item:hover {
    transform: none;  /* No movement for users who prefer reduced motion */
  }
  
  .marquee-item:active {
    transform: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .marquee-item {
    border-width: 3px;
    border-color: rgba(255, 255, 255, 0.6);
  }
  
  .marquee-item:hover {
    border-color: white;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.services-marquee:hover .marquee-container {
  animation-play-state: paused;
}

/* ============================================
   10. SERVICE CARDS
   ============================================ */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.service-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  text-align: center;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-primary-light);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
}

.service-icon .material-symbols-outlined {
  font-size: 2rem;
  color: white;
}

.service-title {
  font-size: var(--text-h3);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
}

.service-description {
  font-size: var(--text-body);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
}

.service-link {
  color: var(--color-accent);
  font-weight: var(--font-weight-semibold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--transition-base);
}

.service-link:hover {
  gap: var(--space-3);
}

/* ============================================
   11. DOCTOR SLIDER (One at a time)
   ============================================ */
.doctor-slider {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-xl);
  padding: var(--space-12);
}

/* Tablet and up - add more breathing room */
@media (min-width: 768px) {
  .doctor-slider {
    padding: var(--space-16);
  }
}

/* Desktop - generous spacing matching service pages */
@media (min-width: 1024px) {
  .doctor-slider {
    padding: var(--space-20);
  }
}

.doctor-slider-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.doctor-slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 768px) {
  .doctor-slide {
    flex-direction: row;
    align-items: flex-start;
  }
}

.doctor-image-wrapper {
  flex-shrink: 0;
}

.doctor-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .doctor-image {
    width: 300px;
    height: 300px;
  }
}

.doctor-content {
  flex: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .doctor-content {
    text-align: left;
  }
}

.doctor-name {
  font-family: var(--font-family-display);
  font-size: var(--text-h2);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary-dark);
  margin-bottom: var(--space-2);
}

.doctor-credentials {
  font-size: var(--text-body);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
}

.doctor-bio {
  font-size: var(--text-body);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .doctor-bio {
    margin-left: 0;
    margin-right: 0;
  }
}

.doctor-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  justify-content: center;
}

@media (min-width: 768px) {
  .doctor-specialties {
    justify-content: flex-start;
  }
}

.badge {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: var(--color-bg-tertiary);
  color: var(--color-primary-dark);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-full);
}

/* Slider Navigation */
.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.slider-btn {
  background: var(--color-primary);
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
  background: var(--color-primary-dark);
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

.slider-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

.slider-dots {
  display: flex;
  gap: var(--space-3);
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-base);
}

.slider-dot.active {
  background: var(--color-primary);
  width: 32px;
  border-radius: var(--radius-full);
}

/* ============================================
   12. TESTIMONIALS
   ============================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-top: var(--space-12);
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: white;
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1.25rem;
  margin-bottom: var(--space-4);
}

.testimonial-quote {
  font-size: var(--text-body);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
  font-style: italic;
}

.testimonial-attribution {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-1);
}

.testimonial-location {
  font-size: var(--text-sm);
  color: var(--color-text-tertiary);
}

/* ============================================
   13. LOCATION/CONTACT
   ============================================ */
.location-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.location-map {
  width: 100%;
  height: 300px;
}

.location-content {
  padding: var(--space-8);
}

.location-name {
  font-family: var(--font-family-display);
  font-size: var(--text-h3);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary-dark);
  margin-bottom: var(--space-2);
}

.location-subtitle {
  font-size: var(--text-body);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.location-item {
  display: flex;
  gap: var(--space-4);
}

.location-item .material-symbols-outlined {
  font-size: 1.5rem;
  color: var(--color-accent);
  flex-shrink: 0;
}

.location-item strong {
  display: block;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-1);
}

.location-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* ============================================
   14. FOOTER
   ============================================ */
.footer {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, #0f172a 100%);
  color: white;
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-column h4 {
  color: white;
  font-weight: var(--font-weight-semibold);
  font-size: 1.125rem;
  margin-bottom: var(--space-4);
}

.footer-column p {
  font-size: 0.95rem;
  line-height: var(--line-height-relaxed);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-3);
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-base);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  font-size: var(--text-sm);
}

/* ============================================
   15. UTILITIES
   ============================================ */
.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================
   16. ACCESSIBILITY & REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus visible for keyboard navigation */
:focus-visible {
  outline: 3px solid var(--color-border-focus);
  outline-offset: 2px;
}

/* ============================================
   17. PRINT STYLES
   ============================================ */
@media print {
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  
  .navbar,
  .mobile-menu,
  .mobile-menu-toggle,
  .footer {
    display: none !important;
  }
  
  body {
    margin: 0;
    padding: 0;
  }
}

/* ============================================
   FLOATING CALENDAR CTA
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(91, 155, 213, 0.3);
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-float 3s ease-in-out infinite;
}

.floating-cta:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 12px 32px rgba(91, 155, 213, 0.4);
}

.floating-cta .material-symbols-outlined {
    font-size: 32px;
    color: white;
}

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

/* Mobile adjustments */
@media (max-width: 768px) {
    .floating-cta {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .floating-cta .material-symbols-outlined {
        font-size: 28px;
    }
}
/* ============================================
   SPRINT 1: HERO + SERVICES REDESIGN
   Dribbble-Quality Healthcare Design
   ============================================ */

/* HERO SECTION - More whitespace, bigger impact */
.hero {
    min-height: 85vh;
    padding: 120px 0 80px;
}

.hero-content {
    max-width: 700px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(91, 155, 213, 0.15);
}

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    color: var(--color-text-primary);
}

.hero-subheadline {
    font-size: 1.375rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--color-text-secondary);
}

.hero-cta {
    margin-bottom: 32px;
}

.btn-lg {
    padding: 20px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    gap: 12px;
}

.hero-availability {
    margin-top: 16px;
    font-size: 0.95rem;
    color: var(--color-text-tertiary);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.hero-trust span {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* SERVICES SECTION - Modern card layout */
.services-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--color-bg-secondary) 100%);
}

.section-header {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--color-text-primary);
}

.section-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

/* SERVICE CARDS - Dribbble quality */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 48px 36px;
    box-shadow: 0 4px 20px rgba(91, 155, 213, 0.08);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(91, 155, 213, 0.16);
    border-color: var(--color-primary-light);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent-subtle));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent-light));
}

.service-icon .material-symbols-outlined {
    font-size: 40px;
    color: var(--color-primary);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--color-text-primary);
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
    color: var(--color-primary-dark);
}

.service-link .material-symbols-outlined {
    font-size: 20px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        padding: 40px 28px;
        border-radius: 16px;
    }
    
    .hero-headline {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .hero-subheadline {
        font-size: 1.125rem;
        margin-bottom: 28px;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }
    
    .services-section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-header h2 {
        font-size: 1.875rem;
    }
    
    .section-lead {
        font-size: 1.0625rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .service-card {
        padding: 36px 28px;
        border-radius: 16px;
    }
    
    .service-icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
        margin-bottom: 20px;
    }
    
    .service-icon .material-symbols-outlined {
        font-size: 32px;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
}
