/* ============================================
   SHINEDRIFT - NATURE ORGANIC DESIGN SYSTEM
   Modern tech meets organic nature aesthetics
   ============================================ */

/* ===== CSS RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Nature Organic Color Palette */
  --primary: #2D5016;
  --primary-light: #4A7C2E;
  --primary-dark: #1A3009;
  --secondary: #8B6F47;
  --accent: #7FA650;
  --earth-brown: #6B4423;
  --moss-green: #5C7A3C;
  --sand: #D4C4A8;
  --clay: #A67B5B;
  --stone: #7A7A6E;
  
  /* Nature Neutrals */
  --bg-cream: #F8F5F0;
  --bg-light: #FDFCFA;
  --bg-dark: #3A3A32;
  --text-dark: #2C2C24;
  --text-medium: #5A5A4E;
  --text-light: #8A8A7E;
  
  /* Organic UI Colors */
  --success: #6B8E23;
  --warning: #D4A373;
  --error: #8B4513;
  --info: #7FA650;
  
  /* Spacing Scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  
  /* Typography Scale */
  --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Organic Border Radius */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-organic: 30% 70% 70% 30% / 30% 30% 70% 70%;
  
  /* Natural Shadows */
  --shadow-sm: 0 2px 8px rgba(45, 80, 22, 0.08);
  --shadow-md: 0 4px 16px rgba(45, 80, 22, 0.12);
  --shadow-lg: 0 8px 32px rgba(45, 80, 22, 0.16);
  --shadow-organic: 0 6px 20px rgba(107, 142, 35, 0.15);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-cream);
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(127, 166, 80, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 111, 71, 0.03) 0%, transparent 50%);
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-dark);
  margin-bottom: var(--space-md);
}

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

h2 {
  font-size: 36px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: var(--space-sm);
  color: var(--text-medium);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: all var(--transition-base);
}

a:hover {
  color: var(--clay);
}

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

/* ===== CONTAINER & LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
}

/* ===== HEADER ===== */
header {
  background: rgba(248, 245, 240, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--sand);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(45, 80, 22, 0.08);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform var(--transition-base);
}

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

.main-nav {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--primary);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  position: relative;
}

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

.main-nav a:hover {
  color: var(--accent);
  background: rgba(127, 166, 80, 0.08);
}

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

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: var(--primary);
  color: var(--bg-light);
  border: none;
  border-radius: var(--radius-sm);
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

.mobile-menu-toggle:hover {
  background: var(--primary-light);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  z-index: 1999;
  padding: var(--space-2xl) var(--space-lg);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
  transition: right var(--transition-slow);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--bg-light);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.mobile-nav a {
  color: var(--bg-light);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid transparent;
}

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

/* ===== HERO SECTIONS ===== */
.hero,
.hero-404,
.thank-you-hero,
.legal-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--moss-green) 100%);
  color: var(--bg-light);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
  margin-bottom: var(--space-2xl);
}

.hero::before,
.hero-404::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(127, 166, 80, 0.15) 0%, transparent 70%);
  border-radius: var(--radius-organic);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1,
.hero-404 h1,
.thank-you-hero h1,
.legal-hero h1 {
  color: var(--bg-light);
  font-size: 56px;
  margin-bottom: var(--space-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle,
.legal-subtitle {
  font-size: 20px;
  color: var(--sand);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.breadcrumb {
  font-size: 14px;
  color: var(--sand);
  margin-bottom: var(--space-sm);
}

.breadcrumb a {
  color: var(--bg-light);
  text-decoration: underline;
}

/* ===== BUTTONS ===== */
.cta-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
      justify-content: center;
}

.cta-primary,
.cta-secondary,
.cta-button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-primary,
.cta-button {
  background: var(--accent);
  color: var(--bg-light);
  box-shadow: var(--shadow-organic);
}

.cta-primary:hover,
.cta-button:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 142, 35, 0.25);
}

.cta-secondary {
  background: transparent;
  color: var(--bg-light);
  border-color: var(--sand);
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
section {
  padding: var(--space-2xl) 0;
  margin-bottom: var(--space-xl);
  position: relative;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

/* ===== TRUST BADGES ===== */
.trust-badges,
.trust-section .trust-badges,
.cert-badges,
.platforms,
.value-tags {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-lg);
}

.trust-badges span,
.trust-section .trust-badges span,
.cert-badges span,
.platforms span,
.value-tags span {
  background: rgba(127, 166, 80, 0.1);
  color: var(--primary);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 500;
  border: 2px solid var(--accent);
  transition: all var(--transition-base);
}

.trust-badges span:hover,
.cert-badges span:hover,
.platforms span:hover,
.value-tags span:hover {
  background: var(--accent);
  color: var(--bg-light);
  transform: translateY(-2px);
}

/* ===== GRID LAYOUTS (FLEXBOX ONLY) ===== */
.value-grid,
.service-grid,
.feature-grid,
.category-grid,
.product-grid,
.benefit-grid,
.package-grid,
.system-grid,
.contact-grid,
.links-grid,
.link-grid,
.hours-grid,
.stats-grid,
.testimonial-grid,
.team-grid,
.faq-list,
.process-steps,
.next-steps,
.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

/* ===== CARDS ===== */
.value-card,
.service-card,
.feature-item,
.category-card,
.product-card,
.benefit-item,
.package-card,
.system-card,
.contact-option,
.link-card,
.explore-card,
.hours-item,
.team-member,
.mission-item,
.step {
  background: var(--bg-light);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  flex: 1 1 calc(33.333% - var(--space-md));
  min-width: 280px;
  position: relative;
  border: 2px solid transparent;
  margin-bottom: var(--space-md);
}

.value-card:hover,
.service-card:hover,
.category-card:hover,
.product-card:hover,
.package-card:hover,
.system-card:hover,
.link-card:hover,
.explore-card:hover,
.team-member:hover,
.mission-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.service-card-detail {
  background: var(--bg-light);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  flex: 1 1 calc(50% - var(--space-md));
  min-width: 300px;
  border: 2px solid var(--sand);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.service-card-detail:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.service-card-detail h3 {
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.service-card-detail ul {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
  flex-grow: 1;
}

.service-card-detail ul li {
  padding: var(--space-xs) 0;
  padding-left: var(--space-md);
  position: relative;
  color: var(--text-medium);
}

.service-card-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.service-card-detail .price {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin: var(--space-md) 0;
}

.service-card-detail .cta-button {
  margin-top: auto;
}

/* ===== BADGES ===== */
.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent);
  color: var(--bg-light);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}

/* ===== PRICE DISPLAY ===== */
.price,
.package-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-top: var(--space-md);
  display: block;
}

.package-price {
  font-size: 36px;
  text-align: center;
  margin: var(--space-md) 0;
}

/* ===== METRICS & STATS ===== */
.metrics,
.stats-grid {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
  padding: var(--space-xl) 0;
  background: rgba(127, 166, 80, 0.05);
  border-radius: var(--radius-lg);
}

.metric,
.stat-item {
  text-align: center;
  min-width: 150px;
}

.metric strong,
.stat-item strong {
  display: block;
  font-size: 48px;
  color: var(--primary);
  font-family: var(--font-display);
  margin-bottom: var(--space-xs);
}

.metric span,
.stat-item span {
  display: block;
  font-size: 16px;
  color: var(--text-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.03) 0%, rgba(127, 166, 80, 0.03) 100%);
  padding: var(--space-2xl) 0;
}

.testimonial-card {
  background: var(--bg-light);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  flex: 1 1 calc(50% - var(--space-md));
  min-width: 300px;
  border-left: 4px solid var(--accent);
  position: relative;
  margin-bottom: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 60px;
  color: rgba(127, 166, 80, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-md);
}

.testimonial-card .author {
  display: block;
  font-weight: 600;
  color: var(--primary);
  margin-top: auto;
  font-size: 14px;
  text-align: right;
}

.rating {
  text-align: center;
  margin-top: var(--space-lg);
  font-size: 18px;
  color: var(--primary);
  font-weight: 600;
}

/* ===== FEATURED PACKAGE ===== */
.package-card.featured {
  border: 3px solid var(--accent);
  background: linear-gradient(135deg, rgba(127, 166, 80, 0.05) 0%, var(--bg-light) 100%);
  transform: scale(1.05);
}

.package-card.featured h3 {
  color: var(--primary);
}

/* ===== CTA SECTIONS ===== */
.cta-section {
  background: linear-gradient(135deg, var(--moss-green) 0%, var(--primary) 100%);
  color: var(--bg-light);
  padding: var(--space-2xl) 0;
  text-align: center;
  border-radius: var(--radius-lg);
  margin: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: var(--radius-organic);
}

.cta-section h2 {
  color: var(--bg-light);
  margin-bottom: var(--space-md);
}

.cta-section p {
  color: var(--sand);
  font-size: 18px;
  margin-bottom: var(--space-lg);
}

/* ===== LISTS ===== */
ul {
  list-style: none;
  padding: 0;
}

ul li {
  padding: var(--space-xs) 0;
  padding-left: var(--space-md);
  position: relative;
}

ul li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.error-reasons li,
.benefits-grid ul li {
  padding-left: var(--space-lg);
}

.error-reasons li::before,
.benefits-grid ul li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
}

/* ===== FAQ ===== */
.faq-item {
  background: var(--bg-light);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  flex: 1 1 100%;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.faq-item h3 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: var(--space-sm);
}

.faq-item p {
  color: var(--text-medium);
  line-height: 1.7;
}

/* ===== TIMELINE ===== */
.timeline {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
  padding: var(--space-xl) 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sand);
  z-index: 0;
}

.timeline-item {
  background: var(--bg-light);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  flex: 1 1 calc(25% - var(--space-md));
  min-width: 150px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
  border: 2px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.timeline-item strong {
  font-size: 32px;
  color: var(--primary);
  display: block;
}

.timeline-item span {
  font-size: 14px;
  color: var(--text-medium);
  display: block;
}

/* ===== LOCATION & CONTACT INFO ===== */
.location-info,
.contact-info,
.showroom-info,
.address-info {
  background: var(--bg-light);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-lg);
}

.location-details {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.address {
  flex: 1 1 300px;
}

.contact-links {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* ===== FORM STYLING ===== */
.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-light);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-note {
  background: rgba(127, 166, 80, 0.1);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent);
}

.form-note ul {
  margin-top: var(--space-md);
}

.form-note a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

/* ===== 404 ERROR PAGE ===== */
.error-content {
  text-align: center;
  padding: var(--space-2xl) 0;
}

.error-code {
  font-size: 120px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: var(--space-md);
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.error-help {
  background: var(--bg-light);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.help-text {
  text-align: center;
  margin-top: var(--space-lg);
  font-size: 18px;
  color: var(--text-medium);
}

/* ===== THANK YOU PAGE ===== */
.success-content {
  text-align: center;
}

.confirmation {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.next-steps {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

.step {
  background: var(--bg-light);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  flex: 1 1 250px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--accent);
}

.step strong {
  display: block;
  font-size: 32px;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.email-note {
  margin-top: var(--space-xl);
  padding: var(--space-md);
  background: rgba(127, 166, 80, 0.1);
  border-radius: var(--radius-sm);
  text-align: center;
}

/* ===== LEGAL PAGES ===== */
.legal-section {
  background: var(--bg-light);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.legal-section h2 {
  color: var(--primary);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--sand);
}

.legal-section h3 {
  color: var(--moss-green);
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}

.last-updated {
  font-style: italic;
  color: var(--text-light);
  margin-top: var(--space-sm);
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--bg-light);
  padding: var(--space-2xl) 0 var(--space-md);
  margin-top: var(--space-2xl);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-col h4 {
  color: var(--accent);
  margin-bottom: var(--space-md);
  font-size: 18px;
}

.footer-col p {
  color: var(--sand);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: var(--space-xs);
  padding-left: 0;
}

.footer-col ul li::before {
  display: none;
}

.footer-col a {
  color: var(--sand);
  transition: color var(--transition-base);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(212, 196, 168, 0.3);
}

.footer-bottom p {
  color: var(--sand);
  font-size: 14px;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--bg-light);
  padding: var(--space-lg);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

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

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

.cookie-consent-text {
  flex: 1 1 300px;
}

.cookie-consent-text p {
  color: var(--sand);
  margin-bottom: var(--space-sm);
}

.cookie-consent-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-accept,
.cookie-reject,
.cookie-settings {
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  font-size: 14px;
}

.cookie-accept {
  background: var(--accent);
  color: var(--bg-light);
}

.cookie-accept:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: var(--sand);
  border-color: var(--sand);
}

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

.cookie-settings {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.cookie-settings:hover {
  background: rgba(127, 166, 80, 0.1);
}

/* ===== COOKIE MODAL ===== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 48, 9, 0.8);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

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

.cookie-modal-content {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-medium);
  transition: color var(--transition-base);
}

.cookie-modal-close:hover {
  color: var(--primary);
}

.cookie-category {
  background: rgba(127, 166, 80, 0.05);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.cookie-category-info {
  flex: 1;
}

.cookie-category h3 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: var(--space-xs);
}

.cookie-category p {
  color: var(--text-medium);
  font-size: 14px;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: var(--stone);
  border-radius: 13px;
  cursor: pointer;
  transition: background var(--transition-base);
}

.cookie-toggle.active {
  background: var(--accent);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition-base);
}

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

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
  
  .hero h1 { font-size: 48px; }
}

@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide main navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  
  .hero h1,
  .hero-404 h1 { font-size: 36px; }
  
  .error-code { font-size: 80px; }
  
  /* Layout adjustments */
  .container {
    padding: 0 var(--space-sm);
  }
  
  section {
    padding: var(--space-xl) 0;
  }
  
  /* Cards and grids */
  .value-card,
  .service-card,
  .feature-item,
  .category-card,
  .product-card,
  .benefit-item,
  .package-card,
  .system-card,
  .contact-option,
  .service-card-detail,
  .testimonial-card,
  .team-member,
  .timeline-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .link-card,
  .explore-card {
    flex: 1 1 calc(50% - var(--space-md));
    min-width: 140px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-primary,
  .cta-secondary,
  .cta-button {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Cookie consent */
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-accept,
  .cookie-reject,
  .cookie-settings {
    width: 100%;
  }
  
  /* Metrics */
  .metrics,
  .stats-grid {
    gap: var(--space-md);
  }
  
  .metric,
  .stat-item {
    flex: 1 1 calc(50% - var(--space-md));
    min-width: 120px;
  }
  
  /* Timeline */
  .timeline {
    flex-direction: column;
  }
  
  .timeline::before {
    display: none;
  }
  
  .timeline-item {
    flex: 1 1 100%;
  }
  
  /* Process steps */
  .process-steps,
  .next-steps {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 32px; }
  .hero-subtitle { font-size: 16px; }
  
  .error-code { font-size: 60px; }
  
  .package-price { font-size: 28px; }
  
  .metric strong,
  .stat-item strong { font-size: 36px; }
  
  .link-card,
  .explore-card {
    flex: 1 1 100%;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
}

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

button:focus,
a:focus {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}

/* ===== ANIMATIONS ===== */
@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);
  }
}

/* Apply animations to sections on page load */
section {
  animation: fadeIn 0.6s ease-out;
}

.value-card,
.service-card,
.product-card,
.testimonial-card {
  animation: slideInRight 0.5s ease-out;
  animation-fill-mode: both;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

/* ===== END OF STYLES ===== */