/* =========================================================
   ZEUS Fahrdienste GmbH – Website Stylesheet
   Reines CSS, kein Framework, keine externen Schriftarten
   (bewusst DSGVO-sauber: keine externen Requests von hier aus)
   ========================================================= */

:root {
  --color-primary: #1f4e79;      /* dunkles Blau, angelehnt an das Logo */
  --color-primary-light: #4f83b3;
  --color-primary-dark: #143552;
  --color-accent: #eab308;       /* Gold, angelehnt an den Stab im Logo */
  --color-accent-dark: #b8860b;
  --color-bg: #ffffff;
  --color-bg-alt: #f4f7fb;
  --color-bg-dark: #0f2740;
  --color-text: #1c2733;
  --color-text-muted: #4b5a68;
  --color-border: #dde5ee;
  --radius: 14px;
  --shadow: 0 10px 30px -12px rgba(15, 39, 64, 0.25);
  --max-width: 1180px;
  --font-base: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 17px;
}

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

a { color: var(--color-primary); text-decoration: none; }
a:hover, a:focus { color: var(--color-primary-dark); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-base);
  color: var(--color-primary-dark);
  line-height: 1.25;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; color: var(--color-text); }
.lead { font-size: 1.15rem; color: var(--color-text-muted); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-accent);
  color: #1c1c1c;
  padding: 10px 16px;
  z-index: 200;
  font-weight: 600;
}
.skip-link:focus { left: 10px; top: 10px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--color-bg-dark);
  color: #dbe6f2;
  font-size: 0.88rem;
}
.topbar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar a { color: #f2f7fb; }
.topbar .topbar-item { display: inline-flex; align-items: center; gap: 6px; }
.topbar strong { color: var(--color-accent); }

/* ---------- Header / Nav ---------- */
header.site-header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px -8px rgba(0,0,0,0.15);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--color-primary-dark);
  font-size: 1.05rem;
}
.brand img { height: 68px; width: auto; }

nav.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
  flex-wrap: wrap;
}
nav.main-nav a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.97rem;
}
nav.main-nav a:hover { background: var(--color-bg-alt); text-decoration: none; }
nav.main-nav a[aria-current="page"] {
  color: var(--color-primary);
  background: var(--color-bg-alt);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  margin: 4px 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--color-accent); color: #1c1c1c; }
.btn-primary:hover { background: var(--color-accent-dark); color: #1c1c1c; }
.btn-outline { background: transparent; border-color: #fff; color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.12); color: #fff; }
.btn-outline-dark { background: transparent; border-color: var(--color-primary); color: var(--color-primary); }
.btn-outline-dark:hover { background: var(--color-bg-alt); color: var(--color-primary-dark); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 0.88rem; border-radius: 999px; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(120deg, var(--color-bg-dark) 0%, var(--color-primary) 100%);
  color: #fff;
  padding: 64px 0 76px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero h1 { color: #fff; }
.hero .lead { color: #d7e4f0; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}
.hero-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.85rem;
  font-weight: 600;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-note {
  margin-top: 14px;
  font-size: 0.88rem;
  color: #b9cbdb;
}

.page-hero {
  background: linear-gradient(120deg, var(--color-bg-dark) 0%, var(--color-primary) 100%);
  color: #fff;
  padding: 52px 0;
}
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: #d7e4f0; max-width: 720px; margin-bottom: 0; }
.breadcrumb {
  font-size: 0.85rem;
  color: #b9cbdb;
  margin-bottom: 14px;
}
.breadcrumb a { color: #d7e4f0; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Sections ---------- */
section { padding: 64px 0; }
.section-alt { background: var(--color-bg-alt); }
.section-dark {
  background: var(--color-bg-dark);
  color: #dbe6f2;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-head { max-width: 700px; margin: 0 auto 42px; text-align: center; }
.section-head.left { margin: 0 0 36px; text-align: left; }
.eyebrow {
  display: inline-block;
  color: var(--color-accent-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  margin-bottom: 10px;
}
.section-dark .eyebrow { color: var(--color-accent); }

/* ---------- Grids / Cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 26px;
}
.card h3 { margin-bottom: 8px; }
.card p:last-child { margin-bottom: 0; }
.card-link { font-weight: 700; font-size: 0.92rem; }

.value-card { text-align: center; }
.value-card .letter {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--color-primary);
  color: #fff; font-weight: 800; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split.reverse .split-media { order: 2; }

ul.checklist { list-style: none; margin: 0; padding: 0; }
ul.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--color-text);
}
ul.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--color-primary);
  font-weight: 800;
  background: var(--color-bg-alt);
  border-radius: 50%;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
}

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
.stat .num { font-size: 2.1rem; font-weight: 800; color: var(--color-accent); }
.stat .label { color: #cdddec; font-size: 0.92rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { position: relative; padding-top: 8px; }
.step .step-num {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--color-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; margin-bottom: 14px;
}

/* ---------- Transport type cards ---------- */
.transport-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.transport-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
  text-align: center;
}
.transport-card .emoji { font-size: 2.1rem; margin-bottom: 10px; }

/* ---------- FAQ (details/summary) ---------- */
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}
.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  color: var(--color-primary-dark);
  list-style: none;
  position: relative;
  padding-right: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px; top: 16px;
  font-size: 1.4rem;
  color: var(--color-primary);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-body { padding: 0 22px 20px; color: var(--color-text-muted); }

/* ---------- Testimonial ---------- */
.quote-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--color-accent);
}
.quote-card p { font-size: 1.1rem; font-style: italic; color: var(--color-text); }
.quote-card footer { font-weight: 700; color: var(--color-primary-dark); font-style: normal; }

/* ---------- Bewertungs-Badge ---------- */
.review-badge {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  text-align: center;
}
.review-badge .stars { font-size: 1.9rem; letter-spacing: 3px; color: var(--color-accent); line-height: 1; margin: 0 0 8px; }
.review-badge .rating-value { font-size: 1.25rem; font-weight: 700; color: var(--color-primary-dark); margin: 0 0 4px; }
.review-badge .rating-note { margin: 0 0 18px; }

/* ---------- Testimonials (Google-Rezensionen) ---------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.testimonial-card .stars {
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--color-accent);
  line-height: 1;
  margin: 0;
}
.testimonial-quote {
  flex: 1;
  margin: 0;
  color: var(--color-text);
  font-style: italic;
}
.testimonial-quote strong { color: var(--color-primary-dark); font-style: normal; }
.testimonial-author {
  margin: 0;
  font-weight: 700;
  color: var(--color-primary-dark);
  font-size: 0.92rem;
}
.testimonial-author span { font-weight: 400; color: var(--color-text-muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { color: #d7e4f0; margin-bottom: 0; }

/* ---------- Job cards ---------- */
.job-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  background: #fff;
  margin-bottom: 22px;
}
.job-card .job-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 10px 0 16px; }
.job-tag {
  background: var(--color-bg-alt);
  color: var(--color-primary-dark);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 12px;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.contact-info-list { list-style: none; margin: 0 0 26px; padding: 0; }
.contact-info-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}
.contact-info-list .ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--color-bg-alt);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem;
}
.contact-info-list strong { display: block; color: var(--color-primary-dark); }

form.contact-form { display: grid; gap: 16px; }
form.contact-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 600; font-size: 0.92rem; color: var(--color-text); }
.field .hint { font-size: 0.8rem; color: var(--color-text-muted); }
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  background: #fff;
  color: var(--color-text);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(31,78,121,0.15);
}
fieldset { border: 1.5px solid var(--color-border); border-radius: 10px; padding: 14px 16px; }
fieldset legend { font-weight: 600; padding: 0 6px; font-size: 0.92rem; }
.radio-row { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 6px; }
.radio-row label { display: flex; align-items: center; gap: 6px; font-weight: 400; }
.form-note { font-size: 0.85rem; color: var(--color-text-muted); }

.map-consent {
  border: 1.5px dashed var(--color-border);
  border-radius: var(--radius);
  padding: 34px 22px;
  text-align: center;
  background: var(--color-bg-alt);
}
.map-frame { border: 0; width: 100%; height: 380px; border-radius: var(--radius); }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--color-bg-dark);
  color: #b9cbdb;
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
footer.site-footer a { color: #b9cbdb; }
footer.site-footer a:hover { color: #fff; }
.footer-brand img { height: 60px; margin-bottom: 14px; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 20px 0 26px;
  font-size: 0.85rem;
}

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.small { font-size: 0.88rem; color: var(--color-text-muted); }
.badge-emergency {
  display: inline-block;
  background: #fdecec;
  color: #a3242c;
  border: 1px solid #f3c9cb;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 700;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .transport-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
}

@media (max-width: 760px) {
  nav.main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow);
    padding: 10px 20px 20px;
  }
  nav.main-nav.open { display: block; }
  nav.main-nav ul { flex-direction: column; gap: 2px; }
  .nav-toggle { display: block; }
  .header-cta .btn-sm-label { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .transport-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  form.contact-form .row-2 { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  section { padding: 46px 0; }
  .hero { padding: 40px 0 52px; }
  .brand img { height: 56px; }
}

@media (max-width: 600px) {
  .topbar { font-size: 0.76rem; }
  .topbar .container {
    justify-content: center;
    gap: 4px 12px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .topbar-extra { display: none; }
}

@media (max-width: 400px) {
  .topbar .topbar-item:last-child { display: none; }
  .brand img { height: 48px; }
}
