/* =========================================================
   Autovermietung MS — Redesign
   ========================================================= */
:root {
  --primary-dark: #0B1220;
  --primary-blue: #155EEF;
  --accent-orange: #FF5A0A;
  --accent-orange-hover: #E94E00;
  --background: #F5F6F8;
  --surface: #FFFFFF;
  --text-primary: #111827;
  --text-secondary: #5F6673;
  --border: #E3E6EB;
  --container-max: 1440px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-card: 0 4px 20px rgba(11,18,32,0.06);
  --shadow-float: 0 20px 50px rgba(11,18,32,0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--background);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}
h1, h2, h3, h4 { font-family: 'Archivo', sans-serif; color: var(--primary-dark); margin: 0; line-height: 1.15; }
p { margin: 0; color: var(--text-secondary); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
svg { flex-shrink: 0; }

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

:focus-visible { outline: 2px solid var(--primary-blue); outline-offset: 3px; }

.reveal { opacity: 1; transform: translateY(14px); transition: transform .5s var(--ease); }
.reveal.in-view { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 15px; border: none;
  transition: background .2s var(--ease), transform .15s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn-orange { background: var(--accent-orange); color: #fff; }
.btn-orange:hover { background: var(--accent-orange-hover); transform: translateY(-1px); }
.btn-block { width: 100%; }
.btn-outline-navy { background: transparent; border: 1.5px solid var(--border); color: var(--primary-dark); }
.btn-outline-navy:hover { border-color: var(--primary-dark); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1EBE58; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(11,18,32,0.08); border-color: var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 40px; height: 18px; }
.logo-text { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 16px; letter-spacing: 0.01em; color: var(--primary-dark); }
.logo-text .accent { color: var(--accent-orange); }
.main-nav { display: flex; gap: 30px; }
.main-nav a { font-size: 14.5px; font-weight: 600; color: var(--text-primary); transition: color .2s; }
.main-nav a:hover { color: var(--accent-orange); }
.header-right { display: flex; align-items: center; gap: 20px; }
.header-phone { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14.5px; color: var(--primary-dark); }
.header-phone svg { width: 17px; height: 17px; stroke: var(--accent-orange); }
.burger { display: none; width: 40px; height: 40px; border: none; background: transparent; position: relative; }
.burger span, .burger::before, .burger::after {
  content: ''; position: absolute; left: 8px; right: 8px; height: 2px; background: var(--primary-dark); border-radius: 2px;
}
.burger::before { top: 13px; } .burger span { top: 19px; position: absolute; left: 8px; right: 8px; height: 2px; background: var(--primary-dark); } .burger::after { top: 25px; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 300; background: #fff;
  display: flex; flex-direction: column; padding: 24px;
  transform: translateX(100%); transition: transform .3s var(--ease), visibility .3s; overflow-y: auto;
  visibility: hidden;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.mobile-menu-close { background: none; border: none; font-size: 32px; line-height: 1; color: var(--primary-dark); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a { padding: 16px 4px; font-size: 19px; font-weight: 700; border-bottom: 1px solid var(--border); color: var(--primary-dark); }
.mobile-menu-footer { margin-top: auto; display: flex; flex-direction: column; gap: 16px; padding-top: 24px; }
.mobile-menu-footer .phone-link { text-align: center; font-weight: 700; color: var(--primary-dark); }

@media (max-width: 980px) {
  .main-nav { display: none; }
  .header-phone { display: none; }
  .burger { display: block; }
}
@media (max-width: 560px) {
  .header-cta { display: none; }
}

/* =========================================================
   Hero + Booking
   ========================================================= */
.hero-wrap { padding: 0; }
.hero-card {
  position: relative;
  min-height: 720px; display: flex; align-items: stretch;
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,18,32,0.75) 0%, rgba(11,18,32,0.45) 42%, rgba(11,18,32,0.15) 62%, rgba(11,18,32,0.05) 100%);
}
.hero-card > .container { position: relative; z-index: 2; width: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 56px; }
.hero-headline-row { width: 100%; text-align: center; padding: 0; margin-bottom: 60px; }
.hero-headline-row h1 { font-size: clamp(32px, 3.4vw, 48px); font-weight: 900; margin-bottom: 16px; color: #fff; overflow-wrap: break-word; letter-spacing: -0.01em; }
.hero-headline-row p { color: rgba(255,255,255,0.88); font-size: 16px; max-width: 640px; margin: 0 auto; }
.hero-grid {
  width: 100%;
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px;
  padding: 40px 0 0; align-items: end;
}
.hero-text { color: #fff; max-width: 620px; }
.hero-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; color: var(--accent-orange); margin-bottom: 18px; }
.hero-eyebrow-headline {
  color: #fff; font-size: clamp(15px, 1.6vw, 19px); font-weight: 700;
  margin-bottom: 14px; line-height: 1.35; text-shadow: 0 2px 10px rgba(0,0,0,0.45);
  max-width: 460px;
}
.price-badge {
  display: inline-flex; align-items: baseline; gap: 10px;
  margin-top: 18px; padding: 12px 22px;
  background: var(--accent-orange); border-radius: 999px;
  animation: price-glow 2s ease-in-out infinite;
}
@keyframes price-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,90,10,0.65), 0 4px 18px rgba(255,90,10,0.35); }
  50% { box-shadow: 0 0 0 14px rgba(255,90,10,0), 0 4px 28px rgba(255,90,10,0.55); }
}
@media (prefers-reduced-motion: reduce) { .price-badge { animation: none; } }
.price-badge-label { color: #fff; font-size: 14px; font-weight: 600; }
.price-badge-amount { color: #fff; font-size: 30px; font-weight: 800; font-family: 'Archivo', sans-serif; line-height: 1; }
.price-badge-unit { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 700; }
@media (max-width: 700px) {
  .price-badge { padding: 10px 18px; }
  .price-badge-amount { font-size: 24px; }
}
.hero-features { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.hero-features li { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 15px; }
.hero-features svg { width: 22px; height: 22px; }

.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.btn-call-now {
  display: inline-flex; align-items: center; gap: 16px;
  margin-top: 0; padding: 16px 28px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-md);
  backdrop-filter: blur(6px);
  transition: background .2s var(--ease), transform .15s var(--ease), border-color .2s var(--ease);
}
.btn-whatsapp-now {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 16px 28px;
  background: #25D366;
  border: 1.5px solid #25D366;
  border-radius: var(--radius-md);
  transition: background .2s var(--ease), transform .15s var(--ease);
}
.btn-whatsapp-now:hover { background: #1EBE58; border-color: #1EBE58; transform: translateY(-2px); }
.btn-whatsapp-icon {
  width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
}
.btn-whatsapp-icon svg { width: 26px; height: 26px; }
@media (max-width: 700px) {
  .hero-cta-row { flex-direction: column; }
  .btn-whatsapp-now { width: 100%; justify-content: center; padding: 14px 20px; }
  .hero-headline-row h1 { font-size: 28px; }
  .hero-headline-row p { text-align: left; margin: 0; max-width: none; }
  .hero-headline-row { text-align: left; padding-top: 40px; margin-bottom: 0; }
  .hero-card > .container { padding-bottom: 0; }
  .hero-headline-row h1 { text-align: center; }
  .hide-mobile { display: none; }
}
.btn-call-now:hover { background: var(--accent-orange); border-color: var(--accent-orange); transform: translateY(-2px); }
.btn-call-icon {
  width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent-orange);
  display: flex; align-items: center; justify-content: center;
  animation: call-pulse 2.2s ease-in-out infinite;
}
.btn-call-icon svg { width: 24px; height: 24px; }
.btn-call-text { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.btn-call-text strong { color: #fff; font-size: 19px; font-weight: 800; font-family: 'Archivo', sans-serif; }
.btn-call-text small { color: rgba(255,255,255,0.85); font-size: 14.5px; font-weight: 600; }

@keyframes call-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,90,10,0.55); }
  50% { box-shadow: 0 0 0 10px rgba(255,90,10,0); }
}
@media (prefers-reduced-motion: reduce) { .btn-call-icon { animation: none; } }

@media (max-width: 700px) {
  .btn-call-now { width: 100%; justify-content: center; padding: 14px 20px; }
  .btn-call-text strong { font-size: 17px; }
}

.booking-card {
  background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-float);
  padding: 30px 28px; max-width: 460px; justify-self: center; width: 100%;
}
.booking-card-head { margin-bottom: 20px; }
.booking-card-head h3 { font-size: 20px; margin-bottom: 8px; }
.booking-card-head p { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
.kontakt-card-wa { margin-top: 12px; }
.kontakt-card-info {
  display: flex; align-items: center; gap: 10px; margin-top: 16px;
  font-size: 13.5px; font-weight: 600; color: var(--text-secondary);
}
.kontakt-card-info svg { width: 17px; height: 17px; stroke: var(--accent-orange); flex-shrink: 0; }

@media (max-width: 980px) {
  .hero-card { min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; padding: 40px 0; gap: 32px; }
  .booking-card { justify-self: stretch; max-width: none; }
}

/* =========================================================
   Promo Cards
   ========================================================= */
.promo-section { padding: 56px 0 0; }
.promo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.promo-card {
  border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow-card); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.promo-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(11,18,32,0.12); }
.promo-warm { background: #FFF3EA; }
.promo-blue { background: #EEF3FF; }
.promo-media { height: 140px; overflow: hidden; }
.promo-media img { width: 100%; height: 100%; object-fit: cover; }
.promo-icon-media { display: flex; align-items: center; justify-content: center; background: #FFF3EA; }
.promo-icon-media svg { width: 64px; height: 64px; }
.promo-body { padding: 20px; position: relative; }
.promo-body h3 { font-size: 16.5px; font-weight: 800; margin-bottom: 8px; }
.promo-body p { font-size: 13.5px; }
.promo-arrow {
  position: absolute; right: 18px; bottom: 18px; width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent-orange); display: flex; align-items: center; justify-content: center;
}
.promo-arrow svg { width: 16px; height: 16px; }

@media (max-width: 980px) { .promo-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .promo-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Section shared
   ========================================================= */
section.services-more, section.area-section, section.contact-section, section.fleet-section { padding: 88px 0; }
.fleet-section { background: var(--surface); }
.fleet-intro { color: var(--text-secondary); font-size: 15px; margin-top: -20px; margin-bottom: 40px; max-width: 560px; }
.fleet-group { margin-top: 44px; }
.fleet-group:first-of-type { margin-top: 0; }
.fleet-group-title {
  display: flex; align-items: center; gap: 12px;
  font-size: 22px; margin-bottom: 22px; padding-bottom: 14px;
  border-bottom: 2px solid var(--border); scroll-margin-top: 100px;
}
.fleet-group-title svg { width: 26px; height: 26px; color: var(--accent-orange); flex-shrink: 0; }
.fleet-group-note { font-size: 14px; font-weight: 600; color: var(--text-secondary); text-transform: none; letter-spacing: 0; }

.vehicle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.vehicle-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.vehicle-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(11,18,32,0.1); }
.vehicle-media { height: 140px; }
.vehicle-media img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-body { padding: 16px; }
.vehicle-body h4 { font-size: 15.5px; margin-bottom: 8px; }
.vehicle-km { display: inline-block; font-size: 11.5px; font-weight: 700; color: var(--primary-blue); background: #EEF3FF; padding: 4px 10px; border-radius: 999px; }
.vehicle-price { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); font-size: 19px; font-weight: 800; font-family: 'Archivo', sans-serif; color: var(--accent-orange); }
.vehicle-price small { font-size: 12px; font-weight: 600; color: var(--text-secondary); }

.fleet-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 48px; justify-content: center; }

@media (max-width: 1180px) { .vehicle-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px) { .vehicle-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .vehicle-grid { grid-template-columns: 1fr; } }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.eyebrow-orange { font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-orange); margin-bottom: 10px; }
.section-head h2 { font-size: clamp(26px, 3vw, 34px); }
.link-arrow { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14.5px; color: var(--primary-dark); }
.link-arrow svg { width: 17px; height: 17px; stroke: var(--accent-orange); transition: transform .2s; }
.link-arrow:hover svg { transform: translateX(4px); }


/* Image placeholder fallback (used where no real photo yet) */
.img-ph {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1c2440 60%, var(--primary-blue) 150%);
  position: relative; overflow: hidden;
}
.img-ph::after {
  content: attr(data-label);
  color: #fff; font-size: 11px; font-weight: 600; text-align: center; padding: 10px; max-width: 90%;
}

/* =========================================================
   Additional services
   ========================================================= */
.services-more { background: var(--surface); }
.more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.more-card { background: var(--background); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 30px 26px; }
.more-icon { width: 52px; height: 52px; border-radius: 12px; background: #FFF3EA; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.more-icon svg { width: 26px; height: 26px; }
.more-card h3 { font-size: 18px; margin-bottom: 10px; }
.more-card p { font-size: 14px; }
@media (max-width: 900px) { .more-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Servicegebiet
   ========================================================= */
.area-section .container > h2 { margin-top: 4px; font-size: clamp(24px, 3vw, 32px); }
.area-intro { max-width: 620px; margin-top: 16px; font-size: 15.5px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.area-tags li { padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--border); font-size: 13.5px; font-weight: 600; background: var(--surface); }
.area-tags li:first-child { background: var(--accent-orange); border-color: var(--accent-orange); color: #fff; }

/* =========================================================
   Kontakt
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px; align-items: stretch; }
.contact-info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 34px; }
.contact-info-card h3 { font-size: 19px; margin-bottom: 22px; }
.contact-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 26px; }
.contact-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; font-weight: 500; }
.contact-list svg { width: 19px; height: 19px; margin-top: 1px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.contact-map { border-radius: var(--radius-md); overflow: hidden; min-height: 340px; box-shadow: var(--shadow-card); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .contact-map { min-height: 280px; } }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,0.72); padding: 56px 0 0; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { margin-top: 12px; font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-col h4 { color: #fff; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; padding: 5px 0; color: rgba(255,255,255,0.72); }
.footer-col a:hover { color: var(--accent-orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 20px 24px; font-size: 13px; color: rgba(255,255,255,0.5); }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* =========================================================
   WhatsApp floating button
   ========================================================= */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.28); z-index: 150; transition: transform 0.2s var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 30px; height: 30px; fill: #fff; }
@media (max-width: 700px) { .whatsapp-fab { bottom: 16px; right: 16px; width: 52px; height: 52px; } .whatsapp-fab svg { width: 26px; height: 26px; } }
