/* =========================================
   MYSTIC BAY AUTOMOTIVE - NATURE ORGANIC DESIGN
   Modern automotive accessories with natural elegance
   ========================================= */

/* =========================================
   CSS RESET & BASE STYLES
   ========================================= */

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

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

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #2C3E2E;
  background-color: #F8FAF5;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1A2B1A;
  margin-bottom: 16px;
}

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

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: #3A4A3A;
}

strong {
  font-weight: 600;
  color: #1A2B1A;
}

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

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

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

/* =========================================
   HEADER - NATURE ORGANIC
   ========================================= */

header {
  background: linear-gradient(135deg, #F8FAF5 0%, #E8F0E8 100%);
  border-bottom: 2px solid #8B9F7D;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(106, 142, 92, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(106, 142, 92, 0.2));
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #2C3E2E;
  padding: 8px 16px;
  border-radius: 24px;
  transition: all 0.3s ease;
  background-color: transparent;
  border: 2px solid transparent;
}

.main-nav a:hover {
  background-color: #6A8E5C;
  color: #FFFFFF;
  border-color: #8B9F7D;
  transform: translateY(-2px);
}

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

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background-color: #6A8E5C;
  color: #FFFFFF;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(106, 142, 92, 0.3);
  transition: all 0.3s ease;
  border: 3px solid #8B9F7D;
}

.mobile-menu-toggle:hover {
  background-color: #8B9F7D;
  transform: scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, #F8FAF5 0%, #E8F0E8 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(106, 142, 92, 0.2);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: #2C3E2E;
  background-color: #E8F0E8;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid #8B9F7D;
}

.mobile-menu-close:hover {
  background-color: #6A8E5C;
  color: #FFFFFF;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2C3E2E;
  padding: 16px 20px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.6);
  border: 2px solid #8B9F7D;
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover {
  background-color: #6A8E5C;
  color: #FFFFFF;
  transform: translateX(8px);
}

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

.hero {
  background: linear-gradient(135deg, #E8F0E8 0%, #C8D8C8 100%);
  padding: 80px 20px;
  border-radius: 24px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  border: 3px solid #8B9F7D;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(106, 142, 92, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero h1 {
  font-size: 48px;
  color: #1A2B1A;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(139, 159, 125, 0.2);
}

.hero-subtitle {
  font-size: 18px;
  color: #3A4A3A;
  margin-bottom: 32px;
  line-height: 1.8;
}

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

.cta-primary, .cta-secondary, .cta-button {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.cta-primary {
  background-color: #6A8E5C;
  color: #FFFFFF;
  border-color: #8B9F7D;
  box-shadow: 0 4px 12px rgba(106, 142, 92, 0.3);
}

.cta-primary:hover {
  background-color: #8B9F7D;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(106, 142, 92, 0.4);
}

.cta-secondary {
  background-color: transparent;
  color: #2C3E2E;
  border-color: #6A8E5C;
}

.cta-secondary:hover {
  background-color: #6A8E5C;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.cta-button {
  background-color: #6A8E5C;
  color: #FFFFFF;
  border-color: #8B9F7D;
  box-shadow: 0 4px 12px rgba(106, 142, 92, 0.3);
}

.cta-button:hover {
  background-color: #8B9F7D;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(106, 142, 92, 0.4);
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-indicators span {
  font-size: 14px;
  color: #3A4A3A;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  border: 1px solid #8B9F7D;
}

/* =========================================
   VALUE PROPOSITION - FLEXBOX GRID
   ========================================= */

.value-proposition, .values-section {
  background-color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 20px;
  margin-bottom: 60px;
  border: 2px solid #E8F0E8;
}

.value-proposition h2, .values-section h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #1A2B1A;
}

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

.value-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 24px;
  background-color: #F8FAF5;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid #E8F0E8;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(106, 142, 92, 0.2);
  border-color: #8B9F7D;
}

.value-item img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  filter: sepia(30%) hue-rotate(60deg) saturate(1.2);
}

.value-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #2C3E2E;
}

.value-item p {
  font-size: 14px;
  color: #3A4A3A;
  margin-bottom: 0;
}

/* =========================================
   SERVICES OVERVIEW - FLEXBOX CARDS
   ========================================= */

.services-overview, .categories-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F8FAF5 0%, #E8F0E8 100%);
  border-radius: 20px;
  margin-bottom: 60px;
}

.section-subtitle {
  text-align: center;
  color: #3A4A3A;
  font-size: 16px;
  margin-bottom: 40px;
}

.services-grid, .categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.service-card, .category-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #E8F0E8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.service-card:hover, .category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(106, 142, 92, 0.2);
  border-color: #6A8E5C;
}

.service-card img, .category-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 16px;
  filter: sepia(30%) hue-rotate(60deg) saturate(1.2);
}

.service-card h3, .category-card h3 {
  font-size: 20px;
  color: #1A2B1A;
  margin-bottom: 12px;
}

.service-card p, .category-card p {
  color: #3A4A3A;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card .price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #6A8E5C;
  margin-top: auto;
}

.category-card .price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #6A8E5C;
}

.category-card .product-count {
  display: block;
  font-size: 14px;
  color: #3A4A3A;
  margin-bottom: 16px;
}

.btn-category {
  display: inline-block;
  padding: 12px 24px;
  background-color: #6A8E5C;
  color: #FFFFFF;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid #8B9F7D;
  margin-top: auto;
}

.btn-category:hover {
  background-color: #8B9F7D;
  transform: scale(1.05);
}

/* =========================================
   TESTIMONIALS - DARK TEXT ON LIGHT BG
   ========================================= */

.testimonials {
  background-color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 20px;
  margin-bottom: 60px;
  border: 2px solid #E8F0E8;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 16px;
  color: #1A2B1A;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 32px;
  background-color: #F8FAF5;
  border-radius: 16px;
  border: 2px solid #E8F0E8;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(106, 142, 92, 0.2);
  border-color: #8B9F7D;
}

.testimonial-card .rating {
  color: #D4AF37;
  font-size: 20px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: #2C3E2E;
  font-size: 16px;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card .customer {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1A2B1A;
  margin-top: auto;
}

.rating-summary {
  text-align: center;
  font-size: 18px;
  color: #2C3E2E;
  padding: 20px;
  background-color: #F8FAF5;
  border-radius: 12px;
  border: 2px solid #E8F0E8;
}

.rating-summary strong {
  color: #6A8E5C;
  font-size: 24px;
}

/* =========================================
   CTA BANNER
   ========================================= */

.cta-banner, .cta-section {
  background: linear-gradient(135deg, #6A8E5C 0%, #8B9F7D 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 60px;
  border: 3px solid #A0B99A;
}

.cta-banner h2, .cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 24px;
}

.cta-banner p, .cta-section p {
  color: #F8FAF5;
  font-size: 16px;
  margin-bottom: 16px;
}

.contact-info, .additional-info {
  font-size: 14px;
  color: #E8F0E8;
  margin-bottom: 24px;
}

.cta-banner .cta-button, .cta-section .cta-button,
.cta-banner .cta-primary, .cta-section .cta-primary {
  background-color: #FFFFFF;
  color: #2C3E2E;
  border-color: #E8F0E8;
}

.cta-banner .cta-button:hover, .cta-section .cta-button:hover,
.cta-banner .cta-primary:hover, .cta-section .cta-primary:hover {
  background-color: #F8FAF5;
  transform: translateY(-3px);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* =========================================
   PAGE HERO & BREADCRUMB
   ========================================= */

.page-hero, .error-hero, .thank-you-hero {
  background: linear-gradient(135deg, #E8F0E8 0%, #C8D8C8 100%);
  padding: 60px 20px;
  border-radius: 20px;
  margin-bottom: 60px;
  text-align: center;
  border: 2px solid #8B9F7D;
}

.breadcrumb {
  font-size: 14px;
  color: #3A4A3A;
  margin-bottom: 24px;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #6A8E5C;
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.last-updated, .subtitle {
  font-size: 14px;
  color: #3A4A3A;
  margin-bottom: 24px;
}

/* =========================================
   PRODUCTS PAGE - FLEXBOX LAYOUT
   ========================================= */

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

.products-layout {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.filter-sidebar {
  flex: 0 0 250px;
  background-color: #F8FAF5;
  padding: 24px;
  border-radius: 16px;
  border: 2px solid #E8F0E8;
  align-self: flex-start;
}

.filter-sidebar h2 {
  font-size: 20px;
  margin-bottom: 24px;
  color: #1A2B1A;
}

.filter-group {
  margin-bottom: 24px;
}

.filter-group h3 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #2C3E2E;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #3A4A3A;
  font-size: 14px;
  cursor: pointer;
}

.filter-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.filter-group input[type="range"] {
  width: 100%;
  margin-bottom: 8px;
}

.reset-filters {
  width: 100%;
  padding: 12px;
  background-color: #6A8E5C;
  color: #FFFFFF;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid #8B9F7D;
}

.reset-filters:hover {
  background-color: #8B9F7D;
}

.products-main {
  flex: 1 1 calc(100% - 282px);
  min-width: 0;
}

.products-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding: 16px;
  background-color: #F8FAF5;
  border-radius: 12px;
  flex-wrap: wrap;
  gap: 16px;
  border: 2px solid #E8F0E8;
}

.sort-options {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sort-options label {
  font-weight: 600;
  color: #2C3E2E;
}

.sort-options select {
  padding: 8px 16px;
  border: 2px solid #8B9F7D;
  border-radius: 8px;
  background-color: #FFFFFF;
  color: #2C3E2E;
  cursor: pointer;
}

.view-toggle {
  display: flex;
  gap: 8px;
}

.view-toggle button {
  padding: 8px 16px;
  border: 2px solid #8B9F7D;
  border-radius: 8px;
  background-color: #FFFFFF;
  color: #2C3E2E;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-toggle button.active,
.view-toggle button:hover {
  background-color: #6A8E5C;
  color: #FFFFFF;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.product-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 24px;
  border: 2px solid #E8F0E8;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(106, 142, 92, 0.2);
  border-color: #6A8E5C;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 12px;
  background-color: #F8FAF5;
  padding: 20px;
  filter: sepia(20%) hue-rotate(60deg) saturate(1.1);
}

.product-card h3 {
  font-size: 18px;
  text-align: center;
  color: #1A2B1A;
  margin-bottom: 8px;
}

.product-card .rating {
  color: #D4AF37;
  font-size: 16px;
  letter-spacing: 2px;
}

.product-card .price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #6A8E5C;
  margin: 8px 0;
}

.add-to-cart {
  width: 100%;
  padding: 12px 24px;
  background-color: #6A8E5C;
  color: #FFFFFF;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid #8B9F7D;
  margin-top: auto;
}

.add-to-cart:hover {
  background-color: #8B9F7D;
  transform: scale(1.05);
}

/* =========================================
   SHOPPING BENEFITS - FLEXBOX
   ========================================= */

.shopping-benefits, .consultation-benefits {
  background-color: #F8FAF5;
  padding: 60px 20px;
  border-radius: 20px;
  margin-bottom: 60px;
  border: 2px solid #E8F0E8;
}

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

.benefit-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 12px;
  border: 2px solid #E8F0E8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.benefit-item img {
  width: 50px;
  height: 50px;
  filter: sepia(30%) hue-rotate(60deg) saturate(1.2);
}

.benefit-item h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #2C3E2E;
}

.benefit-item p {
  font-size: 14px;
  color: #3A4A3A;
  margin-bottom: 0;
}

/* =========================================
   VEHICLE TYPES - FLEXBOX GRID
   ========================================= */

.vehicle-types {
  padding: 60px 20px;
  background-color: #FFFFFF;
  border-radius: 20px;
  margin-bottom: 60px;
  border: 2px solid #E8F0E8;
}

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

.vehicle-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background-color: #F8FAF5;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid #E8F0E8;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(106, 142, 92, 0.2);
  border-color: #6A8E5C;
}

.vehicle-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  filter: sepia(30%) hue-rotate(60deg) saturate(1.2);
}

.vehicle-card h3 {
  font-size: 18px;
  color: #1A2B1A;
  margin-bottom: 8px;
}

.vehicle-card span {
  display: block;
  color: #3A4A3A;
  font-size: 14px;
  margin-bottom: 16px;
}

.vehicle-card a {
  color: #6A8E5C;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.vehicle-card a:hover {
  color: #8B9F7D;
  text-decoration: underline;
}

/* =========================================
   NEWSLETTER SECTION
   ========================================= */

.newsletter-section {
  background: linear-gradient(135deg, #6A8E5C 0%, #8B9F7D 100%);
  padding: 60px 20px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 60px;
  border: 3px solid #A0B99A;
}

.newsletter-section h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.newsletter-section p {
  color: #F8FAF5;
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  flex: 1 1 300px;
  padding: 14px 20px;
  border: 2px solid #E8F0E8;
  border-radius: 30px;
  font-size: 16px;
}

.newsletter-form button {
  padding: 14px 32px;
  background-color: #FFFFFF;
  color: #2C3E2E;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid #E8F0E8;
}

.newsletter-form button:hover {
  background-color: #F8FAF5;
  transform: scale(1.05);
}

.newsletter-note {
  color: #E8F0E8;
  font-size: 13px;
}

/* =========================================
   COMPANY STORY & TEXT SECTIONS
   ========================================= */

.company-story, .showroom-info, .text-image-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
  border-radius: 20px;
  margin-bottom: 60px;
  border: 2px solid #E8F0E8;
}

.text-section {
  margin-bottom: 32px;
}

.text-section p {
  color: #3A4A3A;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.text-section ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 20px;
}

.text-section li {
  color: #3A4A3A;
  margin-bottom: 12px;
  line-height: 1.6;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.milestone {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background-color: #F8FAF5;
  border-radius: 12px;
  border: 2px solid #E8F0E8;
}

.milestone .year {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #6A8E5C;
  margin-bottom: 12px;
}

.milestone p {
  color: #3A4A3A;
  font-size: 14px;
  margin-bottom: 0;
}

/* =========================================
   STATISTICS
   ========================================= */

.statistics {
  background: linear-gradient(135deg, #E8F0E8 0%, #C8D8C8 100%);
  padding: 60px 20px;
  border-radius: 20px;
  margin-bottom: 60px;
  border: 2px solid #8B9F7D;
}

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

.stat-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 16px;
  border: 2px solid #8B9F7D;
}

.stat-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #6A8E5C;
  margin-bottom: 12px;
}

.stat-item p {
  color: #2C3E2E;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

/* =========================================
   CONSULTATION PAGES
   ========================================= */

.consultation-types, .expertise-areas {
  padding: 60px 20px;
  background-color: #F8FAF5;
  border-radius: 20px;
  margin-bottom: 60px;
  border: 2px solid #E8F0E8;
}

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

.consultation-card, .expertise-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  border: 2px solid #E8F0E8;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.consultation-card:hover, .expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(106, 142, 92, 0.2);
  border-color: #6A8E5C;
}

.consultation-card img, .expertise-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  filter: sepia(30%) hue-rotate(60deg) saturate(1.2);
}

.consultation-card h3, .expertise-item h3 {
  color: #1A2B1A;
  margin-bottom: 12px;
}

.consultation-card p, .expertise-item p {
  color: #3A4A3A;
  margin-bottom: 12px;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: #6A8E5C;
  color: #FFFFFF;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-top: auto;
}

.consultation-process {
  padding: 60px 20px;
  background-color: #FFFFFF;
  border-radius: 20px;
  margin-bottom: 60px;
  border: 2px solid #E8F0E8;
}

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

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 24px;
  background-color: #F8FAF5;
  border-radius: 12px;
  border: 2px solid #E8F0E8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #6A8E5C;
  color: #FFFFFF;
  border-radius: 50%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  border: 3px solid #8B9F7D;
}

.step h3 {
  color: #1A2B1A;
  font-size: 18px;
}

.step p {
  color: #3A4A3A;
  font-size: 14px;
  margin-bottom: 0;
}

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

.contact-methods {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.method-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background-color: #F8FAF5;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid #E8F0E8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.method-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  filter: sepia(30%) hue-rotate(60deg) saturate(1.2);
}

.method-card h3 {
  color: #1A2B1A;
  margin-bottom: 12px;
}

.method-card p {
  color: #3A4A3A;
  margin-bottom: 8px;
}

.contact-form-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
  border-radius: 20px;
  margin-bottom: 60px;
  border: 2px solid #E8F0E8;
}

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

.form-note {
  background-color: #FFF9E6;
  border: 2px solid #D4AF37;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}

.form-note p {
  color: #2C3E2E;
  margin-bottom: 12px;
}

.form-note strong {
  color: #1A2B1A;
}

.contact-form-display {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-weight: 600;
  color: #2C3E2E;
  font-size: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 16px;
  border: 2px solid #E8F0E8;
  border-radius: 8px;
  font-size: 16px;
  background-color: #F8FAF5;
  color: #2C3E2E;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-button {
  padding: 16px 32px;
  background-color: #6A8E5C;
  color: #FFFFFF;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid #8B9F7D;
  opacity: 0.6;
  cursor: not-allowed;
}

.showroom-details, .showroom-content {
  padding: 60px 20px;
  background-color: #F8FAF5;
  border-radius: 20px;
  margin-bottom: 60px;
  border: 2px solid #E8F0E8;
}

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

.faq-contact {
  padding: 60px 20px;
  background-color: #FFFFFF;
  border-radius: 20px;
  margin-bottom: 60px;
  border: 2px solid #E8F0E8;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  padding: 24px;
  background-color: #F8FAF5;
  border-radius: 12px;
  border: 2px solid #E8F0E8;
}

.faq-item h3 {
  color: #1A2B1A;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #3A4A3A;
  margin-bottom: 0;
}

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

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

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 16px;
  border: 2px solid #E8F0E8;
}

.legal-content h2 {
  color: #1A2B1A;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 2px solid #E8F0E8;
}

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

.legal-content h3 {
  color: #2C3E2E;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  color: #3A4A3A;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  color: #3A4A3A;
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-content a {
  color: #6A8E5C;
  font-weight: 600;
}

.legal-content a:hover {
  text-decoration: underline;
}

.form-template {
  background-color: #F8FAF5;
  padding: 24px;
  border-radius: 12px;
  margin: 24px 0;
  border: 2px solid #E8F0E8;
}

.form-template p {
  margin-bottom: 12px;
  font-size: 14px;
}

/* =========================================
   404 & THANK YOU PAGES
   ========================================= */

.error-content, .success-icon, .error-icon {
  text-align: center;
  margin-bottom: 32px;
}

.error-icon img, .success-icon img {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  filter: sepia(30%) hue-rotate(60deg) saturate(1.2);
}

.error-message, .confirmation-text, .offer-text {
  font-size: 18px;
  color: #3A4A3A;
  margin-bottom: 24px;
}

.humor-text {
  font-style: italic;
  color: #6A8E5C;
  font-size: 16px;
}

.popular-links, .while-you-wait, .quick-links {
  padding: 60px 20px;
  background-color: #FFFFFF;
  border-radius: 20px;
  margin-bottom: 60px;
  border: 2px solid #E8F0E8;
}

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

.link-card, .action-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  background-color: #F8FAF5;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid #E8F0E8;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.link-card:hover, .action-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(106, 142, 92, 0.2);
  border-color: #6A8E5C;
}

.link-card img, .action-card img {
  width: 50px;
  height: 50px;
  filter: sepia(30%) hue-rotate(60deg) saturate(1.2);
}

.link-card span, .action-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #2C3E2E;
  font-size: 16px;
}

.action-card p {
  color: #3A4A3A;
  font-size: 14px;
  margin-bottom: 0;
}

.help-section {
  padding: 60px 20px;
  background-color: #F8FAF5;
  border-radius: 20px;
  margin-bottom: 60px;
  text-align: center;
  border: 2px solid #E8F0E8;
}

.next-steps {
  padding: 60px 20px;
  background-color: #F8FAF5;
  border-radius: 20px;
  margin-bottom: 60px;
  border: 2px solid #E8F0E8;
}

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

.step-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid #E8F0E8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-card img {
  width: 60px;
  height: 60px;
  filter: sepia(30%) hue-rotate(60deg) saturate(1.2);
}

.step-card h3 {
  color: #1A2B1A;
  font-size: 18px;
}

.step-card p {
  color: #3A4A3A;
  font-size: 14px;
  margin-bottom: 0;
}

.special-offer {
  background: linear-gradient(135deg, #6A8E5C 0%, #8B9F7D 100%);
  padding: 60px 20px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 60px;
  border: 3px solid #A0B99A;
}

.special-offer h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.special-offer .offer-text {
  color: #F8FAF5;
  margin-bottom: 24px;
}

.coupon {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.coupon-label {
  color: #E8F0E8;
  font-size: 16px;
}

.coupon-code {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 12px 32px;
  border-radius: 12px;
  border: 2px dashed #FFFFFF;
}

.validity {
  color: #E8F0E8;
  font-size: 14px;
}

.social-proof {
  padding: 60px 20px;
  background-color: #FFFFFF;
  border-radius: 20px;
  margin-bottom: 60px;
  border: 2px solid #E8F0E8;
}

.trust-badges, .trust-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.trust-badge {
  display: inline-block;
  padding: 12px 24px;
  background-color: #F8FAF5;
  border-radius: 24px;
  border: 2px solid #8B9F7D;
  color: #2C3E2E;
  font-weight: 600;
  font-size: 14px;
}

.badge {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background-color: #F8FAF5;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #E8F0E8;
}

.badge img {
  width: 60px;
  height: 60px;
  filter: sepia(30%) hue-rotate(60deg) saturate(1.2);
}

.badge span {
  color: #2C3E2E;
  font-weight: 600;
  font-size: 14px;
}

.link-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  padding: 20px;
  background-color: #F8FAF5;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #E8F0E8;
  transition: all 0.3s ease;
  font-weight: 600;
  color: #2C3E2E;
}

.link-item:hover {
  background-color: #6A8E5C;
  color: #FFFFFF;
  transform: translateY(-5px);
  border-color: #8B9F7D;
}

/* =========================================
   FOOTER - NATURE ORGANIC
   ========================================= */

footer {
  background: linear-gradient(135deg, #2C3E2E 0%, #1A2B1A 100%);
  color: #E8F0E8;
  padding: 60px 20px 20px;
  border-top: 4px solid #6A8E5C;
}

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

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

.footer-col h3, .footer-col h4 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-col p {
  color: #C8D8C8;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #C8D8C8;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #8B9F7D;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid #3A4A3A;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #A0B99A;
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C3E2E 0%, #1A2B1A 100%);
  color: #FFFFFF;
  padding: 24px 20px;
  z-index: 999;
  border-top: 3px solid #6A8E5C;
  box-shadow: 0 -4px 20px rgba(106, 142, 92, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-text p {
  color: #E8F0E8;
  font-size: 14px;
  margin-bottom: 8px;
}

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

.cookie-accept, .cookie-reject, .cookie-settings {
  padding: 12px 24px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-accept {
  background-color: #6A8E5C;
  color: #FFFFFF;
  border-color: #8B9F7D;
}

.cookie-accept:hover {
  background-color: #8B9F7D;
  transform: scale(1.05);
}

.cookie-reject {
  background-color: transparent;
  color: #E8F0E8;
  border-color: #8B9F7D;
}

.cookie-reject:hover {
  background-color: rgba(139, 159, 125, 0.2);
}

.cookie-settings {
  background-color: transparent;
  color: #E8F0E8;
  border-color: #8B9F7D;
}

.cookie-settings:hover {
  background-color: rgba(139, 159, 125, 0.2);
}

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

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

.cookie-modal-content {
  background-color: #F8FAF5;
  max-width: 600px;
  width: 100%;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  border: 3px solid #8B9F7D;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 24px;
  color: #2C3E2E;
  background-color: transparent;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: #E8F0E8;
  transform: rotate(90deg);
}

.cookie-modal h2 {
  color: #1A2B1A;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 12px;
  border: 2px solid #E8F0E8;
}

.cookie-category h3 {
  color: #2C3E2E;
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-category p {
  color: #3A4A3A;
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #C8D8C8;
  transition: 0.3s;
  border-radius: 26px;
}

.toggle-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: #FFFFFF;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: #6A8E5C;
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cookie-save {
  flex: 1;
  padding: 14px 28px;
  background-color: #6A8E5C;
  color: #FFFFFF;
  border-radius: 24px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid #8B9F7D;
  text-align: center;
}

.cookie-save:hover {
  background-color: #8B9F7D;
  transform: scale(1.02);
}

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

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  h4 { font-size: 16px; }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hide main navigation on mobile */
  .main-nav {
    display: none;
  }
  
  /* Adjust hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-primary, .cta-secondary, .cta-button {
    width: 100%;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Adjust grids to single column */
  .value-item,
  .service-card,
  .category-card,
  .testimonial-card,
  .benefit-item,
  .vehicle-card,
  .consultation-card,
  .expertise-item,
  .method-card,
  .step-card,
  .link-card,
  .action-card,
  .stat-item,
  .milestone,
  .step {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Products page adjustments */
  .products-layout {
    flex-direction: column;
  }
  
  .filter-sidebar {
    flex: 1 1 100%;
    order: 2;
  }
  
  .products-main {
    flex: 1 1 100%;
    order: 1;
  }
  
  .product-card {
    flex: 1 1 100%;
  }
  
  .products-toolbar {
    flex-direction: column;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Cookie banner adjustments */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-accept, .cookie-reject, .cookie-settings {
    flex: 1;
    min-width: 120px;
  }
  
  /* Process steps mobile */
  .process-steps {
    flex-direction: column;
  }
  
  /* Newsletter form mobile */
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
  }
  
  /* Legal content adjustments */
  .legal-content {
    padding: 24px;
  }
  
  /* Modal adjustments */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .coupon {
    flex-direction: column;
  }
  
  .coupon-code {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  /* Smaller screens */
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 40px 16px;
  }
  
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .stat-number {
    font-size: 36px;
  }
  
  .mobile-menu {
    width: 90%;
    max-width: 100%;
  }
}

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

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

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.hero-content,
.value-item,
.service-card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

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

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

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

:focus-visible {
  outline: 3px solid #6A8E5C;
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid #6A8E5C;
  outline-offset: 2px;
}

/* Screen reader only */
.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) {
  body {
    background-color: #FFFFFF;
  }
  
  .hero,
  .page-hero {
    border: 3px solid #1A2B1A;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================
   PRINT STYLES
   ========================================= */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    color: #000000;
    background: #FFFFFF;
  }
  
  a {
    text-decoration: underline;
  }
}

/* End of CSS */