@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* HSL Tailored Color Palette */
  --primary: #052f23;        /* Deep Emerald */
  --primary-light: #0d4635;  /* Medium Emerald */
  --primary-dark: #021711;   /* Rich Deep Forest */
  --accent: #10b981;         /* Mint Green */
  --accent-light: #34d399;   /* Bright Mint */
  --accent-glow: rgba(16, 185, 129, 0.12);
  --bg-light: #f7faf8;       /* Minty Off-White */
  --text-dark: #0f172a;      /* Dark Slate */
  --text-light: #f8fafc;     /* Clean Off-White */
  --text-muted: #64748b;     /* Slate Gray */
  --text-emerald: #065f46;   /* Emerald Text */
  
  /* Glassmorphism Styles */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-bg-dark: rgba(5, 47, 35, 0.85);
  --glass-border: rgba(16, 185, 129, 0.12);
  --glass-shadow: 0 8px 32px 0 rgba(4, 47, 34, 0.05);
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --in-oklab: ;
  --in-oklch: ;
}

@supports (linear-gradient(in oklab, white, black)) {
  :root {
    --in-oklab: in oklab;
    --in-oklch: in oklch;
  }
}

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

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  outline: none;
}

/* Background Glow Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 75%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.glow-orb-1 {
  top: 5%;
  left: -10%;
  width: 400px;
  height: 400px;
}
.glow-orb-2 {
  top: 40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(5, 47, 35, 0.08) 0%, transparent 75%);
}
.glow-orb-3 {
  bottom: 10%;
  left: -5%;
  width: 350px;
  height: 350px;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--text-light);
  box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(16, 185, 129, 0.4);
}

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

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

.btn-light {
  background-color: var(--text-light);
  color: var(--primary);
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.05);
}

.btn-light:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px);
}

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

/* Shrinking Fixed Header on Scroll */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
  background: transparent;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  padding: 0.75rem 0;
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.logo-leaf {
  color: var(--accent);
  width: 28px;
  height: 28px;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-light);
  position: relative;
  transition: var(--transition-fast);
}

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

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

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  width: 30px;
  height: 30px;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 9.5rem 0 5rem 0;
  background: radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 60%),
              radial-gradient(circle at 90% 80%, rgba(5, 47, 35, 0.03) 0%, transparent 50%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: var(--accent-glow);
  color: var(--text-emerald);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-title span {
  background: linear-gradient(135deg var(--in-oklch), var(--primary) 20%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

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

.trust-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

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

/* Before-and-After Slider */
.slider-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(4, 47, 34, 0.12);
  border: 4px solid var(--text-light);
  user-select: none;
}

.slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.slider-img-after {
  z-index: 1;
}

.slider-img-before {
  z-index: 2;
  /* clip-path is animated via JS using custom property --slider-pos */
  clip-path: polygon(0 0, var(--slider-pos, 50%) 0, var(--slider-pos, 50%) 100%, 0 100%);
}

.slider-bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--slider-pos, 50%);
  width: 4px;
  background-color: var(--text-light);
  z-index: 3;
  pointer-events: none; /* Let pointer drag inputs behind it */
  transform: translateX(-50%);
  box-shadow: 0 0 15px rgba(4, 47, 34, 0.4);
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(4, 47, 34, 0.3);
  border: 3px solid var(--text-light);
  pointer-events: none;
}

/* Transparent Range Input Overlay */
.slider-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 4;
  cursor: ew-resize;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}

.slider-label {
  position: absolute;
  bottom: 1.5rem;
  padding: 0.4rem 1rem;
  background: rgba(4, 47, 34, 0.7);
  backdrop-filter: blur(8px);
  color: var(--text-light);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 3;
  pointer-events: none;
}

.slider-label-before {
  left: 1.5rem;
}

.slider-label-after {
  right: 1.5rem;
}

/* Services Section */
.section {
  padding: 7rem 0;
  position: relative;
}

.section-bg-alt {
  background-color: #eef5f2;
}

.section-header {
  max-width: 650px;
  margin: 0 auto 4rem auto;
  position: relative;
  z-index: 1;
}

.section-subtitle {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: var(--text-light);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(16, 185, 129, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(4, 47, 34, 0.06);
  border-color: var(--glass-border);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-box {
  width: 60px;
  height: 60px;
  background-color: var(--accent-glow);
  color: var(--accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.service-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.2rem 0;
  padding: 0;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.service-features-list li svg {
  color: var(--accent);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1.5rem;
  margin-top: auto;
}

.service-price {
  font-family: 'Outfit', sans-serif;
}

.price-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
}

.price-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.price-unit {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Pricing / Booking Calculator */
.calculator-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.calc-panel {
  background: var(--text-light);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--glass-border);
}

.calc-group {
  margin-bottom: 2.5rem;
}

.calc-label {
  display: block;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
}

.calc-services-select {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
}

.calc-service-btn {
  background-color: var(--bg-light);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary-light);
}

.calc-service-btn svg {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.calc-service-btn.active {
  border-color: var(--accent);
  background-color: var(--accent-glow);
  color: var(--text-emerald);
}

.calc-service-btn.active svg {
  color: var(--accent);
}

.calc-range-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calc-range-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

/* Custom styled Range Input */
.slider-control {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(16, 185, 129, 0.15);
  outline: none;
  transition: var(--transition-fast);
  cursor: pointer;
}

.slider-control::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
  border: 2px solid var(--text-light);
  transition: var(--transition-fast);
}

.slider-control::-webkit-slider-thumb:hover {
  transform: scale(1.25);
  background: var(--accent-light);
}

.calc-counter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.counter-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-light);
  padding: 0.6rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
}

.counter-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: var(--text-light);
  border: 1px solid rgba(0,0,0,0.08);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  color: var(--primary);
}

.counter-btn:hover {
  background-color: var(--accent);
  color: var(--text-light);
  border-color: var(--accent);
}

.counter-value {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  width: 30px;
  text-align: center;
}

.calc-addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.addon-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background-color: var(--bg-light);
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.03);
  transition: var(--transition-fast);
  user-select: none;
}

.addon-card:hover {
  border-color: rgba(16, 185, 129, 0.2);
  background-color: rgba(16, 185, 129, 0.02);
}

.addon-card input {
  display: none;
}

.addon-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.addon-checkbox::after {
  content: '\2713';
  color: var(--text-light);
  font-size: 0.75rem;
  display: none;
  font-weight: bold;
}

.addon-card input:checked + .addon-checkbox {
  background-color: var(--accent);
  border-color: var(--accent);
}

.addon-card input:checked + .addon-checkbox::after {
  display: block;
}

.addon-details {
  display: flex;
  flex-direction: column;
}

.addon-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-light);
}

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

/* Calculator Receipt */
.calc-receipt {
  background-color: var(--primary);
  color: var(--text-light);
  border-radius: 24px;
  padding: 3rem;
  position: sticky;
  top: 120px;
  box-shadow: 0 20px 40px rgba(4, 47, 34, 0.15);
}

.receipt-title {
  color: var(--text-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.receipt-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.receipt-divider {
  border-top: 2px dashed rgba(255, 255, 255, 0.15);
  margin: 1.5rem 0;
  height: 0;
}

.receipt-item.subtotal {
  padding-top: 0.5rem;
  margin-bottom: 2rem;
}

.receipt-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2.5rem;
}

.receipt-total-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}

.receipt-total-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
}

.receipt-btn {
  width: 100%;
}

.receipt-features {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.receipt-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.receipt-feature-item svg {
  color: var(--accent);
  width: 16px;
  height: 16px;
}

/* Receipt Barcode Design Accent */
.receipt-barcode {
  display: flex;
  justify-content: center;
  gap: 2px;
  height: 25px;
  margin-top: 2.5rem;
  opacity: 0.15;
}

.barcode-line {
  background-color: var(--text-light);
  width: 2px;
  height: 100%;
}

.barcode-line.wide {
  width: 4px;
}

.barcode-line.thin {
  width: 1px;
}

/* Eco Clean Grid Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.feature-box {
  background: var(--text-light);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(16, 185, 129, 0.04);
  transition: var(--transition-smooth);
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(4, 47, 34, 0.05);
  border-color: var(--glass-border);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent-glow);
  color: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Testimonials Carousel */
.testimonials-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 2rem;
  box-sizing: border-box;
  opacity: 0.3;
  transition: opacity 0.5s ease;
}

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

.testimonial-card {
  background-color: var(--text-light);
  border-radius: 24px;
  padding: 3.5rem;
  box-shadow: 0 15px 35px rgba(4, 47, 34, 0.04);
  border: 1px solid var(--glass-border);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 4rem;
  color: rgba(16, 185, 129, 0.1);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

.stars {
  display: flex;
  gap: 0.3rem;
  color: #fbbf24;
  margin-bottom: 1.5rem;
}

.stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.testimonial-text {
  font-size: 1.25rem;
  color: var(--primary-light);
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent-glow);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}

.client-name {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.05rem;
}

.client-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--text-light);
  border: 1px solid rgba(0,0,0,0.06);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  color: var(--primary);
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

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

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.3);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  width: 24px;
  border-radius: 4px;
  background-color: var(--accent);
}

/* Articles / Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  background-color: var(--text-light);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(16, 185, 129, 0.04);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(4, 47, 34, 0.06);
  border-color: var(--glass-border);
}

.blog-img-box {
  position: relative;
  aspect-ratio: 16 / 10;
  background-color: var(--primary-light);
  overflow: hidden;
}

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

.blog-card:hover .blog-img {
  transform: scale(1.08);
}

.blog-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--accent);
  color: var(--text-light);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
}

.blog-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex-grow: 1;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  gap: 1rem;
}

.blog-card h3 {
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--primary);
  transition: var(--transition-fast);
}

.blog-card:hover h3 {
  color: var(--accent);
}

.blog-excerpt {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.blog-link {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
}

.blog-link svg {
  transition: transform 0.2s;
}

.blog-card:hover .blog-link svg {
  transform: translateX(4px);
}

/* Dialog Booking Modal */
.dialog-modal {
  border: none;
  border-radius: 24px;
  padding: 3rem;
  max-width: 600px;
  width: 90%;
  margin: auto;
  box-shadow: 0 25px 50px -12px rgba(4, 47, 34, 0.25);
  background: var(--text-light);
  transition: var(--transition-smooth);
  transition: display 0.4s allow-discrete, overlay 0.4s allow-discrete, opacity 0.4s;
  opacity: 0;
}

.dialog-modal[open] {
  opacity: 1;
}

@starting-style {
  .dialog-modal[open] {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
}

.dialog-modal::backdrop {
  background: rgba(4, 47, 34, 0.4);
  backdrop-filter: blur(12px);
  transition: opacity 0.4s;
  opacity: 0;
}

.dialog-modal[open]::backdrop {
  opacity: 1;
}

@starting-style {
  .dialog-modal[open]::backdrop {
    opacity: 0;
  }
}

.dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.dialog-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--bg-light);
  transition: var(--transition-fast);
}

.dialog-close:hover {
  background-color: #fee2e2;
  color: #ef4444;
}

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

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

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

.form-group input, .form-group select, .form-group textarea {
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.1);
  background-color: var(--bg-light);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-receipt-summary {
  background-color: var(--bg-light);
  padding: 1.2rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  font-size: 0.85rem;
  color: var(--primary-light);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.summary-title {
  font-weight: 700;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.summary-detail {
  display: flex;
  justify-content: space-between;
}

.summary-total {
  border-top: 1px dotted rgba(0,0,0,0.1);
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  color: var(--primary);
}

/* Footer Section */
.footer {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 5rem 0 2rem 0;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 4rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-col h4 {
  color: var(--text-light);
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

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

.footer-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent-light);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.footer-contact-item svg {
  color: var(--accent);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.footer-newsletter-form input {
  flex-grow: 1;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background-color: rgba(255,255,255,0.05);
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-link {
  color: rgba(255,255,255,0.5);
  transition: var(--transition-fast);
}

.footer-legal-link:hover {
  color: var(--text-light);
}

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

.animate-fade-in {
  animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Scroll Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-content {
    align-items: center;
    text-align: center;
  }
  
  .hero-badge, .hero-actions {
    align-self: center;
  }
  
  .hero-description {
    margin: 0 auto;
  }
  
  .hero-trust {
    justify-content: center;
  }
  
  .slider-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .calculator-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .calc-receipt {
    position: static;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 1rem 0;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
  }
  
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--text-light);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }
  
  .nav.open {
    display: flex;
  }
  
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .header-cta {
    display: none;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .calc-panel {
    padding: 2rem 1.5rem;
  }
  
  .calc-counter-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
