/* ===================================
   SHADY WHEELS - CREATIVE ARTISTIC STYLE
   Mobile Garden Service Website
   =================================== */

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

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

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #2c3e20;
  background: #fdfdfb;
  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;
}

/* ===================================
   TYPOGRAPHY - CREATIVE ARTISTIC
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2D5016;
  margin-bottom: 16px;
}

h1 {
  font-size: 42px;
  letter-spacing: -0.5px;
  text-shadow: 2px 2px 0px rgba(122, 157, 84, 0.2);
}

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

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
}

strong {
  font-weight: 700;
  color: #2D5016;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

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

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

/* ===================================
   HEADER - CREATIVE ARTISTIC
   =================================== */

header {
  background: linear-gradient(135deg, #2D5016 0%, #4a7a28 100%);
  padding: 20px 0;
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 4px solid #7A9D54;
}

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

.logo {
  height: 60px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
  transition: transform 0.3s ease;
}

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

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

.main-nav a {
  color: #F4E4C1;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #F4E4C1;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover {
  background: rgba(244, 228, 193, 0.15);
  transform: translateY(-2px);
}

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

/* ===================================
   MOBILE MENU - BURGER NAVIGATION
   =================================== */

.mobile-menu-toggle {
  display: none;
  background: #7A9D54;
  border: none;
  color: white;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #2D5016;
  transform: scale(1.1) rotate(90deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #2D5016 0%, #4a7a28 100%);
  z-index: 1999;
  padding: 80px 30px 40px;
  box-shadow: -5px 0 25px rgba(0,0,0,0.3);
  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: transparent;
  border: 2px solid #F4E4C1;
  color: #F4E4C1;
  font-size: 32px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #F4E4C1;
  color: #2D5016;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #F4E4C1;
  font-size: 20px;
  font-weight: 600;
  padding: 15px 20px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover,
.mobile-nav a:active {
  border-left-color: #7A9D54;
  background: rgba(244, 228, 193, 0.1);
  padding-left: 30px;
}

/* ===================================
   HERO SECTION - CREATIVE ARTISTIC
   =================================== */

.hero {
  background: linear-gradient(135deg, rgba(122, 157, 84, 0.9) 0%, rgba(45, 80, 22, 0.95) 100%),
              url('data:image/svg+xml,%3Csvg width="60" height="60" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h60v60H0z" fill="%23F4E4C1" fill-opacity=".05"/%3E%3Cpath d="M30 0L60 30 30 60 0 30z" fill="%23F4E4C1" fill-opacity=".08"/%3E%3C/svg%3E');
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 6px solid #F4E4C1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 228, 193, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(244, 228, 193, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(10deg); }
}

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

.hero h1 {
  color: #F4E4C1;
  font-size: 52px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0px rgba(45, 80, 22, 0.4);
  animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.subheadline {
  color: #F4E4C1;
  font-size: 20px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 400;
}

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

.trust-indicators {
  color: #F4E4C1;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.trust-indicators::before {
  content: '✓';
  color: #7A9D54;
  font-size: 20px;
  font-weight: 900;
}

/* ===================================
   BUTTONS - CREATIVE ARTISTIC
   =================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: #7A9D54;
  color: white;
  border-color: #7A9D54;
}

.btn-primary:hover {
  background: #2D5016;
  border-color: #2D5016;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
}

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

.btn-secondary:hover {
  background: #F4E4C1;
  color: #2D5016;
  transform: translateY(-3px);
}

button.btn:disabled,
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

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

.value-proposition {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #fdfdfb 0%, #f8f9f5 100%);
  text-align: center;
}

.value-proposition h2 {
  margin-bottom: 12px;
}

.section-subheadline {
  color: #5a6c4e;
  font-size: 18px;
  margin-bottom: 48px;
  font-style: italic;
}

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

.value-card {
  background: white;
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(45, 80, 22, 0.1);
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  transition: all 0.4s ease;
  border: 3px solid #F4E4C1;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(122, 157, 84, 0.1) 0%, transparent 70%);
  transition: all 0.5s ease;
  transform: scale(0);
}

.value-card:hover::before {
  transform: scale(1);
}

.value-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(45, 80, 22, 0.2);
  border-color: #7A9D54;
}

.value-card h3 {
  color: #2D5016;
  font-size: 22px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.value-card p {
  color: #5a6c4e;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* ===================================
   SERVICES OVERVIEW - FLEXBOX GRID
   =================================== */

.services-overview {
  padding: 60px 20px;
  background: #fdfdfb;
  text-align: center;
}

.services-overview h2 {
  margin-bottom: 12px;
}

.services-overview > .container > p {
  color: #5a6c4e;
  font-size: 18px;
  margin-bottom: 48px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  background: white;
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.12);
  flex: 1 1 calc(33.333% - 28px);
  min-width: 280px;
  max-width: 380px;
  text-align: left;
  transition: all 0.4s ease;
  border: 3px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #7A9D54 0%, #2D5016 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  border-radius: 0 0 22px 22px;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(45, 80, 22, 0.2);
  border-color: #F4E4C1;
}

.service-card h3 {
  color: #2D5016;
  font-size: 24px;
  margin-bottom: 16px;
}

.service-card p {
  color: #5a6c4e;
  font-size: 15px;
  line-height: 1.7;
}

.service-card .price {
  color: #7A9D54;
  font-size: 22px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 0;
}

/* ===================================
   PROCESS SECTION - FLEXBOX STEPS
   =================================== */

.process {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9f5 0%, #fdfdfb 100%);
  text-align: center;
}

.process h2 {
  margin-bottom: 48px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.step {
  background: white;
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.1);
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  position: relative;
  border: 3px solid #F4E4C1;
  transition: all 0.3s ease;
}

.step::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #7A9D54 0%, #2D5016 100%);
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.step:hover {
  transform: scale(1.05);
  border-color: #7A9D54;
}

.step h3 {
  color: #2D5016;
  font-size: 24px;
  margin-bottom: 16px;
  margin-top: 20px;
}

.step p {
  color: #5a6c4e;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===================================
   TESTIMONIALS - CREATIVE CARDS
   =================================== */

.testimonials {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #2D5016 0%, #4a7a28 100%);
  text-align: center;
}

.testimonials h2 {
  color: #F4E4C1;
  margin-bottom: 48px;
}

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

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  flex: 1 1 calc(50% - 28px);
  min-width: 300px;
  max-width: 500px;
  text-align: left;
  position: relative;
  border: 3px solid #F4E4C1;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: #7A9D54;
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.3;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

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

.testimonial-card .author {
  color: #2D5016;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 0;
  font-style: normal;
  text-align: right;
}

.rating {
  color: #F4E4C1;
  font-size: 18px;
  font-weight: 600;
  margin-top: 24px;
}

/* ===================================
   CTA BANNER - CREATIVE ARTISTIC
   =================================== */

.cta-banner,
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(122, 157, 84, 0.95) 0%, rgba(45, 80, 22, 0.98) 100%),
              url('data:image/svg+xml,%3Csvg width="40" height="40" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h40v40H0z" fill="%23F4E4C1" fill-opacity=".05"/%3E%3C/svg%3E');
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 4px solid #F4E4C1;
  border-bottom: 4px solid #F4E4C1;
}

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

.cta-banner p,
.cta-section p {
  color: #F4E4C1;
  font-size: 18px;
  margin-bottom: 32px;
}

.availability {
  color: #F4E4C1;
  font-size: 14px;
  margin-top: 24px;
  font-weight: 600;
}

/* ===================================
   PAGE HERO - SUBPAGES
   =================================== */

.page-hero {
  background: linear-gradient(135deg, #7A9D54 0%, #2D5016 100%);
  padding: 60px 20px 40px;
  text-align: center;
  border-bottom: 4px solid #F4E4C1;
}

.page-hero h1 {
  color: #F4E4C1;
  margin-bottom: 16px;
}

.page-hero p {
  color: #F4E4C1;
  font-size: 18px;
  margin-bottom: 0;
}

.page-hero-simple {
  background: linear-gradient(135deg, #7A9D54 0%, #2D5016 100%);
  padding: 40px 20px 30px;
  text-align: center;
  border-bottom: 4px solid #F4E4C1;
}

.page-hero-simple h1 {
  color: #F4E4C1;
  margin-bottom: 8px;
}

.page-hero-simple p {
  color: #F4E4C1;
  font-size: 16px;
  margin-bottom: 0;
}

.breadcrumb {
  margin-bottom: 16px;
  font-size: 14px;
  color: #F4E4C1;
  text-align: left;
}

.breadcrumb a {
  color: #F4E4C1;
  text-decoration: underline;
}

.breadcrumb a:hover {
  color: white;
}

/* ===================================
   SERVICES DETAILED PAGE
   =================================== */

.services-detailed {
  padding: 60px 20px;
  background: #fdfdfb;
}

.services-detailed h2 {
  text-align: center;
  margin-bottom: 48px;
}

.service-detail {
  background: white;
  padding: 32px;
  margin-bottom: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.1);
  border-left: 6px solid #7A9D54;
  transition: all 0.3s ease;
}

.service-detail:hover {
  box-shadow: 0 10px 30px rgba(45, 80, 22, 0.2);
  transform: translateX(5px);
}

.service-detail h3 {
  color: #2D5016;
  margin-bottom: 16px;
}

.service-detail p {
  color: #5a6c4e;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-detail ul {
  margin-bottom: 20px;
  padding-left: 0;
}

.service-detail ul li {
  color: #5a6c4e;
  font-size: 15px;
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
}

.service-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7A9D54;
  font-weight: 700;
}

.service-detail .price {
  color: #2D5016;
  font-size: 20px;
  font-weight: 700;
  background: #F4E4C1;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  margin-bottom: 0;
}

/* ===================================
   SERVICE PACKAGES - FLEXBOX
   =================================== */

.service-packages {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #f8f9f5 0%, #fdfdfb 100%);
  text-align: center;
}

.service-packages h2 {
  margin-bottom: 48px;
}

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 40px;
}

.package-card {
  background: white;
  padding: 40px 32px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(45, 80, 22, 0.15);
  flex: 1 1 calc(33.333% - 28px);
  min-width: 280px;
  max-width: 360px;
  border: 4px solid #F4E4C1;
  transition: all 0.4s ease;
  position: relative;
  margin-bottom: 20px;
}

.package-card.featured {
  border-color: #7A9D54;
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(45, 80, 22, 0.25);
}

.package-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(45, 80, 22, 0.25);
  border-color: #7A9D54;
}

.package-card h3 {
  color: #2D5016;
  margin-bottom: 20px;
  font-size: 26px;
}

.package-price {
  color: #7A9D54;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 24px;
  font-family: 'Merriweather', serif;
}

.package-card > p {
  color: #5a6c4e;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.savings {
  color: #2D5016;
  font-weight: 700;
  font-size: 14px;
  background: #F4E4C1;
  display: inline-block;
  padding: 6px 16px;
  border-radius: 15px;
  margin-bottom: 12px;
}

.ideal {
  color: #5a6c4e;
  font-size: 13px;
  font-style: italic;
  margin-bottom: 0;
}

.package-note {
  color: #5a6c4e;
  font-size: 13px;
  margin-top: 24px;
  font-style: italic;
}

/* ===================================
   SERVICE GUARANTEE
   =================================== */

.service-guarantee {
  padding: 60px 20px;
  background: white;
  text-align: center;
}

.service-guarantee h2 {
  margin-bottom: 40px;
}

.guarantee-list {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  list-style: none;
  padding-left: 0;
}

.guarantee-list li {
  color: #2c3e20;
  font-size: 16px;
  padding: 16px 20px 16px 50px;
  margin-bottom: 12px;
  background: #f8f9f5;
  border-radius: 15px;
  position: relative;
  transition: all 0.3s ease;
}

.guarantee-list li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  color: #7A9D54;
  font-weight: 900;
  font-size: 20px;
}

.guarantee-list li:hover {
  background: #7A9D54;
  color: white;
  padding-left: 60px;
}

.guarantee-list li:hover::before {
  color: white;
}

/* ===================================
   COMPANY STORY & MISSION
   =================================== */

.company-story,
.mission-values,
.sustainability-commitment {
  padding: 60px 20px;
  background: #fdfdfb;
}

.company-story h2,
.mission-values h2,
.sustainability-commitment h2 {
  text-align: center;
  margin-bottom: 32px;
}

.company-story p,
.mission-values p {
  color: #5a6c4e;
  font-size: 17px;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 48px;
}

.milestone {
  background: linear-gradient(135deg, #7A9D54 0%, #2D5016 100%);
  color: #F4E4C1;
  padding: 24px 32px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.2);
  flex: 1 1 200px;
  max-width: 250px;
  transition: all 0.3s ease;
}

.milestone:hover {
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
}

.mission {
  font-size: 24px;
  font-weight: 700;
  color: #2D5016;
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.5;
  font-style: italic;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.commitments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.commitment-card {
  background: white;
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.1);
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  max-width: 450px;
  border: 3px solid #F4E4C1;
  transition: all 0.3s ease;
}

.commitment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(45, 80, 22, 0.2);
  border-color: #7A9D54;
}

.commitment-card h3 {
  color: #2D5016;
  margin-bottom: 16px;
  font-size: 22px;
}

.commitment-card p {
  color: #5a6c4e;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

.future-goals {
  color: #2D5016;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  background: #F4E4C1;
  padding: 20px 32px;
  border-radius: 20px;
  max-width: 700px;
  margin: 0 auto;
}

/* ===================================
   TEAM SECTION
   =================================== */

.team-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #f8f9f5 0%, #fdfdfb 100%);
  text-align: center;
}

.team-section h2 {
  margin-bottom: 32px;
}

.team-section p {
  color: #5a6c4e;
  font-size: 17px;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================
   PRICING PAGES
   =================================== */

.pricing-overview {
  padding: 60px 20px;
  background: #fdfdfb;
}

.pricing-overview h2 {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-note {
  text-align: center;
  color: #5a6c4e;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 48px;
}

.pricing-list {
  max-width: 900px;
  margin: 0 auto;
}

.price-item {
  background: white;
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.1);
  border-left: 6px solid #7A9D54;
  transition: all 0.3s ease;
}

.price-item:hover {
  box-shadow: 0 10px 30px rgba(45, 80, 22, 0.2);
  transform: translateX(10px);
}

.price-item h3 {
  color: #2D5016;
  margin-bottom: 16px;
  font-size: 24px;
}

.price-item .price {
  color: #7A9D54;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 12px;
  display: block;
  font-family: 'Merriweather', serif;
}

.price-item p {
  color: #5a6c4e;
  font-size: 15px;
  margin-bottom: 0;
  line-height: 1.7;
}

.pricing-packages {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #f8f9f5 0%, #fdfdfb 100%);
}

.pricing-guarantee {
  padding: 60px 20px;
  background: white;
  text-align: center;
}

/* ===================================
   BLOG / TIPS PAGES
   =================================== */

.blog-categories {
  padding: 40px 20px;
  background: #fdfdfb;
  text-align: center;
}

.blog-categories h2 {
  margin-bottom: 32px;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.category-tag {
  background: #F4E4C1;
  color: #2D5016;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #F4E4C1;
}

.category-tag:hover {
  background: #7A9D54;
  color: white;
  transform: scale(1.1);
  border-color: #7A9D54;
}

.seasonal-tips {
  padding: 60px 20px;
  background: linear-gradient(135deg, #7A9D54 0%, #2D5016 100%);
  text-align: center;
}

.seasonal-tips h2 {
  color: #F4E4C1;
  margin-bottom: 16px;
}

.current-season {
  color: #F4E4C1;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 40px;
}

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

.tip-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  max-width: 360px;
  text-align: left;
  border: 3px solid #F4E4C1;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.tip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
  border-color: #7A9D54;
}

.tip-card h3 {
  color: #2D5016;
  font-size: 20px;
  margin-bottom: 12px;
}

.tip-card p {
  color: #5a6c4e;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

.blog-grid {
  padding: 60px 20px;
  background: #fdfdfb;
}

.blog-grid h2 {
  text-align: center;
  margin-bottom: 48px;
}

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.article-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.1);
  flex: 1 1 calc(50% - 28px);
  min-width: 300px;
  max-width: 550px;
  transition: all 0.3s ease;
  border: 3px solid #F4E4C1;
  cursor: pointer;
  margin-bottom: 20px;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(45, 80, 22, 0.2);
  border-color: #7A9D54;
}

.article-category {
  background: #7A9D54;
  color: white;
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-card h3 {
  color: #2D5016;
  font-size: 22px;
  margin-bottom: 12px;
}

.article-card > p {
  color: #5a6c4e;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.article-meta {
  color: #7A9D54;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 0;
}

.sustainability-tips {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #f8f9f5 0%, #fdfdfb 100%);
}

.sustainability-tips h2 {
  text-align: center;
  margin-bottom: 48px;
}

.tips-list {
  max-width: 900px;
  margin: 0 auto;
}

.tip-item {
  background: white;
  padding: 28px 32px;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.1);
  border-left: 6px solid #7A9D54;
  transition: all 0.3s ease;
}

.tip-item:hover {
  box-shadow: 0 8px 25px rgba(45, 80, 22, 0.2);
  transform: translateX(10px);
}

.tip-item h3 {
  color: #2D5016;
  font-size: 22px;
  margin-bottom: 12px;
}

.tip-item p {
  color: #5a6c4e;
  font-size: 15px;
  margin-bottom: 0;
  line-height: 1.6;
}

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

.contact-methods {
  padding: 60px 20px;
  background: #fdfdfb;
}

.contact-methods h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.contact-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.1);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  max-width: 360px;
  text-align: center;
  border: 3px solid #F4E4C1;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(45, 80, 22, 0.2);
  border-color: #7A9D54;
}

.contact-card h3 {
  color: #2D5016;
  margin-bottom: 16px;
  font-size: 22px;
}

.contact-card p {
  color: #5a6c4e;
  font-size: 15px;
  line-height: 1.7;
}

.contact-form-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #f8f9f5 0%, #fdfdfb 100%);
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-form-section > .container > p {
  text-align: center;
  color: #5a6c4e;
  font-size: 16px;
  margin-bottom: 40px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 8px 30px rgba(45, 80, 22, 0.15);
  border: 3px solid #F4E4C1;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  color: #2D5016;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 15px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #F4E4C1;
  border-radius: 15px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fdfdfb;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: #7A9D54;
  box-shadow: 0 0 0 3px rgba(122, 157, 84, 0.1);
}

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

.form-field input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

.form-note {
  color: #5a6c4e;
  font-size: 13px;
  font-style: italic;
  margin-top: 16px;
  text-align: center;
}

.service-area,
.location-details {
  padding: 60px 20px;
  background: #fdfdfb;
  text-align: center;
}

.service-area h2,
.location-details h2 {
  margin-bottom: 24px;
}

.service-area p,
.location-details p {
  color: #5a6c4e;
  font-size: 16px;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

.coverage-list {
  color: #2D5016;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 24px;
}

.note {
  font-style: italic;
  color: #7A9D54;
  font-weight: 600;
}

/* ===================================
   THANK YOU PAGE
   =================================== */

.thank-you-hero {
  background: linear-gradient(135deg, #7A9D54 0%, #2D5016 100%);
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #7A9D54;
  margin: 0 auto 32px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  animation: scaleIn 0.6s ease-out;
}

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

.thank-you-hero h1 {
  color: #F4E4C1;
  margin-bottom: 16px;
}

.thank-you-hero .subheadline {
  color: #F4E4C1;
  font-size: 18px;
  margin-bottom: 24px;
}

.confirmation {
  color: #F4E4C1;
  font-size: 16px;
  font-weight: 600;
  background: rgba(255,255,255,0.1);
  padding: 12px 24px;
  border-radius: 20px;
  display: inline-block;
}

.next-steps {
  padding: 60px 20px;
  background: #fdfdfb;
  text-align: center;
}

.next-steps h2 {
  margin-bottom: 40px;
}

.response-time {
  color: #2D5016;
  font-size: 16px;
  margin-top: 32px;
  background: #F4E4C1;
  padding: 16px 32px;
  border-radius: 20px;
  display: inline-block;
}

.email-confirmation {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #f8f9f5 0%, #fdfdfb 100%);
  text-align: center;
}

.email-confirmation h2 {
  margin-bottom: 24px;
}

.email-confirmation p {
  color: #5a6c4e;
  font-size: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

.meanwhile-explore {
  padding: 60px 20px;
  background: white;
}

.meanwhile-explore h2 {
  text-align: center;
  margin-bottom: 48px;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.suggestion-card {
  background: #f8f9f5;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.1);
  flex: 1 1 calc(33.333% - 28px);
  min-width: 260px;
  max-width: 360px;
  text-align: center;
  border: 3px solid #F4E4C1;
  transition: all 0.3s ease;
}

.suggestion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(45, 80, 22, 0.2);
  border-color: #7A9D54;
}

.suggestion-card h3 {
  color: #2D5016;
  margin-bottom: 16px;
  font-size: 22px;
}

.suggestion-card p {
  color: #5a6c4e;
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.return-navigation {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #f8f9f5 0%, #fdfdfb 100%);
  text-align: center;
}

.nav-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.legal-content {
  padding: 60px 20px;
  background: #fdfdfb;
}

.legal-content h2 {
  color: #2D5016;
  margin-bottom: 24px;
  margin-top: 40px;
}

.legal-content h3 {
  color: #2D5016;
  margin-bottom: 16px;
  margin-top: 32px;
  font-size: 22px;
}

.legal-content h4 {
  color: #2D5016;
  margin-bottom: 12px;
  margin-top: 24px;
  font-size: 18px;
}

.legal-content p {
  color: #5a6c4e;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  color: #5a6c4e;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
  padding-left: 32px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: #7A9D54;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #2D5016;
}

/* ===================================
   FOOTER - CREATIVE ARTISTIC
   =================================== */

footer {
  background: linear-gradient(180deg, #2D5016 0%, #1f3810 100%);
  color: #F4E4C1;
  padding: 60px 20px 30px;
  border-top: 6px solid #7A9D54;
}

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

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

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.footer-section h4 {
  color: #F4E4C1;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  color: #F4E4C1;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
  opacity: 0.9;
}

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

.footer-nav a {
  color: #F4E4C1;
  font-size: 14px;
  transition: all 0.3s ease;
  opacity: 0.9;
  padding-left: 0;
  border-left: 3px solid transparent;
  padding-left: 12px;
}

.footer-nav a:hover {
  opacity: 1;
  padding-left: 20px;
  border-left-color: #7A9D54;
}

.copyright {
  text-align: center;
  color: #F4E4C1;
  font-size: 14px;
  padding-top: 24px;
  border-top: 2px solid rgba(244, 228, 193, 0.2);
  margin-top: 24px;
  opacity: 0.8;
}

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2D5016 0%, #4a7a28 100%);
  color: #F4E4C1;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid #7A9D54;
}

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

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

.cookie-consent p {
  color: #F4E4C1;
  font-size: 14px;
  margin-bottom: 0;
  flex: 1 1 300px;
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background: #7A9D54;
  color: white;
  border-color: #7A9D54;
}

.cookie-accept:hover {
  background: #2D5016;
  border-color: #2D5016;
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: #F4E4C1;
  border-color: #F4E4C1;
}

.cookie-reject:hover {
  background: rgba(244, 228, 193, 0.1);
  transform: translateY(-2px);
}

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

.cookie-settings:hover {
  color: white;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2001;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: white;
  padding: 40px;
  border-radius: 25px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0,0,0,0.4);
  border: 4px solid #7A9D54;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h3 {
  color: #2D5016;
  margin-bottom: 24px;
  font-size: 26px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f8f9f5;
  border-radius: 15px;
  border-left: 4px solid #7A9D54;
}

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

.cookie-category p {
  color: #5a6c4e;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

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

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

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  transition: 0.4s;
  border-radius: 26px;
}

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

input:checked + .cookie-slider {
  background: #7A9D54;
}

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

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

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

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

@media (max-width: 768px) {
  /* Hide desktop nav, show burger */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero {
    padding: 80px 20px 60px;
  }
  
  /* Flexbox adjustments for mobile */
  .value-grid,
  .services-grid,
  .steps-grid,
  .testimonials-grid,
  .packages-grid,
  .tips-grid,
  .articles-grid,
  .contact-grid,
  .suggestions-grid,
  .commitments-grid,
  .milestones {
    flex-direction: column;
    align-items: center;
  }
  
  .value-card,
  .service-card,
  .step,
  .testimonial-card,
  .package-card,
  .tip-card,
  .article-card,
  .contact-card,
  .suggestion-card,
  .commitment-card,
  .milestone {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie consent mobile */
  .cookie-consent .container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  /* CTA buttons mobile */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  /* Form adjustments */
  .form-wrapper {
    padding: 24px;
  }
  
  /* Header adjustments */
  header .container {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .logo {
    height: 50px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .value-card,
  .step {
    flex: 1 1 calc(50% - 24px);
  }
  
  .service-card,
  .testimonial-card,
  .package-card,
  .article-card {
    flex: 1 1 calc(50% - 28px);
  }
}

@media (min-width: 769px) {
  /* Desktop: hide mobile menu by default */
  .mobile-menu-toggle {
    display: none;
  }
  
  .mobile-menu {
    display: none;
  }
}

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

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

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

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

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

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

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid #7A9D54;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none;
  }
}