/* ============================================
   GALACTIC COACH - NATURE ORGANIC DESIGN
   Comprehensive CSS Styles
   Design Style: Nature-inspired organic design
   ============================================ */

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

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

body {
  font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #2c3e2c;
  background: #faf8f5;
  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-position: inside;
}

table {
  width: 100%;
  border-collapse: collapse;
}

/* ============================================
   NATURE ORGANIC DESIGN SYSTEM
   Colors: Earth tones, greens, natural browns
   ============================================ */
:root {
  --primary-color: #4a7c4e;
  --secondary-color: #8b7355;
  --accent-color: #d4a574;
  --dark-green: #2c4a2f;
  --light-green: #a8c5a0;
  --earth-brown: #6b5744;
  --sand: #e8dcc8;
  --cream: #faf8f5;
  --white: #ffffff;
  --text-dark: #2c3e2c;
  --text-light: #5a6b5a;
  --border-color: #d4c4b0;
  --shadow: rgba(76, 60, 44, 0.15);
}

/* ============================================
   TYPOGRAPHY - NATURE ORGANIC STYLE
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', 'Arial', sans-serif;
  color: var(--dark-green);
  line-height: 1.3;
  margin-bottom: 16px;
  font-weight: 600;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

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

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

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

.subheadline {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

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

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

main {
  min-height: 60vh;
}

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

/* ============================================
   HEADER - NATURE ORGANIC STYLE
   ============================================ */
header {
  background: linear-gradient(135deg, #faf8f5 0%, #e8dcc8 100%);
  padding: 20px 0;
  box-shadow: 0 4px 12px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 3px solid var(--accent-color);
}

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

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

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
}

.logo span {
  font-family: 'Orbitron', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-green);
  letter-spacing: 1px;
}

/* ============================================
   NAVIGATION - DESKTOP
   ============================================ */
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

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

.main-nav a:hover {
  background: var(--light-green);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   MOBILE MENU TOGGLE BUTTON
   ============================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px var(--shadow);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--dark-green);
  transform: scale(1.1);
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #faf8f5 0%, #e8dcc8 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px var(--shadow);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--earth-brown);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: var(--dark-green);
  font-weight: 500;
  padding: 14px 20px;
  background: var(--white);
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  font-size: 16px;
}

.mobile-nav a:hover {
  background: var(--light-green);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateX(8px);
}

/* ============================================
   BUTTONS - NATURE ORGANIC STYLE
   ============================================ */
.btn-primary,
.cta-button,
button[type="submit"],
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
}

.btn-primary,
.cta-button,
button[type="submit"] {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(74, 124, 78, 0.3);
}

.btn-primary:hover,
.cta-button:hover,
button[type="submit"]:hover {
  background: var(--dark-green);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(74, 124, 78, 0.4);
}

.btn-secondary {
  background: var(--sand);
  color: var(--dark-green);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--accent-color);
  color: var(--white);
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}

/* ============================================
   HERO SECTION - NATURE ORGANIC
   ============================================ */
.hero {
  background: linear-gradient(135deg, #e8dcc8 0%, #a8c5a0 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 197, 160, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--dark-green);
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
  font-size: 18px;
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto 32px;
}

.trust-badge {
  background: var(--white);
  display: inline-block;
  padding: 12px 24px;
  border-radius: 20px;
  font-size: 14px;
  color: var(--dark-green);
  font-weight: 600;
  margin-top: 24px;
  box-shadow: 0 4px 12px var(--shadow);
  border: 2px solid var(--accent-color);
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--text-light);
}

.breadcrumbs a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* ============================================
   VALUE PROPOSITION SECTION
   ============================================ */
.value-proposition {
  background: var(--white);
  border-radius: 30px;
  padding: 60px 20px;
  box-shadow: 0 8px 24px var(--shadow);
}

.value-proposition h2 {
  text-align: center;
  color: var(--dark-green);
  margin-bottom: 48px;
}

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

.value-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: var(--cream);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  border: 3px solid var(--border-color);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px var(--shadow);
  border-color: var(--primary-color);
  background: var(--light-green);
}

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

.value-item p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
}

/* ============================================
   SERVICES SHOWCASE
   ============================================ */
.services-showcase {
  background: linear-gradient(135deg, #faf8f5 0%, #e8dcc8 100%);
  padding: 60px 20px;
  border-radius: 30px;
}

.services-showcase h2 {
  text-align: center;
  margin-bottom: 16px;
}

.services-showcase > .container > p {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 48px;
  font-size: 18px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--shadow);
  border: 3px solid var(--border-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px var(--shadow);
  border-color: var(--primary-color);
}

.service-card h3 {
  color: var(--dark-green);
  font-size: 22px;
}

.service-card p {
  color: var(--text-light);
  font-size: 15px;
  flex-grow: 1;
}

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

.services-showcase .btn-primary {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
  background: var(--cream);
  padding: 60px 20px;
  border-radius: 30px;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.product-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--shadow);
  border: 3px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px var(--shadow);
  border-color: var(--accent-color);
}

.product-card h3 {
  color: var(--dark-green);
  font-size: 22px;
  margin-bottom: 12px;
}

.product-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

.product-card .price {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 12px 0;
}

.product-card .badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 8px var(--shadow);
}

.product-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-card ul li {
  color: var(--text-dark);
  padding-left: 24px;
  position: relative;
  font-size: 14px;
}

.product-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 16px;
}

.product-card .btn-primary {
  margin-top: auto;
  width: 100%;
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */
.testimonials {
  background: var(--sand);
  padding: 60px 20px;
  border-radius: 30px;
}

.testimonials h2 {
  text-align: center;
  color: var(--dark-green);
  margin-bottom: 48px;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--shadow);
  border-left: 5px solid var(--primary-color);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

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

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-section,
.cta-final {
  background: linear-gradient(135deg, #4a7c4e 0%, #2c4a2f 100%);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  box-shadow: 0 8px 24px var(--shadow);
}

.cta-section h2,
.cta-final h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p,
.cta-final p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-section .btn-primary,
.cta-final .btn-primary {
  background: var(--accent-color);
  color: var(--dark-green);
}

.cta-section .btn-primary:hover,
.cta-final .btn-primary:hover {
  background: var(--white);
  color: var(--dark-green);
}

.cta-section .btn-secondary,
.cta-final .btn-secondary {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.cta-section .btn-secondary:hover,
.cta-final .btn-secondary:hover {
  background: var(--white);
  color: var(--dark-green);
}

.urgency {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 20px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* ============================================
   TECH & FEATURES SECTIONS
   ============================================ */
.tech-overview,
.tech-features,
.service-overview,
.installation-process {
  background: var(--cream);
  padding: 60px 20px;
  border-radius: 30px;
}

.stats-grid,
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.stat-item,
.feature-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: var(--white);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 12px var(--shadow);
  border: 3px solid var(--border-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat-item:hover,
.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px var(--shadow);
  border-color: var(--primary-color);
}

.stat-item h3 {
  font-size: 40px;
  color: var(--primary-color);
  margin: 0;
}

.stat-item p,
.feature-item p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
}

.feature-item h3 {
  font-size: 18px;
  color: var(--dark-green);
  margin: 0;
}

.tech-feature {
  background: var(--white);
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 20px;
  border-left: 5px solid var(--primary-color);
  box-shadow: 0 4px 12px var(--shadow);
}

.tech-feature h2 {
  color: var(--dark-green);
  margin-bottom: 16px;
}

.tech-feature p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.tech-feature ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tech-feature ul li {
  color: var(--text-dark);
  padding-left: 28px;
  position: relative;
  font-size: 15px;
}

.tech-feature ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 18px;
}

/* ============================================
   TABLES - COMPARISON
   ============================================ */
.product-comparison,
.tech-comparison {
  background: var(--sand);
  padding: 60px 20px;
  border-radius: 30px;
}

.comparison-table {
  overflow-x: auto;
  margin-top: 32px;
}

table {
  width: 100%;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
}

table th {
  background: var(--primary-color);
  color: var(--white);
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
}

table td {
  padding: 16px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
  font-size: 14px;
}

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

table tr:hover {
  background: var(--cream);
}

/* ============================================
   TIMELINE & STEPS
   ============================================ */
.timeline,
.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.timeline-item,
.step-item {
  background: var(--white);
  padding: 24px 32px;
  border-radius: 16px;
  border-left: 5px solid var(--accent-color);
  box-shadow: 0 4px 12px var(--shadow);
  transition: all 0.3s ease;
}

.timeline-item:hover,
.step-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 16px var(--shadow);
  border-left-color: var(--primary-color);
}

.timeline-item h3,
.step-item h3 {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 8px;
}

.timeline-item p,
.step-item p {
  color: var(--text-light);
  margin: 0;
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-tiers {
  background: var(--cream);
  padding: 60px 20px;
  border-radius: 30px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: center;
}

.pricing-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background: var(--white);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--shadow);
  border: 3px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px var(--shadow);
  border-color: var(--primary-color);
}

.pricing-card h3 {
  color: var(--dark-green);
  font-size: 24px;
  margin: 0;
}

.pricing-card .price {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.pricing-card ul li {
  color: var(--text-dark);
  padding-left: 24px;
  position: relative;
  font-size: 14px;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

/* ============================================
   MISSION & COMPANY SECTIONS
   ============================================ */
.company-story,
.mission-vision,
.achievements {
  background: var(--white);
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 16px var(--shadow);
}

.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 32px 0;
}

.mission-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: var(--sand);
  padding: 32px;
  border-radius: 20px;
  border: 3px solid var(--border-color);
}

.mission-item h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.mission-vision ul {
  list-style: none;
  padding: 0;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mission-vision ul li {
  color: var(--text-dark);
  padding-left: 32px;
  position: relative;
  font-size: 16px;
}

.mission-vision ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 20px;
}

/* ============================================
   SHOWROOM & CONTACT INFO
   ============================================ */
.showroom-info,
.contact-info,
.service-areas {
  background: var(--sand);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  border: 3px solid var(--border-color);
}

.info-block {
  background: var(--white);
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 16px;
  border-left: 5px solid var(--primary-color);
}

.info-block h3 {
  color: var(--dark-green);
  margin-bottom: 16px;
}

.info-block ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-block ul li {
  color: var(--text-dark);
  font-size: 15px;
}

/* ============================================
   CONTACT METHODS
   ============================================ */
.contact-methods {
  background: var(--cream);
  padding: 60px 20px;
  border-radius: 30px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.contact-method {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 12px var(--shadow);
  border: 3px solid var(--border-color);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px var(--shadow);
  border-color: var(--primary-color);
}

.contact-method h3 {
  color: var(--primary-color);
  font-size: 22px;
  margin-bottom: 12px;
}

.contact-method p {
  color: var(--text-dark);
  font-size: 16px;
  margin: 8px 0;
}

/* ============================================
   DEPARTMENTS
   ============================================ */
.departments {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 12px var(--shadow);
}

.departments ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.departments ul li {
  background: var(--cream);
  padding: 16px 20px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
  color: var(--text-dark);
  font-size: 15px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-contact,
.faq-list {
  background: var(--sand);
  padding: 40px 20px;
  border-radius: 20px;
}

.faq-item {
  background: var(--white);
  padding: 24px;
  margin-bottom: 16px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 2px 8px var(--shadow);
}

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

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

/* ============================================
   CONSULTATION BOOKING
   ============================================ */
.consultation-booking {
  background: var(--cream);
  padding: 60px 20px;
  border-radius: 30px;
  text-align: center;
}

.consultation-types {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: center;
}

.consultation-type {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  border: 3px solid var(--border-color);
  box-shadow: 0 4px 12px var(--shadow);
  transition: all 0.3s ease;
}

.consultation-type:hover {
  transform: scale(1.05);
  border-color: var(--primary-color);
  box-shadow: 0 8px 20px var(--shadow);
}

.consultation-type h3 {
  color: var(--dark-green);
  font-size: 20px;
  margin-bottom: 12px;
}

.consultation-type p {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you {
  background: linear-gradient(135deg, #e8dcc8 0%, #a8c5a0 100%);
  padding: 80px 20px;
  border-radius: 30px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-content {
  background: var(--white);
  padding: 60px 40px;
  border-radius: 30px;
  box-shadow: 0 12px 40px var(--shadow);
  text-align: center;
  max-width: 700px;
  border: 3px solid var(--border-color);
}

.thank-you-content h1 {
  color: var(--primary-color);
  font-size: 48px;
  margin-bottom: 20px;
}

.next-steps,
.meanwhile {
  background: var(--cream);
  padding: 24px;
  border-radius: 16px;
  margin: 32px 0;
  text-align: left;
}

.next-steps h2,
.meanwhile h2 {
  color: var(--dark-green);
  font-size: 24px;
  margin-bottom: 16px;
}

.next-steps ol,
.meanwhile ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.next-steps ol li,
.meanwhile ul li {
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.7;
}

.contact-reminder {
  background: var(--sand);
  padding: 20px;
  border-radius: 12px;
  margin: 24px 0;
  border-left: 4px solid var(--accent-color);
}

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

.contact-reminder p {
  color: var(--text-dark);
  margin: 4px 0;
  font-size: 14px;
}

/* ============================================
   LEGAL CONTENT PAGES
   ============================================ */
.legal-content {
  background: var(--white);
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 16px var(--shadow);
}

.legal-content h1 {
  color: var(--dark-green);
  margin-bottom: 16px;
  border-bottom: 3px solid var(--accent-color);
  padding-bottom: 16px;
}

.text-section {
  background: var(--cream);
  padding: 32px;
  margin-bottom: 32px;
  border-radius: 16px;
  border-left: 5px solid var(--primary-color);
}

.text-section h2 {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 16px;
}

.text-section p {
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.8;
}

.text-section ul,
.text-section ol {
  padding-left: 24px;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.text-section ul li,
.text-section ol li {
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================
   FOOTER - NATURE ORGANIC
   ============================================ */
footer {
  background: linear-gradient(135deg, #2c4a2f 0%, #1a2e1c 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-radius: 30px 30px 0 0;
}

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

.footer-column {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

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

.footer-column ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column ul li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

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

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
  justify-content: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2c4a2f 0%, #4a7c4e 100%);
  color: var(--white);
  padding: 20px;
  box-shadow: 0 -4px 20px var(--shadow);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid var(--accent-color);
}

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

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

.cookie-banner p {
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  flex: 1 1 300px;
  font-size: 14px;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
}

.cookie-accept {
  background: var(--accent-color);
  color: var(--dark-green);
}

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

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

.cookie-reject:hover {
  background: var(--white);
  color: var(--dark-green);
}

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

.cookie-settings:hover {
  background: var(--accent-color);
  color: var(--dark-green);
}

/* ============================================
   COOKIE MODAL
   ============================================ */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 44, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

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

.cookie-modal-content {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 12px 40px var(--shadow);
  border: 3px solid var(--border-color);
}

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

.cookie-category {
  background: var(--cream);
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.cookie-category h3 {
  color: var(--dark-green);
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

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

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

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--primary-color);
}

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

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

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

.cookie-modal-buttons button {
  flex: 1 1 auto;
  padding: 12px 24px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
}

.cookie-save {
  background: var(--primary-color);
  color: var(--white);
}

.cookie-save:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
}

.cookie-close {
  background: var(--sand);
  color: var(--dark-green);
  border: 2px solid var(--border-color);
}

.cookie-close:hover {
  background: var(--border-color);
}

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

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  header .cta-button {
    display: none;
  }
  
  /* Header adjustments */
  header .container {
    justify-content: center;
  }
  
  /* Mobile menu width */
  .mobile-menu {
    width: 85%;
    max-width: 320px;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary,
  .cta-button {
    width: 100%;
    text-align: center;
  }
  
  /* Grid layouts - flexbox mobile adaptation */
  .values-grid,
  .services-grid,
  .product-grid,
  .testimonials-grid,
  .stats-grid,
  .features-grid,
  .pricing-grid,
  .contact-grid,
  .mission-grid {
    flex-direction: column;
  }
  
  .value-item,
  .service-card,
  .product-card,
  .testimonial-card,
  .stat-item,
  .feature-item,
  .pricing-card,
  .contact-method,
  .mission-item {
    flex: 1 1 100%;
  }
  
  /* Table overflow */
  .comparison-table {
    overflow-x: auto;
  }
  
  table {
    min-width: 600px;
  }
  
  /* Footer columns */
  .footer-columns {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Cookie banner mobile */
  .cookie-banner .container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Cookie modal mobile */
  .cookie-modal-content {
    padding: 24px;
  }
  
  /* Section padding */
  section {
    padding: 32px 16px;
  }
  
  .tech-feature,
  .showroom-info,
  .contact-info {
    padding: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .value-item,
  .stat-item,
  .feature-item {
    flex: 1 1 calc(50% - 24px);
  }
  
  .service-card,
  .product-card,
  .pricing-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .footer-column {
    flex: 1 1 calc(50% - 40px);
  }
}

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

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

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

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
}

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

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #2c4a2f;
    --secondary-color: #6b5744;
    --text-dark: #000000;
    --text-light: #333333;
  }
}

/* ============================================
   END OF COMPREHENSIVE CSS
   ============================================ */