/* ============================================
   GLIDEAUTO GARTENPFLEGE - MODERN BOLD DESIGN
   ============================================ */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* TYPOGRAPHY - BOLD & MODERN */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 20px;
}

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

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

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

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

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

ul {
  list-style: none;
}

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

/* HEADER - BOLD & STRIKING */
header {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 4px solid #F4D03F;
}

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

header img {
  height: 50px;
  width: auto;
}

/* MAIN NAVIGATION */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #F4D03F;
  transition: width 0.3s ease;
}

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

.main-nav a:hover {
  color: #2D5016;
}

/* CTA BUTTON - BOLD & PROMINENT */
.cta-button,
.btn-primary {
  background: linear-gradient(135deg, #2D5016 0%, #3a6b1c 100%);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover,
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(45, 80, 22, 0.4);
  background: linear-gradient(135deg, #3a6b1c 0%, #2D5016 100%);
}

.btn-secondary {
  background: transparent;
  color: #2D5016;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  border: 3px solid #2D5016;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  background: #2D5016;
  color: #ffffff;
  border: none;
  font-size: 28px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 8px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #3a6b1c;
  transform: scale(1.05);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 1999;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #1a1a1a;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 0;
  border-bottom: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #2D5016;
  padding-left: 10px;
  border-bottom-color: #F4D03F;
}

/* HERO SECTION - BOLD & IMPACTFUL */
.hero {
  background: linear-gradient(135deg, #2D5016 0%, #4a8a28 100%);
  color: #ffffff;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

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

.trust-badge {
  display: inline-block;
  background: #F4D03F;
  color: #1a1a1a;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(244, 208, 63, 0.4);
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
  font-size: 20px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

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

.hero-buttons .btn-secondary {
  border-color: #ffffff;
  color: #ffffff;
}

.hero-buttons .btn-secondary:hover {
  background: #ffffff;
  color: #2D5016;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #2D5016 0%, #4a8a28 100%);
  color: #ffffff;
  padding: 80px 20px 60px;
  margin-bottom: 60px;
}

.page-hero h1 {
  color: #ffffff;
  text-align: center;
}

.page-hero .hero-subheadline {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

/* BREADCRUMB */
.breadcrumb {
  text-align: center;
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

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

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

/* SECTIONS */
section {
  padding: 80px 20px;
  margin-bottom: 0;
}

.section-intro,
.intro-text {
  text-align: center;
  font-size: 18px;
  color: #666;
  max-width: 800px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 20px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: #F4D03F;
  border-radius: 3px;
}

/* SERVICES GRID - FLEXBOX LAYOUT */
.services-grid,
.benefits-grid,
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card,
.benefit-item,
.value-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 3px solid transparent;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.service-card h3,
.benefit-item h3,
.value-item h3 {
  color: #2D5016;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p,
.benefit-item p,
.value-item p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card .price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: #2D5016;
  display: block;
  margin: 16px 0;
}

.service-link,
.resource-link {
  color: #2D5016;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.service-link:hover,
.resource-link:hover {
  color: #F4D03F;
  gap: 12px;
}

.service-link::after,
.resource-link::after {
  content: '→';
  font-size: 18px;
  transition: transform 0.3s ease;
}

.service-link:hover::after,
.resource-link:hover::after {
  transform: translateX(4px);
}

.view-all {
  display: inline-block;
  margin: 40px auto 0;
  text-align: center;
  color: #2D5016;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 40px;
  border: 3px solid #2D5016;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.view-all:hover {
  background: #2D5016;
  color: #ffffff;
  transform: translateY(-3px);
}

/* BENEFITS SECTION */
.benefit-item img,
.value-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

/* PROCESS STEPS */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.step {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  padding: 32px 24px;
  background: #f8f8f8;
  border-radius: 12px;
  position: relative;
  transition: all 0.3s ease;
}

.step:hover {
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.step-number {
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: linear-gradient(135deg, #2D5016 0%, #4a8a28 100%);
  color: #ffffff;
  border-radius: 50%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
}

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

.step p {
  font-size: 14px;
  color: #666;
}

/* TESTIMONIALS - READABLE DESIGN */
.testimonials {
  background: #f8f8f8;
  padding: 80px 20px;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: #ffffff;
  padding: 40px 36px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #F4D03F;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
}

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

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

.testimonial-card .author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #2D5016;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* STATS */
.stats {
  background: linear-gradient(135deg, #2D5016 0%, #4a8a28 100%);
  color: #ffffff;
  padding: 80px 20px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.stat-item {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 56px;
  color: #F4D03F;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #F4D03F 0%, #e8c635 100%);
  padding: 80px 20px;
  text-align: center;
}

.cta-banner h2 {
  color: #1a1a1a;
  margin-bottom: 16px;
}

.cta-banner h2::after {
  background: #2D5016;
}

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

/* SERVICE DETAIL */
.service-detail {
  padding: 60px 20px;
}

.service-item {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-top: 5px solid #F4D03F;
}

.service-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

.service-item h2 {
  text-align: left;
  margin-bottom: 16px;
}

.service-item h2::after {
  left: 0;
  transform: none;
}

.service-item .price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: #2D5016;
  display: block;
  margin: 24px 0;
}

.service-benefits {
  list-style: none;
  margin: 32px 0;
}

.service-benefits li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.service-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2D5016;
  font-weight: 800;
  font-size: 20px;
}

/* PROJECTS */
.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.project-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #2D5016;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(45, 80, 22, 0.2);
}

.project-card h3 {
  color: #2D5016;
  font-size: 22px;
}

.project-card .category {
  display: inline-block;
  background: #F4D03F;
  color: #1a1a1a;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-card .location,
.project-card .duration {
  font-size: 14px;
  color: #666;
  font-weight: 600;
}

/* PROJECT SHOWCASE */
.project-showcase {
  background: #f8f8f8;
}

.showcase-content {
  max-width: 900px;
  margin: 0 auto;
}

.featured-label {
  display: inline-block;
  background: #2D5016;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.project-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px solid #ddd;
}

.project-stats span {
  font-weight: 600;
  color: #2D5016;
}

/* BLOG/RATGEBER */
.featured-article {
  background: #f8f8f8;
  padding: 60px 20px;
}

.featured {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 48px 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #F4D03F;
}

.featured h2 {
  text-align: left;
  margin-bottom: 16px;
}

.featured h2::after {
  left: 0;
  transform: none;
}

.excerpt {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
}

.article-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #666;
}

.article-meta .category {
  background: #2D5016;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-meta .read-time,
.article-meta .date {
  font-weight: 600;
}

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

.article-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #F4D03F;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.article-card h3 {
  color: #2D5016;
  font-size: 20px;
}

/* SEASONAL TIPS */
.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.tip-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 350px;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(45, 80, 22, 0.2);
}

.tip-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

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

/* CONTACT INFORMATION */
.info-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.info-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 350px;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-top: 4px solid #F4D03F;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(45, 80, 22, 0.2);
}

.info-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.info-card h3 {
  color: #2D5016;
  margin-bottom: 16px;
}

/* CONTACT FORM */
.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  padding: 48px 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.form-intro {
  text-align: center;
  color: #666;
  margin-bottom: 32px;
}

.form-note {
  background: #fff3cd;
  border-left: 4px solid #F4D03F;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  color: #333;
  line-height: 1.6;
}

.contact-details {
  background: #f8f8f8;
  padding: 32px;
  border-radius: 12px;
  margin-top: 24px;
}

.contact-details h3 {
  color: #2D5016;
  margin-bottom: 20px;
}

.contact-details p {
  margin-bottom: 16px;
  line-height: 1.7;
}

/* SERVICE AREA */
.districts-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 800px;
  margin: 32px auto;
}

.districts-list li {
  background: #f8f8f8;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  color: #2D5016;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.districts-list li:hover {
  background: #2D5016;
  color: #ffffff;
  border-color: #2D5016;
}

/* LEGAL CONTENT */
.legal-content,
.imprint-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

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

.text-section h2 {
  text-align: left;
  margin-bottom: 24px;
  font-size: 28px;
}

.text-section h2::after {
  left: 0;
  transform: none;
}

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

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

.text-section ul li {
  margin-bottom: 12px;
  line-height: 1.7;
  color: #555;
}

.last-updated {
  font-style: italic;
  color: #666;
  margin-bottom: 32px;
}

/* DSGVO RIGHTS */
.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.right-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #f8f8f8;
  padding: 28px 24px;
  border-radius: 12px;
  border-left: 4px solid #F4D03F;
}

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

.right-item p {
  color: #555;
  font-size: 15px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #2D5016 0%, #4a8a28 100%);
  color: #ffffff;
  padding: 120px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  background: #F4D03F;
  color: #2D5016;
  border-radius: 50%;
  font-size: 60px;
  font-weight: 800;
  margin: 0 auto 32px;
  box-shadow: 0 8px 30px rgba(244, 208, 63, 0.4);
}

.thank-you-hero h1 {
  color: #ffffff;
  margin-bottom: 20px;
}

.thank-you-hero .hero-subheadline {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
}

.next-steps {
  padding: 80px 20px;
}

.steps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.step-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  text-align: center;
  padding: 36px 28px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(45, 80, 22, 0.2);
}

.step-item img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.step-item h3 {
  color: #2D5016;
  margin-bottom: 12px;
}

.additional-resources {
  background: #f8f8f8;
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.resource-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  max-width: 350px;
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-top: 4px solid #F4D03F;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(45, 80, 22, 0.2);
}

.resource-card h3 {
  color: #2D5016;
}

/* TIMELINE */
.timeline-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}

.timeline-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 28px;
  margin-bottom: 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #F4D03F;
  transition: all 0.3s ease;
  position: relative;
}

.timeline-item:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(45, 80, 22, 0.2);
}

.timeline-item .year {
  display: inline-block;
  background: #2D5016;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 16px;
}

.timeline-item h3 {
  color: #2D5016;
  margin-bottom: 12px;
}

/* FOOTER - BOLD & STRUCTURED */
footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 60px 20px 30px;
  border-top: 5px solid #F4D03F;
}

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

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

.footer-column img {
  height: 45px;
  margin-bottom: 16px;
}

.footer-column .tagline {
  color: #999;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 12px;
}

.footer-column h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #F4D03F;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

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

.footer-column ul li a {
  color: #ccc;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: #F4D03F;
  padding-left: 8px;
}

.footer-column p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.footer-legal a {
  color: #999;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #F4D03F;
}

.copyright {
  color: #666;
  font-size: 13px;
  text-align: center;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid #F4D03F;
}

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

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

.cookie-banner p {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-accept {
  background: #2D5016;
  color: #ffffff;
}

.cookie-accept:hover {
  background: #3a6b1c;
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: #ffffff;
  border: 2px solid #666;
}

.cookie-reject:hover {
  border-color: #ffffff;
}

.cookie-settings {
  background: transparent;
  color: #F4D03F;
  border: 2px solid #F4D03F;
}

.cookie-settings:hover {
  background: #F4D03F;
  color: #1a1a1a;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #666;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}

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

.cookie-category {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  border-left: 4px solid #F4D03F;
}

.cookie-category h3 {
  color: #2D5016;
  margin-bottom: 12px;
  font-size: 18px;
}

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

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

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 28px;
  appearance: none;
  background: #ccc;
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: #2D5016;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  top: 3px;
  left: 3px;
  transition: left 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 25px;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Header mobile */
  header .container {
    padding: 16px 20px;
  }
  
  header img {
    height: 40px;
  }
  
  .main-nav,
  .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero mobile */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Sections mobile */
  section {
    padding: 60px 20px;
  }
  
  /* Cards mobile - stack vertically */
  .services-grid,
  .benefits-grid,
  .values-grid,
  .projects-grid,
  .articles-grid,
  .tips-grid,
  .info-cards-grid,
  .resources-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .service-card,
  .benefit-item,
  .value-item,
  .project-card,
  .article-card,
  .tip-card,
  .info-card,
  .resource-card {
    width: 100%;
    max-width: 100%;
  }
  
  /* Process steps mobile */
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
  
  .step {
    width: 100%;
    max-width: 100%;
  }
  
  /* Testimonials mobile */
  .testimonial-slider {
    flex-direction: column;
  }
  
  .testimonial-card {
    width: 100%;
    max-width: 100%;
  }
  
  /* Stats mobile */
  .stats-grid {
    flex-direction: column;
    gap: 32px;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .stat-number {
    font-size: 48px;
  }
  
  /* Footer mobile */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-legal {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  /* Cookie banner mobile */
  .cookie-banner .container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-banner p {
    flex: 1 1 auto;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Service item mobile */
  .service-item {
    padding: 32px 24px;
  }
  
  /* Timeline mobile */
  .timeline-item:hover {
    transform: translateX(0);
  }
  
  /* Districts list mobile */
  .districts-list {
    justify-content: flex-start;
  }
  
  /* Modal mobile */
  .cookie-modal-content {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  /* Extra small mobile adjustments */
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .stat-number {
    font-size: 40px;
  }
  
  .service-card .price,
  .service-item .price {
    font-size: 24px;
  }
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .cookie-modal,
  .cta-banner,
  .hero-buttons {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  a {
    text-decoration: underline;
  }
}

/* ACCESSIBILITY */
:focus {
  outline: 3px solid #F4D03F;
  outline-offset: 2px;
}

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

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

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

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

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

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