/* =================================================================
   OPAL EV REHBERİ - NATURE ORGANIC DESIGN SYSTEM
   CSS Reset, Variables, Base Styles & Components
   ================================================================= */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2d3e2e;
  background-color: #f9f7f4;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* NATURE ORGANIC COLOR PALETTE */
:root {
  /* Earth Tones - Primary Colors */
  --color-forest-green: #2d5016;
  --color-sage-green: #7a9b76;
  --color-moss-green: #4a6741;
  --color-clay-brown: #8b6f47;
  --color-sand-beige: #d4c5a9;
  
  /* Natural Accents */
  --color-leaf-green: #5a7c50;
  --color-bark-brown: #6b5744;
  --color-stone-gray: #8a8a7a;
  --color-cream: #f9f7f4;
  --color-terracotta: #c97850;
  
  /* Semantic Colors */
  --color-primary: var(--color-forest-green);
  --color-secondary: var(--color-terracotta);
  --color-accent: var(--color-sage-green);
  --color-background: var(--color-cream);
  --color-text: #2d3e2e;
  --color-text-light: #5a6b5a;
  
  /* Spacing Scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  
  /* Typography */
  --font-display: 'Montserrat', 'Arial Black', sans-serif;
  --font-body: 'Open Sans', 'Segoe UI', sans-serif;
  
  /* Border Radius - Organic Shapes */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-organic: 30% 70% 70% 30% / 30% 30% 70% 70%;
  
  /* Shadows - Natural Depth */
  --shadow-sm: 0 2px 8px rgba(45, 62, 46, 0.08);
  --shadow-md: 0 4px 16px rgba(45, 62, 46, 0.12);
  --shadow-lg: 0 8px 32px rgba(45, 62, 46, 0.16);
  
  /* Transitions */
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

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

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

/* BUTTONS - ORGANIC NATURE STYLE */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-forest-green) 0%, var(--color-moss-green) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--color-moss-green) 0%, var(--color-forest-green) 100%);
}

.btn-secondary {
  background: transparent;
  color: var(--color-forest-green);
  border: 2px solid var(--color-sage-green);
}

.btn-secondary:hover {
  background: var(--color-sage-green);
  color: #ffffff;
  transform: translateY(-2px);
}

/* HEADER - NATURAL & CLEAN */
header {
  background: rgba(249, 247, 244, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--color-sage-green);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

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

.logo img {
  height: 50px;
  width: auto;
}

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

.main-nav a {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-sage-green);
  transition: width var(--transition-base);
  border-radius: var(--radius-sm);
}

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

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

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: var(--space-sm);
  right: var(--space-md);
  z-index: 2000;
  background: var(--color-forest-green);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  font-size: 24px;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.mobile-menu-toggle:hover {
  background: var(--color-moss-green);
  transform: scale(1.05);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, var(--color-cream) 0%, #f0ebe3 100%);
  z-index: 1999;
  padding: var(--space-2xl) var(--space-lg);
  box-shadow: -4px 0 24px rgba(45, 62, 46, 0.2);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 40px;
  height: 40px;
  background: var(--color-terracotta);
  color: #ffffff;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.mobile-menu-close:hover {
  background: var(--color-forest-green);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  padding: var(--space-sm);
  border-left: 4px solid transparent;
  transition: all var(--transition-base);
}

.mobile-nav a:hover {
  color: var(--color-forest-green);
  border-left-color: var(--color-sage-green);
  padding-left: var(--space-md);
}

/* HERO SECTION - ORGANIC NATURE */
.hero {
  background: linear-gradient(135deg, rgba(122, 155, 118, 0.15) 0%, rgba(212, 197, 169, 0.15) 100%);
  padding: var(--space-2xl) 0;
  margin-bottom: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(122, 155, 118, 0.1) 0%, transparent 70%);
  border-radius: var(--radius-organic);
}

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

.hero h1 {
  font-size: 56px;
  color: var(--color-forest-green);
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.trust-badge {
  display: inline-block;
  background: var(--color-sage-green);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
}

/* PAGE HERO - SIMPLE ORGANIC */
.page-hero {
  background: linear-gradient(135deg, var(--color-sage-green) 0%, var(--color-moss-green) 100%);
  padding: var(--space-2xl) 0;
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: #ffffff;
}

.page-hero h1 {
  color: #ffffff;
  margin-bottom: var(--space-sm);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

/* SECTIONS - NATURAL SPACING */
.section {
  margin-bottom: var(--space-2xl);
  padding: var(--space-xl) var(--space-md);
}

section {
  margin-bottom: var(--space-2xl);
}

section h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--color-forest-green);
}

/* BENEFITS GRID - FLEXBOX LAYOUT */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.benefit-card {
  flex: 1 1 250px;
  max-width: 280px;
  background: #ffffff;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 2px solid transparent;
  position: relative;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--color-sage-green), var(--color-terracotta));
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.benefit-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-md);
  opacity: 0.8;
}

.benefit-card h3 {
  color: var(--color-forest-green);
  margin-bottom: var(--space-sm);
  font-size: 20px;
}

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

/* SERVICES GRID - FLEXBOX */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: space-between;
}

.service-card,
.service-card-detailed {
  flex: 1 1 280px;
  max-width: 100%;
  background: #ffffff;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  border-left: 4px solid var(--color-sage-green);
  margin-bottom: var(--space-md);
}

.service-card:hover,
.service-card-detailed:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--color-forest-green);
}

.service-card h3,
.service-card-detailed h3 {
  color: var(--color-forest-green);
  margin-bottom: var(--space-sm);
}

.service-card p,
.service-card-detailed p {
  color: var(--color-text);
  flex-grow: 1;
  margin-bottom: var(--space-md);
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-terracotta);
  margin: var(--space-sm) 0;
  font-family: var(--font-display);
}

.features {
  list-style: none;
  margin: var(--space-md) 0;
  padding: 0;
}

.features li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--color-text);
}

.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-sage-green);
  font-weight: bold;
}

/* TESTIMONIALS - READABLE CONTRAST */
.testimonials {
  background: linear-gradient(135deg, rgba(122, 155, 118, 0.08) 0%, rgba(212, 197, 169, 0.08) 100%);
  padding: var(--space-2xl) 0;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 400px;
  max-width: 500px;
  background: #ffffff;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  border-top: 4px solid var(--color-terracotta);
}

.testimonial-card .stars {
  color: var(--color-terracotta);
  font-size: 20px;
  margin-bottom: var(--space-sm);
}

.testimonial-card p {
  color: var(--color-text);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.testimonial-card .author {
  color: var(--color-forest-green);
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
}

/* STATS SECTION */
.stats {
  background: var(--color-forest-green);
  color: #ffffff;
  padding: var(--space-2xl) 0;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: space-around;
  align-items: center;
}

.stat-item {
  text-align: center;
  flex: 1 1 200px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-terracotta);
  font-family: var(--font-display);
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* CTA BANNER */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, var(--color-sage-green) 0%, var(--color-moss-green) 100%);
  padding: var(--space-2xl) 0;
  text-align: center;
  color: #ffffff;
  margin: var(--space-2xl) 0;
  border-radius: var(--radius-lg);
}

.cta-banner h2,
.cta-section h2 {
  color: #ffffff;
  margin-bottom: var(--space-md);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: var(--space-lg);
}

.guarantee {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  margin-top: var(--space-md);
  font-weight: 600;
}

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

/* VALUES GRID */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.value-card {
  flex: 1 1 250px;
  max-width: 280px;
  background: #ffffff;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border-bottom: 4px solid var(--color-sage-green);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--color-terracotta);
}

.value-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-md);
}

.value-card h3 {
  color: var(--color-forest-green);
  margin-bottom: var(--space-sm);
}

/* CONTENT WRAPPER */
.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-wrapper p {
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.content-wrapper ul {
  list-style: disc;
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.content-wrapper ul li {
  margin-bottom: var(--space-sm);
  color: var(--color-text);
  line-height: 1.6;
}

/* BLOG SECTIONS */
.blog-featured {
  margin-bottom: var(--space-2xl);
}

.featured-post {
  background: linear-gradient(135deg, rgba(122, 155, 118, 0.1) 0%, rgba(212, 197, 169, 0.1) 100%);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border-left: 6px solid var(--color-terracotta);
  position: relative;
}

.badge {
  display: inline-block;
  background: var(--color-terracotta);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  color: var(--color-text-light);
  font-size: 14px;
  margin: var(--space-md) 0;
}

.post-meta span::after {
  content: '•';
  margin-left: var(--space-md);
}

.post-meta span:last-child::after {
  content: '';
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: space-between;
}

.post-card {
  flex: 1 1 320px;
  max-width: 100%;
  background: #ffffff;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-card .category {
  color: var(--color-terracotta);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-card h3 {
  color: var(--color-forest-green);
  margin-bottom: var(--space-sm);
  font-size: 20px;
}

.post-card p {
  color: var(--color-text);
  flex-grow: 1;
  margin-bottom: var(--space-md);
}

.post-card a {
  color: var(--color-sage-green);
  font-weight: 600;
  align-self: flex-start;
}

.post-card a:hover {
  color: var(--color-forest-green);
}

/* CONTACT SECTIONS */
.contact-methods {
  margin-bottom: var(--space-2xl);
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.method-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: #ffffff;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.method-card img {
  width: 50px;
  height: 50px;
  margin: 0 auto var(--space-md);
}

.method-card h3 {
  color: var(--color-forest-green);
  margin-bottom: var(--space-sm);
}

.method-card p {
  color: var(--color-text);
  margin-bottom: 8px;
}

.method-card .note {
  color: var(--color-text-light);
  font-size: 14px;
  font-style: italic;
}

/* CONTACT FORM */
.contact-form-section {
  background: linear-gradient(135deg, rgba(122, 155, 118, 0.05) 0%, rgba(212, 197, 169, 0.05) 100%);
  padding: var(--space-2xl) 0;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.form-note {
  background: #ffffff;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  border-left: 4px solid var(--color-sage-green);
}

.form-note p {
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.response-time {
  color: var(--color-text-light);
  font-size: 14px;
  font-style: italic;
}

.form-placeholder {
  background: #ffffff;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-placeholder ul {
  list-style: disc;
  margin-left: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.form-placeholder li {
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

/* FAQ */
.faq-preview {
  background: linear-gradient(135deg, rgba(122, 155, 118, 0.08) 0%, rgba(212, 197, 169, 0.08) 100%);
  padding: var(--space-2xl) 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background: #ffffff;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-sage-green);
}

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

.faq-item p {
  color: var(--color-text);
  margin-bottom: 0;
}

/* THANK YOU PAGE */
.thank-you-hero {
  text-align: center;
  padding: var(--space-2xl) 0;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: var(--color-sage-green);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto var(--space-lg);
  box-shadow: var(--shadow-lg);
}

.thank-you-hero h1 {
  color: var(--color-forest-green);
  margin-bottom: var(--space-sm);
}

.confirmation {
  color: var(--color-text-light);
  font-size: 18px;
  margin-top: var(--space-md);
}

.next-steps,
.meanwhile,
.navigation-options {
  margin: var(--space-2xl) 0;
}

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

.step-card,
.suggestion-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: #ffffff;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.step-card h3,
.suggestion-card h3 {
  color: var(--color-forest-green);
  margin-bottom: var(--space-md);
}

.suggestion-card ul {
  text-align: left;
  list-style: none;
}

.suggestion-card li {
  margin-bottom: var(--space-sm);
}

.suggestion-card a {
  color: var(--color-sage-green);
  font-weight: 600;
}

.suggestion-card a:hover {
  color: var(--color-forest-green);
}

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

/* LEGAL CONTENT */
.legal-content {
  padding: var(--space-xl) 0;
}

.legal-content h2 {
  color: var(--color-forest-green);
  text-align: left;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

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

.legal-content ul {
  list-style: disc;
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-content li {
  margin-bottom: var(--space-sm);
  color: var(--color-text);
  line-height: 1.6;
}

.legal-content a {
  color: var(--color-sage-green);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--color-forest-green);
}

/* FOOTER - NATURAL & GROUNDED */
footer {
  background: linear-gradient(135deg, var(--color-forest-green) 0%, var(--color-moss-green) 100%);
  color: #ffffff;
  padding: var(--space-2xl) 0 var(--space-md);
  margin-top: var(--space-2xl);
}

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

.footer-brand {
  flex: 1 1 250px;
  max-width: 300px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: var(--space-md);
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.footer-links {
  flex: 2 1 400px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  justify-content: space-between;
}

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

.footer-column h4 {
  color: var(--color-terracotta);
  margin-bottom: var(--space-md);
  font-size: 16px;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-sm);
  font-size: 14px;
  transition: color var(--transition-base);
}

.footer-column a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--space-md);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--color-forest-green) 0%, var(--color-moss-green) 100%);
  color: #ffffff;
  padding: var(--space-md);
  box-shadow: 0 -4px 16px rgba(45, 62, 46, 0.3);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-text p {
  margin-bottom: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition-base);
  cursor: pointer;
}

.cookie-accept {
  background: var(--color-terracotta);
  color: #ffffff;
}

.cookie-accept:hover {
  background: var(--color-clay-brown);
}

.cookie-reject {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

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

.cookie-settings {
  background: transparent;
  color: #ffffff;
  text-decoration: underline;
}

.cookie-settings:hover {
  color: var(--color-terracotta);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 62, 46, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  padding: var(--space-md);
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

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

.cookie-modal-content h3 {
  color: var(--color-forest-green);
  margin-bottom: var(--space-lg);
}

.cookie-category {
  padding: var(--space-md);
  border: 2px solid var(--color-sage-green);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
}

.cookie-category h4 {
  color: var(--color-forest-green);
  margin-bottom: 0;
  font-size: 16px;
}

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

.cookie-toggle.active {
  background: var(--color-sage-green);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  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-category p {
  color: var(--color-text-light);
  font-size: 14px;
  margin-bottom: 0;
}

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

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Hide desktop nav, show mobile menu */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Stack flexbox layouts */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .stats-grid,
  .values-grid,
  .methods-grid,
  .posts-grid,
  .steps-grid,
  .suggestions-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .service-card-detailed,
  .testimonial-card,
  .value-card,
  .method-card,
  .post-card,
  .step-card,
  .suggestion-card {
    max-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-links {
    flex-direction: column;
  }
  
  .footer-brand {
    max-width: 100%;
  }
  
  /* Cookie banner mobile */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  /* Spacing adjustments */
  .section {
    padding: var(--space-lg) var(--space-sm);
  }
  
  section {
    margin-bottom: var(--space-xl);
  }
  
  .hero {
    padding: var(--space-xl) 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .price {
    font-size: 28px;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    background: #ffffff;
    color: #000000;
  }
}

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

/* FOCUS STYLES */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 3px solid var(--color-terracotta);
  outline-offset: 2px;
}

/* SMOOTH ANIMATIONS */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}