*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:    #c62828;
  --blue-dk: #b71c1c;
  --blue-lt: #ffebee;
  --accent:  #d84315;
  --whatsapp:#25d366;
  --whatsapp-dk:#1da851;
  --grey:    #f5f5f5;
  --text:    #212121;
  --muted:   #757575;
  --white:   #ffffff;
  --border:  #e0e0e0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--blue-dk);
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 8px 5%;
  font-size: 0.82rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar a:hover { text-decoration: underline; }
.topbar-item { display: flex; align-items: center; gap: 6px; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 42px; height: 42px;
  background: var(--blue);
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.nav-logo-icon svg { width: 24px; height: 24px; fill: #fff; }

.nav-brand { line-height: 1.25; }
.nav-brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dk);
}
.nav-brand-sub {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 700 !important;
}

.nav-cta:hover { background: #bf360c !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── HERO ── */
#hero {
  min-height: 92vh;
  background: linear-gradient(rgba(183, 28, 28, 0.82), rgba(183, 28, 28, 0.75)),
              url('unfall2.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 80px 5% 60px;
}

.hero-content { max-width: 660px; }

.hero-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 5px 16px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 540px;
  font-weight: 300;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.btn-orange {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-orange:hover { background: #bf360c; border-color: #bf360c; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border-color: var(--whatsapp);
}

.btn-whatsapp:hover { background: var(--whatsapp-dk); border-color: var(--whatsapp-dk); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

.btn-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.btn-white:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

.hero-trust {
  margin-top: 48px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-check {
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

/* ── TRUST BAND ── */
.trust-band {
  background: var(--blue);
  padding: 28px 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-band-item { color: #fff; }
.trust-band-item .num { font-size: 2rem; font-weight: 800; color: #fff; }
.trust-band-item .label { font-size: 0.8rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.06em; }

/* ── SECTIONS ── */
.section { padding: 80px 5%; }
.section-grey { background: var(--grey); }

.section-header { margin-bottom: 48px; }
.section-label {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: all 0.25s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(198, 40, 40, 0.12);
  border-color: var(--blue);
}

.svc-icon {
  width: 56px; height: 56px;
  background: var(--blue-lt);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.svc-icon svg { width: 28px; height: 28px; fill: var(--blue); }

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: #4a0e0e;
}

.gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

@media (max-width: 768px) {
  .gallery-item:first-child { grid-column: span 1; aspect-ratio: 4/3; }
}

.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
  padding: 28px 16px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  z-index: 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.gallery-item:hover img { transform: scale(1.04); }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
}

.about-img-box {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blue-dk), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text .section-label { margin-top: 0; }

.about-quote {
  background: var(--blue-lt);
  border-left: 4px solid var(--blue);
  padding: 20px 22px;
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  color: var(--text);
  font-style: italic;
  margin: 24px 0;
  line-height: 1.7;
}

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

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
}

.checklist li::before {
  content: '✓';
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── PROCESS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}

.step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--blue);
  font-weight: 700;
}

@media (max-width: 640px) {
  .step:not(:last-child)::after { display: none; }
}

.step-num {
  width: 52px; height: 52px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 16px;
}

.step h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step p  { font-size: 0.85rem; color: var(--muted); }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
}

.review-stars { color: #fbc02d; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }

.review-text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-name { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.review-date { font-size: 0.78rem; color: var(--muted); }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f5f5f5;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 8px;
}

.google-g {
  width: 16px; height: 16px;
  background: #4285F4;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 0.6rem;
  display: grid;
  place-items: center;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--blue);
  padding: 72px 5%;
  text-align: center;
}

.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,0.82); margin-bottom: 36px; font-size: 1rem; }
.cta-banner .hero-btns { justify-content: center; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-cards { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--grey);
  border-radius: 10px;
  padding: 18px 20px;
}

.contact-card-icon {
  width: 44px; height: 44px;
  background: var(--blue);
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-card-icon svg { width: 22px; height: 22px; fill: #fff; }

.contact-card h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); margin-bottom: 4px; }
.contact-card p, .contact-card a {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}
.contact-card a:hover { color: var(--blue); }

.hours-list { margin-top: 6px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.87rem;
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border: none; }
.hours-day { color: var(--muted); font-weight: 400; }
.hours-time { font-weight: 600; color: var(--text); }
.hours-closed { color: #d32f2f; font-weight: 600; }

.map-box {
  border-radius: 12px;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.map-box iframe { width: 100%; height: 100%; border: none; }

/* ── LEGAL CONTENT PAGES (Impressum / AGB / Datenschutz / Über uns) ── */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 5% 100px;
}

.legal-page .section-label { display: block; }
.legal-page h1 {
  color: var(--text);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.2;
}

.legal-page .legal-updated {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 1.2rem;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blue-lt);
}

.legal-page h2:first-of-type { margin-top: 0; }

.legal-page h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 22px;
  margin-bottom: 8px;
}

.legal-page p, .legal-page li {
  font-size: 0.94rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-page ul, .legal-page ol {
  padding-left: 22px;
  margin-bottom: 12px;
}

.legal-page a { color: var(--blue); }
.legal-page a:hover { text-decoration: underline; }

.legal-page strong { color: var(--text); }

.legal-note {
  background: var(--blue-lt);
  border-left: 4px solid var(--blue);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 28px;
}

/* ── PAGE HERO (for subpages without the big hero) ── */
.page-hero {
  background: linear-gradient(rgba(183,28,28,0.92), rgba(183,28,28,0.88));
  padding: 56px 5% 48px;
  text-align: center;
}

.page-hero .section-label { color: rgba(255,255,255,0.75); }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 12px auto 0; }

/* ── ABOUT TEASER (homepage) ── */
.about-teaser-link {
  margin-top: 24px;
}

/* ── FOOTER ── */
footer {
  background: #111;
  color: rgba(255,255,255,0.5);
  padding: 64px 5% 24px;
  font-size: 0.82rem;
}

footer a { color: rgba(255,255,255,0.7); text-decoration: none; }
footer a:hover { color: #fff; }

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand .nav-logo-icon { width: 38px; height: 38px; }
.footer-brand-name { font-size: 1rem; font-weight: 700; color: #fff; }
.footer-brand-sub { font-size: 0.72rem; color: rgba(255,255,255,0.45); }
.footer-col p { line-height: 1.7; color: rgba(255,255,255,0.45); }

.footer-col h4 {
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li { color: rgba(255,255,255,0.45); }

.legal-notice {
  max-width: 1100px;
  margin: 0 auto 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 0.76rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  text-align: left;
}

.legal-notice strong { color: rgba(255,255,255,0.6); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ── FLOAT BUTTONS ── */
.phone-float, .whatsapp-float {
  position: fixed;
  right: 24px;
  z-index: 200;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  text-decoration: none;
  transition: transform 0.2s;
}

.phone-float {
  bottom: 100px;
  background: var(--accent);
  color: #fff;
}

.whatsapp-float {
  bottom: 28px;
  background: var(--whatsapp);
  color: #fff;
}

.phone-float:hover, .whatsapp-float:hover { transform: scale(1.1); }
.phone-float svg, .whatsapp-float svg { width: 26px; height: 26px; fill: #fff; }

/* ── MOBILE ── */
@media (max-width: 820px) {
  .nav-links { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    padding: 20px 5%;
    gap: 4px;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  .nav-links.open li { border-bottom: 1px solid var(--border); }
  .nav-links.open a { display: block; padding: 13px 0; }
  .nav-links.open .nav-cta { background: var(--accent) !important; color: #fff !important; border-radius: 6px; padding: 13px 0; text-align: center; margin-top: 8px; }
  .hamburger { display: flex; }
  .trust-band { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 60px 5%; }
}

@media (max-width: 480px) {
  .trust-band { grid-template-columns: 1fr; }
}
