:root {

/* =========================
PRIMARY COLORS
========================= */

--color-green: #2f7a5f;
--color-green-hover: #27664f;
--color-green-light: rgba(47, 122, 95, 0.1);

--color-yellow: #ffd400;
--color-yellow-hover: #e6be00;
--color-yellow-light: rgba(255, 212, 0, 0.15);

--color-dark: #1f2933;
--color-dark-light: rgba(31, 41, 51, 0.08);

--color-white-soft: #f4f6f5;
--border-light: #e6ebe8;

/* =========================
TEXT COLORS
========================= */

--text-dark: #1f2933;
--text-light: #5f6c76;

}

/* =========================
TRUST BARS COLORS
========================= */

.trust-bar span {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 4px;
  display: inline-block;
}

/* GRÜN (Privat) */
.trust-green span {
  background: var(--color-green-light);
  color: var(--color-green);
}

/* DUNKEL (Gewerbe) */
.trust-dark span {
  background: var(--color-dark-light);
  color: var(--text-dark);
}

/* GELB (optional Highlight) */
.trust-yellow span {
  background: var(--color-yellow-light);
  color: var(--color-yellow);
}

/* =========================
LINKS DISABLEN z.B. HUB-SEITEN wo SEO noch fehlt
========================= */

.card-link.disabled {
  opacity: 0.5;
  cursor: default;
}

.card-link.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* =========================
SPACING GLOBAL
========================= */

:root {

/* SECTION */
--space-section: 100px;

/* BLOCKS */
--space-xl: 50px;
--space-lg: 30px;
--space-md: 20px;
--space-sm: 12px;

}








* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
}

body {
  background: #eef2f7;
  color: #1e2a38;
  line-height: 1.6;
  overflow-x: hidden;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* SECTION SYSTEM */
section {
  padding: 100px 20px;
}


/* Abgesetzte Section */
.section-muted {
  background: #f6f8fb;
  border-top: 1px solid #e3e8ef;
  border-bottom: 1px solid #e3e8ef;
}


/* Typografie */
h2 {
  margin-bottom: 20px;
}

/* Scroll-Behavior (smooth) */

html {
  scroll-behavior: smooth;
}

.seo-intro {
  max-width: 600px;
  margin-bottom: 30px;
}


/* LOGO */

.kontakt-logo img {
  max-width: 180px;
}


/* =========================
   HEADER BASIS
========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;

  padding: 6x 0;
  transition: all 0.35s ease;

  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255,255,255,0.3);
   overflow: visible; /* 🔥 wichtig */
}


/* SHRINK STATE */
.header.scrolled {
  padding: 4px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* =========================
   LAYOUT
========================= */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 75px;
   overflow: visible; /* 🔥 wichtig */
}

/* =========================
   LOGO FINAL FIX
========================= */

.logo {
  display: flex;
  align-items: center;
  height: 60px;
  overflow: visible; /* 🔥 wichtig */
}

.logo img {
  height: 140px; /* 🔥 jetzt wirklich größer */
  width: auto;
  display: block;

  transform: translateY(10px); /* Feinjustierung */
  transition: all 0.3s ease;
   overflow: visible; /* 🔥 wichtig */
}

/* Scroll Zustand */
.header.scrolled .logo img {
  height: 85px;
  transform: translateY(5px);
}

/* HEADER INNENABSTAND (verhindert „Kleben“) */
.header-inner {
padding: 0 20px;
   overflow: visible; /* 🔥 wichtig */
}

/* OPTIONAL: leichte optische Verbesserung */
.logo img {
filter: contrast(1.05);
}



/* =========================
   NAVIGATION
========================= */
.nav {
  display: flex;
  align-items: center;
}

.nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #1e2a38;
  font-weight: 500;
  position: relative;
  transition: 0.2s;
}

.nav a:hover {
  color: #2e7d5b;
}

/* =========================
   DROPDOWN ARROW
========================= */

.arrow {
  margin-left: 6px;
  font-size: 12px;
  transition: transform 0.3s;
}

.mega-dropdown.active .arrow {
  transform: rotate(180deg);
}

/* =========================
   MEGA DROPDOWN (Vor MEGA SIMPLE DA GGF ALT KANN RAUS ?)
========================= */

.mega-dropdown {
  position: relative;
}

.mega-dropdown.active .mega-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Container */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);

  width: 520px;
  background: white;
  border-radius: 12px;

  box-shadow: 0 20px 50px rgba(0,0,0,0.1);

  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;

  padding: 25px;
  z-index: 1000;
}


/* =========================
   SIMPLE MEGA MENU
========================= */

.mega-menu-simple {
  width: 420px;
}

.mega-grid-simple {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.mega-item.large {
  padding: 18px;
  border-radius: 10px;
  background: #f8fafc;
}

.mega-item.large strong {
  font-size: 16px;
}

.mega-item.large span {
  font-size: 14px;
}


/* Grid */
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}


/* Item */
.mega-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;

  text-decoration: none;
  color: #1e2a38;

  padding: 12px;
  border-radius: 8px;

  transition: 0.2s;
}

/* Hover Effekt */
.mega-item:hover {
  background: #f5f7f9;
}

/* Icon */
.mega-item i {
  width: 22px;
  height: 22px;
  color: #2e7d5b;
}

/* Text */
.mega-item strong {
  display: block;
  font-size: 15px;
}

.mega-item span {
  font-size: 13px;
  color: #6b7a8c;
}

/* =========================
   Inhaber: Eiring & Bielenberg
========================= */
.header-meta {
  margin-left: 20px;
  font-size: 14px;
  color: #5a6a7a;
  font-weight: 500;
}

/* =========================
   BURGER
========================= */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #1e2a38;
  transition: 0.3s;
}

/* BURGER ANIMATION */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* =========================
   OVERLAY
========================= */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 900;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* HERO */
.hero {
  position: relative;
  background: 
    linear-gradient(to right, rgba(14,31,60,0.85), rgba(14,31,60,0.6)),/* 0.85 und 0.6 original */
    url("/hero.jpg") center/cover no-repeat;
  padding: 110px 0;
  color: white;
}

/* GRID (NEU – wichtig!) */
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

/* LINKS */
.hero-content {
  max-width: 650px;
}

/* RECHTE SEITE */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* TEXT */
.hero h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-trust {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
  font-weight: 500;
}

.hero-text {
  margin-bottom: 15px;
  color: rgba(255,255,255,0.9);
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.btn {
  display: inline-block;
  background: #2e7d5b;
  color: white;
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
}

.btn:hover {
  background: #256b4d;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
}

.btn-secondary:hover {
  background: white;
  color: #0e1f3c;
}

/* WHATSAPP */
.hero-whatsapp {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.85;
}

/* TRUST */
.hero-trust {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  opacity: 0.9;
}

/* HERO BOXEN */
.hero-card {
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 10px;
  padding: 20px;
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ÜBERSCHRIFT */
.hero-card h3 {
  color: white;
  font-size: 18px;
  margin-bottom: 5px;
}

/* BUTTON STYLE (rechts) */
.hero-outline {
  display: block;
  border: 2px solid rgba(255,255,255,0.8);
  color: white;
  padding: 12px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.2s;
  font-weight: 500;
}

/* HOVER */
.hero-outline:hover {
  background: white;
  color: #0e1f3c;
}
/* HOVER */
.hero-outline:hover {
  background: white;
  color: #0e1f3c;
}

/* KONTAKT BOX */
.kontakt-box {
  background: white;
  border-radius: 0px;
  margin-top: 40px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: center;
}

.kontakt-info h3 {
  margin-bottom: 10px;
}

.kontakt-info p {
  margin-bottom: 15px;
}

/* HERO OVERLAY VERBESSERN */
.hero {
  position: relative;
  background: 
    linear-gradient(to right, rgba(14,31,60,0.7), rgba(14,31,60,0.4)),/* 0.9 und 0.65 original */
    url("/hero.jpg") center/cover no-repeat;
}

/* MEHR TIEFE */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(0,0,0,0.2), transparent 60%);
  pointer-events: none;
}

/* BOXEN PREMIUM LOOK */
.hero-card {
  border: 1.5px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* HOVER EFFEKT (sehr wichtig!) */
.hero-card:hover {
  transform: translateY(-3px);
  transition: 0.2s;
}

/* BUTTON FEEDBACK */
.hero-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-outline:hover {
  background: white;
  color: #0e1f3c;
  transform: translateY(-1px);
}




/* HERO PRIVAT UND GEWERBE GROSS BUTTONS (WENN WIEDER KLEIN DANN HTML DAS "LAGE"BUTTON" ENTFEREN */

.hero-card.large-buttons {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.hero-card.large-buttons .hero-outline {
  flex: 1; /* verteilt Höhe gleichmäßig */
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  padding: 18px;

  min-height: 70px; /* sorgt für Größe */
}
.hero-card.large-buttons .hero-outline {
  font-weight: 600;
  letter-spacing: 0.2px;
  
  /* HERO PRIVAT UND GEWERBE HERVORGEHOBEN BUTTONS (WENN WIEDER KLEIN DANN HTML DAS ""PRIMARY CHOICE" ENTFEREN */
}

.hero-card.primary-choice {
  border: 2px solid white;
  background: rgba(255,255,255,0.12);

  box-shadow: 0 15px 40px rgba(0,0,0,0.25);

  transform: scale(1.05);
}

/* Buttons stärker machen */
.hero-card.primary-choice .hero-outline {
  background: white;
  color: #0e1f3c;
  font-weight: 600;
}

/* Hover noch stärker */
.hero-card.primary-choice .hero-outline:hover {
  background: #f3f5f4;
  transform: translateY(-2px);
}






/* =========================
SERVICE OVERVIEW (HOMEPAGE)
========================= */

.service-overview {
  background: #ffffff;
  padding: 60px 0;
}

/* 2 HAUPTSPALTEN */
.overview-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* JEDE SEITE */
.overview-side h3 {
  font-size: 22px;
  margin-bottom: 25px;
}

/* 🔥 EINHEITLICHES GRID (3 SPALTEN) */
.overview-inner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ABO HERVORHEBEN */
.overview-col.abo {
  border: 2px solid #2e7d5b;
  background: #f3f8f5;
  padding: 12px;
}

/* EINZELSPALTEN */
.overview-col h4 {
  font-size: 15px;
  margin-bottom: 10px;
  height: 48px;
  display: flex;
  align-items: flex-start;
}

.overview-col ul {
  list-style: none;
  padding: 0;
}

.overview-col li {
  font-size: 14px;
  color: #5f6c76;
  margin-bottom: 6px;
}










/* =========================
SERVICE PRIVAT
========================= */

.services .container {
  max-width: 1350px; /* oder 1350px */
}

.services {
  padding: 100px 20px;
  background: #f4f6f8;
  text-align: center;
}

.service-note {
  margin-top: 35px;
  font-size: 0.95rem;
  color: #6b7280;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* HEADLINE */
.services h2 {
  font-size: 2.4rem;
  color: #1f3a5f;
  margin-bottom: 10px;
  font-weight: 600;
}

.subtitle {
  color: #6b7280;
  margin-bottom: 60px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
    max-width: 1100px;
  margin: 40px auto;
    align-items: start;
}

.services .grid {
  max-width: 100%;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px; /* etwas mehr Luft */
}

/* CARD */
.card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.25s ease;
  position: relative;
   display: flex;
  flex-direction: column;
   flex-grow: 1;
}

.card .content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.card ul li {
  display: flex;
  justify-content: space-between;
}

/* CARD OVERLAY BLAS */
.card-image {
  position: relative;
  z-index: 1;
}

.card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.55);
   z-index: 1;
}

/* Highlight Card */
.card.highlight {
  border: 1.5px solid #1f3a5f;
  box-shadow: 0 12px 28px rgba(31,58,95,0.12);
  transform: translateY(-4px);
}


/*  Card BUTTONMEHRERFAHREN*/

.btn-secondary {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.85rem;
  color: #1f3a5f;
  background: #eef2f6;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-left: 2px;
}

.btn-secondary:hover {
  background: #e3e8ee;
}



/* Badge */
.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #1f3a5f;
  color: #ffffff;
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.3px;
  z-index: 2;
}

/* optional: noch subtiler */
.badge {
  opacity: 0.95;
}

/* BILD OBEN (KLAR, KEIN OVERLAY) */
.card-image {
  height: 160px;
  background-size: cover;
  background-position: center;
}

/* individuelle Bilder */
/* Bilder je Card */
.card:nth-child(1) .card-image {
  background-image: url('../gruenpflege.jpg');
}

.card:nth-child(2) .card-image {
  background-image: url('../aussenreinigung.jpg');
}

.card:nth-child(3) .card-image {
  background-image: url('../abo.jpg');
}

.card:nth-child(4) .card-image {
  background-image: url('../saison.jpg');
}
}

/* NOTE IN DEN CARDS */

.card-highlight {
display: inline-flex;   /* 🔥 wichtig statt flex */
  align-items: center;
  gap: 6px;
   justify-content: flex-start;

  font-size: 0.85rem;
  color: #1f3a5f;
  font-weight: 500;

  margin-bottom: 10px;
  line-height: 1; /* verhindert vertikales Verschieben */
  white-space: nowrap;    /* 🔥 verhindert Umbruch */
}

/* Icon-Wrapper */
.card-highlight i {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🔥 GANZ WICHTIG */
.card-highlight i,
.card-highlight svg {
  display: inline-block !important;
  width: 16px;
  height: 16px;
}

/* Das eigentliche Lucide SVG */
.card-highlight svg {
  width: 16px;
  height: 16px;
  display: block; /* WICHTIG gegen Baseline-Probleme */
}

.card-highlight svg {
  display: inline-block !important;
}

/* optionaler Feinschliff */
.card-highlight svg {
  transform: translateY(1px);
}

/* NOTE UNTER DEN CARDS */

.card-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-note {
  margin-top: 8px;
  font-size: 0.8rem;
  color: #6b7280;
  text-align: center;
}

.card-note p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 4px 0;
}

.card-note i {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}


/* CONTENT */
.content {
  padding: 20px 22px 24px;
}

/* ICON */
.content i {
  width: 28px;
  height: 28px;
  color: #1f3a5f;
  margin-bottom: 10px;
}

/* TITLE */
.content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #1f3a5f;
}

/* LISTE */
.content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #374151;
}

/* PREISE */
.content span {
  font-weight: 600;
  color: #1f3a5f;
}

/* HOVER */
.card:hover {
  transform: translateY(-5px);
}

/* CTA */
.cta {
  display: inline-block;
  margin-top: 50px;
  background: #1f3a5f;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
}

.cta:hover {
  background: #162c47;
}








/* =========================
SERVICE INFORMATION PRIVAT
========================= */

.service-info {
  padding: 60px 20px 20px;
  background: #ffffff;
}

.info-block {
  max-width: 750px;
  margin: 0 auto 40px;
  text-align: left;
}

.info-block h3 {
  font-size: 1.4rem;
  color: #1f3a5f;
  margin-bottom: 10px;
  font-weight: 600;
}

.info-block p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.info-note {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 8px;
}

/* SPALTE BEI INFORMATION */

.info-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 25px;
}

.info-col h4 {
  font-size: 1rem;
  color: #1f3a5f;
  margin-bottom: 10px;
  font-weight: 600;
}

.info-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-col li {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 6px;
  position: relative;
  padding-left: 14px;
}

.info-col li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #9ca3af;
}









/* =========================
SERVICE GEWERBE (REST ZIEHT ER SICHAUS PRIVAT)
========================= */

.services-business .card {
  min-height: 280px;
}

.services-business .grid {
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
}

.business-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* CTA BEI GEWERBE */

.cta-business {
  font-size: 14px;
  color: #6b7280;
  margin-top: 30px;
  text-align: center;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-business a {
  color: #1f3a5f;
  text-decoration: none;
  font-weight: 500;
  margin-left: 6px;
}

.cta-business a:hover {
  text-decoration: underline;
}

/*WEITERE LEISTUNGEN IM INFOTEXT */

.extra-title {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 25px;
  font-size: 1.3rem;
  color: #1f3a5f;
}

.extra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.extra-col h4 {
  font-size: 1rem;
  color: #1f3a5f;
  margin-bottom: 8px;
}

.extra-col p {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.5;
}


/*ZUSAMMENARBEIT IM INFOTEXT */

.process {
  margin-top: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.process h3 {
  font-size: 1.3rem;
  color: #1f3a5f;
  margin-bottom: 20px;
  font-weight: 600;
}

.process ul {
  padding-left: 18px;
}

.process li {
  margin-bottom: 8px;
  color: #4b5563;
  font-size: 0.95rem;
}

/* STEPS */
.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 30px;
  text-align: left;
}

.step {
  font-size: 0.95rem;
  color: #4b5563;
  position: relative;
  padding-left: 18px;
}

/* dezente Markierung statt Bulletpoints */
.step::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #1f3a5f;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}

/* dezenter CTA */

.service-note {
  font-size: 14px;
  color: #6b7280;
  margin-top: 25px;
  text-align: center;
}

.service-note a {
  color: #1f3a5f;
  text-decoration: none;
  font-weight: 500;
}

.service-note a:hover {
  text-decoration: underline;
}




/* =========================
KONTAKTFORMULAR
========================= */

.contact {
  padding: 80px 20px;
  background: #f4f6f8;
  text-align: center;
}

.contact h2 {
  color: #1f3a5f;
  margin-bottom: 10px;
}

.contact .subtitle {
  color: #6b7280;
  margin-bottom: 50px;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
}

/* LINKS */
.contact-info h3 {
  margin-bottom: 10px;
  color: #1f3a5f;
}

.contact-info ul {
  padding-left: 18px;
  margin: 15px 0;
}

.contact-info li {
  margin-bottom: 8px;
  color: #4b5563;
}

.contact-note {
  font-size: 0.9rem;
  color: #6b7280;
}

/* FORMULAR */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1f3a5f;
}

/* BUTTON */
.contact-form button {
  margin-top: 10px;
  background: #1f3a5f;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
}

.contact-form button:hover {
  background: #162c47;
}


.contact-form select {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
  background: #fff;
}

.contact-form select:focus {
  outline: none;
  border-color: #1f3a5f;
}





.contact-direct {
  margin-top: 25px;
}

.contact-direct h4 {
  font-size: 1rem;
  color: #1f3a5f;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-direct ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-direct li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #4b5563;
}

.contact-direct a {
  color: #1f3a5f;
  text-decoration: none;
  font-weight: 500;
}

.contact-direct a:hover {
  text-decoration: underline;
}
	



/* WHATSAPP FLOATIN */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}


/* WHATSAPP TOOLTIP */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Tooltip */
.tooltip {
  position: absolute;
  right: 65px;
  top: 50%;
  transform: translateY(-50%);
  
  background: #1f2937;
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  white-space: nowrap;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

/* Pfeil */
.tooltip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #1f2937;
}

/* Hover */
.whatsapp-float:hover .tooltip {
  opacity: 1;
  visibility: visible;
}















/* WHY SECTION */
.section-why {
  position: relative;
  padding: 100px 0;
  background: #f4f6f8;
  overflow: hidden;
}

/* LOGO ALS WASSERZEICHEN (weniger blass) */
.section-why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/logo.png") center/50% no-repeat;
  opacity: 0.08; /* vorher 0.05 → jetzt sichtbarer */
  pointer-events: none;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* BOXEN (stärker hervorgehoben + eckig) */
.why-card {
  background: rgba(255,255,255,0.95);
  border: 1px solid #e2e8f0;
  padding: 28px;
  border-radius: 0; /* 👉 ECKIG */
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.25s;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* TEXT */
.why-card h3 {
  margin-bottom: 10px;
}

.why-card p {
  color: #475569;
}






/* =========================
EINSATZGEBIET SECTION
========================= */

.einsatzgebiet {
position: relative;
padding: 100px 0;
background-color: #f8faf9;
overflow: hidden;
}

/* =========================
KARTE (PERFEKT POSITIONIERT)
========================= */

.einsatzgebiet::before {
content: "";
position: absolute;
top: 0;
right: 0;

width: 70%;   /* steuert wie weit die Karte reinragt */
height: 100%;

background: url("/karte-berlin-brandenburg.png") no-repeat;
background-size: cover;
background-position: center;

opacity: 0.6; /* Sichtbarkeit */
z-index: 0;
}

/* =========================
OVERLAY (LESBARKEIT)
========================= */

.einsatzgebiet::after {
content: "";
position: absolute;
inset: 0;

background: linear-gradient(
to right,
#f8faf9 30%,
rgba(248,250,249,0.7) 55%,
transparent 100%
);

z-index: 1;
}

/* =========================
CONTENT IMMER OBEN
========================= */

.einsatzgebiet-content {
position: relative;
z-index: 2;
max-width: 700px;
}


/* =========================
HEADLINE
========================= */

.einsatzgebiet h2 {
font-size: 34px;
line-height: 1.2;
margin-bottom: 15px;
color: #1e2a38;
}

/* =========================
TEXT
========================= */

.einsatzgebiet-intro {
color: #4b5563;
line-height: 1.6;
margin-bottom: 25px;
}

/* =========================
LISTE (ORTE)
========================= */

.einsatzgebiet-list {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 15px;
}

.einsatzgebiet-list span {
background: white;
border: 1px solid #e5ece8;
padding: 8px 14px;
font-size: 14px;
color: #1e2a38;
box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

/* =========================
HINWEIS TEXT
========================= */

.einsatzgebiet-note {
font-size: 14px;
color: #6b7280;
}










/* ============================= */
/* KONTAKTFORMULAR UMRANDUNG
/* ============================= */


.contact-form {
  border: 1px solid var(--border-light);
  border-left: 4px solid #1f3a5f;
  border-radius: 8px;
  padding: 25px;
  background: #ffffff;
}

.contact-form:hover {
  box-shadow: 0 12px 30px rgba(31,58,95,0.12);
  transition: 0.2s;
}









/* ============================= */
/* FOOTER CSS */
/* ============================= */

.footer {
  background: #0e1f3c;
  color: #ffffff;
  margin-top: 80px;
  padding: 60px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  align-items: stretch; /* 🔥 wichtig */
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col h4 {
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 8px;
  font-size: 14px;
  opacity: 0.9;
}

.footer-col a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-col a:hover {
  opacity: 0.7;
}

.footer-logo {
height: 80%;     /* 🔥 passt sich der Spaltenhöhe an */
  width: auto;
  margin-top: 0;
   background: white;
  padding: 15px;
  border-radius: 0px;
    object-fit: contain;
    transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  opacity: 0.7;
}

.footer-col:first-child {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: -5px;
  align-items: stretch; /* volle Höhe */
  margin-right: 30px;
}

/* =============================
   FOOTER LOGO CENTER
============================= */
.footer-logo-center {
  text-align: center;
  margin: 50px 0 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-logo-center img {
  width: 100%;
  max-width: 220px; /* 🔥 DAS ist entscheidend */
  height: auto;
  display: inline-block;
  opacity: 0.95;
}













/* =========================
RESPONSIVE
========================= */

@media (max-width: 1024px) {
.page-gruenflaechenpflege .service-cards {
grid-template-columns: repeat(2, 1fr);
}
  
  
   /* SECTION UNTER HERO --- LEISTUNGEN OVERVIEW */
  
  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}





@media (max-width: 768px) {

  :root {
    --space-section: 70px;
  }
  
  /* AUF MOBILE KEIN WHATSAPP TOOLTIPE  */ 
.tooltip {
    display: none;
  }
 
 /* SERVICE SECTION TEST UND BILD DARUNTER FÜR MOBILE  */ 
  .service-grid {
grid-template-columns: 1fr;
    gap: 30px;
}

.service-content,
.service-image {
order: unset;
}
  
  
  
  
  /* HEADER kompakter */
  .header {
    padding: 12px 0;
  }

  .header.scrolled {
    padding: 6px 0;
  }

  /* LOGO etwas kleiner */
  .logo img {
max-height: 50px;
}

.header.scrolled .logo img {
max-height: 42px;
}

  /* Inhaber: Eiring & Bielenberg Abstand zum Burger */
 .header-meta {
    display: none;
  }

  /* BURGER anzeigen */
  .burger {
    display: flex;
  }

  /* NAV als Slide-In */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 90px 25px 30px;
    transition: 0.35s ease;
    z-index: 1000;
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    margin: 15px 0;
    font-size: 18px;
  }
  
  
  
  /* =========================
   MOBILE MENU
========================= */

  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 25px;
    transition: 0.35s ease;
    z-index: 1000;
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    margin: 15px 0;
    font-size: 18px;
  }
  
  
  /* =========================
   MEGAMENU
========================= */
  
    .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    padding: 10px 0;

    opacity: 1;
    pointer-events: all;
    display: none;
  }

  .mega-dropdown.active .mega-menu {
    display: block;
  }

  .mega-grid {
    grid-template-columns: 1fr;
  }

/* =========================
   SCROLL LOCK
========================= */
body.menu-open {
  overflow: hidden;
}
  
  
  
  
/* =========================
  MOBILE ÜBERSICHT UNTER HERO
========================= */
  
   .overview-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .overview-inner-grid {
    grid-template-columns: 1fr;
  } 
  
  
  
  
  
  
  
  
  
  /* =========================
   SERVICE SECTION
========================= */
  
  .service-grid {
grid-template-columns: 1fr;
}

.service-cards {
grid-template-columns: 1fr;
}

.service-image img {
height: 300px;
}
  
  
  
  
  

  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 20px;
margin-bottom: 20px;
  }

  .kontakt-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .warum-grid {
    grid-template-columns: 1fr;
  }
  
  
  
  
  
  
  /* MOBILE HERO */
  
 .hero {
    padding: 70px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-right {
    margin-top: 30px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn, .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
    /* MOBILE SERVICE SECTIONS */
  .service-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
 
  
  
  
  
  
  /* MOBILE Einsatzgebiet SECTIONS */
  .einsatzgebiet {
padding: 70px 0;
}

.einsatzgebiet h2 {
font-size: 26px;
}

.einsatzgebiet::after {
background: linear-gradient(to bottom, #f8faf9 40%, transparent 100%);
}
  
  
  
/* MOBILE KONTANKFORMULAR */
 .form-grid {
grid-template-columns: 1fr;
}
  

  
.footer {
    text-align: center;
  }
  


@media (max-width: 600px) {
.page-gruenflaechenpflege .service-cards {
grid-template-columns: 1fr;
}
  
   /* SECTION UNTER HERO --- LEISTUNGEN OVERVIEW */
.overview-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   RESPONSIVE SYSTEM (CLEAN)
========================= */

/* ===== TABLET (≤ 1024px) ===== */
@media (max-width: 1024px) {

  /* GRID SYSTEM */
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .overview-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  /* HERO */
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-right {
    margin-top: 30px;
  }

  /* SERVICE */
  .service-grid {
    grid-template-columns: 1fr;
  }

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

  /* INFO */
  .info-columns {
    grid-template-columns: 1fr 1fr;
  }

}


/* ===== MOBILE (≤ 768px) ===== */
@media (max-width: 768px) {

  :root {
    --space-section: 70px;
  }

  /* ===== HEADER ===== */
  .header {
    padding: 12px 0;
  }

  .header.scrolled {
    padding: 6px 0;
  }

  .logo img {
    max-height: 50px;
  }

  .header.scrolled .logo img {
    max-height: 42px;
  }

  .header-meta {
    display: none;
  }

  /* ===== NAVIGATION ===== */
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 25px;
    transition: 0.35s ease;
    z-index: 1000;
overflow-y: auto;
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    margin: 15px 0;
    font-size: 18px;
    padding: 10px 0;
  }

  /* OVERLAY */
  body.menu-open {
    overflow: hidden;
  }

  /* ===== MEGA MENU ===== */
.mega-dropdown {
    width: 100%;
  }

  .mega-menu {
    position: static !important;
    transform: none !important;
    left: 0 !important;

    width: 100%;
    max-width: 100%;

    padding: 10px 0;
    margin-top: 10px;

    box-shadow: none;

    opacity: 1;
    pointer-events: all;
  }

  .mega-dropdown.active .mega-menu {
    display: block;
  }

 .mega-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .mega-item {
    padding: 10px 0;
  }
  
   .mega-grid-simple {
    width: 100%;
  }

  .mega-item.large {
    width: 100%;
  }
 
  
/* =========================
   MOBILE MENU PANEL
========================= */

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
max-width: none;
    height: 100vh;

    background: white;
    flex-direction: column;
    align-items: flex-start;

    padding: 100px 25px;
    gap: 20px;

    transition: right 0.35s ease;
    z-index: 1000;
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    margin: 0;
    font-size: 18px;
    width: 100%;
  }

  .header-meta {
    display: none;
  }

  .burger {
    display: flex;
  }
}

  /* ===== HERO ===== */
  .hero {
    padding: 70px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  /* ===== KONTAKT ===== */
  .kontakt-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* ===== SERVICE ===== */
  .grid {
    grid-template-columns: 1fr;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* ===== INFO ===== */
  .info-columns {
    grid-template-columns: 1fr;
  }

  /* ===== WHY ===== */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* ===== EINSATZGEBIET ===== */
  .einsatzgebiet {
    padding: 70px 0;
  }

  .einsatzgebiet h2 {
    font-size: 26px;
  }

  .einsatzgebiet::after {
    background: linear-gradient(to bottom, #f8faf9 40%, transparent 100%);
  }

  /* ===== WHATSAPP ===== */
  .tooltip {
    display: none;
  }

  /* ===== FOOTER ===== */
  .footer {
    text-align: center;
  }

}


/* ===== SMALL MOBILE (≤ 480px) ===== */
@media (max-width: 480px) {

  .hero h1 {
    font-size: 24px;
  }

  .btn {
    padding: 12px 16px;
  }

  .card-image {
    height: 140px;
  }

}






