/* ===================================
   The Spa Whisperer - Modern Spa Website
   =================================== */

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

:root {
  /* Color Palette - Spa Luxury Theme */
  --primary: #2c5f4f; /* Deep Forest Green */
  --primary-light: #3a7861;
  --primary-dark: #1e4437;
  --accent: #c9a87c; /* Soft Gold */
  --accent-light: #e0c499;
  --neutral-900: #1a1a1a;
  --neutral-800: #2d2d2d;
  --neutral-700: #4a4a4a;
  --neutral-200: #e8e8e8;
  --neutral-100: #f5f5f5;
  --white: #ffffff;
  --success: #4caf50;
  --error: #e57373;

  /* Typography */
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Transitions */
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral-800);
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--neutral-900);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
h4 {
  font-size: 1.5rem;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ===================================
   Header & Navigation
   =================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

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

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.logo-text span {
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  font-weight: 500;
  color: var(--neutral-700);
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a.active {
  color: var(--primary);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  transition: var(--transition);
}

.desktop-cta {
  display: inline-block;
}

/* ===================================
   Buttons
   =================================== */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(44, 95, 79, 0.3);
}

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

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

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
}

/* ===================================
   WhatsApp Floating Button
   =================================== */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

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

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}

/* ===================================
   Hero Section
   =================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Updated to use actual generated hero spa image */
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%), url("../images/hero-spa.jpg") center
    / cover;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Using actual spa hero background image */
  background: url("../images/hero-spa.jpg") center / cover;
  opacity: 0.15;
  animation: zoomSlow 30s infinite alternate;
}

@keyframes zoomSlow {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(28, 68, 55, 0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto;
  padding-top: 80px;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-indicator span {
  display: block;
  width: 30px;
  height: 50px;
  border: 2px solid var(--white);
  border-radius: 20px;
  position: relative;
}

.scroll-indicator span::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 10px;
  background: var(--white);
  border-radius: 3px;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, 20px);
    opacity: 0;
  }
}

/* ===================================
   Animations
   =================================== */

.fade-in {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}

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

/* ===================================
   Section Styling
   =================================== */

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

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-label {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

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

.section-description {
  font-size: 1.1rem;
  color: var(--neutral-700);
  max-width: 700px;
  margin: 0 auto;
}

.lead {
  font-size: 1.2rem;
  color: var(--neutral-700);
  line-height: 1.7;
}

/* ===================================
   Services Overview Section
   =================================== */

.services-overview {
  background: var(--neutral-100);
}

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

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-card p {
  margin-bottom: 1.5rem;
  color: var(--neutral-700);
}

.service-link {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

/* ===================================
   Transformation Section
   =================================== */

.transformation {
  background: var(--white);
}

.transformation-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  margin-top: var(--spacing-lg);
  align-items: center;
}

.transformation-col {
  padding: 3rem;
  border-radius: 15px;
  min-height: 400px;
}

.challenges {
  background: rgba(229, 115, 115, 0.1);
  border: 2px solid rgba(229, 115, 115, 0.3);
}

.solutions {
  background: rgba(76, 175, 80, 0.1);
  border: 2px solid rgba(76, 175, 80, 0.3);
}

.transformation-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.transformation-header i {
  font-size: 2rem;
}

.challenges .transformation-header i {
  color: var(--error);
}

.solutions .transformation-header i {
  color: var(--success);
}

.transformation-list {
  list-style: none;
}

.transformation-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.transformation-list i {
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.challenges .transformation-list i {
  color: var(--error);
}

.solutions .transformation-list i {
  color: var(--success);
}

.transformation-arrow {
  font-size: 3rem;
  color: var(--accent);
}

/* ===================================
   Why Different Section
   =================================== */

.why-different {
  background: var(--neutral-100);
}

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

.why-content h2 {
  margin-bottom: 1rem;
}

.why-list {
  list-style: none;
  margin: 2rem 0;
}

.why-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.why-list i {
  color: var(--accent);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.why-list strong {
  display: block;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.why-list p {
  color: var(--neutral-700);
  margin: 0;
}

.why-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.why-image img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.why-image:hover img {
  transform: scale(1.05);
}

/* ===================================
   Results Section
   =================================== */

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

.results .section-title {
  color: var(--white);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: var(--spacing-lg);
}

.result-card {
  text-align: center;
}

.result-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--accent);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.result-card h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.result-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

/* ===================================
   CTA Section
   =================================== */

.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  text-align: center;
}

.cta-content h2 {
  color: var(--neutral-900);
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--neutral-800);
}

.cta-author {
  font-style: italic;
  font-size: 1rem;
}

/* ===================================
   Page Hero (for internal pages)
   =================================== */

.page-hero {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  text-align: center;
  color: var(--white);
}

.page-title {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   About Page - Meet Rachel
   =================================== */

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

.rachel-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.rachel-content .lead {
  font-style: italic;
  color: var(--primary);
  margin: 1rem 0 2rem;
  padding: 1rem;
  background: rgba(44, 95, 79, 0.05);
  border-left: 4px solid var(--accent);
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

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

.credential-item i {
  color: var(--accent);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.credential-item strong {
  display: block;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.credential-item p {
  color: var(--neutral-700);
  margin: 0;
}

/* ===================================
   Struggle Section
   =================================== */

.struggle-section {
  background: var(--neutral-100);
}

.struggle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: var(--spacing-lg);
}

.struggle-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.struggle-card i {
  font-size: 3rem;
  color: var(--error);
  margin-bottom: 1rem;
}

.struggle-card h3 {
  color: var(--neutral-900);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* ===================================
   Mission & Vision
   =================================== */

.mission-vision {
  background: var(--white);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: var(--spacing-lg);
}

.mv-card {
  background: var(--neutral-100);
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
}

.mv-card i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.mv-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* ===================================
   Treatments Page
   =================================== */

.services-detail {
  background: var(--neutral-100);
}

.service-detail-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 4rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.service-detail-card.reverse .service-detail-grid {
  direction: rtl;
}

.service-detail-card.reverse .service-detail-content {
  direction: ltr;
}

.service-detail-content {
  padding: 4rem;
}

.service-number {
  display: inline-block;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(44, 95, 79, 0.1);
  line-height: 1;
  margin-bottom: 1rem;
}

.service-detail-content h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-detail-description {
  font-size: 1.1rem;
  color: var(--neutral-700);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.service-detail-content h4 {
  color: var(--neutral-900);
  margin: 2rem 0 1rem;
  font-size: 1.2rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  color: var(--neutral-700);
}

.service-features i {
  color: var(--accent);
  font-size: 1.2rem;
}

.service-detail-image {
  height: 100%;
  min-height: 500px;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===================================
   Process Section
   =================================== */

.process-section {
  background: var(--white);
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: var(--spacing-lg);
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--accent);
  z-index: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  border: 5px solid var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.process-step h3 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.process-step p {
  color: var(--neutral-700);
}

/* ===================================
   Gift Vouchers Page
   =================================== */

.vouchers-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.vouchers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.voucher-card {
  background: var(--white);
  border-radius: 15px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.voucher-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.voucher-card.featured {
  border: 3px solid var(--accent);
  transform: scale(1.05);
}

.voucher-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.voucher-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
}

.voucher-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.voucher-description {
  color: var(--neutral-700);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.voucher-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.voucher-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--neutral-700);
}

.voucher-features i {
  color: var(--accent);
}

.custom-voucher {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 4rem;
  border-radius: 15px;
  text-align: center;
  color: var(--white);
  margin-bottom: 4rem;
}

.custom-voucher h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.custom-voucher p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.voucher-process {
  background: var(--neutral-100);
  padding: 4rem;
  border-radius: 15px;
  margin-bottom: 4rem;
}

.voucher-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.voucher-step {
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.voucher-step h4 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.voucher-step p {
  color: var(--neutral-700);
}

.voucher-terms {
  background: var(--neutral-100);
  padding: 3rem;
  border-radius: 15px;
}

.voucher-terms h3 {
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.voucher-terms ul {
  list-style: none;
}

.voucher-terms li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--neutral-700);
}

.voucher-terms li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.5rem;
}

/* ===================================
   Contact Page
   =================================== */

.contact-section {
  background: var(--neutral-100);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-methods {
  margin-top: 3rem;
}

.contact-method {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--neutral-200);
}

.method-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.method-content h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.method-content p {
  color: var(--neutral-700);
  margin-bottom: 0.5rem;
}

.method-content a {
  color: var(--primary);
  font-weight: 500;
}

.method-content a:hover {
  color: var(--accent);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 1rem;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.social-connect {
  margin-top: 3rem;
}

.social-connect h4 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
  color: var(--neutral-700);
  margin-bottom: 2rem;
}

.alert {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.alert-success {
  background: rgba(76, 175, 80, 0.1);
  color: var(--success);
  border: 1px solid var(--success);
}

.alert-error {
  background: rgba(229, 115, 115, 0.1);
  color: var(--error);
  border: 1px solid var(--error);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--neutral-900);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--neutral-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
}

/* FAQ Section */
.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: var(--spacing-lg);
}

.faq-item {
  background: var(--neutral-100);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

.faq-item h4 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: var(--neutral-700);
}

/* ===================================
   Find Us Page
   =================================== */

.location-section {
  background: var(--neutral-100);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.location-details h2 {
  margin-bottom: 1rem;
}

.location-info-cards {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  gap: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.location-card.highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
}

.location-card.highlight h4,
.location-card.highlight p {
  color: var(--white);
}

.location-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.location-card.highlight .location-icon {
  background: rgba(255, 255, 255, 0.2);
}

.location-card h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.location-card p {
  color: var(--neutral-700);
  margin-bottom: 0.25rem;
}

.text-sm {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Contact Methods Section */
.contact-methods-section {
  background: var(--white);
  padding: 4rem 0;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: var(--spacing-lg);
}

.method-card {
  background: var(--neutral-100);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.method-card .method-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.method-icon.whatsapp {
  background: #25d366;
}

.method-icon.phone {
  background: var(--primary);
}

.method-icon.email {
  background: var(--accent);
}

.method-icon.form {
  background: var(--primary-light);
}

.method-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.method-card > p {
  color: var(--neutral-700);
  margin-bottom: 1rem;
}

.method-details {
  margin: 1.5rem 0;
}

.method-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.method-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Virtual Consulting */
.virtual-consulting {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 4rem;
  border-radius: 15px;
  color: var(--white);
  margin-top: 4rem;
}

.virtual-content {
  text-align: center;
}

.virtual-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.virtual-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  text-align: center;
}

.virtual-benefit i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.virtual-benefit h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.virtual-benefit p {
  color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   Footer
   =================================== */

.footer {
  background: var(--neutral-900);
  color: var(--neutral-200);
  padding: 4rem 0 2rem;
}

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

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.footer-tagline {
  color: var(--accent-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--neutral-200);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-contact i {
  color: var(--accent);
  width: 20px;
}

.footer-contact a {
  color: var(--neutral-200);
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--neutral-800);
  color: var(--neutral-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--neutral-800);
}

.footer-bottom p {
  color: var(--neutral-200);
  font-size: 0.9rem;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1024px) {
  .why-grid,
  .rachel-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .transformation-arrow {
    transform: rotate(90deg);
  }

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

  .service-detail-card.reverse .service-detail-grid {
    direction: ltr;
  }

  .service-detail-image {
    min-height: 400px;
  }

  .process-timeline {
    flex-direction: column;
  }

  .process-timeline::before {
    display: none;
  }

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

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

@media (max-width: 768px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

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

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .desktop-cta {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .services-grid,
  .results-grid,
  .struggle-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-content {
    padding: 2rem;
  }

  .mv-grid,
  .vouchers-grid {
    grid-template-columns: 1fr;
  }

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

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

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.75rem;
    bottom: 20px;
    right: 20px;
  }

  .methods-grid,
  .virtual-benefits {
    grid-template-columns: 1fr;
  }

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