/* ============================================
   QUORA BLAST - Nature Organic Design System
   Professional Car Tuning with Organic Touch
   ============================================ */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2D3436;
  background: #F8F9F0;
  overflow-x: hidden;
}

/* NATURE ORGANIC DESIGN - CUSTOM PROPERTIES */
:root {
  /* Earth Tones Color Palette */
  --primary-green: #4A7C59;
  --forest-dark: #2C4A3E;
  --sage-green: #8BA888;
  --clay-brown: #8B6F47;
  --warm-beige: #E8DCC4;
  --soft-cream: #F5F1E8;
  --moss-accent: #6B8E23;
  --earth-red: #A0522D;
  
  /* Natural Grays */
  --stone-gray: #7A7D7A;
  --charcoal: #3E3E3E;
  --light-fog: #E5E8E3;
  
  /* Spacing - Organic Flow */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 60px;
  --space-xxl: 80px;
  
  /* Typography */
  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Border Radius - Organic Shapes */
  --radius-soft: 12px;
  --radius-medium: 20px;
  --radius-organic: 30px;
  
  /* Shadows - Natural Depth */
  --shadow-subtle: 0 2px 8px rgba(74, 124, 89, 0.08);
  --shadow-medium: 0 4px 16px rgba(74, 124, 89, 0.12);
  --shadow-elevated: 0 8px 24px rgba(74, 124, 89, 0.16);
}

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

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

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

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

p {
  margin-bottom: var(--space-sm);
  color: var(--charcoal);
  line-height: 1.7;
}

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

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

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

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

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

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--primary-green) 100%);
  z-index: 999;
  padding: var(--space-xl) var(--space-md);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

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

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

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

.mobile-nav a {
  color: white;
  font-size: 18px;
  font-weight: 500;
  padding: var(--space-sm);
  border-radius: var(--radius-soft);
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(8px);
}

/* HEADER - ORGANIC NAVIGATION */
header {
  background: linear-gradient(135deg, var(--soft-cream) 0%, var(--warm-beige) 100%);
  padding: var(--space-md) 0;
  box-shadow: 0 2px 12px rgba(74, 124, 89, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

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

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

.main-nav a {
  color: var(--forest-dark);
  font-weight: 500;
  font-size: 16px;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-soft);
  transition: all 0.3s ease;
  position: relative;
}

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

.main-nav a:hover {
  color: var(--primary-green);
  background: rgba(74, 124, 89, 0.08);
}

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

/* HERO SECTION - ORGANIC IMPACT */
.hero {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--forest-dark) 100%);
  padding: var(--space-xxl) 0;
  margin-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 174, 136, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

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

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

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

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

.trust-badges {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.badge {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-organic);
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* BUTTONS - ORGANIC SHAPES */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-organic);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--primary-green);
  color: white;
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  background: var(--moss-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-elevated);
}

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

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

/* SECTIONS - ORGANIC SPACING */
.section,
.content-section,
.services-preview,
.benefits,
.testimonials,
.cta-section,
.team-section,
.values-section,
.stats-section,
.portfolio-grid,
.pricing-tables,
.packages-section,
.contact-methods,
.contact-form-section,
.legal-content,
.services-categories,
.services-detailed,
.guarantees-section,
.pricing-intro,
.pricing-category,
.payment-section,
.location-section,
.faq-section,
.thank-you-hero,
.next-steps,
.quick-contact,
.while-you-wait {
  margin-bottom: var(--space-xl);
  padding: var(--space-lg) var(--space-md);
}

.section-subtitle,
.page-subtitle {
  color: var(--stone-gray);
  font-size: 18px;
  margin-bottom: var(--space-lg);
  max-width: 700px;
}

/* PAGE HERO - BREADCRUMBS */
.page-hero {
  background: linear-gradient(135deg, var(--warm-beige) 0%, var(--soft-cream) 100%);
  padding: var(--space-xl) 0 var(--space-lg);
  margin-bottom: var(--space-xl);
  border-radius: 0 0 var(--radius-organic) var(--radius-organic);
}

.breadcrumbs {
  font-size: 14px;
  color: var(--stone-gray);
  margin-bottom: var(--space-sm);
}

.breadcrumbs a {
  color: var(--primary-green);
}

/* FLEXBOX GRID SYSTEMS - NO CSS GRID */
.services-grid,
.benefits-grid,
.testimonials-grid,
.categories-grid,
.team-grid,
.values-grid,
.stats-grid,
.projects-grid,
.price-list,
.packages-grid,
.contact-grid,
.guarantees-grid,
.payment-grid,
.faq-list,
.steps-grid,
.links-grid,
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

/* SERVICE CARDS - ORGANIC DESIGN */
.service-card,
.benefit-item,
.category-card,
.team-member,
.value-item,
.project-card,
.price-item,
.package-card,
.contact-method,
.guarantee-item,
.payment-option,
.faq-item,
.step-item,
.link-card,
.service-item {
  flex: 1 1 calc(33.333% - var(--space-md));
  min-width: 280px;
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-subtle);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: var(--space-md);
}

.service-card:hover,
.project-card:hover,
.package-card:hover,
.link-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
  border-left: 4px solid var(--moss-accent);
}

.service-card h3,
.benefit-item h3,
.category-card h3,
.team-member h3,
.value-item h3,
.project-card h3,
.price-item h3,
.package-card h3,
.service-item h3 {
  color: var(--primary-green);
  margin-bottom: var(--space-sm);
  font-size: 22px;
}

.price,
.package-price {
  color: var(--earth-red);
  font-weight: 700;
  font-size: 24px;
  margin-top: var(--space-sm);
  font-family: var(--font-display);
}

.duration,
.time {
  color: var(--stone-gray);
  font-size: 14px;
  font-style: italic;
}

.specs {
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 500;
  margin-top: var(--space-xs);
}

.old-price {
  text-decoration: line-through;
  color: var(--stone-gray);
  font-size: 18px;
  font-weight: 400;
}

.savings {
  color: var(--moss-accent);
  font-weight: 600;
  margin-top: var(--space-xs);
}

/* TESTIMONIALS - READABLE DESIGN */
.testimonial-card {
  flex: 1 1 calc(50% - var(--space-md));
  min-width: 300px;
  background: var(--soft-cream);
  padding: var(--space-lg);
  border-radius: var(--radius-medium);
  border-left: 4px solid var(--sage-green);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-medium);
}

.testimonial-card p {
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
  font-style: italic;
}

.author {
  color: var(--forest-dark);
  font-weight: 600;
  margin-top: var(--space-sm);
}

.rating {
  color: #F59E0B;
  font-size: 18px;
  margin-top: var(--space-xs);
}

/* STATS SECTION - ORGANIC SHOWCASE */
.stat-item {
  flex: 1 1 calc(25% - var(--space-md));
  min-width: 200px;
  text-align: center;
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-subtle);
  margin-bottom: var(--space-md);
}

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

.stat-label {
  color: var(--charcoal);
  font-size: 16px;
}

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

/* CTA SECTIONS - ORGANIC FLOW */
.cta-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--forest-dark) 100%);
  padding: var(--space-xxl) var(--space-md);
  border-radius: var(--radius-organic);
  text-align: center;
  margin: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 174, 136, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  color: white;
  margin-bottom: var(--space-sm);
}

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

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

.cta-note {
  color: var(--warm-beige);
  font-size: 14px;
  font-style: italic;
}

.cta-center {
  text-align: center;
  margin-top: var(--space-lg);
}

/* FORM ELEMENTS - ORGANIC INPUTS */
.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-field {
  margin-bottom: var(--space-md);
}

.form-field label {
  display: block;
  color: var(--forest-dark);
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.input-field,
input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-fog);
  border-radius: var(--radius-soft);
  font-size: 16px;
  font-family: var(--font-body);
  background: white;
  transition: all 0.3s ease;
}

.input-field:focus,
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

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

input[type="checkbox"] {
  margin-right: var(--space-xs);
  accent-color: var(--primary-green);
}

.form-note {
  color: var(--stone-gray);
  font-size: 14px;
  margin-top: var(--space-sm);
}

/* FOOTER - ORGANIC GROUNDING */
footer {
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--charcoal) 100%);
  color: var(--warm-beige);
  padding: var(--space-xl) 0 var(--space-md);
  margin-top: var(--space-xxl);
}

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

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

.footer-column h3 {
  color: white;
  margin-bottom: var(--space-sm);
  font-size: 20px;
}

.footer-column p {
  color: var(--warm-beige);
  font-size: 14px;
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-nav a {
  color: var(--warm-beige);
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

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

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

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

/* LEGAL SECTIONS - CLEAR READABILITY */
.legal-section {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-medium);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-subtle);
}

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

.legal-section h3 {
  color: var(--forest-dark);
  margin-top: var(--space-md);
}

/* THANK YOU PAGE - CELEBRATION */
.thank-you-hero {
  text-align: center;
  padding: var(--space-xxl) var(--space-md);
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.confirmation-icon {
  width: 100px;
  height: 100px;
  background: var(--primary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto var(--space-lg);
  box-shadow: var(--shadow-elevated);
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.confirmation-message {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 18px;
}

.timeline-note {
  text-align: center;
  color: var(--stone-gray);
  font-style: italic;
  margin-top: var(--space-md);
}

.contact-options {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin: var(--space-lg) 0;
  flex-wrap: wrap;
}

.contact-option {
  background: var(--soft-cream);
  padding: var(--space-md);
  border-radius: var(--radius-soft);
  min-width: 250px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--primary-green) 100%);
  padding: var(--space-md);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

.cookie-buttons button {
  padding: 10px 24px;
  border-radius: var(--radius-soft);
  border: 2px solid white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.accept-all {
  background: white;
  color: var(--primary-green);
}

.accept-all:hover {
  background: var(--warm-beige);
  transform: translateY(-2px);
}

.reject-all,
.cookie-settings {
  background: transparent;
  color: white;
}

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

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

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

.modal-content {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-medium);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

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

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--stone-gray);
  transition: color 0.3s ease;
}

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

.cookie-category {
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background: var(--soft-cream);
  border-radius: var(--radius-soft);
}

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

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
}

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--stone-gray);
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background: var(--primary-green);
}

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

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

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

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  /* Stack layouts vertically */
  .header-content,
  .hero-cta,
  .trust-badges,
  .cta-buttons,
  .cookie-content,
  .cookie-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  /* Full width cards */
  .service-card,
  .benefit-item,
  .category-card,
  .team-member,
  .value-item,
  .project-card,
  .price-item,
  .package-card,
  .contact-method,
  .guarantee-item,
  .payment-option,
  .faq-item,
  .step-item,
  .link-card,
  .service-item,
  .testimonial-card,
  .stat-item,
  .footer-column {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Reduce spacing */
  .section,
  .content-section,
  .services-preview,
  .benefits,
  .testimonials,
  .cta-section,
  .team-section,
  .values-section,
  .stats-section {
    padding: var(--space-md) var(--space-sm);
  }
  
  /* Adjust hero */
  .hero {
    padding: var(--space-xl) 0;
  }
  
  /* Button adjustments */
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Footer stacking */
  .footer-content {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  /* Further reduce typography */
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  /* Reduce spacing more */
  :root {
    --space-lg: 32px;
    --space-xl: 48px;
    --space-xxl: 60px;
  }
  
  /* Mobile menu width */
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }

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

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* SMOOTH TRANSITIONS */
* {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

a, button, .btn {
  transition-duration: 300ms;
}

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

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .cta-section,
  header,
  footer {
    display: none;
  }
}