/* ============================================
   CYNERG'HEAL - NATURE FLOW DESIGN
   Organic, fluide, courbes, naturel
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Raleway:wght@300;400;500;600&display=swap');

/* ============================================
   COLORS - NATURAL PALETTE
   ============================================ */

:root {
  /* Warm earth tones */
  --terracotta: #C97A5C;
  --terracotta-light: #E0A087;
  --sage: #7BA89F;
  --sage-light: #A8D4CB;
  --olive: #7A8C4A;
  --cream: #F5F0E8;
  --off-white: #FAFBF7;

  /* Text */
  --text-dark: #3D3530;
  --text-muted: #7A6F68;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #162b45;
  color: #0f172a;
  padding: 20px 40px;
  z-index: 999;
  display: none;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-content p {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  white-space: nowrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: all 300ms ease;
  text-decoration: none;
  display: inline-block;
}

.cookie-btn-primary {
  background: var(--terracotta);
  color: #0f172a;
}

.cookie-btn-primary:hover {
  background: var(--sage);
  opacity: 0.9;
}

.cookie-btn-secondary {
  background: transparent;
  color: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  color: var(--text-dark);
  line-height: 1.2;
}

h1 { font-size: 52px; }
h2 { font-size: 44px; margin-bottom: 12px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

p {
  line-height: 1.7;
  margin-bottom: 16px;
}

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

/* ============================================
   FORM LABELS & ACCESSIBILITY
   ============================================ */

.booking-form-nature label,
.contact-form-nature label,
.form-checkbox label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  margin-top: 16px;
}

.form-checkbox label {
  display: flex;
  align-items: center;
  margin-top: 0;
  font-weight: 400;
}

.booking-form-nature input:focus,
.booking-form-nature select:focus,
.booking-form-nature textarea:focus,
.contact-form-nature input:focus,
.contact-form-nature textarea:focus {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

/* ============================================
   BUTTONS & INTERACTION
   ============================================ */

.btn-nature-primary,
.btn-nature-secondary {
  cursor: pointer;
}

.btn-nature-primary:focus,
.btn-nature-secondary:focus {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

/* ============================================
   Z-INDEX SCALE
   ============================================ */

/* Scale: 10 = dropdown, 20 = modals, 30 = sticky, 50 = fixed */
.header-nature {
  z-index: 100;
}

.modal-nature {
  z-index: 1000;
}

.cookie-banner {
  z-index: 999;
}

.cta-float {
  z-index: 20;
}

.btn-nature-primary {
  background: var(--terracotta);
  color: #0f172a;
  padding: 16px 40px;
  min-height: 44px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 300ms var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.btn-nature-primary:hover {
  background: var(--sage);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(193, 122, 92, 0.2);
}

.btn-nature-secondary {
  background: transparent;
  color: var(--terracotta);
  padding: 12px 28px;
  min-height: 44px;
  border: 2px solid var(--terracotta);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 300ms var(--ease);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-nature-secondary:hover {
  background: var(--terracotta);
  color: #0f172a;
}

/* ============================================
   HEADER - MINIMAL ORGANIC
   ============================================ */

.header-nature {
  padding: 24px 0;
  background: white;
  border-bottom: 1px solid #E8E0D4;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.logo-nature {
  font-family: 'Lora', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
}

.header-icons {
  display: flex;
  gap: 24px;
  align-items: center;
}

.header-icon {
  color: transparent;
  font-size: 0;
  line-height: 0;
  word-spacing: -999px;
  letter-spacing: -999px;
  transition: all 300ms var(--ease);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
}

.header-icon svg {
  width: 22px;
  height: 22px;
  font-size: 18px;
  line-height: 1;
  word-spacing: normal;
  letter-spacing: normal;
  color: var(--text-muted);
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2.5;
}

.header-icon:focus {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

.header-icon:hover svg {
  stroke: var(--terracotta);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-nature {
  background: linear-gradient(135deg, var(--cream) 0%, rgba(168, 212, 203, 0.1) 100%);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 40% 60% 65% 35% / 35% 45% 55% 65%;
  opacity: 0.3;
}

.hero-blob-1 {
  width: 400px;
  height: 400px;
  background: var(--sage);
  top: -100px;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-blob-2 {
  width: 300px;
  height: 300px;
  background: var(--terracotta);
  bottom: -50px;
  left: 10%;
  animation: float 8s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text h1 {
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hero-mantra {
  font-size: 14px;
  font-style: italic;
  color: var(--terracotta);
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

.hero-mantra::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--terracotta);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.stat-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-family: 'Lora', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--terracotta);
}

.stat-text {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  max-width: 80px;
}

.hero-image {
  position: relative;
  overflow: hidden;
  max-height: 700px;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 16px;
}

.wave-divider {
  position: relative;
  height: 120px;
  margin: 0 0 -2px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

.wave-reverse svg {
  transform: rotate(180deg);
}

/* ============================================
   MEDICAL DISCLAIMER
   ============================================ */

.medical-disclaimer {
  background: rgba(201, 122, 92, 0.06);
  padding: 20px 40px;
  text-align: center;
  border-top: 2px solid rgba(201, 122, 92, 0.2);
  border-bottom: 2px solid rgba(201, 122, 92, 0.2);
}

.medical-disclaimer p {
  font-size: 13px;
  color: #475569;
  margin: 0;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .medical-disclaimer {
    padding: 16px 20px;
  }

  .medical-disclaimer p {
    font-size: 12px;
  }
}

.soins-nature {
  background: white;
  padding: 120px 40px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.section-header-nature {
  text-align: center;
  margin-bottom: 100px;
}

.section-header-nature h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.section-header-nature p {
  color: #64748b;
  font-size: 16px;
}

/* Soins Grid */
.soins-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Soin Card */
.soin-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafaf9 100%);
  border: none;
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  box-shadow: 0 4px 12px rgba(61, 53, 48, 0.08), 0 1px 3px rgba(61, 53, 48, 0.04);
  position: relative;
  overflow: hidden;
}

.soin-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, currentColor, transparent);
  opacity: 0;
  transition: opacity 300ms ease;
}

.soin-card:hover {
  box-shadow: 0 12px 24px rgba(61, 53, 48, 0.12), 0 4px 8px rgba(61, 53, 48, 0.06);
  transform: translateY(-4px);
}

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

.soin-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: currentColor;
  opacity: 0.1;
  transition: all 300ms ease;
  flex-shrink: 0;
}

.soin-card:hover .soin-icon {
  opacity: 0.15;
  transform: scale(1.05);
}

.soin-icon svg {
  width: 40px;
  height: 40px;
  color: inherit;
}

/* Color themes for each soin - using brand palette */
.soin-color-1 {
  --soin-color: var(--terracotta);
}

.soin-color-1 .soin-icon {
  color: var(--terracotta);
}

.soin-color-1 .soin-cta {
  background: linear-gradient(135deg, var(--terracotta) 0%, #8B5A3C 100%);
  color: #0f172a;
  border: none;
  box-shadow: 0 4px 12px rgba(201, 122, 92, 0.2);
}

.soin-color-1 .soin-cta:hover {
  background: linear-gradient(135deg, var(--terracotta-light) 0%, var(--terracotta) 100%);
  box-shadow: 0 8px 20px rgba(201, 122, 92, 0.3);
}

.soin-color-2 {
  --soin-color: var(--sage);
}

.soin-color-2 .soin-icon {
  color: var(--sage);
}

.soin-color-2 .soin-cta {
  background: linear-gradient(135deg, var(--sage) 0%, #5A7C73 100%);
  color: #0f172a;
  border: none;
  box-shadow: 0 4px 12px rgba(123, 168, 159, 0.2);
}

.soin-color-2 .soin-cta:hover {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 100%);
  box-shadow: 0 8px 20px rgba(123, 168, 159, 0.3);
}

.soin-color-3 {
  --soin-color: var(--olive);
}

.soin-color-3 .soin-icon {
  color: var(--olive);
}

.soin-color-3 .soin-cta {
  background: linear-gradient(135deg, var(--olive) 0%, #5A6B38 100%);
  color: #0f172a;
  border: none;
  box-shadow: 0 4px 12px rgba(122, 140, 74, 0.2);
}

.soin-color-3 .soin-cta:hover {
  background: linear-gradient(135deg, #95A664 0%, var(--olive) 100%);
  box-shadow: 0 8px 20px rgba(122, 140, 74, 0.3);
}

.soin-color-4 {
  --soin-color: var(--terracotta-light);
}

.soin-color-4 .soin-icon {
  color: var(--terracotta-light);
}

.soin-color-4 .soin-cta {
  background: linear-gradient(135deg, var(--terracotta-light) 0%, var(--terracotta) 100%);
  color: #0f172a;
  border: none;
  box-shadow: 0 4px 12px rgba(224, 160, 135, 0.2);
}

.soin-color-4 .soin-cta:hover {
  background: linear-gradient(135deg, #F0B89C 0%, var(--terracotta-light) 100%);
  box-shadow: 0 8px 20px rgba(224, 160, 135, 0.3);
}

.soin-color-5 {
  --soin-color: var(--sage-light);
}

.soin-color-5 .soin-icon {
  color: var(--sage-light);
}

.soin-color-5 .soin-cta {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 100%);
  color: #0f172a;
  border: none;
  box-shadow: 0 4px 12px rgba(168, 212, 203, 0.2);
}

.soin-color-5 .soin-cta:hover {
  background: linear-gradient(135deg, #BFDFDB 0%, var(--sage-light) 100%);
  box-shadow: 0 8px 20px rgba(168, 212, 203, 0.3);
}

.soin-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.soin-tagline {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.soin-description {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.soin-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  width: 100%;
}

.soin-header h3 {
  margin: 0;
}

.soin-symbol {
  font-size: 24px;
  display: inline-block;
}

.soin-emotion {
  font-size: 14px;
  font-style: italic;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.5;
}

.soin-guarantee {
  display: inline-block;
  background: linear-gradient(135deg, rgba(123, 168, 159, 0.1) 0%, rgba(168, 212, 203, 0.1) 100%);
  color: var(--sage);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(123, 168, 159, 0.2);
}

.soin-timing {
  display: block;
  font-weight: 600;
  color: #0f172a;
}

.soin-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
  width: 100%;
}

.soin-meta span {
  padding: 8px 0;
  border-top: 1px solid #e2e8f0;
}

.soin-meta span:first-child {
  border-top: none;
}

.soin-price {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin: 24px 0 16px;
  font-family: 'Raleway', sans-serif;
}

.soin-cta {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 28px;
  margin-top: 8px;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
}

@media (max-width: 768px) {
  .soins-nature {
    padding: 80px 20px;
  }

  .section-header-nature h2 {
    font-size: 36px;
  }

  .soins-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .soin-card {
    padding: 24px;
  }

  .soin-icon {
    font-size: 40px;
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }

  .soin-icon svg {
    width: 32px;
    height: 32px;
  }

  .soin-card h3 {
    font-size: 18px;
  }

  .soin-header {
    gap: 8px;
    margin-bottom: 12px;
  }

  .soin-symbol {
    font-size: 20px;
  }

  .soin-emotion {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .soin-guarantee {
    font-size: 11px;
    padding: 6px 12px;
    margin-bottom: 16px;
  }

  .soin-price {
    font-size: 28px;
    margin: 16px 0 12px;
  }

  .soin-cta {
    font-size: 12px;
    padding: 10px 24px;
    margin-top: 6px;
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-nature {
  background: white;
  padding: 120px 40px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image {
  position: relative;
}

.image-organic {
  border-radius: 16px;
  overflow: hidden;
  background: white;
  padding: 0;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.image-organic img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.about-text h2 {
  margin-bottom: 32px;
}

.about-text p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.85;
}

.about-quote {
  font-size: 18px;
  color: var(--terracotta);
  font-weight: 600;
  margin-top: 40px;
  padding: 24px;
  padding-left: 28px;
  border-left: 5px solid var(--terracotta);
  line-height: 1.8;
  font-style: italic;
  background: rgba(201, 122, 92, 0.04);
}

.pillars-nature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid #E8E0D4;
}

.pillar-nature {
  text-align: center;
}

.pillar-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pillar-nature h4 {
  color: var(--terracotta);
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .pillars-nature {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   BOOKING SECTION
   ============================================ */

.booking-nature {
  background: linear-gradient(135deg, var(--cream) 0%, rgba(123, 168, 159, 0.08) 100%);
  padding: 120px 40px;
  text-align: center;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
}

.booking-nature h2 {
  margin-bottom: 8px;
}

.booking-subtitle {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.booking-form-nature {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-row > div {
  display: flex;
  flex-direction: column;
}

.booking-form-nature input,
.booking-form-nature select,
.booking-form-nature textarea,
.contact-form-nature input,
.contact-form-nature textarea {
  padding: 14px 20px;
  border: 2px solid #E8E0D4;
  border-radius: 30px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  transition: all 300ms var(--ease);
}

.booking-form-nature input::placeholder,
.contact-form-nature input::placeholder {
  color: #a0aec0;
}

.booking-form-nature textarea {
  border-radius: 20px;
  resize: vertical;
  min-height: 80px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  margin-top: 16px;
}

.form-checkbox input {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  cursor: pointer;
  accent-color: var(--terracotta);
  margin-top: 2px;
}

.form-checkbox input:focus {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

.form-checkbox label {
  cursor: pointer;
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  margin-top: 0;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Booking form enhancements */
.booking-container {
  max-width: 700px;
  margin: 0 auto;
}

.booking-assurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
  padding: 30px;
  background: rgba(123, 168, 159, 0.04);
  border-radius: 0;
  border-top: 4px solid var(--sage);
  border-bottom: 1px solid #E8E0D4;
}

.assurance-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.assurance-icon {
  width: 48px;
  height: 48px;
  display: block;
  color: var(--text-dark);
  margin: 0 auto 12px;
}

.assurance-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.assurance-text strong {
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}

.form-step {
  border: none;
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(245, 240, 232, 0.5);
  border-left: 4px solid var(--terracotta);
  text-align: left;
}

.step-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.step-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-style: italic;
}

.form-final {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #E8E0D4;
  margin-top: 30px;
}

/* Radio button styling for booking mode */
.booking-mode-options {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.mode-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: white;
  border: 2px solid #E8E0D4;
  border-radius: 8px;
  cursor: pointer;
  transition: all 200ms var(--ease);
}

.mode-option input[type="radio"] {
  margin-top: 4px;
  cursor: pointer;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  background: white;
  flex-shrink: 0;
  transition: all 200ms var(--ease);
}

.mode-option input[type="radio"]:hover {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(201, 122, 92, 0.1);
}

.mode-option input[type="radio"]:checked {
  background: var(--terracotta);
  border-color: var(--terracotta);
  box-shadow: inset 0 0 0 3px white;
}

.mode-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mode-label strong {
  color: var(--text-dark);
  font-size: 14px;
}

.mode-label small {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 400;
}

.mode-option:has(input:checked) {
  border-color: var(--terracotta);
  background: rgba(201, 122, 92, 0.05);
}

.form-final-text {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

.booking-scarcity {
  max-width: 700px;
  margin: 40px auto 0;
  padding: 20px 25px;
  background: rgba(201, 122, 92, 0.06);
  border-left: 4px solid var(--terracotta);
  text-align: left;
  border-radius: 0;
}

.booking-scarcity p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .booking-assurance {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px;
  }

  .form-step {
    padding: 20px;
  }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-nature {
  background: white;
  padding: 120px 40px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--cream);
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  padding: 48px;
  text-align: center;
  transition: all 400ms var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, var(--cream), rgba(123, 168, 159, 0.08));
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  font-family: 'Lora', serif;
  font-weight: 600;
  color: var(--terracotta);
  font-size: 14px;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-nature {
  background: var(--cream);
  padding: 120px 40px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.faq-nature h2 {
  text-align: center;
  margin-bottom: 50px;
}

.faq-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 14px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item-nature {
  background: white;
  border-radius: 30px;
  overflow: hidden;
}

.faq-header-nature {
  width: 100%;
  padding: 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 300ms var(--ease);
  font-size: 15px;
}

.faq-header-nature:hover {
  background: rgba(201, 122, 92, 0.08);
  color: var(--terracotta);
}

.faq-content-nature {
  display: none;
  padding: 0 24px 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-content-nature.active {
  display: block;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-nature {
  background: white;
  padding: 120px 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  transition: all 300ms var(--ease);
  text-decoration: none;
  padding: 12px;
  margin: -12px;
  cursor: pointer;
}

.contact-item:hover {
  color: var(--terracotta);
}

.contact-item:focus {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
  border-radius: 8px;
}

.contact-icon {
  font-size: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  flex-shrink: 0;
}

.contact-form-nature {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form-nature > div {
  display: flex;
  flex-direction: column;
}

.contact-form-nature input,
.contact-form-nature textarea {
  padding: 14px 20px;
  border: 2px solid #E8E0D4;
  border-radius: 20px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  transition: all 300ms var(--ease);
}

.contact-form-nature input::placeholder,
.contact-form-nature textarea::placeholder {
  color: #a0aec0;
}

.contact-form-nature textarea {
  resize: vertical;
  min-height: 120px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   MODALS
   ============================================ */

.modal-nature {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-nature.active {
  display: flex;
}

.modal-nature {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  overflow-y: auto;
}

.modal-nature > div {
  display: none;
}

.modal-nature.active {
  background: rgba(0, 0, 0, 0.5);
}

.modal-blob-nature {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--sage);
  opacity: 0.05;
  border-radius: 50% 45% 52% 48% / 48% 52% 48% 52%;
  top: -150px;
  right: -150px;
  z-index: 0;
}

.modal-nature {
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-nature::before {
  content: '';
  position: absolute;
  width: 600px;
  max-width: 90vw;
  background: white;
  border-radius: 40px;
  padding: 50px;
  position: relative;
  z-index: 1001;
  max-height: 85vh;
  overflow-y: auto;
}

.modal-nature {
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal-nature.active {
  display: flex;
}

.modal-nature::after {
  content: '';
  position: absolute;
  width: 600px;
  max-width: 90vw;
  height: auto;
  background: white;
  border-radius: 40px;
  padding: 50px;
  z-index: 1001;
  max-height: 85vh;
  overflow-y: auto;
}

/* Proper modal style */
.modal-nature {
  all: unset;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-nature.active {
  display: flex;
}

.modal-nature {
  color: var(--text-dark);
  font-family: 'Raleway', sans-serif;
}

.modal-nature::before {
  content: none;
}

.modal-nature {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
}

.modal-nature > * {
  display: none;
}

.modal-nature.active > * {
  display: block;
}

/* Simpler approach */
.modal-nature {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  transition: opacity 300ms var(--ease);
}

.modal-nature.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.modal-nature h3 {
  font-size: 32px;
  margin-bottom: 8px;
  position: relative;
  z-index: 10;
}

.modal-nature .modal-subtitle {
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
  z-index: 10;
}

.modal-nature .modal-info {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
  position: relative;
  z-index: 10;
}

.modal-nature p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  position: relative;
  z-index: 10;
}

.modal-nature ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  position: relative;
  z-index: 10;
}

.modal-nature li {
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--text-muted);
  position: relative;
}

.modal-nature li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 700;
}

.modal-guarantee {
  padding: 12px;
  background: rgba(201, 122, 92, 0.08);
  border-radius: 20px;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 24px;
  font-size: 13px;
}

.modal-close-nature {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-muted);
  z-index: 11;
}

.modal-close-nature:hover {
  color: var(--terracotta);
}

.modal-nature {
  background: white;
  border-radius: 40px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  z-index: 1001;
}

/* ============================================
   FOOTER
   ============================================ */

.footer-nature {
  background: #F1F4EF;
  color: rgba(61, 53, 48, 0.95);
  padding: 80px 40px 40px;
}

.footer-nature .container-fluid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* Footer main content (left + right columns) */
.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(61, 53, 48, 0.15);
  align-items: flex-start;
}

/* Left column: Logo, tagline, socials */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo {
  font-family: 'Lora', serif;
  font-size: 32px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
  max-width: 280px;
}

/* Social icons grid */
.footer-socials {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  background: var(--terracotta);
  color: #0f172a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 300ms var(--ease);
  text-decoration: none;
  cursor: pointer;
}

.footer-socials a:focus {
  outline: 2px solid white;
  outline-offset: 2px;
}

.footer-socials a:hover {
  background: var(--sage);
  transform: translateY(-4px);
}

/* Right column: Contact info */
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-right h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  letter-spacing: 0.5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
}

.footer-contact-item i {
  font-size: 20px;
  color: var(--terracotta);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-item p {
  font-size: 14px;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.6;
  padding-top: 4px;
}

.footer-contact-item a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 300ms var(--ease);
}

.footer-contact-item a:visited {
  color: var(--text-dark);
}

.footer-contact-item a:hover {
  color: var(--terracotta);
  text-decoration: underline;
}

.footer-contact-item:focus {
  outline: 2px solid white;
  outline-offset: 2px;
  border-radius: 8px;
}
}

/* Bottom bar: Copyright */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(61, 53, 48, 0.15);
}

.footer-bottom-left {
  text-align: center;
  order: 2;
}

.footer-bottom-right {
  text-align: center;
  order: 1;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-dark);
  margin: 0;
  margin-bottom: 12px;
}

.footer-bottom a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 300ms var(--ease);
}

.footer-bottom a:hover {
  color: var(--terracotta);
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-nature {
    padding: 60px 20px 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .footer-tagline {
    max-width: none;
  }

  .footer-right {
    gap: 20px;
  }

  .footer-logo {
    font-size: 22px;
  }

  .footer-right h4 {
    font-size: 16px;
  }

  .footer-socials {
    justify-content: flex-start;
  }
}


@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-blob-1, .hero-blob-2 {
    opacity: 0.15;
  }

  .container-fluid {
    padding: 0 20px;
  }
}

  /* Mobile form improvements */
  .booking-form-nature input,
  .booking-form-nature select,
  .booking-form-nature textarea,
  .contact-form-nature input,
  .contact-form-nature textarea {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 16px 16px;
  }

  .booking-form-nature label,
  .contact-form-nature label {
    font-size: 15px;
  }

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

  /* Touch target sizes */
  .btn-nature-primary,
  .btn-nature-secondary {
    min-height: 48px;
    min-width: 120px;
    padding: 14px 32px;
  }

  .modal-nature {
    padding: 20px;
  }

  .soin-card {
    padding: 28px;
  }

  .testimonial-card {
    padding: 32px;
  }
}

/* ============================================
   CALENDLY FLOATING BUBBLE
   ============================================ */

.calendly-bubble {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--terracotta);
  border: none;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(201, 122, 92, 0.25);
  transition: all 300ms var(--ease);
  z-index: 100;
  text-decoration: none;
  color: white;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 600;
  gap: 0;
  opacity: 1;
  transform: scale(1);
  letter-spacing: 0.3px;
}

.calendly-bubble:hover {
  background: #b86e50;
  box-shadow: 0 16px 40px rgba(201, 122, 92, 0.35);
  transform: translateY(-4px);
}

.calendly-bubble:active {
  transform: scale(0.98);
}

.bubble-text {
  display: block;
  text-align: center;
}

.bubble-arrow {
  position: absolute;
  bottom: -8px;
  right: 24px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 0px solid transparent;
  border-top: 8px solid var(--terracotta);
  transition: all 300ms var(--ease);
}

.calendly-bubble:hover .bubble-arrow {
  border-top-color: #b86e50;
}

@media (max-width: 768px) {
  .calendly-bubble {
    bottom: 24px;
    right: 24px;
    padding: 14px 20px;
    font-size: 13px;
  }

  .bubble-arrow {
    right: 20px;
    border-left-width: 6px;
    border-top-width: 6px;
  }
}
