/* 
  ==========================================================================
   ____    __    ____  _______ .______      .______    _______ .__   __. 
   \   \  /  \  /   / |   ____||   _  \     |   _  \  |   ____||  \ |  | 
    \   \/    \/   /  |  |__   |  |_)  |    |  |_)  | |  |__   |   \|  | 
     \            /   |   __|  |      /     |      /  |   __|  |  . `  | 
      \    /\    /    |  |____ |  |\  \----.|  |\  \----|  |____ |  |\   | 
       \__/  \__/     |_______|| _| `._____|| _| `._____|_______||__| \__| 
                                                                           
   MADE BY WERBENINJA | Web: https://werbeninja.de | Portfolio: https://soufian.me
  ==========================================================================
*/

/* =========================================================
   Objektpflege Münsterland – style.css
   Mobile-First | Vanilla CSS | WCAG-konforme Kontraste
   ========================================================= */

/* ---------- Google Fonts (lokal-kompatibel via CSS import) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary:   #03509e;
  --navy:      #001c37;
  --accent:    #bbd604;
  --white:     #ffffff;
  --light-bg:  #f4f7fc;
  --text:      #1a1a2e;
  --muted:     #5a6a80;
  --radius:    12px;
  --shadow:    0 8px 32px rgba(0,28,55,.12);
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font:      'Inter', system-ui, sans-serif;
}

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

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

/* ---------- Utilities ---------- */
.container {
  width: min(1180px, 94%);
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: var(--navy);
}
.btn-primary:hover { background: #c8e000; }

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,.15); }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #128C7E;
  color: #fff;
}

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
}

.section-desc {
  color: var(--muted);
  max-width: 56ch;
  margin-top: .75rem;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(0,28,55,.10);
  transition: box-shadow var(--transition), padding var(--transition);
  padding: .5rem 0;
}

.navbar.scrolled {
  box-shadow: 0 4px 28px rgba(0,28,55,.18);
  padding: .4rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 100px;
  width: auto;
  /* Originalfarben – kein Filter */
}

@media (max-width: 768px) {
  .nav-logo img {
    height: 120px;
  }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--navy);
  font-weight: 600;
  font-size: .95rem;
  position: relative;
  opacity: .85;
  transition: opacity var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: #ffffff;
  color: var(--primary) !important;
  border: 2px solid var(--primary);
  padding: .5rem 1.1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .88rem;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--primary);
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(3,80,158,.25);
}
.nav-cta svg { width: 18px; height: 18px; flex-shrink: 0; }

.nav-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.nav-social-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nav-social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(3,80,158,0.3);
  color: #fff;
}

@media (max-width: 768px) {
  .nav-social-icon {
    display: none;
  }
}

/* === Spinner für Button === */
.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  aria-label: "Menü öffnen";
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* X-Button: nur im mobilen Overlay sichtbar */
.nav-close-btn { display: none; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100svh;
  background:
    linear-gradient(135deg, rgba(0,28,55,.78) 0%, rgba(3,80,158,.6) 100%),
    url('img/hero-bg.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: 130px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-content {
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(187,214,4,.18);
  border: 1px solid rgba(187,214,4,.4);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.hero-title span { color: var(--accent); }

.hero-slogan {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--white);
  opacity: 1;
  margin-bottom: 2.5rem;
  font-weight: 400;
  letter-spacing: .04em;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: clamp(3rem, 8vw, 6rem);
  justify-content: center;
  margin-top: 5rem;
  padding-bottom: 8rem;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: .85rem;
  color: var(--white);
  opacity: 1;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 500;
}

/* =========================================================
   ÜBER UNS
   ========================================================= */
.about {
  padding: 6rem 0;
  background: var(--white);
}

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

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  border-radius: calc(var(--radius) * 2);
  box-shadow: var(--shadow);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--accent);
  color: var(--navy);
  padding: 1.2rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 900;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  text-align: center;
  line-height: 1.2;
}

.about-badge span { font-size: .75rem; display: block; font-weight: 600; opacity: .8; }

.about-list {
  list-style: none;
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
}

.about-list li::before {
  content: '';
  width: 22px; height: 22px;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23001c37' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/14px no-repeat;
  border-radius: 50%;
  flex-shrink: 0;
}

/* =========================================================
   LEISTUNGEN
   ========================================================= */
.services {
  padding: 3rem 0;
  background: var(--light-bg);
}

.services-header { text-align: center; margin-bottom: 2rem; }
.services-header .section-desc { margin-inline: auto; }

/* Service Grid: Desktop Bento-Style (3 Spalten) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1rem 0;
  max-width: 1000px;
  margin-inline: auto;
}

/* Erstes Item breiter für modernere Optik (Bento-Style) */
@media (min-width: 1025px) {
  .services-grid > article:first-child {
    grid-column: span 2;
  }
}

/* Slider Mode für Mobile/Tablet */
@media (max-width: 1024px) {
  .services-grid {
    display: flex;
    overflow-x: auto;
    grid-template-columns: none;
    gap: 1.5rem;
    padding: 1rem 1rem 2.5rem;
    scroll-padding-inline-start: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .services-grid::-webkit-scrollbar { display: none; }

  .service-card {
    flex: 0 0 340px;
    max-width: 85vw;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

/* Slider Controls (Pfeile unten) */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

/* Verstecke Controls auf Desktop, falls Grid reicht */
@media (min-width: 1025px) {
  .slider-controls { display: none; }
}

.slider-arrow {
  width: 48px; height: 48px;
  background: var(--white);
  border: 1.5px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  cursor: pointer;
  transition: all .3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.slider-arrow:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(3,80,158,0.2);
}

.slider-arrow svg { width: 22px; height: 22px; }

.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 8px; height: 8px;
  background: #cbd5e1;
  border-radius: 50%;
  cursor: pointer;
  transition: all .3s ease;
}
.dot.active { background: var(--primary); transform: scale(1.2); }

.service-card {
  width: 100%;
  background: var(--white);
  border-radius: calc(var(--radius) * 1.5);
  padding: 1.2rem;
  box-shadow: 0 2px 14px rgba(0,28,55,.06);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0,28,55,.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }

/* Service Card Image */
.service-img {
  margin: -1.2rem -1.2rem .8rem;
  height: 140px;
  overflow: hidden;
  border-radius: calc(var(--radius)*1.5) calc(var(--radius)*1.5) 0 0;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  display: block;
}
.service-card:hover .service-img img { transform: scale(1.06); }

.service-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .4rem;
}

.service-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.5;
}

.service-icon {
  width: 38px; height: 38px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .8rem;
}

.service-icon i {
  font-size: 1.1rem;
  color: var(--navy);
}

.service-icon {
  width: 58px; height: 58px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(187, 214, 4, 0.3);
  transition: transform var(--transition);
  color: var(--navy);
}

.service-icon svg { 
  width: 28px; height: 28px; 
  fill: currentColor; 
  stroke: none; 
}

.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}

.service-desc {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* =========================================================
   KONTAKT
   ========================================================= */
.contact {
  min-height: 100vh;
  padding: 2.5rem 0;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
}

.contact .section-title {
  color: var(--white);
}

.contact .section-desc {
  color: var(--white);
  opacity: 0.9;
}

.contact-info-text strong {
  color: var(--white) !important;
  opacity: 0.8;
}

.contact-info-text a,
.contact-info-text span {
  color: var(--white) !important;
}

.contact-info-icon {
  background: var(--accent) !important;
}

.contact-info-icon i {
  color: var(--navy) !important;
}

.contact-header { text-align: center; margin-bottom: 1.25rem; }
.contact-header .section-desc { margin-inline: auto; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: center;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), #0469c8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i { font-size: 1.2rem; color: var(--white); }

.contact-info-text strong { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .15rem; }
.contact-info-text a { color: var(--primary); font-weight: 600; }
.contact-info-text a:hover { text-decoration: underline; }

/* Form */
.contact-form {
  background: var(--accent);
  border-radius: calc(var(--radius) * 1.5);
  padding: 1.25rem 1.75rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.05);
  color: var(--navy);
}

.contact-form .form-group label {
  color: var(--navy);
  font-weight: 700;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  background: var(--white);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  color: var(--navy);
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(3, 80, 158, 0.1);
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.contact-form .form-checkbox label {
  color: var(--navy);
  font-weight: 500;
}

.contact-form .form-checkbox label a {
  color: var(--primary);
  font-weight: 700;
}

.contact-form .btn-submit {
  background: var(--navy);
  color: var(--white);
}

.contact-form .btn-submit:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 28, 55, 0.2);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  margin-bottom: .6rem;
}

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: .8rem 1rem;
  border: 1.5px solid #d8e2ef;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .95rem;
  color: var(--text);
  background: #fafcff;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(3,80,158,.12);
  background: var(--white);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .8rem;
}

.contact-form input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.contact-form select option {
  background: var(--navy);
  color: var(--white);
}

.form-checkbox label {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.5;
}

.form-checkbox label a { color: var(--primary); font-weight: 600; }
.form-checkbox label a:hover { text-decoration: underline; }

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 700;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-submit:hover {
  background: #024a91;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(3,80,158,.3);
}

.form-msg {
  padding: 1rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: none;
}
.form-msg.success { background: #edfbf3; color: #1a7a41; border: 1px solid #b2f0cb; display: block; }
.form-msg.error   { background: #fef2f2; color: #b91c1c; border: 1px solid #fca5a5; display: block; }

/* =========================================================
   REVIEWS SECTION
   ========================================================= */
.google-review-card {
  display: block;
  background: #ffffff;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  font-family: Roboto, Arial, sans-serif;
  color: #202124;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border: 1px solid #dadce0;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: left;
}

.google-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  color: #202124;
}

.grc-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  position: relative;
}

.grc-avatar {
  width: 40px; height: 40px;
  background-color: #3f5e61;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 500;
  margin-right: 12px;
}

.grc-meta {
  display: flex;
  flex-direction: column;
}

.grc-name {
  font-size: 1rem;
  font-weight: 500;
  color: #202124;
  line-height: 1.2;
}

.grc-source {
  font-size: 0.8rem;
  color: #70757a;
  display: flex;
  align-items: center;
  margin-top: 2px;
}

.grc-source img {
  width: 14px;
  margin-left: 4px;
  margin-right: 2px;
}

.grc-menu {
  position: absolute;
  right: 0; top: 0;
  color: #70757a;
  font-size: 1.2rem;
}

.grc-rating-row {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
}

.grc-rating {
  font-weight: 700;
  color: #202124;
}

.grc-time {
  color: #70757a;
  margin-left: 4px;
}

.grc-badge {
  background: #ffffff;
  border: 1px solid #dadce0;
  color: #5f6368;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 8px;
  letter-spacing: 0.02em;
}

.grc-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #3c4043;
  margin: 0;
}

.grc-more {
  color: #1a73e8;
  font-weight: 500;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #e8faff;
  color: var(--navy);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo img {
  width: 160px;
  height: auto;
  object-fit: contain;
  /* Originalfarben – kein Filter */
  margin-bottom: 1rem;
}

.footer-desc { font-size: .9rem; line-height: 1.7; max-width: 28ch; margin-bottom: 1.5rem; color: var(--navy); opacity: .85; }

.footer-social {
  display: flex;
  gap: .75rem;
}

.social-link {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}

.social-link:hover { background: var(--accent); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; fill: var(--white); }

.footer-col h4 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-col ul a { font-size: .9rem; color: var(--navy); opacity: .75; transition: opacity var(--transition); }
.footer-col ul a:hover { opacity: 1; color: var(--navy); text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(0,28,55,.2);
  padding-top: 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: .85rem;
  color: var(--navy);
  opacity: .8;
}

.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { color: var(--navy); }
.footer-legal a:hover { text-decoration: underline; opacity: .9; }

/* =========================================================
   FLOATING WHATSAPP BUTTON
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 900;
  width: 50px; height: 50px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-wa 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37,211,102,.6);
  animation: none;
}

.whatsapp-float svg { width: 24px; height: 24px; fill: var(--white); }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,.45); }
  50% { box-shadow: 0 6px 28px rgba(37,211,102,.7), 0 0 0 12px rgba(37,211,102,.12); }
}

/* =========================================================
   FEEDBACK BANNER (PHP messages)
   ========================================================= */
.alert-banner {
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: .95rem;
}
.alert-banner.success { background: #edfbf3; color: #1a7a41; border-left: 4px solid #25d366; }
.alert-banner.error   { background: #fef2f2; color: #b91c1c; border-left: 4px solid #ef4444; }


/* =========================================================
   RESPONSIVE BREAKPOINTS
   ========================================================= */
@media (max-width: 900px) {
  .about-grid   { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .about-badge  { right: 0; }
}

@media (max-width: 700px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Mobile Navbar: Logo zentriert, Hamburger absolut rechts */
  .nav-inner {
    position: relative;
    justify-content: center;
  }
  .nav-toggle {
    position: absolute;
    right: 0;
  }

  /* X-Button im offenen Menü */
  .nav-close-btn {
    display: none;
  }

  /* Mobile menu open state */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    z-index: 999;
    padding: 2rem;
  }

  .nav-links.open .nav-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: auto;
    height: auto;
    background: none;
    border: none;
    color: rgba(255,255,255,.8);
    font-size: 2.8rem;
    font-weight: 200;
    cursor: pointer;
    line-height: 1;
    font-family: var(--font);
    padding: .25rem .5rem;
    transition: color var(--transition);
  }

  .nav-links.open .nav-close-btn:hover {
    color: #ffffff;
  }

  /* Links im offenen Mobile-Menü: weiß und groß */
  .nav-links.open a {
    color: #ffffff !important;
    opacity: 1;
    font-size: 1.3rem;
    font-weight: 700;
  }

  .nav-links.open a::after {
    background: var(--accent);
  }

  .nav-links.open + .nav-cta { display: none; }

  .hero-stats { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }

  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

@media (min-width: 1100px) {
  .services-slider-container {
    padding: 0 2.5rem;
  }
  .slider-arrow.prev { left: 0; }
  .slider-arrow.next { right: 0; }
}

/* =========================================================
   LEGAL PAGES (Impressum, Datenschutz)
   ========================================================= */
.legal-body { padding-top: 130px; background: var(--light-bg); }
.legal-page {
  max-width: 760px;
  margin: 3rem auto 5rem;
  background: #fff;
  border-radius: 16px;
  padding: 3rem 3.5rem;
  box-shadow: 0 8px 40px rgba(0,28,55,.09);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 2rem;
  transition: gap .2s;
}
.legal-back:hover { gap: .75rem; }
.legal-page h1 {
  font-size: 1.6rem; /* Kleiner gemacht */
  font-weight: 900;
  color: var(--navy);
  margin-bottom: .4rem;
}
.legal-page .subtitle {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e8edf4;
}
.legal-page h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.8rem 0 .5rem;
}
.legal-page p, .legal-page address, .legal-page ul {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.75;
  font-style: normal;
}
.legal-page a { color: var(--primary); font-weight: 600; }
.legal-page a:hover { text-decoration: underline; }
.legal-page ul { padding-left: 1.4rem; }

@media (max-width: 768px) {
  .legal-body { padding-top: 100px; }
  .legal-page {
    margin: 1.5rem 1rem 3rem;
    padding: 2rem 1.5rem;
    border-radius: 12px;
  }
  .legal-page h1 { font-size: 1.4rem; }
  .legal-back { margin-bottom: 1.5rem; }
}

/* =========================================================
   SCROLL REVEAL ANIMATION (Basis)
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
