/* =====================
   CSS RESET & BASE STYLES
========================*/
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 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  background: #fff;
  color: #222;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-color: #F9FAFC;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #1E2A38;
  transition: color 0.2s;
  text-decoration: none;
}
a:hover, a:focus {
  color: #D3A426;
  outline: none;
}
button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
ul, ol {
  list-style-position: inside;
}

/* =====================
   BRAND & TYPOGRAPHY
========================*/
:root {
  --primary: #1E2A38;
  --secondary: #D3A426;
  --accent: #E8EAEF;
  --highlight: #28D7C8;
  --pink: #FB61A2;
  --blue: #4083F4;
  --bg-section: #FFF9EF;
  --success: #34d471;
  --danger: #e04242;
  --gray-100: #FCFCFF;
  --gray-200: #E8EAEF;
  --shadow-1: 0 2px 16px rgba(30,42,56,0.06), 0 1.5px 6px rgba(0,0,0,0.05);
  --radius: 16px;
}

@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  margin-bottom: 16px;
  color: #1E2A38;
  letter-spacing: 1px;
  line-height: 1.13;
}
h1 {
  font-size: 2.25rem;
  color: #FB61A2;
  text-shadow: 1px 2px 0 var(--accent), 2px 4px 8px rgba(40,215,200,0.06);
  margin-top: 16px;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.5rem;
  color: #4083F4;
}
h3 {
  font-size: 1.17rem;
  color: #D3A426;
}
.subheadline {
  color: var(--primary);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.16rem;
  margin-bottom: 12px;
}
p, li, table, .text-section {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-style: italic;
  color: #1E2A38;
  margin-left: 0;
}
strong {
  font-weight: 700;
  color: #1E2A38;
}

/* =====================
   CONTAINER / SECTIONS
========================*/
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
main > section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  position: relative;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* =====================
   LAYOUT SYSTEM FLEXBOX - NEVER GRID
========================*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: 28px 24px 24px 24px;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 320px;
  position: relative;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-6px) scale(1.03) rotate(-0.7deg);
  box-shadow: 0 4px 30px rgba(40,215,200,0.19), 0 1px 8px rgba(251,97,162,0.09);
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #E8EAEF;
  color: #1E2A38;
  border-radius: var(--radius);
  box-shadow: 0 4px 18px rgba(30,42,56,0.09);
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .18s;
}
.testimonial-card:hover {
  transform: scale(1.02) rotate(-1deg);
  box-shadow: 0 8px 30px rgba(64,131,244,0.12), 0 2px 6px rgba(30,42,56,0.06);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =====================
   HEADER / NAVIGATION
========================*/
header {
  width: 100%;
  background: #fff;
  z-index: 60;
  box-shadow: 0 2px 16px rgba(30,42,56,0.05);
  position: sticky;
  top: 0;
}
.brand img {
  height: 48px;
  width: auto;
  margin-right: 14px;
  vertical-align: middle;
  transition: transform .11s;
}
.brand:hover img {
  transform: scale(1.08) rotate(-2deg);
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
  gap: 18px;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1E2A38;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  padding: 6px 13px;
  transition: background-color 0.19s, color 0.19s, transform 0.12s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FB61A2;
  color: #fff;
  transform: translateY(-2px) scale(1.06);
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  padding: 10px 26px;
  border-radius: 32px;
  box-shadow: 0 2px 14px rgba(211,164,38,0.07);
  transition: background 0.17s, color 0.17s, box-shadow 0.14s, transform 0.15s;
  margin-left: 18px;
  white-space: nowrap;
  text-decoration: none;
  border: none;
  letter-spacing: .03em;
  outline: none;
}
.cta-btn.primary {
  background: linear-gradient(90deg,#D3A426,#FB61A2 70%);
  color: #fff;
}
.cta-btn.secondary {
  background: linear-gradient(90deg,#28D7C8 60%, #4083F4 100%);
  color: #fff;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg,#4083F4 40%, #FB61A2 100%);
  color: #fff;
  transform: scale(1.05) translateY(-2px) rotate(-.7deg);
  box-shadow: 0 4px 22px rgba(251,97,162,0.13), 0 2px 8px rgba(40,215,200,0.10);
}

/* Mobile burger */
.mobile-menu-toggle {
  display: none;
  background: #FB61A2;
  color: #fff;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-left: 16px;
  border: none;
  align-items: center;
  justify-content: center;
  z-index: 120;
  transition: background 0.15s, box-shadow 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #D3A426;
  box-shadow: 0 2px 8px rgba(251,97,162,0.11);
}

/* MOBILE NAV OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: #FFF9EF;
  z-index: 1000;
  padding: 24px 20px 20px 24px;
  transform: translateX(-102vw);
  transition: transform .28s cubic-bezier(.86,0,.07,1);
  box-shadow: 0 6px 48px rgba(251,97,162,0.19);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: #28D7C8;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 18px;
  border: none;
  transition: background 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #D3A426;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 800;
  color: #1E2A38;
  background: #fff;
  border-radius: 12px;
  padding: 15px 10px;
  margin-right: 4px;
  transition: background 0.13s, color 0.13s;
  line-height: 1.2;
  box-shadow: 0 3px 16px rgba(216,230,244,0.07);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FB61A2;
  background: #E8EAEF;
}

/* Hide nav/cta on mobile, show burger - show on desktop */
@media (max-width: 1024px) {
  .main-nav, .cta-btn.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  header .container {
    gap: 0;
    min-height: 58px;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* =====================
   SECTION LISTS & ICONS
========================*/
.feature-list, .usp-list, .service-list, .services-details-list, .extra-services-list, .vehicle-types-list,
.included-services, .transfer-benefits, .cookie-usage, .user-rights, .terms-of-service, .terms-shortlist, .highlighted-offers, .benefits-icons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 14px 0;
  padding: 0;
}
.feature-list li, .usp-list li, .service-list li, .services-details-list li, .extra-services-list li, .vehicle-types-list li, .included-services li, .transfer-benefits li, .cookie-usage li, .user-rights li, .terms-of-service li, .benefits-icons li, .terms-shortlist li, .highlighted-offers li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(234,250,255,0.1);
  padding: 9px 13px 9px 7px;
  border-radius: 12px;
  font-size: 1rem;
  color: #1E2A38;
  box-shadow: none;
}
.feature-list li img,
.benefits-icons li img,
.benefits-icons li svg,
.years-experience img,
.contact-options img,
.phone-contact img {
  width: 26px;
  height: 26px;
  margin-right: 4px;
}
.service-list .price, .services-details-list .price {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #FB61A2;
  color: #fff;
  font-weight: 800;
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.95rem;
  margin-left: 9px;
}

/* =====================
   TESTIMONIALS & BADGES
========================*/
.testimonial-slider {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 24px;
  margin-bottom: 18px;
}
.testimonial-card {
  min-width: 245px;
  max-width: 350px;
}
.rating-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  background: var(--secondary);
  color: #fff;
  padding: 4px 12px 4px 6px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 16px rgba(40,215,200,0.09);
}
.rating-badges img {
  width: 21px;
  height: 21px;
}

/* =====================
   PRICING TABLE
========================*/
.pricing-table {
  border-collapse: collapse;
  width: 100%;
  background: #FFF9EF;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(251,97,162,0.07);
  overflow: hidden;
  margin-bottom: 18px;
}
.pricing-table th,
.pricing-table td {
  font-family: 'Roboto', Arial, sans-serif;
  padding: 14px 14px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1.5px solid #E8EAEF;
}
.pricing-table th {
  background: #D3A426;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* =====================
   CONTACT + MISC
========================*/
.contact-options,
.phone-contact {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-wrap: wrap;
  margin-top: 12px;
  margin-bottom: 4px;
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.contact-options a,
.phone-contact a {
  color: #4083F4;
  font-weight: 600;
  text-decoration: underline;
  margin-right: 9px;
}
.contact-information {
  margin: 12px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 1rem;
}
.map-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 8px;
  min-height: 120px;
}
.map-section img {
  width: 130px;
  height: auto;
}
.opening-hours,
.address-details {
  background: #E8EAEF;
  border-radius: 14px;
  padding: 16px 18px 13px 18px;
  font-size: 1.04rem;
  margin-bottom: 8px;
  color: #1E2A38;
  box-shadow: 0 1px 6px rgba(211,164,38,0.05);
}
.company-values, .unique-value-props, .zubehoer-overview, .premium-standard, .benefits-descriptions {
  background: #fff;
  padding: 18px 18px 12px 18px;
  border-radius: 11px;
  margin-bottom: 6px;
  box-shadow: 0 1.5px 8px rgba(251,97,162,0.05);
}
.years-experience {
  margin: 17px 0;
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 1.07rem;
  color: #FB61A2;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(40,215,200,0.06);
  padding: 8px 17px 7px 12px;
}

/* =====================
   FOOTER
========================*/
footer {
  background: #1E2A38;
  color: #fff;
  padding: 30px 0 18px 0;
  font-size: 1rem;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-brand {
  flex: 1 0 96px;
}
.footer-brand img {
  width: 64px;
  height: auto;
}
.footer-nav {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  font-size: 1rem;
  margin-top: 13px;
  margin-bottom: 6px;
}
.footer-nav a {
  color: #FFD965;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FB61A2;
}
.footer-contact {
  flex: 2;
  color: #fff;
  font-size: 1rem;
  margin-top: 8px;
  line-height: 1.4;
}
.footer-contact a {
  color: #FFD965;
}

/* =====================
   COOKIE BANNER + MODAL
========================*/
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 14px rgba(30,42,56,0.17);
  border-radius: 18px 18px 0 0;
  z-index: 2200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 28px 20px 22px 20px;
  font-size: 1.03rem;
  animation: cookie-fadein 0.6s cubic-bezier(.52,.41,.61,1);
}
@keyframes cookie-fadein {
  from { opacity: 0; transform: translateY(90px);} to {opacity:1; transform:translateY(0);}
}
.cookie-consent-banner p {
  color: #1E2A38;
  font-size: 1.08rem;
  text-align: center;
  max-width: 640px;
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 7px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 9px 25px;
  border-radius: 24px;
  font-size: 1rem;
  margin: 0 4px;
  border: none;
  cursor: pointer;
  background: #E8EAEF;
  color: #1E2A38;
  box-shadow: 0 1.5px 8px rgba(64,131,244,0.07);
  transition: background 0.13s, color 0.13s;
}
.cookie-btn.accept {
  background: linear-gradient(90deg,#28D7C8 70%, #D3A426 100%);
  color: #fff;
}
.cookie-btn.reject {
  background: #FB61A2;
  color: #fff;
}
.cookie-btn.settings {
  background: #E8EAEF;
  color: #4083F4;
}
.cookie-btn:hover, .cookie-btn:focus {
  filter: brightness(1.09);
  box-shadow: 0 2px 20px rgba(40,215,200,0.10);
}

/* Cookie Preferences Modal */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(30,42,56,0.24);
  z-index: 2300;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-backdrop-in 0.18s linear;
}
@keyframes cookie-backdrop-in {
  0% {opacity:0;} 100% {opacity: 1;}
}
.cookie-modal {
  background: #fff;
  width: 94vw;
  max-width: 420px;
  border-radius: 25px;
  box-shadow: 0 9px 46px rgba(251,97,162,0.12);
  padding: 40px 26px 24px 26px;
  z-index: 2400;
  animation: cookie-modal-in 0.31s cubic-bezier(.18,.66,.57,1.26);
}
@keyframes cookie-modal-in {
  0% { transform: translateY(90px) scale(.87); opacity: 0; } 100% { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: #4083F4;
  margin-bottom: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  color: #1E2A38;
  font-weight: 700;
  margin-left: 6px;
}
.cookie-switch {
  appearance: none;
  width: 44px;
  height: 25px;
  background: #E8EAEF;
  border-radius: 12px;
  outline: none;
  position: relative;
  transition: background .15s;
  margin-right: 8px;
  cursor: pointer;
}
.cookie-switch:checked {
  background: #28D7C8;
}
.cookie-switch::after {
  content: "";
  display: block;
  position: absolute;
  left: 3px; top: 3px;
  width: 19px; height: 19px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1.5px 6px rgba(40,215,200,0.08);
  transition: left .17s;
}
.cookie-switch:checked::after {
  left: 22px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 23px;
}
.cookie-modal .cookie-btn {
  min-width: 90px;
}

/* Essential cookies always enabled */
.cookie-category.essential .cookie-switch {
  opacity: 0.7;
  pointer-events: none;
}

/* =====================
   ANIMATIONS
========================*/
a, button, .cta-btn, .mobile-nav a, .main-nav a {
  transition: background 0.14s, color 0.14s, box-shadow 0.14s, transform 0.13s;
}

@media (hover: hover) {
  .card:hover:after {
    animation: playful-wobble 0.42s 1 cubic-bezier(.75,-0.01,.3,1.1);
  }
}
@keyframes playful-wobble {
  0%{transform:rotate(0deg);} 60%{transform:rotate(2deg);} 80%{transform:rotate(-1.8deg);} 100%{transform:rotate(.4deg);}
}

/* =====================
   RESPONSIVE MEDIA QUERIES
========================*/
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  main > section, .section {
    padding: 30px 7px;
  }
  .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 3vw;
  }
  main > section, .section {
    padding: 18px 5px;
    margin-bottom: 39px;
  }
  .card-container, .content-grid, .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .footer-brand {
    margin-bottom: 10px;
  }
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 520px) {
  h1 {font-size: 1.45rem;}
  h2 {font-size: 1.05rem;}
  .cta-btn, .cta-btn.primary, .cta-btn.secondary {
    font-size: 0.95rem;
    padding: 8px 11px;
  }
  .pricing-table th, .pricing-table td {
    font-size: .96rem;
    padding: 10px 6px;
  }
  .cookie-modal {
    padding: 23px 8px 13px 8px;
  }
}

/* =============================
   PLAYFUL/ENERGETIC DECORATION
==============================*/
.card {
  border: 2px solid rgba(219,164,38,0.13);
  box-shadow: 0 2.5px 28px rgba(40,215,200,0.13);
  position: relative;
}
.card:after {
  content: '';
  position: absolute;
  left: -16px; top: -16px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #28D7C8;
  opacity: 0.17;
  z-index: 1;
  pointer-events: none;
  transition: opacity .31s;
}
.card:hover:after {
  opacity: 0.30;
}
.card:nth-child(even):after {
  left: auto; right: -16px; top: auto; bottom: -19px;
  background: #FB61A2;
  opacity: 0.13;
}

/* Fun animated underline for headings */
h2, h3 {
  position: relative;
  overflow: visible;
}
h2:after, h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 44px;
  height: 5px;
  border-radius: 10px;
  background: linear-gradient(90deg,#FB61A2 20%,#4083F4 90%);
  opacity: 0.27;
  pointer-events: none;
}
h2:after { bottom:-8px; }

/* Playful bouncing cta-btn animation */
.cta-btn.primary, .cta-btn.secondary {
  animation: cta-bounce 3.3s infinite cubic-bezier(.44,0,.55,1);
}
@keyframes cta-bounce {
  0%,100% { transform: scale(1); }
  4% { transform: scale(1.08) rotate(-1deg); }
  7% { transform: scale(1.04) rotate(0.8deg); }
  15% { transform: scale(1); }
}

/* ===============
   END OF STYLES
================ */
