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

:root {
  --red: #e63027;
  --red-dark: #c0251e;
  --dark: #0f0f0f;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --gray: #2c2c2c;
  --text: #f0f0f0;
  --text-muted: #aaaaaa;
  --white: #ffffff;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid #2a2a2a;
  backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 40%, #2a0808 100%);
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(230, 48, 39, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(230, 48, 39, 0.08) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: left;
}

.hero-sub {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--red);
}

.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.03em;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
.btn-primary.full-width {
  width: 100%;
  justify-content: center;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  letter-spacing: 0.03em;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.5);
}

/* ===========================
   SECTIONS GENERAL
=========================== */
section {
  padding: 80px 0;
}

.section-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-desc {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 48px;
  max-width: 560px;
}

/* ===========================
   LEISTUNGEN
=========================== */
.leistungen {
  background: var(--dark2);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.card {
  background: var(--dark3);
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}

.card-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===========================
   ÜBER UNS
=========================== */
.ueber-uns {
  background: var(--dark);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.ueber-text p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 15px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-list li {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}

.stats-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-box {
  background: var(--dark3);
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}

.stat-box.highlight {
  border-color: var(--red);
  background: rgba(230, 48, 39, 0.07);
}

.stat-number {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.stat-city {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  color: var(--red);
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}

/* ===========================
   BEWERTUNGEN
=========================== */
.bewertungen {
  background: var(--dark2);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--dark3);
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  padding: 24px;
}

.stars {
  color: #f5c842;
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}

.reviewer {
  font-size: 14px;
  color: var(--text);
}

.reviewer span {
  color: var(--text-muted);
  font-size: 13px;
  margin-left: 6px;
}

/* ===========================
   KONTAKT
=========================== */
.kontakt {
  background: var(--dark);
}

.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.anfrage-form {
  background: var(--dark3);
  border: 1px solid #2e2e2e;
  border-radius: 14px;
  padding: 32px;
}

.anfrage-form h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 7px;
  padding: 11px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
}

.form-group textarea {
  resize: vertical;
}

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

.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}

.kontakt-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--dark3);
  border: 1px solid #2e2e2e;
  border-radius: 10px;
  padding: 18px 20px;
}

.kontakt-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.kontakt-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.kontakt-item a {
  color: var(--red);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s;
}
.kontakt-item a:hover { color: #ff4b41; }

.kontakt-item p,
.kontakt-item div:last-child {
  font-size: 14px;
  color: var(--text-muted);
}

/* ===========================
   MAP
=========================== */
.map-section {
  background: var(--dark2);
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #080808;
  border-top: 1px solid #1e1e1e;
  padding: 40px 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
}

.footer-brand strong {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid #1e1e1e;
  text-align: center;
  padding: 16px 20px;
}

.footer-bottom p {
  font-size: 13px;
  color: #555;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .kontakt-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 58px; left: 0; right: 0;
    background: #0f0f0f;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid #222;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .hero-content { padding: 60px 20px; }

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

  .footer-inner {
    flex-direction: column;
  }
}

/* ===========================
   WHATSAPP BUTTON
=========================== */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #25D366;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

/* ===========================
   IMPRESSUM
=========================== */
.impressum-block {
  background: var(--dark3);
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 20px;
}

.impressum-block h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.impressum-block p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 10px;
}

.impressum-block p:last-child { margin-bottom: 0; }

.impressum-block a {
  color: var(--red);
  transition: color 0.2s;
}
.impressum-block a:hover { color: #ff4b41; }
