/* 
=========================================
  NOURISH & FLOW - STYLESHEET
  Premium Organic Wellness Aesthetic
=========================================
*/

/* --- DESIGN TOKENS --- */
:root {
  /* Color Palette */
  --bg-base: #faf8f5;
  --bg-card: rgba(255, 255, 255, 0.75);
  --border-glass: rgba(40, 84, 48, 0.08);
  --border-focus: rgba(40, 84, 48, 0.3);
  
  --forest-dark: #122416;
  --forest-muted: #2d4232;
  --sage-primary: #285430;
  --sage-light: #5f8d4e;
  --sage-soft: #e9eff5;
  
  --terracotta: #d27653;
  --terracotta-light: #fbeee8;
  --gold: #cfa83c;
  --gold-light: #fcf6e8;
  
  --text-main: #1c2b1f;
  --text-muted: #536456;
  --white: #ffffff;
  
  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-quick: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Shadows */
  --shadow-sm: 0 4px 20px -8px rgba(18, 36, 22, 0.04);
  --shadow-md: 0 12px 36px -12px rgba(18, 36, 22, 0.06);
  --shadow-lg: 0 24px 64px -16px rgba(18, 36, 22, 0.08);
  --shadow-inset: inset 0 2px 8px rgba(18, 36, 22, 0.04);
}

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

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

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

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

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

/* --- TYPOGRAPHY & BUTTONS --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--forest-dark);
  font-weight: 600;
  line-height: 1.2;
}

em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--sage-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 99px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  outline: none;
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  background-color: var(--sage-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(40, 84, 48, 0.15);
}

.btn-secondary {
  background-color: transparent;
  color: var(--sage-primary);
  border-color: rgba(40, 84, 48, 0.25);
}

.btn-secondary:hover {
  background-color: rgba(40, 84, 48, 0.04);
  border-color: var(--sage-primary);
  transform: translateY(-2px);
}

.btn-nav {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  background-color: var(--sage-primary);
  color: var(--white);
}

.btn-nav:hover {
  background-color: var(--sage-light);
  box-shadow: 0 4px 12px rgba(40, 84, 48, 0.12);
}

.btn-full {
  width: 100%;
}

.btn-icon {
  width: 1.1rem;
  height: 1.1rem;
  transition: var(--transition-quick);
}

.btn:hover .btn-icon {
  transform: translateX(3px);
}

/* --- STRUCTURE & LAYOUT --- */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.bg-glass {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-md);
  border-radius: 24px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--sage-light);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.25rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 1.25rem 0;
}

.navbar.scrolled {
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(18, 36, 22, 0.03);
}

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

.logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--forest-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-dot {
  width: 0.6rem;
  height: 0.6rem;
  background-color: var(--terracotta);
  border-radius: 50%;
  display: inline-block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--sage-light);
  transition: var(--transition-quick);
}

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

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--forest-dark);
}

/* --- HERO --- */
.hero-section {
  padding-top: 10rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--sage-soft);
  color: var(--sage-primary);
  padding: 0.5rem 1.25rem;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(40, 84, 48, 0.05);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--forest-dark);
}

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

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

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

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--forest-dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 2.5rem;
  background-color: rgba(18, 36, 22, 0.08);
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-blob-bg {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(95, 141, 78, 0.08) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.hero-image-card {
  position: relative;
  border-radius: 36px 36px 0 36px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.6);
  aspect-ratio: 4/5;
  width: 100%;
  background-color: #eae7e2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.hero-image-card:hover .hero-image {
  transform: scale(1.03);
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 1rem 1.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-overlay-card {
  bottom: 2rem;
  left: 2rem;
  animation: floatCard 6s ease-in-out infinite;
}

.avatar-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--sage-soft);
  color: var(--sage-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.floating-card-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.floating-card-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--forest-dark);
}

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

/* --- PILLARS GRID --- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar-card {
  padding: 2.5rem;
  border-radius: 28px;
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(40, 84, 48, 0.15);
  box-shadow: var(--shadow-lg);
}

.pillar-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.text-emerald {
  background-color: var(--sage-soft);
  color: var(--sage-primary);
}

.text-terracotta {
  background-color: var(--terracotta-light);
  color: var(--terracotta);
}

.text-gold {
  background-color: var(--gold-light);
  color: var(--gold);
}

.pillar-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.pillar-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- CALCULATOR --- */
.calc-section {
  padding: 4rem 0;
}

.calc-card-container {
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(18, 36, 22, 0.04);
  overflow: hidden;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.calc-inputs-panel {
  padding: 4.5rem;
  background-color: var(--bg-base);
}

.panel-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--terracotta);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.panel-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.panel-desc {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
}

.flex-1 {
  flex: 1;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest-muted);
}

.radio-pill-group {
  display: flex;
  background-color: rgba(18, 36, 22, 0.04);
  padding: 0.25rem;
  border-radius: 99px;
  border: 1px solid rgba(18, 36, 22, 0.02);
}

.radio-pill {
  flex: 1;
  text-align: center;
  cursor: pointer;
}

.radio-pill input {
  display: none;
}

.radio-pill span {
  display: block;
  padding: 0.6rem 0;
  border-radius: 99px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition-quick);
}

.radio-pill input:checked + span {
  background-color: var(--white);
  color: var(--sage-primary);
  box-shadow: var(--shadow-sm);
}

.calc-form input[type="number"],
.calc-form select,
.interactive-form input,
.interactive-form select,
.interactive-form textarea {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(18, 36, 22, 0.1);
  background-color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--forest-dark);
  transition: var(--transition-quick);
  outline: none;
}

.calc-form input:focus,
.calc-form select:focus,
.interactive-form input:focus,
.interactive-form select:focus,
.interactive-form textarea:focus {
  border-color: var(--sage-primary);
  box-shadow: 0 0 0 4px rgba(40, 84, 48, 0.08);
}

/* Results Panel */
.calc-results-panel {
  padding: 4.5rem;
  background-color: var(--forest-dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.results-placeholder {
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
}

.placeholder-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.results-placeholder h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.results-placeholder p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

.results-display {
  animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hidden {
  display: none !important;
}

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

.results-heading {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.calorie-display-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 1.75rem;
  text-align: center;
  margin-bottom: 2rem;
}

.calorie-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

.calorie-value {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  display: block;
}

.calorie-unit {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.results-intro {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.macros-breakdown {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.macro-bar-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.macro-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 500;
}

.macro-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  display: inline-block;
}

.dot-protein { background-color: var(--sage-light); }
.dot-fats { background-color: var(--gold); }
.dot-carbs { background-color: var(--terracotta); }

.macro-val {
  font-weight: 600;
}

.progress-track {
  width: 100%;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 99px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  width: 0;
}

.fill-protein { background-color: var(--sage-light); }
.fill-fats { background-color: var(--gold); }
.fill-carbs { background-color: var(--terracotta); }

.macro-kcal {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  align-self: flex-end;
}

.water-target {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.water-icon {
  color: #3b82f6;
  width: 1.5rem;
  height: 1.5rem;
}

.water-title {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  text-transform: uppercase;
}

.water-value {
  font-size: 0.95rem;
  font-weight: 600;
}

/* --- PACKAGES --- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.package-card {
  background: var(--white);
  border-radius: 28px;
  border: 1px solid rgba(18, 36, 22, 0.05);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(40, 84, 48, 0.1);
}

.package-card.recommended {
  border: 2px solid var(--sage-primary);
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.package-card.recommended:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.recommended-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--sage-primary);
  color: var(--white);
  padding: 0.4rem 1.25rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.package-name {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.package-pitch {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.package-price {
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  color: var(--forest-dark);
}

.package-price .currency {
  font-size: 1.5rem;
  font-weight: 500;
  margin-right: 0.15rem;
}

.package-price .amount {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}

.package-price .period {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
}

.package-divider {
  border: 0;
  height: 1px;
  background-color: rgba(18, 36, 22, 0.08);
  margin-bottom: 2rem;
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.4;
}

.package-features li i {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.package-features li i[data-lucide="check"] {
  color: var(--sage-light);
}

.package-features li i[data-lucide="x"] {
  color: rgba(18, 36, 22, 0.2);
}

.package-features li.disabled {
  color: var(--text-muted);
  opacity: 0.5;
}

/* --- CALLOUT SECTION --- */
.callout-section {
  padding: 4rem 0;
}

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

.callout-image-panel {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-color: #eae7e2;
}

.callout-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.callout-image-panel:hover .callout-img {
  transform: scale(1.02);
}

.callout-content-panel {
  display: flex;
  flex-direction: column;
}

.callout-badge {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.callout-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.callout-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.callout-checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.check-icon {
  color: var(--terracotta);
  width: 1.25rem;
  height: 1.25rem;
}

/* --- TESTIMONIALS --- */
.testimonials-section {
  padding: 6rem 0;
}

.testimonial-slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.testimonial-slide {
  flex-shrink: 0;
  width: 100%;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
  opacity: 1;
}

.testimonial-quote {
  position: relative;
  margin-bottom: 2rem;
}

.quote-icon {
  position: absolute;
  top: -1.5rem;
  left: -2rem;
  width: 3.5rem;
  height: 3.5rem;
  color: var(--sage-soft);
  z-index: -1;
  transform: rotate(180deg);
}

.testimonial-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  line-height: 1.6;
  color: var(--forest-dark);
  font-weight: 500;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest-dark);
}

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

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.slider-btn {
  background: var(--white);
  border: 1px solid rgba(18, 36, 22, 0.08);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--forest-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-quick);
}

.slider-btn:hover {
  background-color: var(--sage-primary);
  color: var(--white);
  border-color: var(--sage-primary);
  transform: scale(1.05);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: rgba(18, 36, 22, 0.1);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-quick);
}

.slider-dot.active {
  background-color: var(--sage-primary);
  transform: scale(1.25);
  border-radius: 99px;
  width: 1.25rem;
}

/* --- BOOKING SECTION --- */
.booking-section {
  padding: 6rem 0;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: flex-start;
}

.booking-info {
  display: flex;
  flex-direction: column;
}

.contact-details {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.contact-icon-wrapper {
  width: 2.75rem;
  height: 2.75rem;
  background-color: var(--sage-soft);
  color: var(--sage-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon-wrapper i {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--forest-dark);
}

.contact-link:hover {
  color: var(--sage-light);
}

.booking-form-wrapper {
  padding: 3.5rem;
}

.form-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

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

.interactive-form textarea {
  resize: vertical;
}

/* Form Success State */
.form-success-state {
  text-align: center;
  padding: 2rem 0;
  animation: scaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.success-icon-wrapper {
  color: var(--sage-primary);
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.5rem auto;
}

.success-icon-wrapper i {
  width: 100%;
  height: 100%;
}

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

.form-success-state p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* --- FOOTER --- */
.main-footer {
  background-color: var(--forest-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 5rem 0 3rem 0;
  font-size: 0.95rem;
}

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

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

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.brand-text {
  max-width: 320px;
  line-height: 1.6;
  font-size: 0.9rem;
}

.footer-header {
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-family: var(--font-sans);
}

.footer-links-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links-group a {
  font-size: 0.9rem;
  transition: var(--transition-quick);
}

.footer-links-group a:hover {
  color: var(--white);
  padding-left: 3px;
}

.footer-divider {
  border: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.copyright {
  font-size: 0.85rem;
}

.disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    max-width: 480px;
    margin: 0 auto;
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .calc-grid {
    grid-template-columns: 1fr;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .package-card.recommended {
    transform: none;
  }
  
  .package-card.recommended:hover {
    transform: translateY(-8px);
  }
  
  .callout-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; /* Can be enabled with mobile toggle */
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav-cta {
    display: none;
  }
  
  .navbar {
    padding: 1rem 0;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  
  .stat-divider {
    display: none;
  }
  
  .calc-inputs-panel,
  .calc-results-panel,
  .booking-form-wrapper {
    padding: 2.5rem 1.5rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .section-container {
    padding: 4rem 1.5rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
  .section-container {
    padding: 3rem 1rem;
  }
}
