/* =====================
   CSS RESET & BASELINE
   =====================*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article,
aside, canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FAFCFF;
  color: #1A2330;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #F4A900;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #14305C;
  outline: none;
}
ul, ol {
  list-style: none;
}
input, button, textarea, select {
  font: inherit;
  outline: none;
  border: none;
  background: none;
}
button {
  cursor: pointer;
  background: none;
}

/* ============================
   BRAND COLOR & FONT SETTINGS
   ============================*/
:root {
  --color-primary: #14305C;
  --color-secondary: #F4A900;
  --color-accent: #FFFFFF;
  --color-bg: #FAFCFF;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --color-success: #35D072;
  --color-error: #FF3366;
  --shadow-md: 0 4px 24px 0 rgba(18,27,40,0.10);
  --shadow-lg: 0 8px 32px 0 rgba(18,27,40,0.18);
  --radius-sm: 10px;
  --radius-md: 20px;
}

/* =====================
   TYPOGRAPHY
   =====================*/
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--color-primary);
  letter-spacing: 0.015em;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--color-secondary);
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.subheadline {
  font-family: var(--font-display);
  color: var(--color-error);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
p {
  color: #222c3b;
  font-size: 1rem;
  margin-bottom: 12px;
}
strong, b {
  font-weight: 700;
  color: var(--color-primary);
}
.name {
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.01em;
}
.stars {
  color: var(--color-secondary);
  font-size: 1.2em;
  letter-spacing: 0.18em;
  font-family: var(--font-display);
  font-weight: 700;
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.08rem; }
}

/* ============================
   LAYOUT: CONTAINER & SECTIONS
   ============================*/
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
}
.section, .hero, .features, .services, .testimonials, .fahrzeug-kategorien, .fahrzeug-beratung, .event-testimonials, .events-services, .langzeit-vorteile, .langzeit-beratung, .hero-langzeit, .about, .top-deals, .anfrage-cta, .quick-contact, .gdpr, .datenschutz, .cookie-policy, .terms, .thankyou-section, .kontakt, .jetzt-anfragen {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 600px) {
  .section, .hero, .features, .services, .testimonials, .fahrzeug-kategorien, .fahrzeug-beratung, .event-testimonials, .events-services, .langzeit-vorteile, .langzeit-beratung, .hero-langzeit, .about, .top-deals, .anfrage-cta, .quick-contact, .gdpr, .datenschutz, .cookie-policy, .terms, .thankyou-section, .kontakt, .jetzt-anfragen {
    margin-bottom: 40px;
    padding: 26px 6vw;
    border-radius: var(--radius-sm);
    gap: 18px;
  }
}

/* =============================
   HEADER & NAVIGATION BAR
   =============================*/
header {
  background: var(--color-primary);
  color: var(--color-accent);
  width: 100%;
  box-shadow: 0 4px 28px 0 rgba(20,48,92,0.13);
  position: sticky;
  top: 0;
  z-index: 30;
}
.header-bar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-bar img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 6px 4px;
  position: relative;
  transition: color 0.18s;
}
.main-nav a::after {
  content: "";
  display: block;
  height: 3px;
  width: 0;
  background: var(--color-secondary);
  border-radius: 3px;
  transition: width 0.28s cubic-bezier(.7,.27,0,1);
  position: absolute;
  left: 0;
  bottom: -2px;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-secondary);
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 80%;
}
.cta-button.primary {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  padding: 11px 30px;
  border-radius: 38px;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  box-shadow: 0 3px 18px 0 rgba(244,169,0,0.08);
  border: none;
  outline: none;
  letter-spacing: 0.05em;
}
.cta-button.primary:hover,
.cta-button.primary:focus {
  background: var(--color-primary);
  color: var(--color-accent);
  box-shadow: var(--shadow-lg);
}

/* =============================
   MOBILE HAMBURGER MENU
   =============================*/
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: none;
  color: var(--color-accent);
  border: none;
  margin-left: 8px;
  z-index: 32;
}

@media (max-width: 980px) {
  .header-bar {
    gap: 10px;
  }
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 820px) {
  .main-nav, .cta-button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 13px;
    height: 42px;
    width: 45px;
    background: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 11px;
    box-shadow: 0 2px 8px #0002;
    transition: background 0.18s;
  }
  .mobile-menu-toggle:active,
  .mobile-menu-toggle:focus {
    background: var(--color-primary);
    color: var(--color-secondary);
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: var(--color-primary);
  color: var(--color-accent);
  z-index: 1100;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.37s cubic-bezier(.77,.15,.47,1.01), opacity 0.31s cubic-bezier(.44,.07,.59,1.12);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 50%;
  border: none;
  padding: 8px 10px;
  font-size: 2rem;
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 24px;
  transition: background 0.18s, color 0.18s;
  z-index: 1200;
  box-shadow: 0 1px 10px #0003;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-primary);
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  margin-top: 90px;
  margin-left: 42px;
}
.mobile-nav a {
  color: var(--color-accent);
  font-size: 1.16rem;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 10px 2px;
  letter-spacing: 0.055em;
  border-radius: 6px;
  transition: background 0.19s, color 0.17s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}

/* ================
   HERO SECTIONS
   ================*/
.hero, .hero-langzeit, .hero-events {
  background: linear-gradient(84deg, #F4A900 0%, #FFEDC6 100%);
  border: none;
  border-radius: var(--radius-md);
  margin-bottom: 60px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper, .hero-langzeit .content-wrapper, .hero-events .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.hero h1, .hero-events h1, .hero-langzeit h1 {
  color: var(--color-primary);
  font-size: 2.3rem;
  margin-bottom: 10px;
}
.hero .cta-button, .hero-langzeit .cta-button, .hero-events .cta-button {
  margin-top: 10px;
}

@media (max-width: 600px) {
  .hero, .hero-langzeit, .hero-events {
    padding: 32px 4vw;
    margin-bottom: 36px;
  }
  .hero .content-wrapper, .hero-langzeit .content-wrapper, .hero-events .content-wrapper {
    gap: 9px;
  }
}

/* =========================
   FEATURES & SERVICE LISTS
   =========================*/
.features ul, .services ul, .top-deals ul, .fahrzeug-kategorien ul, .events-services ul, .langzeit-vorteile ul, .about ul, .text-section ul, .gdpr ul, .datenschutz ul, .terms ul {
  padding-left: 0;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.features li, .services li, .top-deals li, .fahrzeug-kategorien li, .events-services li, .langzeit-vorteile li, .about li, .gdpr li, .datenschutz li, .terms li  {
  font-size: 1.07rem;
  padding-left: 2px;
  color: var(--color-primary);
  background: transparent;
  border-left: 6px solid var(--color-secondary);
  padding: 8px 0 8px 15px;
  border-radius: 6px;
}

/* ==========================
   CARDS & FLEX CONTAINERS
   ==========================*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  background: var(--color-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
  padding: 22px 17px;
  position: relative;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fffbea;
  color: #13223c;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 14px 0 rgba(244, 169, 0, 0.07);
  border-left: 7px solid var(--color-secondary);
  min-width: 210px;
  max-width: 520px;
  font-size: 1.07rem;
}
.testimonial-card .name {
  color: var(--color-primary);
}
@media (max-width: 650px) {
  .testimonial-card {
    max-width: 100%;
    padding: 14px 12px;
  }
}
.trust-badges {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.trust-badges img {
  height: 44px;
  width: auto;
}

.text-section {
  margin-bottom: 16px;
}
.special-offer-hint {
  background: #fff3d9;
  color: #885600;
  border-left: 6px solid #F4A900;
  padding: 9px 14px;
  border-radius: 7px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* ===========
   BUTTONS
   ===========*/
.cta-button {
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 12px 34px;
  border-radius: 38px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.07em;
  border: none;
  transition: background 0.185s, color 0.17s, box-shadow 0.21s, transform 0.13s;
  outline: none;
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 8px;
  display: inline-block;
  box-shadow: 0 3px 15px rgba(20,48,92,0.06);
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px) scale(1.022);
}
.cta-button.secondary {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cta-button.secondary:hover, .cta-button.secondary:focus {
  background: var(--color-primary);
  color: var(--color-secondary);
}

/* ==============
   FOOTER
   ==============*/
footer {
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 28px 0 15px 0;
  width: 100%;
  margin-top: 40px;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-nav, .footer-brand {
  display: flex;
  align-items: center;
  gap: 22px;
}
.footer-nav {
  margin-bottom: 9px;
}
.footer-nav a {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  padding: 3px 4px;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent);
}
.footer-brand img {
  height: 30px;
  margin-right: 6px;
  display: inline-block;
}

@media (max-width: 620px) {
  .footer-nav, .footer-brand {
    flex-direction: column;
    gap: 7px;
    text-align: center;
  }
  .footer-nav {
    margin-bottom: 3px;
  }
}

/* =========================
   COOKIE CONSENT BANNER
   =========================*/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 23px 12px 17px 12px;
  box-shadow: 0 -2px 14px #1a23301a;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1300;
  gap: 18px;
  border-radius: 26px 26px 0 0;
  transition: transform 0.37s cubic-bezier(.52,.19,.69,1), opacity 0.25s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 4px;
}
.cookie-banner button {
  background: var(--color-primary);
  color: var(--color-secondary);
  border-radius: 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 22px;
  border: none;
  transition: background 0.17s, color 0.15s;
  margin-bottom: 0;
  box-shadow: 0 1px 10px #14305c11;
}
.cookie-banner button.cookie-accept {
  background: var(--color-success);
  color: #14305C;
}
.cookie-banner button.cookie-accept:hover {
  background: #12b65a;
}
.cookie-banner button.cookie-reject {
  background: var(--color-error);
  color: #fff;
}
.cookie-banner button.cookie-reject:hover {
  background: #b80033;
}
.cookie-banner button.cookie-settings {
  background: var(--color-primary);
  color: var(--color-secondary);
}
.cookie-banner button.cookie-settings:hover {
  background: #263b66;
}
@media (max-width: 480px) {
  .cookie-banner .cookie-buttons {
    flex-direction: column;
    gap: 10px;
  }
}
/* Cookie modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20,48,92,0.65);
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: var(--color-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 400px;
  width: 90vw;
  padding: 30px 28px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1500;
  position: relative;
  animation: fadeInPopup .37s cubic-bezier(.53,.22,0,.98);
}
@keyframes fadeInPopup {
  from { transform: translateY(60px) scale(0.94); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 12px;
  background: var(--color-error);
  color: #fff;
  border-radius: 16px;
  font-size: 1.13rem;
  padding: 2px 12px;
  border: none;
  font-weight: 900;
  transition: background 0.18s, color 0.15s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  background: var(--color-primary);
  color: var(--color-secondary);
}
.cookie-modal .cookie-category {
  font-family: var(--font-display);
  font-size: 1.09rem;
  margin-bottom: 7px;
}
.cookie-modal .cookie-toggle {
  margin-left: 8px;
  accent-color: var(--color-secondary);
  width: 22px; height: 22px;
}
.cookie-modal label {
  font-size: 0.99rem;
  margin-left: 2px;
}
/* Cookie modal: Essential always enabled style */
.cookie-modal .essential-label {
  color: #969696;
  font-style: italic;
  font-weight: 600;
}

/* ================
   RESPONSIVE RULES
   ================*/
@media (max-width: 930px) {
  .container {
    max-width: 97vw;
    padding-left: 7vw;
    padding-right: 7vw;
  }
}
@media (max-width: 750px) {
  .container {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .content-wrapper {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .section, .hero, .features, .services, .testimonials, .fahrzeug-kategorien, .fahrzeug-beratung, .event-testimonials, .events-services, .langzeit-vorteile, .langzeit-beratung, .hero-langzeit, .about, .top-deals, .anfrage-cta, .quick-contact, .gdpr, .datenschutz, .cookie-policy, .terms, .thankyou-section, .kontakt, .jetzt-anfragen {
    padding: 18px 2vw;
    gap: 12px;
    margin-bottom: 27px;
  }
  .card, .testimonial-card {
    padding: 11px 6px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
  }
  .footer-nav, .footer-brand {
    font-size: 0.95rem;
  }
}

/* ===============
   FOCUS STYLES
   ===============*/
a:focus, button:focus, .cta-button:focus, .footer-nav a:focus, .main-nav a:focus, .mobile-nav a:focus {
  outline: 2px dashed var(--color-secondary);
  outline-offset: 2px;
}

/* ===============
   MISC UTILITIES
   ===============*/
::-webkit-scrollbar {
  width: 10px;
  background: #FAFCFF;
}
::-webkit-scrollbar-thumb {
  background: #F4A90033;
  border-radius: 8px;
}
.btn-hidden { display: none !important; }

/* ===============
   PRINT STYLES
   ===============*/
@media print { 
  .header-bar, header, nav, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  .container, .section, .content-wrapper { box-shadow: none !important; background: #fff !important; }
}

/* ===============
   MICRO-INTERACTIONS
   ===============*/
.cta-button, .main-nav a, .mobile-nav a, .cookie-banner button, .footer-nav a {
  transition: color 0.18s, background 0.19s, box-shadow 0.18s, transform 0.11s;
}
.cta-button {
  position: relative;
  overflow: hidden;
}
.cta-button::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(244,169,0,0.20);
  transform: translate(-50%,-50%);
  transition: width 0.32s cubic-bezier(.71,.17,.35,1.16), height 0.32s cubic-bezier(.71,.17,.35,1.16); 
  z-index: 1;
}
.cta-button:active::after {
  width: 130%; height: 130%;
}

/*********************************************
* ENSURE NO GRID/COLUMN/ABSOLUTE POSITIONING *
*********************************************/
/* -- No grid, column, or position: absolute (except for deco elements or menu btn) -- */

/*
 * END OF CSS FILE
 */
