/* Airport-transfer public pages — clean, large, readable, mobile-first (audience 38+). */

:root {
  --brand: #0b5cad;
  --brand-dark: #08477f;
  --accent: #f5a623;
  --ink: #1c2733;
  --muted: #5a6b7b;
  --line: #e2e8ef;
  --bg: #ffffff;
  --bg-soft: #f4f8fc;
  --ok: #1f8a4c;
  --radius: 14px;
  --maxw: 1120px;
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-head: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Stylish display font for headings + brand; Helvetica stays for body text. */
h1, h2, h3, .brand-text { font-family: var(--font-head); }

/* Page headings uppercase (keep the long descriptive landing-page H1 normal-case). */
h1 { text-transform: uppercase; letter-spacing: .6px; }
.lp-body h1 { text-transform: none; letter-spacing: normal; }

* { box-sizing: border-box; }

/* Never allow a stray wide element to create horizontal scroll — that is what
   makes the left/right gutters look uneven on mobile. `clip` (not `hidden`) keeps
   position: sticky working. Images/media never exceed their column. */
html { font-size: 18px; overflow-x: clip; }
img, svg, video, iframe { max-width: 100%; }
img { height: auto; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

h1 { font-size: 2.3rem; line-height: 1.2; margin: 0 0 .5em; }
h2 { font-size: 1.6rem; line-height: 1.25; margin: 1.6em 0 .5em; }
h3 { font-size: 1.2rem; margin: 1.2em 0 .4em; }
p { margin: 0 0 1em; }
a { color: var(--brand); }

.skip-link {
  position: absolute; left: -999px; top: 0; background: #fff; padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 8px; top: 8px; border: 2px solid var(--brand); border-radius: 8px; }

/* Buttons */
.btn {
  display: inline-block; background: var(--accent); color: #1a1a1a; font-weight: 700;
  padding: 14px 26px; border: 0; border-radius: 999px; text-decoration: none; cursor: pointer;
  font-size: 1.05rem; transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 4px 14px rgba(245,166,35,.35);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(245,166,35,.45); }
.btn-sq { border-radius: 0; }  /* square, normal-size button */
.btn-outline { background: transparent; color: var(--brand); box-shadow: none; border: 2px solid var(--brand); }
.btn-nav { padding: 11px 22px; font-size: .95rem; border-radius: 0; }

/* Header */
.site-header { border-bottom: 1px solid var(--line); position: sticky; top: 0; background: rgba(255,255,255,.96); backdrop-filter: blur(6px); z-index: 50; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
/* Full-width header so the brand sits far left and the menu far right. */
.site-header .header-inner { position: relative; max-width: 100%; padding-left: 40px; padding-right: 40px; }
.site-nav { margin-left: auto; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.2rem; color: var(--brand-dark); text-decoration: none; letter-spacing: .3px; }
.brand-mark { width: 40px; height: 40px; border-radius: 10px; display: block; object-fit: contain; flex: none; }
.brand-text {
  white-space: nowrap;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: .3px;
  color: var(--brand-dark); /* fallback */
  background: linear-gradient(120deg, var(--brand-dark) 0%, var(--brand) 55%, var(--accent) 125%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-nav { display: flex; align-items: center; gap: 20px; }
.site-nav > a { text-decoration: none; color: var(--ink); font-weight: 400; font-size: .92rem; }
.site-nav > a:hover { color: var(--brand); }
/* Keep the CTA button bold even though it's a nav link. */
.site-nav > a.btn-nav { font-weight: 700; }

/* Towns dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { background: none; border: 0; font: inherit; font-weight: 400; font-size: .92rem; color: var(--ink); cursor: pointer; display: inline-flex; align-items: center; gap: 5px; padding: 0; }
.nav-dropdown-toggle:hover { color: var(--brand); }
.nav-dropdown-toggle .caret { font-size: .8rem; transition: transform .2s ease; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); right: 0; left: auto; transform: translateY(6px);
  background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 16px 40px rgba(12,34,51,.16);
  padding: 8px; display: flex; flex-direction: column; gap: 1px;
  width: 260px; max-width: calc(100vw - 24px); max-height: 360px; overflow-y: auto; overflow-x: hidden;
  overscroll-behavior: contain; scrollbar-width: thin;
  opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease; z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown:hover .caret, .nav-dropdown.open .caret { transform: rotate(180deg); }
.nav-dropdown-menu--wide { width: 300px; }
.nav-dropdown-menu a,
.nav-dropdown-menu a:visited { display: block; text-decoration: none; color: #1c2733; font-weight: 400; font-size: .95rem; padding: 9px 12px; border-radius: 8px; white-space: normal; line-height: 1.3; }
.nav-dropdown-menu a:hover { background: var(--bg-soft); color: var(--brand); }

/* Mobile burger */
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-burger span { width: 26px; height: 3px; background: var(--brand-dark); border-radius: 3px; transition: transform .25s ease, opacity .2s ease; }

/* Hero */
.hero { background: linear-gradient(135deg, var(--bg-soft), #eaf3fb); padding: 72px 0; }
.hero h1 { max-width: 15ch; }
.hero .lead { font-size: 1.25rem; color: var(--muted); max-width: 52ch; }
.hero .cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; align-items: center; }
.price-from { font-weight: 700; color: var(--brand-dark); }

/* Sections & layout */
section.block { padding: 56px 0; }
section.block.soft { background: var(--bg-soft); }

/* Dark navy section (matches the hero). White quote card pops against it. */
section.block.section-dark {
  background:
    radial-gradient(700px 420px at 85% 0%, rgba(46,110,180,.35), transparent 60%),
    linear-gradient(160deg, #0a1f3c 0%, #0e2a4d 50%, #08182f 100%);
  color: #dbe8f6;
}
.section-dark h2.center { color: #ffffff; }
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.card h3 { margin-top: 0; }

/* Trust row */
.trust { display: flex; gap: 28px; flex-wrap: wrap; color: var(--muted); font-weight: 600; }
.trust span::before { content: "✓ "; color: var(--ok); font-weight: 800; }

/* Town list */
.town-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px 20px; list-style: none; padding: 0; }
.town-links a { text-decoration: none; }

/* Price table */
.price-block { margin-bottom: 34px; }
.price-block-title { font-size: 1.3rem; color: var(--brand-dark); margin: 0 0 14px; font-family: var(--font-head); display: flex; align-items: center; gap: 10px; }
.price-block-title::before { content: ""; width: 6px; height: 22px; border-radius: 3px; background: linear-gradient(180deg, var(--brand), var(--accent)); }
.price-table-wrap { border: 1px solid var(--line); border-radius: 16px; overflow-x: auto; box-shadow: 0 12px 30px rgba(12,34,51,.08); background: #fff; }
.price-table { width: 100%; border-collapse: collapse; font-size: .96rem; }
.price-table thead th { background: var(--brand-dark); color: #fff; font-weight: 700; padding: 14px 16px; text-align: left; font-size: .86rem; letter-spacing: .3px; white-space: nowrap; }
.price-table th, .price-table td { padding: 12px 16px; border-bottom: 1px solid var(--line); text-align: left; }
.price-table tbody th { font-weight: 400; color: var(--ink); }
.price-table tbody tr:nth-child(even) { background: #f6fafd; }
.price-table tbody tr:hover { background: #eaf4fc; }
.price-table td.num, .price-table th.num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.price-table td.num { font-weight: 400; color: var(--ink); }
.price-table tbody tr:last-child th, .price-table tbody tr:last-child td { border-bottom: 0; }
.verify-flag { color: var(--accent); font-weight: 700; }
.price-page .btn { border-radius: 0; }
.luggage-info { background: var(--bg-soft); border: 1px solid var(--line); border-left: 5px solid var(--brand); border-radius: 14px; padding: 26px 30px; margin: 34px 0 8px; }
.luggage-info h3 { margin: 0 0 6px; color: var(--brand-dark); }
.luggage-info h4 { margin: 20px 0 8px; color: var(--ink); font-size: 1.05rem; }
.luggage-info ul { margin: 0 0 12px; padding-left: 22px; color: var(--muted); }
.luggage-info li { margin: 6px 0; }
.luggage-info p { color: var(--muted); margin: 0 0 10px; }
.price-notes { margin: 12px 0 18px; padding-left: 22px; color: var(--muted); }
.price-notes li { margin: 6px 0; }

/* Landing page body */
.lp-body section { margin-bottom: 8px; }
.lp-note { color: var(--muted); font-size: .95rem; border-left: 3px solid var(--line); padding-left: 14px; }
/* Town landing CTA: price card above, book button below */
.lp-cta { margin-top: 20px; }
.lp-price-cards { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 24px; max-width: 560px; }
.lp-pc {
  flex: 1 1 200px; min-width: 180px; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(160deg, #ffffff 0%, #eef6fd 100%);
  border: 1px solid var(--line); border-radius: 18px; padding: 24px 22px;
  box-shadow: 0 14px 34px rgba(12,34,51,.12);
  transition: transform .2s ease, box-shadow .2s ease;
}
.lp-pc:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(12,34,51,.18); }
.lp-pc::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--brand), var(--accent)); }
.lp-pc-label { display: block; text-transform: uppercase; letter-spacing: .9px; font-size: .76rem; font-weight: 700; color: var(--muted); margin-bottom: 8px; }
.lp-pc-price { display: block; font-size: 1rem; color: var(--muted); }
.lp-pc-price strong { display: block; font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--brand-dark); line-height: 1.05; margin-top: 2px; }
.lp-cta-btn { margin-top: 4px; }

.breadcrumb { color: var(--muted); font-size: .9rem; padding: 18px 0 0; }
.breadcrumb a { text-decoration: none; }

/* FAQ */
.legal .btn { border-radius: 0; }  /* square book buttons on info pages (Über uns, FAQ, Kontakt …) */
.faq details { border: 1px solid var(--line); border-radius: var(--radius); padding: 6px 20px; margin-bottom: 12px; background: #fff; }
.faq summary { font-weight: 700; cursor: pointer; padding: 12px 0; font-size: 1.08rem; }

/* Footer */
.site-footer { background: #0e2233; color: #cdd8e2; margin-top: 40px; padding: 46px 0 20px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; }
.footer-col a { display: block; color: #cdd8e2; text-decoration: none; margin: 6px 0; }
.footer-col a:hover { color: #fff; }
.footer-col strong { display: block; margin-bottom: 10px; color: #fff; }
.footer-contact { list-style: none; padding: 0; margin: 12px 0 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin: 9px 0; color: #cdd8e2; }
.footer-contact svg { width: 18px; height: 18px; flex: none; fill: var(--accent); margin-top: 2px; }
.footer-contact svg.wa-ico { fill: #25d366; }
.footer-contact a { color: #cdd8e2; text-decoration: none; margin: 0; }
.footer-contact a:hover { color: #fff; }
.copyright { text-align: center; color: #8298ab; font-size: .85rem; margin-top: 30px; }

/* Cookie consent */
.cookie-consent { position: fixed; left: 0; right: 0; bottom: 0; background: #fff; border-top: 2px solid var(--brand); box-shadow: 0 -6px 24px rgba(0,0,0,.12); z-index: 90; }
.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 20px; flex-wrap: wrap; }
.cookie-inner p { margin: 0; font-size: .95rem; flex: 1 1 260px; min-width: 0; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { border-radius: 0; }

@media (max-width: 640px) {
  .cookie-inner { padding: 14px 16px; gap: 12px; }
  .cookie-inner p { flex-basis: 100%; font-size: .9rem; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1 1 auto; min-width: 0; padding: 12px 8px; font-size: .88rem; }
}  /* square cookie buttons */

/* Floating contact buttons (WhatsApp / Call / Email) */
.contact-fab { position: fixed; right: 18px; bottom: 18px; display: flex; flex-direction: column; gap: 12px; z-index: 85; }
.fab { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 8px 22px rgba(0,0,0,.25); transition: transform .18s ease, box-shadow .18s ease; }
.fab:hover { transform: scale(1.09); box-shadow: 0 12px 28px rgba(0,0,0,.32); }
.fab svg { width: 28px; height: 28px; }
.fab-whatsapp { background: #25d366; }
.fab-call { background: var(--brand); }
.fab-email { background: var(--accent); color: #1a1a1a; }
@media (max-width: 620px) { .fab { width: 50px; height: 50px; } .fab svg { width: 26px; height: 26px; } }

/* Contact page card */
.contact-card {
  max-width: 540px; margin: 22px 0; padding: 34px 32px;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 18px 44px rgba(12,34,51,.10); position: relative; overflow: hidden;
}
.contact-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--brand), var(--accent)); }
.contact-card h3 { margin: 0 0 22px; color: var(--brand-dark); font-size: 1.4rem; }
.contact-list { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; align-items: flex-start; gap: 14px; }
.contact-list .ci { flex: none; width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; color: #fff; }
.contact-list .ci svg { width: 22px; height: 22px; fill: currentColor; }
.ci-loc { background: var(--brand); }
.ci-phone { background: var(--brand-dark); }
.ci-wa { background: #25d366; }
.ci-mail { background: var(--accent); color: #1a1a1a; }
.ci-label { display: block; font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 3px; }
.contact-list a { color: var(--ink); text-decoration: none; font-weight: 600; }
.contact-list a:hover { color: var(--brand); }
.contact-card .btn { width: 100%; border-radius: 0; }

.legal { max-width: 800px; }
.legal h2 { font-size: 1.3rem; }
.notice { background: #fff7e6; border: 1px solid var(--accent); border-radius: var(--radius); padding: 14px 18px; margin-bottom: 20px; }

/* ======================= Home page (reference-style) ======================= */
.btn-lg { padding: 16px 32px; font-size: 1.1rem; }
.center { text-align: center; }
.narrow { max-width: 780px; }
.prose-wide { max-width: 1040px; margin: 0 auto; }
.prose-wide h2.center { font-size: 2rem; margin-bottom: 1em; }  /* space after heading */
.prose-wide p { font-size: 1.02rem; line-height: 1.55; color: #34424f; margin-bottom: .6em; }

/* Bordered quote card with open + close quote marks and a monospace/code look. */
.quote-block {
  position: relative;
  margin: 0;
  padding: 48px 46px 50px;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #f6fafe 0%, #ffffff 100%);
  box-shadow: 0 12px 34px rgba(12,34,51,.07);
}
.quote-block::before, .quote-block::after {
  position: absolute;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.4rem; line-height: 1;
  color: rgba(11,92,173,.20);
  pointer-events: none;
}
.quote-block::before { content: "\201C"; left: 16px; top: 16px; }
.quote-block::after  { content: "\201D"; right: 22px; bottom: -8px; }
.quote-block p {
  font-family: var(--font);
  font-size: 1.02rem; line-height: 1.65; color: #34424f;
  text-align: justify; text-justify: inter-word; hyphens: auto;
}
.quote-block p:last-child { margin-bottom: 0; }
.section-intro { color: var(--muted); font-size: 1.12rem; }
.section-intro.center { margin-left: auto; margin-right: auto; max-width: 720px; }
h2.center { margin-bottom: .2em; text-transform: uppercase; letter-spacing: 1.6px; font-weight: 800; }
h2.center::after {
  content: ""; display: block; width: 66px; height: 4px; margin: 16px auto 0;
  border-radius: 3px; background: linear-gradient(90deg, var(--brand), var(--accent));
}
.cta-band h2 { text-transform: uppercase; letter-spacing: 1.6px; font-weight: 800; }

/* Big, fully-square buttons (reference-style) */
.btn-square { border-radius: 0; padding: 20px 46px; font-size: 1.25rem; min-width: 230px; text-align: center; }

/* WhatsApp + call CTA buttons (home hero) */
.btn-whatsapp {
  background: #25d366; color: #fff; border: 0;
  box-shadow: 0 6px 18px rgba(37, 211, 102, .35);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-whatsapp:hover { background: #1fb457; color: #fff; }
.btn-whatsapp svg { display: block; }
.btn-call {
  background: #fff; color: var(--brand); border: 2px solid #fff;
}
.btn-call:hover { background: rgba(255, 255, 255, .88); color: var(--brand); }
.hero-center .btn-call { background: #fff; color: var(--brand); }

/* Centered hero */
.hero-center { text-align: center; }
.hero-center .container { position: relative; z-index: 1; }
.hero-title { margin: 0 auto .5em; animation: fadeUp .6s ease both; }
.hero-center .cta-row { justify-content: center; margin-top: 0; margin-bottom: 26px; animation: fadeUp .6s ease .12s both; }
.hero-center .lead { margin-left: auto; margin-right: auto; }
.hero-badges.center { justify-content: center; }
.hero-card-center {
  max-width: 380px; margin: 0 auto 30px; text-align: left;
  /* Slow, gentle fade-in on load, then float continuously. */
  animation: fadeUp 3s ease-in-out .3s both, cardFloat 5s ease-in-out 3.5s infinite;
  transition: box-shadow .3s ease;
}
.hero-card-center:hover { box-shadow: 0 30px 70px rgba(0,0,0,.35); }
@keyframes cardFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-card-center .hero-card-plane { animation: planeBob 3s ease-in-out infinite; }
@keyframes planeBob { 0%, 100% { transform: rotate(12deg) translateY(0); } 50% { transform: rotate(12deg) translateY(-5px); } }

/* Hero */
.hero-home { position: relative; overflow: hidden; padding: 84px 0; }
/* Dark airport-night hero: deep navy with blue + warm "terminal-light" glows. */
.hero-home .hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(720px 520px at 12% 0%, rgba(46,110,180,.55), transparent 60%),
    radial-gradient(640px 520px at 92% 6%, rgba(245,166,35,.28), transparent 55%),
    radial-gradient(900px 720px at 82% 112%, rgba(12,64,120,.6), transparent 60%),
    linear-gradient(160deg, #0a1f3c 0%, #0e2a4d 45%, #08182f 100%);
}
/* Faint light dots (like distant runway lights) fading toward the content. */
.hero-home .hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1.4px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 75%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 75%);
  opacity: .55;
}

/* Light text + button treatment for the dark hero. */
.hero-center .hero-title { color: #ffffff; }
.hero-center .lead { color: rgba(233,242,251,.88); }
.hero-center .hero-badges li { color: #ffffff; }
.hero-center .btn-square.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.85); }
.hero-center .btn-square.btn-outline:hover { background: rgba(255,255,255,.12); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.35fr .9fr; gap: 44px; align-items: center; }
.hero-eyebrow { text-transform: uppercase; letter-spacing: 2px; font-size: .82rem; font-weight: 800; color: var(--brand); margin: 0 0 10px; animation: fadeUp .6s ease both; }
.hero-home h1 { font-size: 3.1rem; max-width: 18ch; letter-spacing: 1.5px; line-height: 1.08; }
.hero-home .lead { font-size: 1.22rem; color: var(--muted); max-width: 54ch; }
.hero-badges { list-style: none; padding: 0; margin: 26px 0 0; display: flex; gap: 22px; flex-wrap: wrap; }
.hero-badges li { font-weight: 700; color: var(--brand-dark); position: relative; padding-left: 26px; animation: fadeUp .6s ease both; }
.hero-badges li::before { content: "✓"; position: absolute; left: 0; width: 19px; height: 19px; background: var(--ok); color: #fff; border-radius: 50%; font-size: .72rem; display: inline-flex; align-items: center; justify-content: center; top: 3px; }
.hero-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 26px; box-shadow: 0 24px 60px rgba(12,34,51,.14); animation: fadeUp .7s ease .18s both; }
.hero-card-row { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px dashed var(--line); }
.hero-card-row:last-of-type { border-bottom: 0; }
.hero-card-row span { color: var(--muted); }
.hero-card-plane { position: absolute; top: -20px; right: -14px; width: 60px; height: 60px; background: linear-gradient(135deg, var(--accent), #e6961a); color: #fff; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; transform: rotate(12deg); box-shadow: 0 10px 24px rgba(245,166,35,.4); }

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 30px; }
.feature { background: #fff; color: var(--ink); border: 1px solid var(--line); border-radius: 16px; padding: 30px 26px; text-align: center; transition: transform .2s ease, box-shadow .2s ease; }
.feature:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(12,34,51,.12); }
.feature-ico { width: 62px; height: 62px; border-radius: 16px; background: var(--bg-soft); color: var(--brand); font-size: 1.75rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.feature h3 { margin: 0 0 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; font-size: 1.05rem; }
.feature p { margin: 0; color: var(--muted); }

/* Cards fade in one-by-one when the section scrolls into view. */
html.js .feature { opacity: 0; transform: translateY(26px); }
html.js section.block.in-view .feature { animation: cardFadeIn .55s ease forwards; }
html.js section.block.in-view .feature:nth-child(1) { animation-delay: .06s; }
html.js section.block.in-view .feature:nth-child(2) { animation-delay: .16s; }
html.js section.block.in-view .feature:nth-child(3) { animation-delay: .26s; }
html.js section.block.in-view .feature:nth-child(4) { animation-delay: .36s; }
html.js section.block.in-view .feature:nth-child(5) { animation-delay: .46s; }
html.js section.block.in-view .feature:nth-child(6) { animation-delay: .56s; }
@keyframes cardFadeIn { to { opacity: 1; transform: none; } }

/* Reference-style pricing cards (featured areas) */
.container-cards { max-width: 1320px; }  /* wider container on desktop for roomier cards */
.price-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; margin-top: 30px; }
.price-card {
  display: flex; flex-direction: column; text-align: left;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 28px 26px; box-shadow: 0 10px 28px rgba(12,34,51,.07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.price-card:hover { transform: translateY(-8px); box-shadow: 0 26px 54px rgba(12,34,51,.16); border-color: rgba(11,92,173,.35); }
.price-card h3 { margin: 0 0 12px; font-size: 1.2rem; color: var(--brand-dark); line-height: 1.25; }
.pc-cap { font-weight: 700; margin: 0 0 8px; color: var(--ink); }
.pc-lug { color: var(--muted); font-size: .92rem; line-height: 1.5; margin: 0 0 18px; flex: 1 0 auto; }
.pc-price { font-size: 1rem; color: var(--muted); margin-bottom: 18px; padding-top: 14px; border-top: 1px dashed var(--line); }
.pc-price strong { display: inline-block; font-size: 2rem; color: var(--brand-dark); font-family: var(--font-head); margin-left: 6px; }
.pc-actions { display: flex; flex-direction: column; gap: 10px; }
.price-card .btn-square { width: 100%; min-width: 0; padding: 14px 16px; font-size: 1.02rem; }
.pc-link { text-align: center; color: var(--brand); font-weight: 700; text-decoration: none; padding: 4px; }
.pc-link:hover { color: var(--brand-dark); text-decoration: none; }

/* Area price grid */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 26px; }
.area-card { display: flex; flex-direction: column; gap: 4px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; text-decoration: none; color: var(--ink); transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.area-card:hover { transform: translateY(-4px); border-color: var(--brand); box-shadow: 0 14px 30px rgba(12,34,51,.1); }
.area-name { font-weight: 800; font-size: 1.08rem; color: var(--brand-dark); }
.area-price { font-weight: 700; color: var(--ink); }
.area-price-van { color: var(--muted); font-size: .9rem; }

/* Fleet */
.fleet-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 26px; }
.fleet-card { background: #fff; color: var(--ink); border: 1px solid var(--line); border-radius: 18px; padding: 30px; text-align: center; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.fleet-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(12,34,51,.12); }
.fleet-ico { font-size: 3rem; }
.fleet-img { display: block; width: 100%; max-width: 320px; height: 180px; object-fit: contain; margin: 0 auto 16px; }
.fleet-cap { color: var(--brand); font-weight: 700; margin: 2px 0 14px; }
.fleet-card ul { list-style: none; padding: 0; margin: 0 0 20px; color: var(--muted); flex: 1 0 auto; }
.fleet-card ul li { padding: 5px 0; border-bottom: 1px solid var(--line); }
.fleet-card ul li:last-child { border-bottom: 0; }
.fleet-card .btn { border-radius: 0; width: 100%; }  /* square, accent-filled (like navbar Book now) */

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 28px; }
.step-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 30px 24px 24px; }
.step-num { position: absolute; top: -18px; left: 24px; width: 42px; height: 42px; background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem; box-shadow: 0 8px 18px rgba(11,92,173,.35); }
.step-card h3 { margin: 8px 0 6px; }
.step-card p { margin: 0; color: var(--muted); }

/* Free-cancellation card (below the 3 steps) */
.cancel-card {
  display: flex; align-items: center; gap: 22px;
  margin-top: 30px; padding: 24px 30px;
  background: linear-gradient(135deg, #eef8f1, #ffffff);
  border: 1px solid #cfe9d8; border-left: 5px solid var(--ok);
  border-radius: 16px; box-shadow: 0 10px 28px rgba(31,138,76,.08);
}
.cancel-ico {
  flex: none; width: 54px; height: 54px; border-radius: 50%;
  background: var(--ok); color: #fff; font-size: 1.7rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.cancel-text h3 { margin: 0 0 4px; color: #14663a; font-weight: 700; }
.cancel-text p { margin: 0; color: #35513f; }
@media (max-width: 620px) { .cancel-card { flex-direction: column; text-align: center; } }

/* CTA band */
.cta-band {
  background:
    radial-gradient(700px 420px at 85% 0%, rgba(46,110,180,.35), transparent 60%),
    linear-gradient(160deg, #0a1f3c 0%, #0e2a4d 50%, #08182f 100%);
  color: #fff;
}
.cta-band .btn { border-radius: 0; }  /* square CTA buttons */
.cta-band h2 { color: #fff; margin-top: 0; }
.cta-band p { color: #dceaf6; font-size: 1.15rem; }
.cta-band .cta-row { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }
.cta-band .btn-outline { border-color: #fff; color: #fff; background: transparent; }
.cta-band .btn-outline:hover { background: rgba(255,255,255,.12); }
@media (max-width: 620px) {
  .cta-band .cta-row { flex-direction: column; align-items: center; gap: 26px; }
  .cta-band .cta-row .btn { width: 100%; max-width: 340px; }
}

/* --- Accessibility: clear keyboard focus on every interactive element --- */
a:focus-visible, button:focus-visible, .btn:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 6px;
}
.site-nav a[aria-current="page"] { color: var(--brand); font-weight: 700; text-decoration: underline; text-underline-offset: 5px; }

/* --- Tasteful entrance + scroll-reveal (progressive enhancement) --- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero h1 { animation: fadeUp .6s ease both; }
.hero .lead { animation: fadeUp .6s ease .08s both; }
.hero .cta-row { animation: fadeUp .6s ease .16s both; }

/* Only hide-then-reveal when JS is present (html.js set in <head>), so no-JS and
   crawlers always see full content immediately (SEO-safe). */
html.js section.block { opacity: 0; transform: translateY(20px); }
html.js section.block.in-view { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }

@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; }
  .feature-grid, .steps-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: 1fr; }
  .hero-home h1 { font-size: 2.1rem; }
}

@media (max-width: 860px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .town-links { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 52px 0; }
  h1 { font-size: 1.9rem; }

  /* Mobile navigation: burger toggles a slide-down panel. */
  .site-header .header-inner { padding-left: 20px; padding-right: 20px; }
  /* Keep the brand narrow so it never touches the hamburger. */
  .brand { gap: 8px; min-width: 0; margin-right: 14px; }
  .brand-text { font-size: .92rem; line-height: 1.15; }
  .brand-mark { width: 32px; height: 32px; font-size: .95rem; flex: none; }
  .nav-burger { display: flex; flex: none; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 55;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-top: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(12,34,51,.14); padding: 8px 18px 18px;
    max-height: 0; overflow: hidden; opacity: 0; visibility: hidden;
    transition: max-height .3s ease, opacity .2s ease;
  }
  #nav-toggle:checked ~ .site-nav { max-height: 85vh; overflow: auto; opacity: 1; visibility: visible; }
  .site-nav > a, .nav-dropdown-toggle { padding: 13px 4px; border-bottom: 1px solid var(--line); width: 100%; text-align: left; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-menu {
    position: static; transform: none; box-shadow: none; border: 0; padding: 0;
    width: 100%; opacity: 1; visibility: visible; max-height: 0; overflow: hidden;
    transition: max-height .25s ease;
  }
  .nav-dropdown.open .nav-dropdown-menu { max-height: 55vh; overflow-y: auto; padding: 6px 0 6px 10px; }
  .site-nav > a.btn-nav { text-align: center; margin-top: 14px; border-bottom: 0; }

  #nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  #nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  #nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

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

/* Mobile headings: prevent long German compound words from overflowing. */
@media (max-width: 700px) {
  h1, h2, h3 { overflow-wrap: break-word; word-break: break-word; hyphens: auto; }
  h2.center, .cta-band h2 { font-size: 1.35rem; letter-spacing: .4px; }
  .prose-wide h2.center { font-size: 1.4rem; margin-bottom: .7em; }
  .hero-home h1 { font-size: 1.7rem; letter-spacing: .5px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  html.js .reveal, html.js section.block, html.js .feature { opacity: 1 !important; transform: none !important; }
}
