:root {
  /* Global Layout */
  --navbar-height: 90px;

  /* Premium Wellness Retreat Palette */
  --bg-primary: #FDF8F5;
  /* Bright, airy off-white */
  --bg-secondary: #FAE6D6;
  /* Soft beige */
  --bg-sage: #F2EDE4;
  /* Light tinted neutral */
  --bg-clay: #EEDCCB;
  /* Muted beige */

  --text-dark: #2D2D2D;
  /* Deep gray, not black */
  --text-light: #4B5563;
  /* Soft gray for body */
  --text-accent: #76806D;
  /* Muted green for highlights/icons */
  --accent-color: #1F3D2B;
  /* Deep green for CTA */

  --color-gold: #D6A75F;
  --color-terracotta: #C47A5A;

  --border-soft: rgba(45, 45, 45, 0.08);

  /* Typography */
  --font-sans: 'Satoshi', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing System (8px Intentional Grid) */
  --space-xs: 8px;
  --space-sm: 24px;
  --space-md: 64px;
  --space-lg: 96px;
  --space-xl: 128px;
  --space-xxl: 160px;

  --container-width: 1024px;
  --container-narrow: 900px;
  /* Updated to ~900px as requested */

  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 40px;

  /* Spacing Grid (Legal/Content) */
  --content-width: 800px;
  --legal-spacing: 48px;

  /* Micro-interactions */
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  /* Apple-like ease */
  --transition-fast: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 0px;
  /* Aligned with floating navbar */
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  padding-top: 0px;
  /* Offset for floating navbar */
  color: var(--text-light);
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Editorial Scale */
h1,
h2,
h3,
h4 {
  font-family: var(--font-sans);
  color: var(--text-dark);
  font-weight: 400;
}

h1 {
  font-size: clamp(3.5rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin-bottom: 32px;
  font-weight: 600;
  /* Increased prominence */
}

h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-wrap: balance;
  margin-bottom: 24px;
  font-weight: 500;
}

h3 {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  font-weight: 500;
}

h1,
h2,
h3 {
  margin-bottom: 24px;
  text-align: left;
}

p {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.8;
  max-width: 560px;
  /* Reduced for better reading */
}

p.lead {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: var(--text-dark);
  line-height: 1.6;
  letter-spacing: -0.01em;
}

p.emotional-statement {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: var(--space-md) 0;
}

.label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-accent);
  margin-bottom: 1rem;
}

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

a:hover {
  opacity: 0.6;
}

.link-underline {
  position: relative;
  display: inline-block;
}

.link-underline::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: currentColor;
  transform-origin: bottom right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.link-underline:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Layout & Zones */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
  /* Consistent 24px padding */
}

/* Paragraph constraints for better readability */
.container-narrow p,
.container-narrow p.lead,
.container-narrow .emotional-desc {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.container-narrow h1,
.container-narrow h2,
.container-narrow h3,
.container-narrow .label {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* "Zones" for Section Rhythm */
.zone {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.zone-tinted {
  background-color: var(--bg-secondary);
}

.zone-sage {
  background-color: var(--bg-sage);
}

/* Navbar */
/* Premium Floating Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 2rem;
  height: 72px;
  /* Premium floating compact height */
  background: rgba(253, 248, 245, 0.85);
  /* Translucent calming off-white */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: 20px;
  border-radius: 100px;
  position: fixed;
  width: calc(100% - 48px);
  max-width: var(--container-width);
  top: 24px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1000;
  box-sizing: border-box;
  box-shadow: 0 10px 30px rgba(45, 45, 45, 0.03), 0 1px 2px rgba(45, 45, 45, 0.02);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, height 0.3s ease, top 0.3s ease;
}

/* Scrolled state for navbar */
.navbar.scrolled {
  background: rgba(253, 248, 245, 0.85);
  box-shadow: 0 20px 40px rgba(45, 45, 45, 0.06), 0 1px 3px rgba(45, 45, 45, 0.02);
  border-color: rgba(45, 45, 45, 0.12);
  height: 64px;
  /* More compact on scroll */
  top: 16px;
}

/* Hidden state when scrolling down */
.navbar.nav-hidden {
  transform: translate(-50%, -150px);
  opacity: 0;
  pointer-events: none;
}

.nav-brand {
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1001;
  /* Keep above overlay */
}

.nav-brand img {
  height: 44px !important;
  /* Constrain inline style height to fit navbar */
  width: auto;
  transition: height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled .nav-brand img {
  height: 38px !important;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  position: relative;
  z-index: 1000;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent-color);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::before,
.nav-links a.active::before {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-color);
  opacity: 1;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1001;
  /* Keep above mobile full-screen overlay */
  gap: 6px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

/* Animations & Panel Reveal */
.panel {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.panel.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.center {
  text-align: center;
}

.section-header {
  margin-bottom: var(--space-md);
}

.section-header.center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-global {
  text-align: center;
  padding: 120px 24px;
  /* Balanced vertical and horizontal padding */
  background: radial-gradient(circle at top, var(--bg-sage) 0%, var(--bg-primary) 100%);
  border-radius: var(--radius-lg);
  margin: 120px auto;
  border: 1px solid var(--border-soft);
  max-width: var(--container-narrow);
  /* Same 900px max width */
}

.cta-global h2 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  text-align: center;
  margin-bottom: 24px;
}

.cta-global p {
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  padding: 16px 32px;
  border-radius: 999px;
  background: var(--accent-color);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 20px rgba(31, 61, 43, 0.25);
}

.btn-large {
  padding: 20px 48px;
  font-size: 1.15rem;
}

.btn-ghost {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 999px;
  border: 1px solid var(--text-accent);
  color: var(--text-accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(118, 128, 109, 0.05);
  border-color: var(--text-accent);
  color: var(--accent-color);
}

section {
  padding: 160px 20px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

section+section {
  margin-top: 120px;
}

/* Watermark Logo */
.has-watermark {
  position: relative;
  overflow: hidden;
}

.watermark-logo {
  position: absolute;
  width: 400px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

/* -----------------------------------
   SPECIFIC SECTIONS
------------------------------------ */

/* Hero Immersive */
.hero-immersive {
  min-height: 100vh;
  padding-top: 0px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0px;
  padding-bottom: 80px;
  text-align: center;
  justify-content: center;
}

/* Hero background image (non-destructive pseudo-element) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../assets/images/herobg.png') no-repeat center center;
  background-size: cover;
  opacity: 1;
  filter: brightness(1.05) contrast(0.95);
  z-index: 0;
}

/* Soft light overlay for calm aesthetic */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.45);
  z-index: 0;
}

/* Keep all hero children above both overlays */
.hero>* {
  position: relative;
  z-index: 1;
}


.hero-mesh {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle at 50% 20%, var(--bg-sage) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, var(--bg-clay) 0%, transparent 50%),
    var(--bg-primary);
  opacity: 0.6;
  z-index: -1;
  filter: blur(100px);
  animation: breathing 15s infinite alternate ease-in-out;
}

@keyframes breathing {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.05) translate(2%, 2%);
  }
}

.hero-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  margin-bottom: 16px;
  /* Tightened from 24px */
  text-align: center;
  color: #2d2d2d;
}

.hero-content p,
.hero-content p.lead {
  text-align: center;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: #4b5563;
  margin-bottom: 32px;
  /* Tightened from 40px */
  max-width: 500px;
  /* Reduced specific width */
}



.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Trust Strip */
.trust-strip {
  padding: 40px 20px;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: var(--space-md);
  background: rgba(255, 255, 255, 0.4);
}

.trust-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.trust-item .stars {
  color: var(--color-gold);
  letter-spacing: 2px;
  font-size: 1.1rem;
}

/* Step Cards */
.step-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: var(--space-sm);
}

.step-card {
  background: #fff;
  padding: 3.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  border: 1px solid var(--border-soft);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.step-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--text-accent);
}

.step-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.step-card p {
  margin-bottom: 0;
  font-size: 1.05rem;
  color: var(--text-light);
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.benefit-card {
  padding: 2.5rem;
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: var(--bg-secondary);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.benefit-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.benefit-card p {
  font-size: 1.1rem;
  color: var(--text-light);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: #fff;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
  border: 1px solid rgba(0, 0, 0, 0.05);
  /* Added subtle border */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p.quote {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.testimonial-card .author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-card .author strong {
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-card .author span {
  font-size: 0.85rem;
  color: #999;
}

/* Emotional Section */
.emotional-section {
  padding: var(--space-md) 20px;
}

.cta-microcopy {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 24px 0;
  color: var(--text-light);
  font-size: 0.9rem;
  flex-wrap: wrap;
}

/* Immersive CTA */
.cta-immersive {
  text-align: center;
  padding: var(--space-xxl) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Refined Footer (Standardized) */
footer {
  padding: 8rem 0 4rem;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.footer-nav {
  display: flex;
  gap: 3rem;
  margin-bottom: 1rem;
}

.footer-nav a {
  color: var(--text-light);
  font-size: 1rem;
}

.footer-nav a:hover {
  color: var(--text-dark);
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.footer-divider {
  width: 40px;
  height: 1px;
  background: var(--border-soft);
  margin-bottom: 2rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-accent);
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.footer-legal:hover {
  opacity: 1;
}

.footer-legal a {
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--text-dark);
}

/* Legal Page Specifics */
.legal-layout {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: var(--space-xl) 2rem;
  animation: pageFadeIn 1s ease-out;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.legal-header {
  margin-bottom: var(--space-lg);
}

.legal-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.legal-date {
  font-size: 0.9rem;
  color: var(--text-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-content h2 {
  font-size: 1.75rem;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
}

.legal-content p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 100%;
}

.legal-content ul {
  list-style: none;
  margin-bottom: 2.5rem;
}

.legal-content li {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.legal-content li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--text-accent);
}

/* Scroll Progress indicator */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 9999;
}

.scroll-progress-bar {
  height: 100%;
  background: var(--accent-color);
  width: 0%;
  transition: width 0.1s ease;
}


/* Content Blocks for Subpages */
.page-header {
  padding: var(--space-xl) 0 var(--space-md);
}

.editorial-block {
  max-width: 800px;
  padding-bottom: var(--space-xl);
}

.editorial-block p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-section-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-card {
  background-color: var(--bg-sage);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border-soft);
  text-align: left;
}

.contact-card h2 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 32px;
  text-align: left;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-details-list .detail-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-details-list .label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-accent);
  margin-bottom: 0;
}

.contact-details-list .detail-link {
  font-size: 1.1rem;
  color: var(--text-light);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.contact-details-list .detail-link:hover {
  opacity: 0.6;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.contact-form label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}

.contact-form label .required {
  color: var(--text-accent);
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background-color: var(--bg-primary);
  color: var(--text-dark);
  transition: all var(--transition-fast);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(35, 34, 32, 0.2);
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(35, 34, 32, 0.02);
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(37, 211, 102, 0.85);
  /* Slightly muted and transparent */
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 12px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.1);
}

/* Services Detail Pages */
.service-detail-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 4rem 24px;
  margin: 0 auto var(--space-md) auto;
  max-width: var(--container-narrow);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Centered relative to container */
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.service-detail-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
  text-align: center;
}

.service-detail-card .emotional-desc {
  font-size: 1.25rem;
  color: var(--text-light);
  margin: 0 auto 32px auto;
  max-width: 650px;
  line-height: 1.6;
  text-align: center;
}

.service-detail-card .benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto 48px auto;
  list-style: none;
  text-align: left;
  width: 100%;
  max-width: 500px;
}

.service-detail-card .benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.15rem;
}

.service-detail-card .benefits-list li::before {
  content: "✓";
  color: var(--accent-color);
  font-weight: bold;
}

/* About Storytelling */
.about-story {
  max-width: 900px;
  margin: 0 auto;
}

.about-story section {
  padding: var(--space-md) 20px;
}

.about-story h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 2rem;
}

.about-story p {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--text-dark);
  max-width: none;
}

/* Blog Additions */
.blog-featured {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  margin-bottom: var(--space-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform var(--transition-slow);
}

.blog-featured:hover {
  transform: translateY(-4px);
}

.blog-featured h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin: 1rem 0;
}

.blog-featured p {
  font-size: 1.25rem;
  max-width: 800px;
}

.blog-meta {
  font-size: 0.9rem;
  color: var(--text-accent);
  margin-bottom: 16px;
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {

  .step-cards,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --space-xxl: 8rem;
    --space-xl: 6rem;
    --space-lg: 4rem;
    --space-md: 2.5rem;
  }

  body {
    padding-top: 96px;
  }

  html {
    scroll-padding-top: 96px;
  }

  section {
    padding: 60px 16px;
  }

  h1 {
    font-size: 36px;
  }

  .navbar {
    top: 16px;
    width: calc(100% - 32px);
    padding: 0.5rem 1.25rem;
    height: 64px;
  }

  .navbar.scrolled {
    height: 58px;
    top: 12px;
  }

  .nav-brand img {
    height: 36px !important;
  }

  .navbar.scrolled .nav-brand img {
    height: 32px !important;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(253, 248, 245, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
    display: flex;
  }

  .nav-links a {
    font-size: 2rem !important;
    font-weight: 500;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-dark) !important;
  }

  .nav-links.active a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.active a:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-links.active a:nth-child(2) {
    transition-delay: 0.15s;
  }

  .nav-links.active a:nth-child(3) {
    transition-delay: 0.2s;
  }

  .nav-links.active a:nth-child(4) {
    transition-delay: 0.25s;
  }

  .nav-links.active a:nth-child(5) {
    transition-delay: 0.3s;
  }

  .nav-links.active a:nth-child(6) {
    transition-delay: 0.35s;
  }

  .menu-toggle {
    display: flex;
    cursor: pointer;
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }

  .step-cards,
  .testimonials-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-card {
    padding: 2.5rem 1.5rem;
  }

  .blog-featured {
    padding: 2.5rem 1.5rem;
  }

  .trust-container {
    gap: 1.5rem;
    flex-direction: column;
  }

  .contact-grid-2col {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-card {
    padding: 32px 24px;
  }

  .cta-microcopy {
    flex-direction: column;
    gap: 12px;
  }

  footer {
    flex-direction: column;
    gap: 3rem;
  }

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

/* Premium Animations & Interactions */

/* Dynamic Stagger Reveal */
.stagger-reveal>* {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-reveal.is-visible>* {
  opacity: 1;
  transform: translateY(0);
}

/* Card Zoom/Lift effects */
.step-card,
.benefit-card,
.testimonial-card,
.blog-card,
.blog-featured,
.contact-card,
.service-detail-card {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease !important;
}

.step-card:hover {
  transform: translateY(-8px) scale(1.01) !important;
  box-shadow: 0 20px 40px rgba(45, 45, 45, 0.05) !important;
  border-color: rgba(45, 45, 45, 0.12) !important;
}

.benefit-card:hover {
  transform: translateY(-6px) scale(1.01) !important;
}

.testimonial-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 32px rgba(45, 45, 45, 0.04) !important;
  border-color: rgba(45, 45, 45, 0.1) !important;
}

.blog-card:hover {
  transform: translateY(-8px) scale(1.005) !important;
  box-shadow: 0 20px 40px rgba(45, 45, 45, 0.05) !important;
  border-color: rgba(45, 45, 45, 0.12) !important;
}

.blog-featured:hover {
  transform: translateY(-8px) scale(1.005) !important;
  box-shadow: 0 20px 40px rgba(45, 45, 45, 0.05) !important;
  border-color: rgba(45, 45, 45, 0.12) !important;
}

.service-detail-card:hover {
  transform: translateY(-6px) scale(1.005) !important;
  box-shadow: 0 20px 40px rgba(45, 45, 45, 0.05) !important;
  border-color: rgba(45, 45, 45, 0.12) !important;
}

.contact-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 32px rgba(45, 45, 45, 0.04) !important;
}

/* Card Inner Icon Hover effects */
.step-card .step-icon {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease, color 0.4s ease;
}

.step-card:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
  background-color: var(--accent-color);
  color: #fff;
}

/* Benefit Card Icon Hover effects */
.benefit-card .benefit-icon {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.08) translateY(-4px);
}

/* Button Hover interactions */
.btn-primary {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease !important;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow: 0 12px 24px rgba(31, 61, 43, 0.2) !important;
  background-color: #172F21 !important;
  /* Slightly deeper green */
}

.btn-ghost {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
}

.btn-ghost:hover {
  transform: translateY(-3px) scale(1.03) !important;
  background: rgba(118, 128, 109, 0.08) !important;
  color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
}

/* Watermark Logo hover drift */
.watermark-logo {
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.has-watermark:hover .watermark-logo {
  transform: rotate(20deg) scale(1.05) translate(5px, -5px) !important;
  opacity: 0.05 !important;
}

/* Global hover transition helpers */
a,
button,
.menu-toggle span {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Image/element scale-on-hover */
.img-hover-scale,
.scale-hover img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-hover-scale:hover,
.scale-hover:hover img {
  transform: scale(1.04);
}

/* Contact Page Redesign */
.contact-redesign-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: stretch;
  margin-top: 40px;
}

.contact-form-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 600px;
  height: 100%;
  box-shadow: 0 20px 40px rgba(45, 45, 45, 0.03), 0 1px 3px rgba(45, 45, 45, 0.01);
  border: 1px solid var(--border-soft);
}

.contact-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-image-wrapper:hover img {
  transform: scale(1.04);
}

.contact-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(253, 248, 245, 0.25), transparent);
  pointer-events: none;
}

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

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

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

.input-group-redesign label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-accent);
  margin-bottom: 0.25rem;
}

.input-group-redesign input,
.input-group-redesign textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 1.15rem 1.4rem;
  border: 1px solid rgba(45, 45, 45, 0.08);
  border-radius: 16px;
  background-color: #ffffff;
  color: var(--text-dark);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.input-group-redesign input:focus,
.input-group-redesign textarea:focus {
  border-color: var(--accent-color);
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(31, 61, 43, 0.04);
}

.contact-details-strip {
  display: flex;
  gap: 3.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-soft);
  flex-wrap: wrap;
}

.details-strip-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.details-strip-item .label {
  margin-bottom: 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.details-strip-item a,
.details-strip-item span {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.3s ease;
}

.details-strip-item a:hover {
  color: var(--accent-color);
  opacity: 1;
}

/* Responsive Overrides for Redesigned Contact */
@media (max-width: 900px) {
  .contact-redesign-container {
    gap: 40px;
    grid-template-columns: 1fr;
  }

  .contact-image-wrapper {
    min-height: 400px;
    order: -1;
    /* Calming hero image on top for tablets/mobile */
  }

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