/* ============================================
   REVIVAL MASSAGE SERVICES - STYLESHEET
   ============================================ */

/* ============================================
   1. CSS VARIABLES & DESIGN TOKENS
   ============================================ */
:root {
  /* Color Palette - HSL Format */
  --background: hsl(45, 100%, 98%);
  --foreground: hsl(150, 25%, 15%);
  
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(150, 25%, 15%);
  
  /* Primary Colors */
  --primary: hsl(45, 20%, 45%);
  --primary-foreground: hsl(45, 100%, 98%);
  --primary-light: hsl(45, 25%, 75%);
  --primary-dark: hsl(45, 25%, 35%);
  
  /* Secondary Colors */
  --secondary: hsl(45, 30%, 85%);
  --secondary-foreground: hsl(150, 25%, 15%);
  --secondary-warm: hsl(45, 35%, 80%);
  
  /* Accent Colors */
  --accent-coral: hsl(10, 85%, 55%);
  --accent-coral-light: hsl(15, 70%, 65%);
  --accent: hsl(45, 25%, 85%);
  --accent-foreground: hsl(150, 25%, 15%);
  
  /* Neutral Colors */
  --muted: hsl(45, 20%, 92%);
  --muted-foreground: hsl(45, 15%, 45%);
  --border: hsl(45, 20%, 85%);
  --input: hsl(45, 20%, 90%);
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows */
  --shadow-soft: 0 10px 40px -10px hsla(150, 25%, 35%, 0.1);
  --shadow-card: 0 4px 20px -4px hsla(150, 25%, 35%, 0.08);
  --shadow-button: 0 2px 10px -2px hsla(150, 25%, 35%, 0.2);
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  overflow-x: hidden;
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin: 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.section-description {
  font-size: 1.25rem;
  text-align: center;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 4rem;
}

/* ============================================
   4. BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-wellness {
  background: linear-gradient(45deg, var(--primary), var(--accent-coral));
  color: var(--primary-foreground);
  box-shadow: var(--shadow-button);
}

.btn-wellness:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
  background: linear-gradient(45deg, var(--primary-dark), var(--accent-coral-light));
}

.btn-outline {
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

/* ============================================
   5. HEADER & NAVIGATION
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

/* Contact Bar */
.contact-bar {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

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

.contact-info {
  display: flex;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-item i {
  width: 1rem;
  height: 1rem;
}

/* Main Navigation */
.main-nav {
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-image {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--foreground);
  text-decoration: none;
  transition: var(--transition-smooth);
  font-weight: 500;
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: relative;
}

.menu-btn {
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  padding: 0.5rem;
  transition: var(--transition-smooth);
}

.menu-btn:hover {
  color: var(--primary);
}

.menu-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-nav-links {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-card);
  margin-top: 0.5rem;
  min-width: 200px;
  z-index: 100;
}

.mobile-nav-links.show {
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  padding: 1rem 1.5rem;
  color: var(--foreground);
  text-decoration: none;
  transition: var(--transition-smooth);
  border-bottom: 1px solid var(--border);
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

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

/* ============================================
   6. HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 6rem 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--foreground);
  margin: 0;
}

.hero-accent {
  display: block;
  background: linear-gradient(45deg, var(--primary), var(--accent-coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  max-width: 600px;
}

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

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--primary), var(--accent-coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-align: center;
}

/* ============================================
   7. SERVICES SECTION
   ============================================ */
.services {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--background), var(--muted));
}

.pricing-section {
  margin-top: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card,
.pricing-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition-smooth);
  position: relative;
}

.service-card:hover,
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
  border-color: var(--primary);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-coral-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon,
.pricing-card:hover .service-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-soft);
}

.service-icon i {
  width: 2rem;
  height: 2rem;
  color: var(--primary-foreground);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  letter-spacing: -0.02em;
}

.service-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Pricing Specific Styles */
.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 12px 40px -10px hsla(45, 20%, 45%, 0.3);
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 241, 228, 0.95));
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-5px);
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--muted);
  border-radius: 0.5rem;
  transition: var(--transition-smooth);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.price-item:hover {
  background: var(--primary-light);
  transform: translateX(5px);
}

.price-item.featured-price {
  background: linear-gradient(135deg, var(--primary), var(--accent-coral));
  color: var(--primary-foreground);
  padding: 1.5rem;
  box-shadow: var(--shadow-button);
}

.duration {
  font-weight: 600;
  color: var(--foreground);
}

.price-item.featured-price .duration,
.price-item.featured-price .price {
  color: var(--primary-foreground);
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.discount {
  background: var(--accent-coral);
  color: var(--primary-foreground);
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.savings {
  text-align: center;
  color: var(--accent-coral);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.price-note,
.business-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
  line-height: 1.5;
}

.popular-badge {
  position: absolute;
  top: -0.75rem;
  right: 1rem;
  background: linear-gradient(45deg, var(--primary), var(--accent-coral));
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-button);
}

/* Services CTA */
.services-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-coral-light));
  border-radius: 1rem;
  text-align: center;
  border: 2px solid var(--primary);
}

.services-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.services-cta p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.6;
}

.services-contact {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.services-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--foreground);
}

.services-contact-item i {
  width: 1rem;
  height: 1rem;
  color: var(--accent-coral);
  flex-shrink: 0;
}

/* ============================================
   8. ABOUT SECTION
   ============================================ */
.about {
  padding: 5rem 0;
  background: var(--background);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--muted-foreground);
}

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

.feature {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: 1rem;
  background: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  transition: var(--transition-smooth);
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: var(--primary);
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-coral-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-foreground);
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.feature-title {
  font-weight: 600;
  color: var(--foreground);
  font-size: 1rem;
}

.feature-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.therapist-card {
  background: linear-gradient(135deg, var(--primary-light), var(--accent-coral-light));
  padding: 2rem;
  border-radius: 1rem;
  color: var(--primary-foreground);
}

.therapist-image-wrapper {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.therapist-image {
  width: 280px;
  height: 280px;
  object-fit: cover;
  object-position: center;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: 4px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition-smooth);
}

.therapist-image:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.therapist-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-foreground);
  text-align: center;
}

.therapist-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.credentials {
  margin-top: 1rem;
}

.credentials div {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
}

.testimonial-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  transition: var(--transition-smooth);
}

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

.testimonial-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.testimonial-card blockquote {
  color: var(--muted-foreground);
  font-style: italic;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.testimonial-card cite {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
}

/* ============================================
   9. CONTACT SECTION
   ============================================ */
.contact {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--background), var(--muted));
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 100%;
}

.contact-info {
  display: contents;
}

.contact-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  min-width: 0;
  transition: var(--transition-smooth);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: var(--primary);
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-card-header i {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-card-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

.contact-card p {
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
  word-break: break-word;
  line-height: 1.4;
}

.contact-detail {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground) !important;
  word-break: break-word;
}

.hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.hour-row span:first-child {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  font-size: 0.9375rem;
}

.hour-row span:last-child {
  color: rgba(255, 255, 255, 1);
  font-weight: 700;
  font-size: 0.9375rem;
}

/* ============================================
   10. FOOTER
   ============================================ */
.footer {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-info {
  max-width: 24rem;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--primary-foreground);
  opacity: 0.85;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  backdrop-filter: blur(8px);
  width: fit-content;
}

.footer-badge i {
  width: 1rem;
  height: 1rem;
  color: var(--accent-coral-light);
}

.footer-contact h4,
.footer-hours h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-foreground);
}

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

.footer-contact-item i {
  width: 1rem;
  height: 1rem;
  color: var(--accent-coral-light);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item div {
  color: var(--primary-foreground);
  opacity: 0.9;
}

.appointment-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--primary-foreground);
  opacity: 0.8;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.appointment-note i {
  width: 1rem;
  height: 1rem;
  color: var(--accent-coral-light);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(var(--primary-light), 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  color: var(--primary-foreground);
  text-decoration: none;
  font-size: 0.875rem;
  opacity: 0.9;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ============================================
   11. RESPONSIVE DESIGN - DESKTOP
   ============================================ */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-grid,
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  }
}

/* ============================================
   12. RESPONSIVE DESIGN - TABLET
   ============================================ */
@media (max-width: 768px) {
  /* Navigation */
  .logo-image {
    width: 1.75rem;
    height: 1.75rem;
  }
  
  .logo-text {
    font-size: 1.125rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu {
    display: block;
  }

  .menu-btn {
    padding: 0.625rem 1.25rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
  }

  .menu-btn:hover {
    color: var(--primary-foreground);
    background: var(--primary-dark);
    border-color: var(--primary-foreground);
    transform: translateY(-1px);
  }

  .menu-text {
    display: inline;
  }

  .mobile-nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 998;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .mobile-nav-links.show {
    transform: translateY(0);
  }

  .mobile-nav-links .nav-link {
    color: var(--primary-foreground);
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
  }

  .mobile-nav-links .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 1.5rem;
  }
  
  /* Contact Bar - alleen telefoon tonen */
  .contact-bar {
    padding: 0.75rem 0;
  }

  .contact-bar .container {
    justify-content: center;
  }
  
  .contact-info {
    display: flex;
    flex-direction: row;
    gap: 0;
  }

  .contact-bar .container > .contact-item:last-child {
    display: none;
  }

  .contact-info .contact-item {
    display: none;
  }

  .contact-info .contact-item:nth-child(2) {
    display: flex;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary-foreground);
  }
  
  /* Hero */
  .hero {
    min-height: auto;
    padding: 4rem 0 3rem;
  }

  .hero-overlay {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: space-around;
    width: 100%;
  }
  
  /* Services */
  .services {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1.125rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .pricing-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-card.featured {
    transform: none;
  }

  .service-card {
    padding: 1.5rem;
  }
  
  /* About */
  .about {
    padding: 3rem 0;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  /* Contact */
  .contact {
    padding: 3rem 0;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
  }

  .contact-card {
    padding: 1.25rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-card-header h3 {
    font-size: 1rem;
  }

  .contact-detail {
    font-size: 1rem;
    word-break: break-all;
  }

  .contact-info {
    gap: 1rem;
    display: block;
  }
  
  /* Footer */
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ============================================
   13. RESPONSIVE DESIGN - MOBILE
   ============================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero {
    padding: 3rem 0 2rem;
  }

  .hero-stats {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .stat-number {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
  }

  .services,
  .about,
  .contact {
    padding: 2.5rem 0;
  }

  .service-icon {
    width: 3rem;
    height: 3rem;
  }

  .service-icon i {
    width: 1.5rem;
    height: 1.5rem;
  }

  .service-card {
    padding: 1.25rem;
  }

  .pricing-card {
    min-height: auto;
  }

  .therapist-image {
    width: 200px;
    height: 200px;
  }

  .contact-card {
    padding: 1.25rem;
  }

  .footer {
    padding: 2rem 0;
  }

  .footer-content {
    gap: 1.5rem;
  }
}

/* ============================================
   14. TOUCH DEVICES OPTIMIZATION
   ============================================ */
@media (hover: none) and (pointer: coarse) {
  .btn,
  .nav-link,
  .menu-btn {
    min-height: 44px;
    min-width: 44px;
  }

  .contact-item {
    padding: 0.5rem;
  }
}