/* ============================================
   SBK Mittelhessen - Schädlingsbekämpfung
   Design: Traditional German Authority + Modern
   Palette: Forest Green + Warm Gold + Cream
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&family=Lato:wght@300;400;500;700;900&display=swap');

/* ---- Variables ---- */
:root {
  --green-dark:    #16312A;
  --green-medium:  #1E4635;
  --green-light:   #2D6A4F;
  --gold:          #C9A84C;
  --gold-light:    #E8C87A;
  --gold-pale:     #F5EDD6;
  --red-cta:       #B52B27;
  --red-hover:     #8C1E1B;
  --cream:         #F4EFE6;
  --cream-dark:    #EAE3D7;
  --white:         #FFFFFF;
  --dark:          #141414;
  --text:          #2A2A2A;
  --text-light:    #5A5A5A;
  --gray-border:   #D8D0C4;

  --shadow-sm:     0 2px 8px rgba(0,0,0,.08);
  --shadow-md:     0 6px 24px rgba(0,0,0,.13);
  --shadow-lg:     0 16px 48px rgba(0,0,0,.18);
  --shadow-gold:   0 4px 20px rgba(201,168,76,.35);

  --radius:        6px;
  --radius-lg:     12px;
  --transition:    all .28s cubic-bezier(.4,0,.2,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--green-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
p { line-height: 1.75; color: var(--text-light); }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(22, 49, 42, .97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,.2);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-wrap img {
  height: 44px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 4px 8px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text .brand { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--gold); letter-spacing: .02em; }
.logo-text .sub { font-size: .72rem; font-weight: 500; color: rgba(255,255,255,.7); letter-spacing: .06em; text-transform: uppercase; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  padding: 8px 16px;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-radius: var(--radius);
  transition: var(--transition);
  letter-spacing: .02em;
}
.main-nav a:hover { color: var(--gold); background: rgba(255,255,255,.06); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-phone-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark) !important;
  padding: 10px 20px !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
  font-size: .85rem !important;
  transition: var(--transition) !important;
  white-space: nowrap;
}
.btn-phone-header:hover { background: var(--gold-light) !important; transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.btn-phone-header svg { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius);
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--green-dark);
  padding: 20px 24px 32px;
  z-index: 899;
  border-top: 1px solid rgba(201,168,76,.15);
  transform: translateY(-10px);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.08);
  letter-spacing: .02em;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mobile-cta {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.mobile-menu .btn-primary-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: var(--gold);
  color: var(--dark);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
}
.mobile-menu .btn-outline-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border: 2px solid rgba(255,255,255,.3);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.btn-primary-lg {
  background: var(--gold);
  color: var(--dark);
  padding: 18px 36px;
  font-size: 1.05rem;
  border-radius: 100px;
}
.btn-primary-lg:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,.5); }

.btn-phone {
  background: var(--red-cta);
  color: var(--white);
  border-radius: 100px;
  padding: 18px 36px;
  font-size: 1.05rem;
}
.btn-phone:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(181,43,39,.4); }

.btn-outline-white {
  border: 2px solid rgba(255,255,255,.6);
  color: var(--white);
  border-radius: 100px;
  padding: 16px 32px;
  font-size: .95rem;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

.btn-ghost-green {
  border: 2px solid var(--green-dark);
  color: var(--green-dark);
  border-radius: var(--radius);
  padding: 12px 24px;
  font-size: .9rem;
}
.btn-ghost-green:hover { background: var(--green-dark); color: var(--white); }

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url('../images/hero-main.jpg');
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(22, 49, 42, .92) 0%,
    rgba(30, 70, 53, .82) 50%,
    rgba(22, 49, 42, .75) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white);
  max-width: 700px;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero h1 span { color: var(--gold-light); }
.hero p.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.8);
  font-size: .875rem;
  font-weight: 500;
}
.trust-item .check {
  width: 24px; height: 24px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-item .check svg { width: 12px; height: 12px; color: var(--dark); }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* City hero variant */
.hero-city .hero-bg {
  background-image: var(--city-hero-bg);
}
.hero-city {
  min-height: 70vh;
}

/* ============================================
   STÖRER (BADGES / CALLOUT ELEMENTS)
   ============================================ */
.stoerer-strip {
  background: var(--green-dark);
  padding: 0;
  overflow: hidden;
}
.stoerer-track {
  display: flex;
  gap: 0;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.stoerer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-right: 1px solid rgba(255,255,255,.1);
  flex: 1;
  white-space: nowrap;
}
.stoerer-item:last-child { border-right: none; }
.stoerer-item .icon { font-size: 1.5rem; flex-shrink: 0; }
.stoerer-item .label {
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1;
  display: block;
  margin-bottom: 2px;
}
.stoerer-item .value {
  font-size: .95rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

/* Floating badge stoerer */
.stoerer-badge {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  text-align: center;
  padding: 12px;
  box-shadow: 0 6px 24px rgba(201,168,76,.4);
  animation: spin-slow 8s linear infinite;
  cursor: default;
}
.stoerer-badge .number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}
.stoerer-badge .text { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; line-height: 1.2; }
@keyframes spin-slow { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.stoerer-badge-wrap {
  position: absolute;
  top: -20px; right: -20px;
  z-index: 5;
}
.stoerer-badge-wrap .stoerer-badge { animation: none; }

/* Inline section stoerer */
.section-stoerer {
  background: var(--red-cta);
  color: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
}
.section-stoerer .stoerer-icon { font-size: 2.5rem; flex-shrink: 0; }
.section-stoerer .stoerer-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.section-stoerer .stoerer-desc { font-size: .9rem; color: rgba(255,255,255,.85); }
.section-stoerer .btn-stoerer { margin-left: auto; background: var(--white); color: var(--red-cta); padding: 12px 24px; border-radius: 100px; font-weight: 700; font-size: .9rem; white-space: nowrap; flex-shrink: 0; transition: var(--transition); }
.section-stoerer .btn-stoerer:hover { background: var(--gold-pale); }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title { margin-bottom: 16px; }
.section-desc { font-size: 1.05rem; color: var(--text-light); max-width: 580px; line-height: 1.7; }
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }
.section-header.center .section-label { justify-content: center; }
.section-header.center .section-label::before { display: none; }

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.service-card p { font-size: .9rem; line-height: 1.6; }

/* ============================================
   CITIES GRID
   ============================================ */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.city-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 240px;
  display: block;
  text-decoration: none;
}
.city-card-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.city-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,49,42,.9) 0%, rgba(22,49,42,.3) 60%, transparent 100%);
  transition: var(--transition);
}
.city-card:hover .city-card-img { transform: scale(1.06); }
.city-card:hover::after { background: linear-gradient(to top, rgba(22,49,42,.95) 0%, rgba(22,49,42,.5) 70%, rgba(22,49,42,.1) 100%); }
.city-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
  z-index: 2;
}
.city-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 6px; }
.city-card .city-label {
  font-size: .8rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.city-card-arrow {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 2;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.city-card:hover .city-card-arrow { background: var(--gold); color: var(--dark); }

/* ============================================
   WHY US / ADVANTAGES
   ============================================ */
.bg-green { background: var(--green-dark); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-cream-dark { background: var(--cream-dark); }

.advantage-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}
.advantage-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.advantage-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.advantage-item h4 { font-size: 1rem; color: var(--white); margin-bottom: 6px; }
.advantage-item p { font-size: .875rem; color: rgba(255,255,255,.7); line-height: 1.6; }

/* ============================================
   PROCESS STEPS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 2px;
  background: var(--gray-border);
  z-index: 0;
}
.step-item {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
}
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0 auto 20px;
}
.step-item h4 { font-size: 1rem; margin-bottom: 8px; }
.step-item p { font-size: .85rem; }

/* ============================================
   PEST TYPES
   ============================================ */
.pest-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.pest-item {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.pest-item:hover { border-color: var(--green-light); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.pest-emoji { font-size: 2rem; margin-bottom: 10px; }
.pest-item h4 { font-size: .9rem; color: var(--text); font-family: 'Lato', sans-serif; font-weight: 700; }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info .contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 20px;
  border: 1px solid var(--gray-border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}
.contact-info .contact-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.contact-icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact-card .label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: 4px; }
.contact-card .value { font-size: 1.1rem; font-weight: 700; color: var(--green-dark); }
.contact-card a.value { transition: var(--transition); }
.contact-card a.value:hover { color: var(--gold); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 { margin-bottom: 8px; }
.contact-form-wrap .form-desc { font-size: .9rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-medium);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(30,70,53,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235A5A5A' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; }
.form-privacy { font-size: .78rem; color: var(--text-light); margin-top: 12px; text-align: center; line-height: 1.5; }
.form-privacy a { color: var(--green-medium); text-decoration: underline; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-border);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold-pale);
  position: absolute;
  top: 10px; left: 20px;
  line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-text { font-size: .9rem; line-height: 1.7; color: var(--text); margin-bottom: 16px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 10px; border-top: 1px solid var(--cream-dark); padding-top: 16px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--green-dark); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: .9rem; color: var(--text); }
.testimonial-place { font-size: .8rem; color: var(--text-light); }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-border);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  font-family: 'Playfair Display', serif;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition);
}
.faq-question:hover { color: var(--green-dark); }
.faq-question .faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--gray-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-question.active .faq-icon { background: var(--green-dark); border-color: var(--green-dark); }
.faq-question.active .faq-icon svg { transform: rotate(45deg); color: var(--white); }
.faq-question .faq-icon svg { transition: transform .3s ease; color: var(--text-light); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-answer.open { max-height: 400px; }
.faq-answer-inner { padding-bottom: 20px; font-size: .95rem; line-height: 1.75; color: var(--text-light); }

/* ============================================
   STATS / NUMBERS
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  background: rgba(255,255,255,.05);
  padding: 36px 24px;
  text-align: center;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: .85rem; color: rgba(255,255,255,.75); font-weight: 500; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo img { height: 40px; margin-bottom: 16px; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.footer-desc { font-size: .875rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.7); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: .875rem; margin-bottom: 10px; color: rgba(255,255,255,.75); }
.footer-contact-item a { color: rgba(255,255,255,.75); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .8rem; }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { font-size: .8rem; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-legal-links a:hover { color: var(--gold); }
.vermittlung-note { font-size: .75rem; color: rgba(255,255,255,.4); margin-top: 6px; }

/* ============================================
   FLOATING PHONE BUTTON (MOBILE)
   ============================================ */
.fab-phone {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 800;
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--red-cta);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(181,43,39,.5);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  animation: pulse-fab 2s infinite;
}
.fab-phone svg { flex-shrink: 0; }
@keyframes pulse-fab {
  0%,100% { box-shadow: 0 8px 32px rgba(181,43,39,.5); }
  50% { box-shadow: 0 8px 40px rgba(181,43,39,.8), 0 0 0 8px rgba(181,43,39,.12); }
}

/* ============================================
   CITY PAGE SPECIFICS
   ============================================ */
.city-images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.city-images-grid img {
  border-radius: var(--radius-lg);
  height: 240px;
  width: 100%;
  object-fit: cover;
}

.nearby-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.nearby-cities a {
  padding: 8px 18px;
  border: 1.5px solid var(--gray-border);
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--green-dark);
  transition: var(--transition);
}
.nearby-cities a:hover { border-color: var(--green-dark); background: var(--green-dark); color: var(--white); }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
  padding-top: 4px;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ============================================
   IMPRESSUM / DATENSCHUTZ
   ============================================ */
.legal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--gray-border);
}
.legal-content h2 { font-size: 1.5rem; margin-top: 36px; margin-bottom: 14px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.1rem; margin-top: 24px; margin-bottom: 10px; font-family: 'Lato', sans-serif; }
.legal-content p { font-size: .95rem; margin-bottom: 14px; }
.legal-content ul { padding-left: 20px; margin-bottom: 14px; }
.legal-content ul li { font-size: .95rem; line-height: 1.7; color: var(--text-light); margin-bottom: 6px; list-style: disc; }
.legal-content a { color: var(--green-medium); text-decoration: underline; }

/* ============================================
   HERO CTA BAR
   ============================================ */
.cta-bar {
  background: var(--green-medium);
  padding: 40px 0;
}
.cta-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-bar h2 { color: var(--white); font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin: 0; }
.cta-bar p { color: rgba(255,255,255,.8); font-size: .95rem; margin: 4px 0 0; }
.cta-bar-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: .1s; }
.stagger-2 { transition-delay: .2s; }
.stagger-3 { transition-delay: .3s; }
.stagger-4 { transition-delay: .4s; }

/* ============================================
   UTILITY
   ============================================ */
.text-gold { color: var(--gold) !important; }
.text-white { color: var(--white) !important; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.divider { width: 60px; height: 3px; background: var(--gold); border-radius: 2px; margin: 16px 0 32px; }
.divider.center { margin: 16px auto 32px; }

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

@media (max-width: 768px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .section { padding: 56px 0; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .stoerer-track { flex-wrap: wrap; }
  .stoerer-item { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,.1); }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }

  .city-images-grid { grid-template-columns: 1fr; }
  .city-images-grid img { height: 200px; }

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

  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-bar-inner { flex-direction: column; text-align: center; }
  .cta-bar-actions { justify-content: center; }

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

  .section-stoerer { flex-direction: column; text-align: center; }
  .section-stoerer .btn-stoerer { margin-left: 0; }

  .legal-content { padding: 24px; }

  .fab-phone { display: flex; }

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

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .cities-grid { grid-template-columns: 1fr; }
  .stoerer-item { flex: 0 0 100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .pest-list { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: 16px; }
}

/* Success state for form */
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 12px; }
.form-success h3 { color: var(--green-dark); margin-bottom: 8px; }
.form-success p { font-size: .9rem; }
