/* ========================================
   IONATRIX GLOW - NATURE ORGANIC DESIGN
   CSS Reset & Base Styles
   ======================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.7;
  color: #2d3436;
  background-color: #f8f9f5;
  overflow-x: hidden;
}

/* ========================================
   NATURE ORGANIC COLOR PALETTE
   ======================================== */

:root {
  --primary-green: #2E7D32;
  --dark-green: #1b5e20;
  --light-green: #4caf50;
  --forest-green: #33691e;
  --accent-orange: #FF6F00;
  --warm-cream: #FFF3E0;
  --sage-green: #8d9f87;
  --earth-brown: #6d4c41;
  --soft-beige: #f5f1e8;
  --natural-white: #fefefe;
  --text-dark: #2d3436;
  --text-medium: #636e72;
  --shadow-soft: rgba(46, 125, 50, 0.1);
  --shadow-medium: rgba(46, 125, 50, 0.15);
}

/* ========================================
   TYPOGRAPHY - NATURE ORGANIC
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--forest-green);
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  color: var(--primary-green);
}

h4 {
  font-size: 18px;
  color: var(--dark-green);
}

p {
  margin-bottom: 16px;
  color: var(--text-dark);
}

a {
  color: var(--primary-green);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-orange);
}

strong {
  font-weight: 600;
  color: var(--dark-green);
}

/* ========================================
   LAYOUT CONTAINERS
   ======================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ========================================
   HEADER & NAVIGATION - ORGANIC STYLE
   ======================================== */

header {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.98) 0%, rgba(27, 94, 32, 0.98) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px var(--shadow-medium);
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05) rotate(-2deg);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--natural-white);
  font-weight: 500;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--warm-cream);
}

.main-nav a:hover::after {
  width: 60%;
}

.cta-button {
  background: var(--accent-orange);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 111, 0, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #e65100;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 111, 0, 0.4);
  color: white;
}

/* ========================================
   MOBILE MENU - HAMBURGER
   ======================================== */

.mobile-menu-toggle {
  display: none;
  background: var(--accent-orange);
  color: white;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  box-shadow: 0 4px 12px rgba(255, 111, 0, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  background: #e65100;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, var(--primary-green) 0%, var(--dark-green) 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  font-size: 32px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--accent-orange);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  color: white;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-left-color: var(--accent-orange);
  transform: translateX(8px);
  color: var(--warm-cream);
}

/* ========================================
   HERO SECTION - NATURE ORGANIC
   ======================================== */

.hero {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.9) 0%, rgba(51, 105, 30, 0.9) 100%),
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,150 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(141,159,135,0.3)"/></svg>');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: white;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
  color: var(--warm-cream);
  font-size: 20px;
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badge {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  border-radius: 30px;
  display: inline-block;
  backdrop-filter: blur(10px);
}

/* ========================================
   BUTTONS - ORGANIC STYLE
   ======================================== */

.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent-orange);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 111, 0, 0.3);
}

.btn-primary:hover {
  background: #e65100;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 111, 0, 0.4);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

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

.btn-link {
  background: transparent;
  color: var(--primary-green);
  padding: 8px 16px;
  font-weight: 500;
  border: 2px solid var(--primary-green);
}

.btn-link:hover {
  background: var(--primary-green);
  color: white;
}

/* ========================================
   PAGE HERO - SUBPAGES
   ======================================== */

.page-hero {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--forest-green) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 100"><path d="M0,50 Q300,0 600,50 T1200,50 L1200,100 L0,100 Z" fill="%23f8f9f5"/></svg>');
  background-size: cover;
}

.page-hero h1 {
  color: white;
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--warm-cream);
  font-size: 18px;
}

/* ========================================
   CARDS & GRIDS - FLEXBOX LAYOUTS
   ======================================== */

.service-grid,
.feature-grid,
.testimonial-grid,
.stats-grid,
.category-grid,
.pricing-grid,
.contact-grid,
.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.service-card,
.feature-item,
.testimonial-card,
.stat-item,
.category-card,
.pricing-tier,
.package-card,
.contact-card,
.option-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px var(--shadow-soft);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
  border: 2px solid transparent;
}

.service-card:hover,
.category-card:hover,
.contact-card:hover,
.option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px var(--shadow-medium);
  border-color: var(--sage-green);
}

.service-card h3,
.category-card h3 {
  color: var(--primary-green);
  margin-bottom: 16px;
  font-size: 22px;
}

.price,
.price-from {
  color: var(--accent-orange);
  font-size: 24px;
  font-weight: 700;
  margin: 16px 0;
  display: block;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features {
  background: var(--soft-beige);
  padding: 60px 0;
  border-radius: 30px;
  margin: 60px 0;
}

.feature-item {
  text-align: center;
  background: white;
  border-radius: 16px;
  padding: 32px;
}

.feature-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  filter: sepia(100%) saturate(300%) hue-rotate(70deg);
}

.feature-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.benefits {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.05) 0%, rgba(141, 159, 135, 0.05) 100%);
  padding: 60px 0;
  border-radius: 30px;
  margin: 60px 0;
}

.benefits-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  margin-bottom: 12px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow-soft);
  transition: all 0.3s ease;
}

.benefits-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 12px var(--shadow-medium);
}

.benefits-list img {
  width: 32px;
  height: 32px;
  filter: sepia(100%) saturate(300%) hue-rotate(70deg);
}

/* ========================================
   TESTIMONIALS - ORGANIC CARDS
   ======================================== */

.testimonials {
  background: var(--warm-cream);
  padding: 60px 0;
  border-radius: 30px;
  margin: 60px 0;
}

.testimonial-card {
  background: white;
  border-left: 5px solid var(--primary-green);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px var(--shadow-soft);
}

.testimonial-card p:first-child {
  font-style: italic;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 8px;
  font-size: 14px;
}

.rating {
  color: var(--accent-orange);
  font-size: 20px;
  letter-spacing: 2px;
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
  padding: 60px 0;
  border-radius: 30px;
  margin: 60px 0;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
}

.stat-item {
  text-align: center;
  flex: 1 1 200px;
  padding: 24px;
  background: transparent;
  box-shadow: none;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
  color: white;
  font-size: 16px;
  font-weight: 500;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
  background: linear-gradient(135deg, rgba(255, 111, 0, 0.95) 0%, rgba(230, 81, 0, 0.95) 100%);
  padding: 80px 0;
  text-align: center;
  border-radius: 30px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.05) 20px,
    rgba(255, 255, 255, 0.05) 40px
  );
  animation: slide 20s linear infinite;
}

@keyframes slide {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.cta-section h2 {
  color: white;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-section .btn-primary {
  background: white;
  color: var(--accent-orange);
  position: relative;
  z-index: 1;
}

.cta-section .btn-primary:hover {
  background: var(--warm-cream);
  color: var(--accent-orange);
}

/* ========================================
   SERVICE DETAILS - EXPANDED CARDS
   ======================================== */

.service-card-expanded,
.program-card,
.route-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px var(--shadow-soft);
  border-left: 6px solid var(--primary-green);
  transition: all 0.3s ease;
}

.service-card-expanded:hover,
.program-card:hover,
.route-card:hover {
  box-shadow: 0 8px 24px var(--shadow-medium);
  transform: translateX(8px);
}

.service-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
  padding: 20px;
  background: var(--soft-beige);
  border-radius: 12px;
}

.service-details p {
  margin: 0;
  flex: 1 1 200px;
}

.includes-list,
.services-list,
.requirements-list,
.seasonal-tips {
  list-style: none;
  margin: 20px 0;
}

.includes-list li,
.services-list li,
.requirements-list li,
.seasonal-tips li {
  padding: 12px 12px 12px 40px;
  margin-bottom: 8px;
  background: var(--soft-beige);
  border-radius: 8px;
  position: relative;
}

.includes-list li::before,
.services-list li::before,
.requirements-list li::before,
.seasonal-tips li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  color: var(--primary-green);
  font-weight: 700;
  font-size: 18px;
}

/* ========================================
   PRICING TIERS
   ======================================== */

.pricing-tier,
.package-card {
  text-align: center;
  background: white;
  border-radius: 20px;
  padding: 40px;
  border: 3px solid var(--soft-beige);
  transition: all 0.3s ease;
}

.pricing-tier:hover,
.package-card:hover {
  border-color: var(--primary-green);
  transform: scale(1.05);
  box-shadow: 0 8px 24px var(--shadow-medium);
}

.tier-price,
.package-price {
  font-size: 36px;
  color: var(--primary-green);
  font-weight: 700;
  margin: 20px 0;
}

.savings {
  background: var(--accent-orange);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 12px;
}

/* ========================================
   PROCESS STEPS
   ======================================== */

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 40px 0;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 32px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px var(--shadow-soft);
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px var(--shadow-medium);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px var(--shadow-medium);
}

/* ========================================
   TIMELINE - ORGANIC
   ======================================== */

.timeline {
  max-width: 800px;
  margin: 40px auto;
  position: relative;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--sage-green);
  border-radius: 2px;
}

.timeline-item {
  margin-bottom: 40px;
  position: relative;
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--shadow-soft);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 16px var(--shadow-medium);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -48px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--primary-green);
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--sage-green);
}

.year {
  display: inline-block;
  background: var(--primary-green);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* ========================================
   VALUES & TEAM
   ======================================== */

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.value-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 32px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px var(--shadow-soft);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px var(--shadow-medium);
}

.value-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  filter: sepia(100%) saturate(300%) hue-rotate(70deg);
}

.team-member,
.instructor-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px var(--shadow-soft);
  border-left: 5px solid var(--primary-green);
}

.position,
.instructor-title {
  color: var(--accent-orange);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

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

.faq-item {
  background: white;
  padding: 28px;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px var(--shadow-soft);
  border-left: 4px solid var(--sage-green);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px var(--shadow-medium);
  border-left-color: var(--primary-green);
}

.faq-item h3 {
  color: var(--dark-green);
  font-size: 18px;
  margin-bottom: 12px;
}

/* ========================================
   ROUTE BADGES
   ======================================== */

.badge {
  display: inline-block;
  background: var(--soft-beige);
  color: var(--dark-green);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 8px;
}

.route-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.route-location {
  color: var(--text-medium);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}

/* ========================================
   CATEGORY TABS
   ======================================== */

.categories-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
}

.category-tab {
  flex: 1 1 calc(25% - 20px);
  min-width: 200px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px var(--shadow-soft);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.category-tab:hover {
  border-color: var(--primary-green);
  transform: translateY(-4px);
  box-shadow: 0 6px 16px var(--shadow-medium);
}

.category-tab h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-card {
  text-align: center;
  padding: 40px;
}

.contact-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  filter: sepia(100%) saturate(300%) hue-rotate(70deg);
}

.contact-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.form-note {
  background: var(--warm-cream);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-orange);
  margin: 24px 0;
}

.form-note a {
  font-weight: 600;
  text-decoration: underline;
}

.hours-table {
  width: 100%;
  max-width: 600px;
  margin: 24px auto;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px var(--shadow-soft);
}

.hours-table tr {
  border-bottom: 1px solid var(--soft-beige);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 16px 24px;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--dark-green);
}

.phone-large {
  font-size: 28px;
  color: var(--primary-green);
  margin: 24px 0;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */

.thank-you-hero {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.05) 0%, rgba(141, 159, 135, 0.05) 100%);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px var(--shadow-medium);
  animation: success-pulse 2s ease-in-out infinite;
}

@keyframes success-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.next-steps {
  list-style: none;
  max-width: 600px;
  margin: 32px auto;
}

.next-steps li {
  padding: 16px 16px 16px 48px;
  margin-bottom: 12px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow-soft);
  position: relative;
}

.next-steps li::before {
  content: '→';
  position: absolute;
  left: 16px;
  color: var(--primary-green);
  font-weight: 700;
  font-size: 20px;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 40px 0;
}

.link-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  padding: 32px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px var(--shadow-soft);
  text-align: center;
  transition: all 0.3s ease;
}

.link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px var(--shadow-medium);
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--shadow-soft);
}

.legal-content h2 {
  color: var(--primary-green);
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid var(--soft-beige);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  color: var(--dark-green);
  margin-top: 20px;
  font-size: 20px;
}

.legal-content ul,
.legal-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* ========================================
   FOOTER - ORGANIC STYLE
   ======================================== */

footer {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--forest-green) 100%);
  color: white;
  padding: 60px 0 24px;
  margin-top: 80px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 100"><path d="M0,50 Q300,100 600,50 T1200,50 L1200,0 L0,0 Z" fill="%23f8f9f5"/></svg>');
  background-size: cover;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 220px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-column h4 {
  color: var(--warm-cream);
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-column a:hover {
  color: var(--accent-orange);
  transform: translateX(4px);
}

.footer-column p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.legal-links a:hover {
  color: var(--accent-orange);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.98) 0%, rgba(27, 94, 32, 0.98) 100%);
  color: white;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  backdrop-filter: blur(10px);
}

.cookie-banner.active {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  margin: 0;
  color: white;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: var(--accent-orange);
  color: white;
}

.cookie-accept:hover {
  background: #e65100;
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.cookie-settings:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Cookie Settings Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cookie-modal h2 {
  color: var(--primary-green);
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: var(--soft-beige);
  border-radius: 12px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: var(--dark-green);
  font-size: 18px;
  margin-bottom: 8px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: var(--primary-green);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active::after {
  transform: translateX(24px);
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.view-all {
  display: inline-block;
  margin-top: 32px;
  padding: 12px 32px;
  background: var(--primary-green);
  color: white;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-all:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
  color: white;
}

.section-subtitle {
  text-align: center;
  color: var(--text-medium);
  font-size: 18px;
  margin-bottom: 40px;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

@media (max-width: 768px) {
  /* Hide desktop navigation */
  .main-nav,
  .cta-button {
    display: none;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 0;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  /* Card layouts - single column */
  .service-card,
  .feature-item,
  .testimonial-card,
  .stat-item,
  .category-card,
  .pricing-tier,
  .package-card,
  .contact-card,
  .option-card,
  .value-item,
  .step,
  .link-card,
  .category-tab {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer - stack columns */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
  
  /* Cookie banner - stack */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Timeline adjustments */
  .timeline {
    padding-left: 40px;
  }
  
  .timeline::before {
    left: 10px;
  }
  
  .timeline-item::before {
    left: -38px;
  }
  
  /* Legal content */
  .legal-content {
    padding: 24px;
  }
  
  /* Stats grid */
  .stats-grid {
    flex-direction: column;
  }
  
  /* Process steps */
  .process-steps {
    flex-direction: column;
  }
  
  /* Service details */
  .service-details {
    flex-direction: column;
  }
  
  /* Contact page */
  .hours-table td {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .phone-large {
    font-size: 22px;
  }
  
  /* Modal adjustments */
  .cookie-modal-content {
    padding: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .service-card,
  .category-card,
  .pricing-tier,
  .package-card,
  .contact-card,
  .option-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .feature-item,
  .value-item {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step {
    flex: 1 1 calc(50% - 24px);
  }
}

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Smooth scroll */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
  }
  
  .container {
    max-width: 100%;
  }
}

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
   ======================================== */

*:focus {
  outline: 3px solid var(--accent-orange);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .service-card,
  .feature-item,
  .testimonial-card {
    border: 2px solid currentColor;
  }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
  /* Keep light mode for nature organic theme */
  /* Can be enabled if needed */
}

/* ========================================
   END OF STYLESHEET
   ======================================== */