/* ================================================
   Gloria Schädlingsbekämpfung - Stylesheet
   ================================================ */

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

:root {
  --primary:      #1A3C20;   /* tiefdunkelgrün – wie Schatten unter Kleeblatt */
  --primary-mid:  #2B6030;   /* mittleres Waldgrün */
  --primary-light:#3D8040;   /* helles Waldgrün */
  --accent:       #64BE42;   /* Kleeblatt-Grün aus dem Logo */
  --accent-hover: #52A233;
  --accent-light: #EEF8E9;
  --green:        #2E7D32;   /* CTA-Telefonbutton */
  --red:          #C62828;
  --bg:           #F3F7F2;   /* minimal grünlicher Hintergrund */
  --white:        #FFFFFF;
  --gray-100:     #F8F9FA;
  --gray-200:     #E9ECEF;
  --gray-400:     #CED4DA;
  --gray-600:     #6C757D;
  --gray-800:     #343A40;
  --text:         #1A1A1A;
  --radius:       8px;
  --radius-lg:    16px;
  --shadow:       0 2px 12px rgba(0,0,0,.10);
  --shadow-lg:    0 8px 32px rgba(0,0,0,.15);
  --transition:   .25s ease;
  --font-head:    'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body:    'Open Sans', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.15rem; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
p + p { margin-top: .9rem; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 72px 0; }
.section-pad-sm { padding: 48px 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  cursor: pointer; border: none; transition: var(--transition);
  white-space: nowrap; text-decoration: none;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,132,26,.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-phone { background: var(--green); color: #fff; }
.btn-phone:hover { background: #1B5E20; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(46,125,50,.35); }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---- Mobile Sticky Call Bar ---- */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--primary);
  padding: 12px 16px;
  box-shadow: 0 -4px 16px rgba(0,0,0,.3);
}
.mobile-cta-bar .cta-inner {
  display: flex; gap: 10px; max-width: 480px; margin: 0 auto;
}
.mobile-cta-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 7px; padding: 14px 10px; border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  color: #fff; text-decoration: none;
}
.mobile-cta-bar .cta-call { background: var(--green); }
.mobile-cta-bar .cta-contact { background: var(--accent); }
.mobile-cta-bar svg { width: 18px; height: 18px; }

@media (max-width: 768px) {
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 74px; }
}

/* ---- Header ---- */
.site-header {
  background: var(--white);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 16px rgba(26,60,32,.18);
  border-bottom: 3px solid var(--accent);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 24px; max-width: 1180px; margin: 0 auto; gap: 20px;
}
.site-logo { flex-shrink: 0; }
.site-logo img {
  height: 72px; width: auto;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.08));
  transition: opacity .2s;
}
.site-logo img:hover { opacity: .88; }
.site-logo a { display: block; }

/* Nav color adjustments for white header */
.main-nav a { color: var(--primary); }
.main-nav a:hover, .main-nav a.active { color: var(--accent); background: var(--accent-light); }

.header-phone {
  display: flex; align-items: center; gap: 10px;
  color: var(--primary); text-decoration: none;
  font-family: var(--font-head); font-weight: 700;
}
.header-phone span.label { font-size: .72rem; color: var(--gray-600); display: block; line-height: 1; }
.header-phone span.num { font-size: 1.05rem; color: var(--primary); }
.header-phone .phone-icon { background: var(--accent); border-radius: 50%; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.header-phone .phone-icon svg { width: 18px; height: 18px; color: #fff; }

.main-nav ul { display: flex; gap: 4px; align-items: center; }
.main-nav a {
  font-family: var(--font-head); font-weight: 600;
  font-size: .9rem; padding: 8px 14px; border-radius: var(--radius);
  transition: var(--transition);
}

.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; color: var(--primary);
}
.hamburger svg { width: 26px; height: 26px; }

@media (max-width: 900px) {
  .site-header { border-bottom-color: var(--accent); }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 16px 20px; box-shadow: 0 8px 20px rgba(0,0,0,.15); border-top: 1px solid var(--gray-200); }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { display: block; padding: 12px 16px; font-size: 1rem; }
  .hamburger { display: flex; }
  .header-phone span.label, .header-phone span.num { display: none; }
  .site-logo img { height: 58px; }
}

/* ---- Hero ---- */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  background: var(--primary);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: 72% 15%;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(26,60,32,.90) 0%,
    rgba(26,60,32,.75) 35%,
    rgba(26,60,32,.30) 58%,
    rgba(26,60,32,.00) 72%
  );
}
@media (max-width: 768px) {
  .hero-bg {
    background-position: 65% center;
  }
  .hero-bg::after {
    background: linear-gradient(to bottom,
      rgba(26,60,32,.55) 0%,
      rgba(26,60,32,.80) 55%,
      rgba(26,60,32,.95) 100%
    );
  }
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1180px; margin: 0 auto; padding: 60px 20px;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 6px 16px; border-radius: 50px; font-size: .85rem;
  font-family: var(--font-head); font-weight: 700; margin-bottom: 22px;
  letter-spacing: .5px;
}
.hero h1 { color: #fff; max-width: 480px; margin-bottom: 20px; }
.hero p.lead {
  color: rgba(255,255,255,.88); font-size: 1.15rem; max-width: 440px;
  margin-bottom: 36px; line-height: 1.7;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; max-width: 480px; }
.hero-features { display: flex; flex-wrap: wrap; gap: 18px; max-width: 480px; }
.hero-feature {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.85); font-size: .9rem;
}
.hero-feature svg { color: var(--accent); width: 18px; height: 18px; flex-shrink: 0; }

@media (max-width: 600px) {
  .hero { min-height: 100svh; }
  .hero h1 { font-size: 1.75rem; }
  .hero p.lead { font-size: 1rem; }
  .hero-ctas .btn-lg { width: 100%; justify-content: center; }
}

/* ---- Trust Bar ---- */
.trust-bar { background: var(--accent); padding: 18px 0; }
.trust-bar-inner {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 24px 40px; max-width: 1180px; margin: 0 auto; padding: 0 20px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .95rem;
}
.trust-item svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ---- Section Intro ---- */
.section-intro { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-intro .kicker {
  display: inline-block; color: var(--accent);
  font-family: var(--font-head); font-weight: 700; font-size: .85rem;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
.section-intro h2 { color: var(--primary); margin-bottom: 16px; }
.section-intro p { color: var(--gray-600); }

/* ---- Services Grid ---- */
.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--gray-100); border-radius: var(--radius-lg);
  padding: 32px 28px; transition: var(--transition);
  border: 2px solid transparent;
}
.service-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 58px; height: 58px; background: var(--accent-light);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; margin-bottom: 18px;
}
.service-icon svg { width: 30px; height: 30px; color: var(--accent); }
.service-card h3 { font-size: 1.15rem; color: var(--primary); margin-bottom: 10px; }
.service-card p { color: var(--gray-600); font-size: .95rem; }

/* ---- Content Section ---- */
.content-section { background: var(--bg); }
.content-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.content-cols.reverse .content-text { order: 2; }
.content-cols.reverse .content-img { order: 1; }
.content-text h2 { color: var(--primary); margin-bottom: 20px; }
.content-text p { color: var(--gray-800); margin-bottom: 16px; }
.content-text ul.check-list { margin: 20px 0; }
.content-text ul.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 7px 0; color: var(--gray-800); font-size: .97rem;
}
.content-text ul.check-list li svg { color: var(--green); width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; }
.content-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.content-img img { width: 100%; height: 380px; object-fit: cover; }

@media (max-width: 768px) {
  .content-cols { grid-template-columns: 1fr; gap: 32px; }
  .content-cols.reverse .content-text,
  .content-cols.reverse .content-img { order: unset; }
}

/* ---- Störer / CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  padding: 64px 0;
}
.cta-banner-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 28px;
  max-width: 1180px; margin: 0 auto; padding: 0 20px;
}
.cta-banner .text h2 { color: #fff; margin-bottom: 10px; }
.cta-banner .text p { color: rgba(255,255,255,.8); font-size: 1.05rem; }
.cta-banner .actions { display: flex; flex-wrap: wrap; gap: 14px; }

.stoerer {
  position: relative;
  background: var(--accent);
  border-radius: var(--radius);
  padding: 28px 32px; color: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.stoerer::before {
  content: ''; position: absolute;
  top: -20px; right: -20px;
  width: 80px; height: 80px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}
.stoerer h4 { font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 6px; }
.stoerer p { font-size: .9rem; opacity: .9; }

/* ---- Opening Hours Stoerer ---- */
.stoerer-strip {
  background: var(--green);
  text-align: center; padding: 18px 20px;
}
.stoerer-strip p { color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1rem; }
.stoerer-strip span { opacity: .85; font-weight: 400; }

/* ---- Stats ---- */
.stats-section { background: var(--primary); padding: 56px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px; text-align: center;
}
.stat-item .num { font-family: var(--font-head); font-size: 2.8rem; font-weight: 800; color: var(--accent); }
.stat-item .label { color: rgba(255,255,255,.8); font-size: .95rem; margin-top: 6px; }

/* ---- FAQ ---- */
.faq-section { background: var(--white); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 4px; gap: 16px;
  text-align: left; font-family: var(--font-head); font-weight: 700;
  font-size: 1.05rem; color: var(--primary);
  transition: var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-question .arrow {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--accent-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition);
}
.faq-question .arrow svg { width: 14px; height: 14px; color: var(--accent); }
.faq-question.open .arrow { transform: rotate(180deg); background: var(--accent); }
.faq-question.open .arrow svg { color: #fff; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 4px;
}
.faq-answer.open { padding-bottom: 20px; }
.faq-answer p { color: var(--gray-800); line-height: 1.7; }

/* ---- Contact Form ---- */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start;
}
.contact-info h2 { color: var(--primary); margin-bottom: 20px; }
.contact-info p { color: var(--gray-600); margin-bottom: 28px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px;
}
.contact-detail .icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--accent); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.contact-detail .icon svg { width: 20px; height: 20px; color: #fff; }
.contact-detail .text strong { display: block; font-family: var(--font-head); font-weight: 700; color: var(--primary); margin-bottom: 2px; }
.contact-detail .text span { color: var(--gray-600); font-size: .95rem; }
.contact-detail .text a { color: var(--text); font-size: 1.05rem; font-weight: 600; }
.contact-detail .text a:hover { color: var(--accent); }

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; color: var(--primary); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--radius);
  border: 2px solid var(--gray-200); font-family: var(--font-body);
  font-size: .97rem; transition: border-color var(--transition);
  background: var(--gray-100); color: var(--text);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent); background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-honeypot { display: none !important; }
.form-note { font-size: .82rem; color: var(--gray-600); margin-top: 14px; }
.form-success {
  display: none; background: #E8F5E9; border: 2px solid var(--green);
  border-radius: var(--radius); padding: 16px 20px; color: var(--green);
  font-weight: 600; margin-bottom: 20px;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
}

/* ---- Cities Grid ---- */
.cities-section { background: var(--white); }
.cities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.city-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
  background: var(--white); text-decoration: none;
  display: block;
}
.city-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.city-card img { width: 100%; height: 170px; object-fit: cover; }
.city-card .city-info { padding: 20px; }
.city-card .city-info h3 { font-size: 1.05rem; color: var(--primary); margin-bottom: 6px; }
.city-card .city-info p { font-size: .85rem; color: var(--gray-600); }
.city-card .city-link {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-weight: 700; font-size: .85rem;
  color: var(--accent); margin-top: 10px;
}
.city-card .city-link svg { width: 14px; height: 14px; }

/* ---- City Page Hero ---- */
.city-hero { min-height: 65vh; }
.city-hero .hero-content { max-width: 1180px; padding: 80px 20px; }
.breadcrumb { display: flex; align-items: center; gap: 6px; margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.7); font-size: .88rem; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.5); font-size: .88rem; }
.breadcrumb .current { color: rgba(255,255,255,.9); font-size: .88rem; }

/* ---- City Images ---- */
.city-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.city-gallery img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
@media (max-width: 600px) {
  .city-gallery { grid-template-columns: 1fr; }
  .city-gallery img { height: 220px; }
}

/* ---- Footer ---- */
.site-footer { background: var(--primary); color: rgba(255,255,255,.8); padding: 60px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  max-width: 1180px; margin: 0 auto; padding: 0 20px 48px;
}
.footer-brand img { height: 68px; margin-bottom: 18px; background: #fff; padding: 8px 12px; border-radius: var(--radius); }
.footer-brand p { font-size: .92rem; line-height: 1.65; max-width: 300px; }
.footer-col h4 { color: #fff; font-family: var(--font-head); font-size: .95rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.7); font-size: .92rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact p { font-size: .92rem; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 8px; }
.footer-contact p svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.footer-contact a { color: rgba(255,255,255,.7); }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px; text-align: center;
  font-size: .85rem; color: rgba(255,255,255,.5);
  max-width: 1180px; margin: 0 auto;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: rgba(255,255,255,.9); }

/* ---- Mobile Button Fix ---- */
@media (max-width: 768px) {
  .btn {
    white-space: normal;
    max-width: 100%;
    box-sizing: border-box;
  }
  .content-text .btn,
  .content-text a.btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---- Utilities ---- */
.text-center { text-align: center; }
.text-white { color: #fff !important; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.bg-white { background: var(--white); }

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate { opacity: 0; }
.animate.visible { animation: fadeUp .55s ease forwards; }

/* ---- Responsive helpers ---- */
@media (max-width: 768px) {
  .section-pad { padding: 52px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .city-gallery { grid-template-columns: 1fr 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner .actions { justify-content: center; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
