/* === Self-hosted Google Fonts === */
@font-face {
  font-family: 'Caveat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/caveat-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Caveat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/caveat-700.ttf') format('truetype');
}
@font-face {
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/lexend-300.ttf') format('truetype');
}
@font-face {
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/lexend-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/lexend-500.ttf') format('truetype');
}
@font-face {
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/lexend-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/lexend-700.ttf') format('truetype');
}
@font-face {
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/lexend-800.ttf') format('truetype');
}

/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Lexend', sans-serif;
  color: #1a4d2e;
  line-height: 1.6;
  overflow-x: hidden;
  background: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

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

/* === Section Labels & Titles === */
.section-label {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #8dc641;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a4d2e;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #5a8a6a;
  max-width: 600px;
  margin: 0 auto 3.5rem;
  line-height: 1.6;
}

/* === Animations === */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Navigation === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 44px;
  transition: filter 0.3s ease;
}

.navbar:not(.scrolled) .nav-logo img {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a4d2e;
  transition: color 0.3s ease;
  position: relative;
}

.navbar:not(.scrolled) .nav-links a {
  color: #ffffff;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #8dc641;
  transition: width 0.3s ease;
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after {
  width: 100%;
}

.nav-cta {
  background: #079247;
  color: #fff !important;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: #148a34;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,158,63,0.3);
}

.navbar:not(.scrolled) .nav-cta {
  background: #ffffff;
  color: #079247 !important;
}

.navbar:not(.scrolled) .nav-cta:hover {
  background: #f0f9f0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #1a4d2e;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar:not(.scrolled) .hamburger span {
  background: #ffffff;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* === Hero Section === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,146,71,1) 0%, rgba(7,146,71,0.7) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 132 170' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M74.18 117.1C106.64 113.02 131.86 85.24 131.86 51.7C131.86 51.63 131.86 51.56 131.86 51.48C131.81 49.55 131.03 47.71 129.66 46.35C128.25 44.95 126.35 44.16 124.36 44.16H124.35C111.94 44.18 100.32 47.66 90.4 53.68C90.51 52.09 90.59 50.49 90.59 48.88C90.59 31.27 83.73 14.71 71.28 2.26L71.21 2.2C69.8 0.79 67.89 0 65.91 0C65.88 0 65.84 0 65.81 0C63.85 0.03 61.98 0.82 60.6 2.21L60.58 2.23C48.13 14.68 41.27 31.24 41.27 48.85C41.27 50.43 41.34 51.99 41.45 53.55C31.54 47.6 19.96 44.16 7.59 44.16H7.5C3.41 44.16 0.09 47.43 0 51.5V51.7C0 85.26 25.21 113.02 57.67 117.1V128.68H19.23V136.46L19.21 136.91V169.8' stroke='white' stroke-width='0.5' opacity='0.06' fill='none'/%3E%3C/svg%3E");
  background-size: 180px;
  background-repeat: repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px 24px 60px;
  max-width: 720px;
}

.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  animation: heroFadeIn 1s ease forwards;
}

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

.hero-logo-icon {
  width: 100px;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.15));
}

.hero-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-name-logo {
  width: 280px;
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 2px 12px rgba(0,0,0,0.2));
}

.hero-sub {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 6px;
  margin-top: 6px;
}

.hero-slogan {
  font-family: 'Caveat', cursive;
  font-size: 2.8rem;
  font-style: italic;
  color: #fff;
  margin-bottom: 16px;
  animation: heroFadeIn 1s 0.3s ease both;
}

.hero-subline {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-bottom: 44px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  animation: heroFadeIn 1s 0.5s ease both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeIn 1s 0.7s ease both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll-hint span {
  display: block;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 14px;
  position: relative;
}

.hero-scroll-hint span::after {
  content: '';
  width: 4px;
  height: 10px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollDot {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Lexend', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: #ffffff;
  color: #079247;
  border-color: #ffffff;
}

.btn-primary:hover {
  background: #f0f9f0;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.5);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: #ffffff;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.btn-green {
  background: #079247;
  color: #ffffff;
  border-color: #079247;
}

.btn-green:hover {
  background: #148a34;
  box-shadow: 0 12px 32px rgba(26,158,63,0.3);
}

.btn-cyan {
  background: #29abe2;
  color: #ffffff;
  border-color: #29abe2;
}

.btn-cyan:hover {
  background: #1e96c8;
  box-shadow: 0 12px 32px rgba(41,171,226,0.3);
}

.btn-winter {
  background: #ffffff;
  color: #0a2850;
  border-color: #ffffff;
}

.btn-winter:hover {
  background: #e8f0ff;
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* === Stats Bar === */
.stats-bar {
  background: #1a4d2e;
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  color: #ffffff;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #8dc641;
  line-height: 1;
}

.stat-suffix {
  font-size: 2rem;
  font-weight: 700;
  color: #8dc641;
}

.stat-item p {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

/* === Services === */
.services {
  padding: 120px 0;
  background: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-img-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  border-radius: 20px;
  overflow: hidden;
}

.service-img-half {
  border-radius: 20px;
  overflow: hidden;
  height: 280px;
}

.service-img-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  box-shadow: 0 20px 60px rgba(26,158,63,0.15);
  transform: translateY(-6px);
}

.service-img {
  overflow: hidden;
  height: 180px;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.08);
}

.service-body {
  padding: 24px 20px;
}

.service-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a4d2e;
  margin-bottom: 8px;
}

.service-body p {
  font-size: 0.88rem;
  color: #5a8a6a;
  line-height: 1.5;
}


/* === Process === */
.process {
  padding: 120px 0;
  background: #f7faf7;
}

.process-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 20px;
}

.process-step {
  flex: 1;
  max-width: 260px;
  text-align: center;
  position: relative;
}

.process-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(26,158,63,0.12);
  line-height: 1;
  margin-bottom: 16px;
}

.process-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background: rgba(7,146,71,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(7,146,71,0.15);
}

.process-icon img {
  width: 52px;
  height: 52px;
  filter: invert(33%) sepia(85%) saturate(800%) hue-rotate(120deg) brightness(90%);
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a4d2e;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.88rem;
  color: #5a8a6a;
  line-height: 1.5;
  padding: 0 8px;
}

.process-connector {
  width: 48px;
  height: 2px;
  background: #8dc641;
  margin-top: 100px;
  flex-shrink: 0;
}

/* === Portfolio === */
.portfolio {
  padding: 120px 0 80px;
  background: #ffffff;
}

.portfolio-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.portfolio-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-track .portfolio-item:first-child {
  margin-left: 24px;
}

.portfolio-track .portfolio-item:last-child {
  margin-right: 24px;
}

.portfolio-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  height: 400px;
  flex-shrink: 0;
}

.portfolio-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.portfolio-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #079247;
  background: transparent;
  color: #079247;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.portfolio-btn:hover {
  background: #079247;
  color: #fff;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  background-color: #079247;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 132 170' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M74.18 117.1C106.64 113.02 131.86 85.24 131.86 51.7C131.86 51.63 131.86 51.56 131.86 51.48C131.81 49.55 131.03 47.71 129.66 46.35C128.25 44.95 126.35 44.16 124.36 44.16H124.35C111.94 44.18 100.32 47.66 90.4 53.68C90.51 52.09 90.59 50.49 90.59 48.88C90.59 31.27 83.73 14.71 71.28 2.26L71.21 2.2C69.8 0.79 67.89 0 65.91 0C65.88 0 65.84 0 65.81 0C63.85 0.03 61.98 0.82 60.6 2.21L60.58 2.23C48.13 14.68 41.27 31.24 41.27 48.85C41.27 50.43 41.34 51.99 41.45 53.55C31.54 47.6 19.96 44.16 7.59 44.16H7.5C3.41 44.16 0.09 47.43 0 51.5V51.7C0 85.26 25.21 113.02 57.67 117.1V128.68H19.23V136.46L19.21 136.91V169.8' stroke='white' stroke-width='0.5' opacity='0.12' fill='none'/%3E%3C/svg%3E");
  background-size: 120px;
  background-repeat: repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 2px;
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,146,71,0.9) 0%, rgba(7,146,71,0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-tag {
  display: inline-block;
  background: #8dc641;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.portfolio-overlay h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.portfolio-overlay p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}

/* === CTA Banner === */
.cta-banner {
  padding: 40px 24px;
  background: #ffffff;
  max-width: 1400px;
  margin: 0 auto;
}

.cta-banner-inner {
  background: #079247;
  border-radius: 24px;
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.cta-banner-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
}

.cta-banner .btn-primary {
  flex-shrink: 0;
  white-space: nowrap;
}

/* === USP Strip === */
.usp-strip {
  padding: 100px 0;
  background: #f0f9f0;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.usp-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.usp-item:hover {
  background: #ffffff;
  box-shadow: 0 12px 40px rgba(26,158,63,0.08);
}

.usp-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: #eaf7ee;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.usp-item:hover .usp-icon-wrap {
  background: #079247;
}

.usp-item:hover .usp-icon-wrap svg path,
.usp-item:hover .usp-icon-wrap svg circle {
  stroke: #ffffff;
}

.usp-icon-wrap svg {
  width: 32px;
  height: 32px;
}

.usp-icon-wrap svg path,
.usp-icon-wrap svg circle {
  transition: stroke 0.3s ease;
}

.usp-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a4d2e;
  margin-bottom: 10px;
}

.usp-item p {
  font-size: 0.9rem;
  color: #5a8a6a;
  line-height: 1.5;
}

/* === About === */
.about {
  padding: 120px 0;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}

.about-img-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 220px;
  border-radius: 16px;
  border: 6px solid #ffffff;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.about-content .section-label {
  text-align: left;
}

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a4d2e;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-content p {
  font-size: 1rem;
  color: #5a8a6a;
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-feature svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.about-feature span {
  font-size: 0.92rem;
  font-weight: 500;
  color: #1a4d2e;
}

/* === Seasonal Services === */
.seasons {
  padding: 120px 0;
  background: #f7faf7;
}

.seasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.season-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 4px solid transparent;
}

.season-spring { border-top-color: #8dc641; }
.season-summer { border-top-color: #f5c518; }
.season-autumn { border-top-color: #e67e22; }
.season-winter { border-top-color: #29abe2; }

.season-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.season-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  line-height: 1;
}

.season-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a4d2e;
  margin-bottom: 16px;
}

.season-card ul {
  text-align: left;
}

.season-card li {
  font-size: 0.88rem;
  color: #5a8a6a;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}

.season-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8dc641;
}

.season-summer li::before { background: #f5c518; }
.season-autumn li::before { background: #e67e22; }
.season-winter li::before { background: #29abe2; }

/* === Parallax Divider === */
.parallax-divider {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #079247;
}

.parallax-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Cdefs%3E%3Cpath id='k' d='M74.18 117.1C106.64 113.02 131.86 85.24 131.86 51.7C131.86 51.63 131.86 51.56 131.86 51.48C131.81 49.55 131.03 47.71 129.66 46.35C128.25 44.95 126.35 44.16 124.36 44.16H124.35C111.94 44.18 100.32 47.66 90.4 53.68C90.51 52.09 90.59 50.49 90.59 48.88C90.59 31.27 83.73 14.71 71.28 2.26L71.21 2.2C69.8 0.79 67.89 0 65.91 0C65.88 0 65.84 0 65.81 0C63.85 0.03 61.98 0.82 60.6 2.21L60.58 2.23C48.13 14.68 41.27 31.24 41.27 48.85C41.27 50.43 41.34 51.99 41.45 53.55C31.54 47.6 19.96 44.16 7.59 44.16H7.5C3.41 44.16 .09 47.43 0 51.5V51.7C0 85.26 25.21 113.02 57.67 117.1V128.68H19.23V136.46C19.23 136.61 19.21 136.76 19.21 136.91V169.8C19.21 181.91 22.98 194.01 30.12 204.8C37.75 216.34 48.92 225.71 62.42 231.91C63.49 232.41 64.64 232.66 66.01 232.66C67.26 232.66 68.5 232.34 69.63 231.81C83.04 225.61 94.13 216.27 101.73 204.8C108.87 194.01 112.64 181.91 112.64 169.8V128.68H74.19V117.09L74.18 117.1Z'/%3E%3C/defs%3E%3Cg fill='%23ffffff'%3E%3Cuse href='%23k' transform='translate(15,10) scale(0.18) rotate(12,66,116)'/%3E%3Cuse href='%23k' transform='translate(180,25) scale(0.14) rotate(-20,66,116)'/%3E%3Cuse href='%23k' transform='translate(310,5) scale(0.2) rotate(35,66,116)'/%3E%3Cuse href='%23k' transform='translate(90,120) scale(0.22) rotate(-8,66,116)'/%3E%3Cuse href='%23k' transform='translate(250,100) scale(0.15) rotate(25,66,116)'/%3E%3Cuse href='%23k' transform='translate(370,130) scale(0.17) rotate(-30,66,116)'/%3E%3Cuse href='%23k' transform='translate(40,230) scale(0.16) rotate(18,66,116)'/%3E%3Cuse href='%23k' transform='translate(200,210) scale(0.21) rotate(-15,66,116)'/%3E%3Cuse href='%23k' transform='translate(340,240) scale(0.13) rotate(40,66,116)'/%3E%3Cuse href='%23k' transform='translate(130,310) scale(0.19) rotate(-25,66,116)'/%3E%3Cuse href='%23k' transform='translate(280,330) scale(0.16) rotate(10,66,116)'/%3E%3Cuse href='%23k' transform='translate(20,360) scale(0.14) rotate(-35,66,116)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 400px 400px;
  background-repeat: repeat;
}

.parallax-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 24px;
}

.parallax-slogan {
  font-family: 'Caveat', cursive;
  font-size: 2.6rem;
  color: #ffffff;
  margin-bottom: 32px;
  line-height: 1.4;
}

/* === Testimonials === */
.testimonials {
  padding: 120px 0;
  background: #f7faf7;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.testimonial-stars {
  margin-bottom: 16px;
}

.testimonial-stars span {
  color: #f5c518;
  font-size: 1.2rem;
  margin-right: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #4a7a5a;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #079247;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar svg {
  width: 28px;
  height: 28px;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a4d2e;
}

.testimonial-author span {
  font-size: 0.82rem;
  color: #8aaa8a;
}

/* === Service Areas === */
.service-areas {
  padding: 120px 0;
  background: #ffffff;
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.areas-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a4d2e;
  margin-bottom: 16px;
  line-height: 1.2;
}

.areas-content p {
  font-size: 1rem;
  color: #5a8a6a;
  line-height: 1.7;
  margin-bottom: 24px;
}

.areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.area-tag {
  display: inline-block;
  background: #f0f9f0;
  color: #1a4d2e;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid #d4ecd4;
  transition: all 0.3s ease;
}

.area-tag:hover {
  background: #079247;
  color: #ffffff;
  border-color: #079247;
}

.areas-image {
  position: relative;
}

.areas-image img {
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}

.areas-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #079247;
  color: #ffffff;
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(7,146,71,0.3);
  border: 4px solid #ffffff;
}

.areas-badge-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: #8dc641;
}

.areas-badge-text {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 4px;
  line-height: 1.3;
}

/* === Reinigung Banner === */
.reinigung {
  position: relative;
  padding: 100px 0;
  background: #1a7fc1;
  overflow: hidden;
}

.reinigung-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 10L50 30H70L54 44L60 66L40 52L20 66L26 44L10 30H30Z' stroke='white' stroke-width='0.5' fill='none' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 120px;
  background-repeat: repeat;
}

.reinigung-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.reinigung-logo {
  max-width: 280px;
  filter: brightness(0) invert(1);
  margin-bottom: 28px;
}

.reinigung-services {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
}

.reinigung-services li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.reinigung-services li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #29abe2;
  border-radius: 50%;
}

.reinigung-right h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.reinigung-right p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* === Winterdienst === */
.winterdienst {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.winterdienst-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.winterdienst-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 40, 80, 0.85);
}

.winterdienst-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px;
  max-width: 700px;
}

.winterdienst h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.winterdienst p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* === Before / After === */
.before-after {
  padding: 120px 0;
  background: #f7faf7;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.ba-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.ba-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

/* Slider */
.ba-slider {
  position: relative;
  height: 320px;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
}

.ba-slider .ba-after {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-before-wrap {
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0);
}

.ba-before-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  pointer-events: none;
}

.ba-handle-line {
  flex: 1;
  width: 3px;
  background: #ffffff;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.ba-handle-knob {
  width: 44px;
  height: 44px;
  background: #079247;
  border: 3px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  flex-shrink: 0;
}

.ba-handle-knob svg {
  width: 20px;
  height: 20px;
}

.ba-label {
  position: absolute;
  bottom: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 1;
}

.ba-label-before {
  left: 12px;
}

.ba-label-after {
  right: 12px;
  background: #079247;
}

.ba-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a4d2e;
  padding: 20px 24px 8px;
}

.ba-card p {
  font-size: 0.9rem;
  color: #5a8a6a;
  padding: 0 24px 24px;
  line-height: 1.5;
}

/* === FAQ === */
.faq {
  padding: 120px 0;
  background: #ffffff;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e4ece4;
}

.faq-item:first-child {
  border-top: 1px solid #e4ece4;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Lexend', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a4d2e;
  text-align: left;
  gap: 16px;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #079247;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #8dc641;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 22px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: #5a8a6a;
  line-height: 1.7;
}

/* === Contact === */
.contact {
  padding: 120px 0;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  background: #079247;
  border-radius: 24px;
  padding: 44px;
  color: #ffffff;
}

.contact-info h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-intro {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.contact-detail:last-of-type {
  border-bottom: none;
}

.contact-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.contact-detail strong {
  font-size: 0.72rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 2px;
  opacity: 0.65;
  text-transform: uppercase;
}

.contact-detail p {
  font-size: 1.05rem;
  font-weight: 500;
}

.contact-detail a,
.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.contact-detail a:hover,
.footer-contact a:hover {
  text-decoration: underline;
}

.contact-logo {
  margin-top: 36px;
  padding-top: 28px;
}

.contact-logo img {
  max-width: 160px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

/* Contact Form Card */
.form-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid #e8f0e8;
  overflow: hidden;
}

.form-card-header {
  margin-bottom: 28px;
}

.form-card-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a4d2e;
  margin-bottom: 6px;
}

.form-card-header p {
  font-size: 0.9rem;
  color: #5a8a6a;
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.contact-form.sending {
  opacity: 0.5;
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a4d2e;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  font-family: 'Lexend', sans-serif;
  font-size: 0.95rem;
  color: #1a4d2e;
  border: 2px solid #e4ece4;
  border-radius: 14px;
  outline: none;
  transition: all 0.3s ease;
  background: #f8faf8;
  -webkit-appearance: none;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%235a8a6a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #079247;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(26,158,63,0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0bca8;
}

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

/* Submit button spinner */
.btn-text { transition: opacity 0.3s ease; }
.btn-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.contact-form button[type="submit"] { position: relative; }
.contact-form.sending .btn-text { opacity: 0; }
.contact-form.sending .btn-spinner { display: block; }

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Success overlay */
.form-success-overlay {
  position: absolute;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 2;
  border-radius: 24px;
}

.form-success-overlay.show {
  opacity: 1;
  visibility: visible;
}

.success-content {
  text-align: center;
  padding: 40px;
  transform: scale(0.8) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-success-overlay.show .success-content {
  transform: scale(1) translateY(0);
}

.success-checkmark {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
}

.success-checkmark svg {
  width: 100%;
  height: 100%;
}

.checkmark-circle {
  stroke: #079247;
  stroke-width: 2;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  animation: none;
}

.checkmark-check {
  stroke: #079247;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: none;
}

.form-success-overlay.show .checkmark-circle {
  animation: circleAnim 0.6s ease forwards 0.2s;
}

.form-success-overlay.show .checkmark-check {
  animation: checkAnim 0.4s ease forwards 0.7s;
}

@keyframes circleAnim {
  to { stroke-dashoffset: 0; }
}

@keyframes checkAnim {
  to { stroke-dashoffset: 0; }
}

.success-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a4d2e;
  margin-bottom: 8px;
}

.success-text {
  font-size: 0.95rem;
  color: #5a8a6a;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto 28px;
}

.success-close-btn {
  min-width: 220px;
}

/* Error toast */
.form-error-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #d32f2f;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(211,47,47,0.3);
  z-index: 9999;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  white-space: nowrap;
}

.form-error-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* === Sticky Call Button === */
.sticky-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #079247;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-call svg {
  width: 24px;
  height: 24px;
}

.sticky-call:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(7,146,71,0.5);
}

/* === Footer === */
.footer {
  position: relative;
  background: #1a4d2e;
  color: #ffffff;
  padding: 80px 0 0;
  overflow: hidden;
}

.footer-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Cdefs%3E%3Cpath id='k' d='M74.18 117.1C106.64 113.02 131.86 85.24 131.86 51.7C131.86 51.63 131.86 51.56 131.86 51.48C131.81 49.55 131.03 47.71 129.66 46.35C128.25 44.95 126.35 44.16 124.36 44.16H124.35C111.94 44.18 100.32 47.66 90.4 53.68C90.51 52.09 90.59 50.49 90.59 48.88C90.59 31.27 83.73 14.71 71.28 2.26L71.21 2.2C69.8 0.79 67.89 0 65.91 0C65.88 0 65.84 0 65.81 0C63.85 0.03 61.98 0.82 60.6 2.21L60.58 2.23C48.13 14.68 41.27 31.24 41.27 48.85C41.27 50.43 41.34 51.99 41.45 53.55C31.54 47.6 19.96 44.16 7.59 44.16H7.5C3.41 44.16 .09 47.43 0 51.5V51.7C0 85.26 25.21 113.02 57.67 117.1V128.68H19.23V136.46C19.23 136.61 19.21 136.76 19.21 136.91V169.8C19.21 181.91 22.98 194.01 30.12 204.8C37.75 216.34 48.92 225.71 62.42 231.91C63.49 232.41 64.64 232.66 66.01 232.66C67.26 232.66 68.5 232.34 69.63 231.81C83.04 225.61 94.13 216.27 101.73 204.8C108.87 194.01 112.64 181.91 112.64 169.8V128.68H74.19V117.09L74.18 117.1Z'/%3E%3C/defs%3E%3Cg fill='%23ffffff'%3E%3Cuse href='%23k' transform='translate(15,10) scale(0.18) rotate(12,66,116)'/%3E%3Cuse href='%23k' transform='translate(180,25) scale(0.14) rotate(-20,66,116)'/%3E%3Cuse href='%23k' transform='translate(310,5) scale(0.2) rotate(35,66,116)'/%3E%3Cuse href='%23k' transform='translate(90,120) scale(0.22) rotate(-8,66,116)'/%3E%3Cuse href='%23k' transform='translate(250,100) scale(0.15) rotate(25,66,116)'/%3E%3Cuse href='%23k' transform='translate(370,130) scale(0.17) rotate(-30,66,116)'/%3E%3Cuse href='%23k' transform='translate(40,230) scale(0.16) rotate(18,66,116)'/%3E%3Cuse href='%23k' transform='translate(200,210) scale(0.21) rotate(-15,66,116)'/%3E%3Cuse href='%23k' transform='translate(340,240) scale(0.13) rotate(40,66,116)'/%3E%3Cuse href='%23k' transform='translate(130,310) scale(0.19) rotate(-25,66,116)'/%3E%3Cuse href='%23k' transform='translate(280,330) scale(0.16) rotate(10,66,116)'/%3E%3Cuse href='%23k' transform='translate(20,360) scale(0.14) rotate(-35,66,116)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 400px 400px;
  background-repeat: repeat;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  max-width: 180px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-slogan {
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-links h4,
.footer-services-col h4,
.footer-contact h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #8dc641;
}

.footer-links li,
.footer-services-col li {
  margin-bottom: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #8dc641;
}

.footer-contact p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal {
  margin-top: 8px;
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* === Legal Pages === */
.legal-page {
  padding: 140px 0 80px;
}

.legal-page h1 {
  font-size: 2.4rem;
  color: #1a4d2e;
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 1.4rem;
  color: #1a4d2e;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-page h3 {
  font-size: 1.1rem;
  color: #1a4d2e;
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-page p,
.legal-page ul {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 12px;
}

.legal-page ul {
  padding-left: 24px;
}

.legal-page li {
  margin-bottom: 4px;
}

.legal-page a {
  color: #079247;
  text-decoration: underline;
}

.legal-page a:hover {
  color: #1a4d2e;
}

.legal-update {
  margin-top: 48px;
  font-style: italic;
  color: #999 !important;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-item {
    min-width: calc(50% - 8px);
  }

  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-connector {
    width: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }


  /* CTA Banner tablet */
  .cta-banner-inner { flex-direction: column; text-align: center; padding: 48px 36px; }
  .cta-banner-text p { max-width: 100%; }

  /* Seasons tablet */
  .seasons-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  /* Hero mobile */
  .hero-bg-img {
    object-position: 70% center;
  }

  /* Nav mobile */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 0;
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    border-radius: 0 0 20px 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-links.open {
    max-height: 500px;
    opacity: 1;
    padding: 20px 24px;
  }

  .nav-links a {
    color: #1a4d2e !important;
    padding: 12px 0;
    display: block;
    font-size: 1.05rem;
  }

  .navbar:not(.scrolled) .nav-links a {
    color: #1a4d2e !important;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
    display: block !important;
    width: 100%;
    box-sizing: border-box;
    background: #079247 !important;
    color: #fff !important;
    border-radius: 12px;
    padding: 14px 0 !important;
  }

  /* Hero mobile */
  .hero-name-logo { width: 200px; }
  .hero-sub { font-size: 0.7rem; letter-spacing: 4px; }
  .hero-slogan { font-size: 2rem; }
  .hero-subline { font-size: 0.95rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; padding: 0 16px; }
  .hero-ctas .btn { text-align: center; }
  .hero-scroll-hint { display: none; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-number { font-size: 2.2rem; }

  /* Services mobile */
  .services { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-img-row { grid-template-columns: 1fr; }
  .service-img-half { height: 200px; }

  /* Process mobile */
  .process { padding: 80px 0; }
  .process-grid { flex-direction: column; align-items: center; gap: 12px; }
  .process-connector { width: 2px; height: 32px; margin: 0; background: #8dc641; }
  .process-step { max-width: 100%; }

  /* Portfolio mobile */
  .portfolio { padding: 80px 0 60px; }
  .portfolio-track { gap: 12px; }
  .portfolio-track .portfolio-item:first-child { margin-left: 16px; }
  .portfolio-track .portfolio-item:last-child { margin-right: 16px; }
  .portfolio-item { height: 300px; }
  .portfolio-overlay { opacity: 1; transform: translateY(0); padding: 20px; }
  .portfolio-overlay h3 { font-size: 1.05rem; }
  .portfolio-overlay p { font-size: 0.82rem; }

  /* USP mobile */
  .usp-strip { padding: 64px 0; }
  .usp-grid { grid-template-columns: 1fr; gap: 16px; }

  /* About mobile */
  .about { padding: 80px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-content h2 { font-size: 1.8rem; }
  .about-img-float { position: relative; bottom: auto; right: auto; margin-top: -40px; margin-left: auto; }
  .about-features { grid-template-columns: 1fr; }

  /* Parallax */
  .parallax-slogan { font-size: 1.8rem; }

  /* Testimonials */
  .testimonials { padding: 80px 0; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Reinigung mobile */
  .reinigung { padding: 80px 0; }
  .reinigung-grid { grid-template-columns: 1fr; gap: 40px; }
  .reinigung-logo { max-width: 220px; }
  .reinigung-right h2 { font-size: 1.8rem; }

  /* Winterdienst mobile */
  .winterdienst { min-height: 400px; }
  .winterdienst h2 { font-size: 1.8rem; }

  /* Before/After */
  .before-after { padding: 80px 0; }
  .ba-grid { grid-template-columns: 1fr; }

  /* Contact mobile */
  .contact { padding: 80px 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }



  /* CTA Banner mobile */
  .cta-banner-inner { padding: 40px 24px; }
  .cta-banner-text h2 { font-size: 1.6rem; }

  /* Seasons mobile */
  .seasons { padding: 80px 0; }
  .seasons-grid { grid-template-columns: 1fr; }

  /* Service Areas mobile */
  .service-areas { padding: 80px 0; }
  .areas-grid { grid-template-columns: 1fr; gap: 40px; }
  .areas-content h2 { font-size: 1.8rem; }
  .areas-badge { bottom: -10px; left: auto; right: 16px; padding: 16px; }
  .areas-badge-number { font-size: 1.8rem; }

  /* FAQ mobile */
  .faq { padding: 80px 0; }
  .faq-question { font-size: 0.95rem; }

  /* Footer mobile */
  .footer { padding: 60px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .hero-logo-icon { width: 72px; }
  .hero-name-logo { width: 170px; }
  .hero-slogan { font-size: 1.6rem; }
  .hero-ctas { padding: 0; }
  .section-title { font-size: 1.7rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .service-card { border-radius: 14px; }
  .contact-info { padding: 32px 24px; border-radius: 16px; }
}

/* === Cookie Banner === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  padding: 20px 24px;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}

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

.cookie-content p {
  font-size: 0.88rem;
  color: #1a4d2e;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.cookie-content a {
  color: #079247;
  text-decoration: underline;
}

.cookie-actions {
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 28px;
  border-radius: 8px;
  font-family: 'Lexend', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

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

.cookie-accept:hover {
  background: #056b34;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .cookie-content p {
    font-size: 0.82rem;
  }

  .cookie-btn {
    width: 100%;
  }
}