/* Core Variables & Design Tokens */
:root {
  --primary-color: #143d28;      /* Bold Pine Green (Grounded & Saturated) */
  --primary-light: #255c3f;
  --primary-rgb: 20, 61, 40;
  --accent-color: #be9265;       /* Saturated Honey-Camel Gold (Bold warmth) */
  --accent-hover: #a37549;
  --accent-light: #f5f8f4;       /* Bright Sage-Cream Highlight Background */
  --accent-rgb: 190, 146, 101;
  --logo-color: #255c3f;         /* Rich Pine Green Logo */
  --text-dark: #143d28;
  --text-light: #faf8f5;
  --text-muted: #547561;         /* Saturated Sage Green */
  --bg-light: #f0f4ef;           /* Bright Luminous Sage-Mist Background */
  --bg-white: #ffffff;           /* Crisp Pure White Background */
  --bg-dark: #0a2115;
  --border-color: rgba(var(--primary-rgb), 0.08);
  --border-light: rgba(255, 255, 255, 0.1);
  --card-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.04);
  --card-shadow-hover: 0 30px 60px rgba(var(--primary-rgb), 0.08);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(var(--primary-rgb), 0.06);
  --success-bg: rgba(59, 94, 76, 0.15);
  --success-text: #255c3f;
  --warm-gold: #eecfa1;          /* Soothing Warm Amber-Gold */
  --warm-sand: #e6a77e;          /* Soothing Warm Terracotta Sand */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* Shared Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background-color: var(--accent-light);
  color: var(--logo-color);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}




/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.15);
}

.btn-primary:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(var(--accent-rgb), 0.25);
}

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--primary-color);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
}

.btn-secondary:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb), 0.4);
}


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

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

.btn-block {
  display: flex;
  width: 100%;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(253, 251, 248, 0.95);
  box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.04);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
}

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
}

.logo-accent {
  color: var(--logo-color);
  margin-right: 0.3rem;
}

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

.nav-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  opacity: 0.8;
  position: relative;
}

.nav-item:hover {
  opacity: 1;
  color: var(--accent-color);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition-fast);
}

.nav-item:hover::after {
  width: 100%;
}

.btn-nav {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle .bar {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background-color: var(--primary-color);
  transition: var(--transition-fast);
}

/* Hero Section */
.hero-section {
  padding: 9.5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-white);
  background-image: radial-gradient(circle at 80% 20%, rgba(var(--accent-rgb), 0.08), transparent 40%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

.hero-visual {
  position: relative;
}

.visual-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abstract-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
}

.shape-1 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #0d2b1c, #255c3f);
  top: 15%;
  left: 15%;
  opacity: 0.2;
  animation: floatShape 8s infinite alternate ease-in-out;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #143d28, #3a7a56);
  bottom: 10%;
  right: 10%;
  opacity: 0.15;
  animation: floatShape 12s infinite alternate-reverse ease-in-out;
}

.visual-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(20, 61, 40, 0.28) 0%, transparent 70%);
  z-index: 0;
  animation: glowPulse 8s infinite alternate ease-in-out;
}

.visual-card {
  position: absolute;
  background: rgba(253, 251, 247, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(253, 251, 247, 0.8);
  padding: 1.2rem 1.6rem;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: 0 15px 45px rgba(var(--primary-rgb), 0.08);
  z-index: 3;
  width: 270px;
}

.floating-card-1 {
  top: 20%;
  left: -5%;
  animation: floatCard 4s infinite ease-in-out;
}

.floating-card-2 {
  bottom: 25%;
  right: -5%;
  animation: floatCard 4.5s infinite ease-in-out 1s;
}

.card-icon {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

.visual-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.visual-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.profile-card {
  position: relative;
  background: var(--accent-light);
  border-radius: var(--border-radius-lg);
  padding: 1rem;
  box-shadow: var(--card-shadow);
  max-width: 380px;
  margin: 0 auto;
}

.profile-image-placeholder {
  border-radius: calc(var(--border-radius-lg) - 8px);
  overflow: hidden;
  position: relative;
  background-color: var(--bg-dark);
}

.profile-svg {
  display: block;
}

.experience-badge {
  position: absolute;
  bottom: 2rem;
  right: -2rem;
  background: var(--primary-color);
  color: var(--text-light);
  padding: 1.2rem 1.8rem;
  border-radius: var(--border-radius-md);
  box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 5;
  animation: floatCard 6s infinite ease-in-out;
}

.exp-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.exp-txt {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-lead {
  font-size: 1.2rem;
  font-family: var(--font-heading);
  color: var(--primary-light);
  margin-bottom: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.bio-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 1.8rem 0 2.2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  background-color: var(--accent-light);
  border: 1px solid rgba(var(--primary-rgb), 0.05);
  border-radius: var(--border-radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
}

.highlight-icon {
  font-size: 1.2rem;
}

.section-title-alt {
  font-size: 2rem;
  color: var(--primary-color);
  font-family: var(--font-heading);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle-alt {
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 3rem;
}

/* Core Dimensions Grid (4 columns on desktop, auto-wrapping) */
.dimensions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.8rem;
}

.dimension-card {
  background: var(--accent-light);
  border: 1px solid rgba(var(--primary-rgb), 0.04);
  border-radius: var(--border-radius-md);
  padding: 2.2rem 1.8rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.dimension-card:hover {
  transform: translateY(-3px);
  background: var(--bg-white);
  border-color: rgba(var(--accent-rgb), 0.25);
  box-shadow: var(--card-shadow);
}

.dimension-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-white); /* Crisp white badge to pop over green-cream tile */
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

.dimension-card:hover .dimension-icon-wrapper {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.dimension-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.dimension-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Client Profiles Grid (4 columns on desktop, auto-wrapping) */
.client-profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.8rem;
}

.client-profile-card {
  background: var(--accent-light);
  border: 1px solid rgba(var(--primary-rgb), 0.04);
  border-radius: var(--border-radius-md);
  padding: 1.8rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.client-profile-card:hover {
  transform: translateY(-3px);
  background: var(--bg-white);
  border-color: rgba(var(--accent-rgb), 0.25);
  box-shadow: var(--card-shadow);
}

.client-profile-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.client-profile-icon {
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1;
}

.client-profile-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 600;
  margin: 0;
}

.client-profile-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.philosophy-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.philosophy-card {
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.philosophy-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--accent-rgb), 0.4);
  box-shadow: var(--card-shadow);
}

.p-icon {
  font-size: 1.8rem;
  display: inline-block;
  margin-bottom: 0.8rem;
}

.philosophy-card h5 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.philosophy-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}

.section-desc {
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  padding: 3rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(var(--accent-rgb), 0.3);
}

.service-icon {
  font-size: 2.2rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-card .service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  min-height: 80px;
}

.price-container {
  display: flex;
  align-items: baseline;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

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

.price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 0.4rem;
}

.features-list {
  margin-bottom: 2.5rem;
}

.features-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.check {
  color: var(--accent-color);
  font-weight: bold;
}

/* Featured Service Card Override */
.service-card.featured {
  border: 2px solid var(--accent-color);
  transform: scale(1.03);
}

.service-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.featured-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--text-light);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Booking Section */
.booking-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.booking-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.booking-intro p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.trust-points {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.trust-point {
  display: flex;
  gap: 1.2rem;
}

.tp-icon {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 12px;
}

.trust-point h6 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.trust-point p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.booking-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  padding: 3rem;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.booking-wizard {
  position: relative;
  z-index: 2;
}

.wizard-progress {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
}

.progress-step {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  opacity: 0.5;
  transition: var(--transition-fast);
}

.progress-step.active {
  color: var(--primary-color);
  opacity: 1;
}

.progress-step.completed {
  color: var(--accent-color);
  opacity: 1;
}

.wizard-panel {
  display: none;
}

.wizard-panel.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

.wizard-panel h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Step 1 Content */
.booking-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.booking-option {
  position: relative;
  cursor: pointer;
}

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

.option-content {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.6rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  background: var(--bg-white);
  transition: var(--transition-fast);
}

.booking-option input[type="radio"]:checked + .option-content {
  border-color: var(--accent-color);
  background-color: var(--accent-light);
  box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.05);
}

.opt-icon {
  font-size: 1.8rem;
  width: 44px;
  height: 44px;
  background: var(--bg-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.opt-text {
  display: flex;
  flex-direction: column;
}

.opt-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-color);
}

.opt-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.panel-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.panel-actions .btn-prev {
  margin-right: auto;
}

/* Step 2 Content: Calendar Scheduler */
.calendar-container {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-weight: 600;
}

.calendar-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.4rem;
  text-align: center;
}

.cal-day-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  padding-bottom: 0.4rem;
}

.cal-day {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cal-day.disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.cal-day:not(.disabled):hover {
  background-color: var(--border-color);
}

.cal-day.selected {
  background-color: var(--primary-color) !important;
  color: var(--text-light);
  font-weight: bold;
}

.time-slots-container h5 {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.time-slot {
  border: 1px solid var(--border-color);
  background: var(--bg-white);
  padding: 0.6rem 0.8rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.time-slot:hover {
  border-color: var(--accent-color);
  background-color: var(--accent-light);
}

.time-slot.selected {
  background-color: var(--accent-color);
  color: var(--text-light);
  border-color: var(--accent-color);
}

/* Step 3 Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--border-color);
  background: var(--bg-light);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}

/* Success State Panel */
.wizard-success-state {
  display: none;
  text-align: center;
  padding: 2rem 0;
  animation: fadeIn 0.4s ease forwards;
}

.success-icon {
  width: 64px;
  height: 64px;
  background-color: var(--success-bg);
  color: var(--success-text);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.wizard-success-state h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.wizard-success-state p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.success-details {
  background: var(--bg-light);
  border-radius: var(--border-radius-md);
  padding: 1.2rem 1.8rem;
  border: 1px solid var(--border-color);
  display: inline-block;
  text-align: left;
  margin-bottom: 2.5rem;
  min-width: 280px;
}

.success-details p {
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

.success-details p:last-child {
  margin-bottom: 0;
}

/* FAQs Section */
.faqs-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.faqs-wrapper {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(var(--accent-rgb), 0.4);
  box-shadow: var(--card-shadow);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
}

.faq-toggle-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent-color);
  transition: var(--transition-fast);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
  padding: 0 2rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.method-item {
  display: flex;
  gap: 1.2rem;
}

.m-icon {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 12px;
  color: var(--accent-hover);
}

.method-item h6 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.method-item p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.contact-form-container {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  padding: 3rem;
  box-shadow: var(--card-shadow);
}

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

.contact-success-message {
  display: none;
  background-color: var(--success-bg);
  color: var(--success-text);
  border-radius: var(--border-radius-sm);
  padding: 1rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  align-items: center;
  gap: 0.5rem;
  animation: fadeIn 0.4s ease forwards;
}

.contact-success-message.active {
  display: flex;
}

/* Footer Styles */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 5rem 0 2rem;
  font-family: var(--font-body);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border-light);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-brand .nav-logo {
  color: var(--text-light);
}

.footer-brand p {
  font-size: 0.85rem;
  opacity: 0.7;
  max-width: 250px;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links-group h6 {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.footer-links-group a {
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-links-group a:hover {
  opacity: 1;
  color: var(--accent-color);
  transform: translateX(3px);
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-socials h6 {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.social-icons {
  display: flex;
  gap: 0.8rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.8;
  transition: var(--transition-fast);
}

.social-icon:hover {
  opacity: 1;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes floatShape {
  0% {
    transform: translate(0px, 0px) scale(1);
  }
  50% {
    transform: translate(20px, -20px) scale(1.1);
  }
  100% {
    transform: translate(0px, 0px) scale(1);
  }
}

/* Meditative Breathing Graphic Styles */
.meditation-svg {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 380px;
  overflow: visible;
}

.med-ring {
  transform-origin: 200px 200px;
  animation: breathingCycle 10s infinite ease-in-out;
}

.ring-1 {
  animation-delay: 0s;
}

.ring-2 {
  animation-delay: 1.8s;
}

.ring-3 {
  animation-delay: 3.6s;
}

.med-glow {
  transform-origin: 200px 200px;
  animation: glowPulse 5s infinite ease-in-out alternate;
}

.med-node {
  transform-origin: 200px 200px;
  animation: orbitNode 28s infinite linear;
}

@keyframes breathingCycle {
  0% {
    transform: scale(0.9);
    opacity: 0.25;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.85;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.25;
  }
}

@keyframes glowPulse {
  0% {
    transform: scale(0.8);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.2);
    opacity: 0.95;
  }
}

@keyframes orbitNode {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Styling */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  .hero-title {
    font-size: 3.2rem;
  }
  .hero-container,
  .about-grid,
  .booking-grid,
  .contact-grid {
    gap: 3rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card.featured {
    transform: scale(1);
  }
  .service-card.featured:hover {
    transform: translateY(-8px);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    display: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }

  .nav-links.active {
    display: flex;
    animation: fadeIn 0.3s ease forwards;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2rem;
  }


  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 2rem;
  }

  .hero-visual {
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
  }

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

  .about-visual {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

  .experience-badge {
    right: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

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

  .booking-card,
  .contact-form-container {
    padding: 2rem 1.5rem;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
}

/* Decorative Background Blur Orbs & Scroll Indicator */
.bg-blur-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.08;
  animation: floatOrb 20s infinite alternate ease-in-out;
}

.orb-green {
  width: 450px;
  height: 450px;
  background-color: var(--logo-color);
}

.orb-gold {
  width: 500px;
  height: 500px;
  background-color: var(--warm-gold);
}

@keyframes floatOrb {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-30px) scale(1.1);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.mouse-wheel {
  width: 24px;
  height: 40px;
  border: 1.5px solid var(--text-muted);
  border-radius: 20px;
  position: relative;
  opacity: 0.6;
}

.mouse-wheel::before {
  content: '';
  width: 3px;
  height: 6px;
  background-color: var(--accent-color);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% {
    opacity: 0;
    top: 8px;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 24px;
  }
}

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