/* ----------------------
   SPEEDVEIL ERLEBNISTOUREN TECH-FUTURISTIC STYLE
-------------------------
   Responsive, accessible, strict flexbox layout (NO grid/columns)
   Brand: Primary #21405A, Secondary #89A85C, Accent #F4E7D5
   Fonts: Montserrat (display), Roboto (body)
-------------------------*/

/* CSS RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  outline: none;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #181B23;
  color: #F4E7D5;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  padding-left: 1.4em;
}
button, [type=button], [type=submit] {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
a {
  color: #89A85C;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #F4E7D5;
  text-shadow: 0 0 4px #89A85C, 0 0 2px #fff;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #F4E7D5;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  text-shadow: 0 2px 24px rgba(33,64,90, 0.07);
}
h1 { font-size: 2.25rem; line-height: 1.18; }
h2 { font-size: 1.75rem; line-height: 1.22; }
h3 { font-size: 1.25rem; line-height: 1.28; }
p, ul, ol, li {
  font-size: 1rem;
  color: #E2E8F0;
  line-height: 1.68;
  margin-bottom: 12px;
}
strong { color: #F4E7D5; }


/* ------ CONTAINERS & SECTIONS ------ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(33,64,90, 0.65);
  border-radius: 20px;
  box-shadow: 0 6px 36px rgba(33, 64, 90, 0.07);
}

/* Feature: gradient backgrounds for hero */
.hero {
  background: linear-gradient(110deg, #21405A 85%, #89A85C 110%);
  background-color: #21405A;
  color: #F4E7D5;
  border-bottom: 1px solid #89A85C33;
  margin-bottom: 60px;
  padding: 60px 0;
  box-shadow: 0 3px 32px 0 rgba(137,168,92,0.06), 0 1.5px 0 #89A85C29;
}
.hero .container {padding-bottom: 0;}
.hero .content-wrapper {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #F4E7D5;
  text-shadow: 0 0 8px #89A85C88, 0 3px 1px #21405A66;
}
.hero p {
  color: #F4E7D5;
}


/* ----- HEADER ------ */
header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #181B23;
  padding: 14px 20px 14px 20px;
  border-bottom: 1px solid #253C4B;
  position: sticky;
  top: 0;
  z-index: 21;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 22px;
}
.logo img {
  width: 56px;
  height: auto;
  filter: drop-shadow(0 0 12px #89A85C55);
  transition: filter 0.22s;
}
.logo:hover img { filter: drop-shadow(0 0 30px #89A85Cee); }
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial,sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: #E2E8F0;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border 0.16s, color 0.21s;
}
.main-nav a:hover, .main-nav a.active {
  color: #89A85C;
  border-bottom: 2.5px solid #89A85C;
}

/* CTA BUTTON */
.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial,sans-serif;
  font-size: 1.10rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 12px 36px;
  border-radius: 32px;
  background: #89A85C;
  color: #181B23;
  transition: background 0.21s, color 0.21s, box-shadow 0.18s, border 0.18s;
  box-shadow: 0 0 12px 0 #89A85C44;
  border: none;
  position: relative;
  margin-left: 28px;
  margin-top:0;
  margin-bottom:0;
}
.cta.primary {
  background: #89A85C;
  color: #181B23;
  box-shadow: 0 0 24px #F4E7D552, 0 0 4px #89A85C44;
  border: 2px solid #F4E7D580;
}
.cta:hover, .cta:focus {
  background: #F4E7D5;
  color: #21405A;
  box-shadow: 0 0 28px #F4E7D588;
  border-color: #89A85C;
}

/* MOBILE HEADER BUTTON */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  line-height: 1;
  color: #F4E7D5;
  cursor: pointer;
  margin: 0 0 0 18px;
  border: none;
  transition: color 0.18s;
  z-index: 60;
}
.mobile-menu-toggle:focus {
  color: #89A85C;
  outline: 2px solid #89A85C;
  outline-offset: 3px;
}

/* ---- MOBILE MENU / OVERLAY ---- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,27,35,0.97);
  z-index: 99;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(0.47, 1.64, 0.41, 0.8);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 36px;
  box-shadow: 0 0 48px #21405A55;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  font-size: 2rem;
  color: #F4E7D5;
  background: none;
  border: none;
  margin: 8px 0 32px 28px;
  align-self: flex-start;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 101;
}
.mobile-menu-close:focus {
  color: #89A85C;
  outline: 2px solid #89A85C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: 44px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial,sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #F4E7D5;
  margin-bottom: 4px;
  transition: color 0.21s, text-shadow 0.13s;
  text-shadow: 0 1px 14px #21405A60;
  padding:6px 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #89A85C;
  text-shadow: 0 1px 16px #89A85C77;
}

/* ------ FLEXBOX CONTENT PATTERNS ------ */
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 10px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #253C4B;
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  color: #F4E7D5;
  box-shadow: 0 2px 20px #1d313e27;
  flex: 1 1 272px;
  min-width: 220px;
  transition: box-shadow 0.22s, transform 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 34px #89A85C77, 0 3px 20px #21405A40;
  transform: translateY(-4px) scale(1.015);
}
.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;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  background: #f4e7d567;
  color: #21405A;
  border-radius: 16px;
  box-shadow: 0 4px 30px #21405A25, 0 1.5px 0 #F4E7D5bb;
  padding: 20px;
  min-width: 220px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  position: relative;
  margin-right: 20px;
  border-left: 5px solid #89A85C;
  transition: box-shadow 0.22s, transform 0.16s;
}
.testimonial-card:last-child {margin-right: 0;}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 24px;
  align-items: stretch;
}
.testimonial-card .star-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 6px;
}

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

/*---- Feature grid ----*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.feature {
  background: #253C4B;
  border-radius: 15px;
  padding: 24px 20px 20px 20px;
  width: 100%;
  max-width: 320px;
  min-width: 220px;
  color: #F4E7D5;
  text-align: left;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px #1d313e22;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  border-left: 3px solid #89A85C;
}
.feature img {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 6px #F4E7D555);
}
.feature h3 {color: #89A85C;font-size:1.15rem;letter-spacing:.02em;}
.feature:hover, .feature:focus-within {
  box-shadow: 0 4px 28px #89A85C77, 0 3px 20px #21405A40;
  transform: translateY(-2px) scale(1.018);
}

/*---- Pricing Table ----*/
.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.price-row {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #253C4B;
  padding: 18px 20px;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px #1d313e22;
}
.price-row img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  filter: drop-shadow(0 0 5px #89A85C66);
}
.price-row h3 { color: #89A85C; margin-bottom: 4px; }
.price-row p { color: #F4E7D5; margin-bottom: 0; }

/*---- Service List ----*/
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service {
  background: #253C4B;
  border-radius: 15px;
  padding: 24px 20px 12px 20px;
  min-width: 220px;
  max-width: 325px;
  flex: 1 1 250px;
  box-shadow: 0 2px 14px #1d313e22;
  margin-bottom: 20px;
  color: #F4E7D5;
  position: relative;
}
.service h3 {color: #89A85C; margin-bottom: 8px; font-size:1.15rem;}
.service .price {
  display: inline-block;
  font-size: 1rem;
  color: #F4E7D5;
  background: #181B23;
  border-radius: 38px;
  padding: 6px 14px;
  margin-top: 8px;
  box-shadow: 0 0 8px #89A85C33;
  border: 1px solid #89A85C55;
}
.service:hover, .service:focus-within {
  box-shadow: 0 4px 24px #89A85C77, 0 1.5px 0 #F4E7D5bb;
  transform: translateY(-2px) scale(1.012);
}

/*----- Contact sections -----*/
.contact-info {
  font-size: 1.01rem;
  line-height: 1.6;
  color: #F4E7D5;
  margin-bottom: 12px;
}
.mini-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 24px;
}

/* ----- Booking steps, FAQ ----*/
.booking-steps {
  list-style: decimal inside;
  margin: 18px 0 0 0;
  color: #F4E7D5;
  font-size:1.03rem;
  line-height:1.7;
}
.booking-steps li span { color: #89A85C; font-weight: bold; }
.faq-list {
  margin-top: 14px;
}
.faq-list li {
  margin-bottom: 18px;
  color: #F4E7D5;
}

/* -------- USP List, Legal --------- */
.usps {
  margin-top: 18px;
  padding-left: 1.3em;
  color: #89A85C;
  font-size: 1.07rem;
}
.usps li { margin-bottom: 8px; }
blockquote {
  font-style: italic;
  border-left: 4px solid #89A85C;
  color: #F4E7D5;
  background: #253C4B;
  padding: 16px 20px;
  border-radius: 10px;
  margin: 24px 0;
}
.legal h2 { color: #89A85C; font-size:1.25rem; margin-top:22px; }

/* -------- FOOTER ---------- */
footer {
  background: #181B23;
  padding: 34px 0 24px 0;
  margin-top: 60px;
  border-top: 1px solid #21354A33;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #F4E7D5;
  font-size: 1rem;
  transition: color 0.19s;
  opacity: .88;
}
.footer-nav a:hover { color: #89A85C; opacity: 1; }
.contact-brief {
  font-size: .98rem;
  color: #E2E8F0;
}
.contact-brief a { color: #89A85C; }
.social-links {
  display: flex;
  gap: 16px;
  align-items: center;
}
.social-links img {
  width: 32px;
  height: 32px;
  opacity: .82;
  filter: drop-shadow(0 0 6px #253C4B66);
  transition: filter 0.15s, opacity 0.18s;
  cursor: pointer;
}
.social-links img:hover { opacity:1; filter: drop-shadow(0 0 22px #89A85C88); }

/* --- THANK YOU PAGE SPECIAL --- */
.thank-you {
  background: #252A3A;
  border-radius: 18px;
  box-shadow: 0 2px 30px #253C4B55;
  margin: 60px 0 24px 0;
  padding: 48px 24px;
  text-align: center;
}
.thank-you h1 { color: #89A85C; font-size:2rem; }
.thank-you .cta { margin: 24px auto 0 auto; }

/* ----- Responsive MEDIA QUERIES ----- */
@media (max-width: 1000px) {
  .feature, .service, .card, .testimonial-card {
    max-width: 100%;
    min-width: 160px;
  }
}
@media (max-width: 880px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px 0;
  }
}
@media (max-width: 920px) {
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .container { padding-left: 12px; padding-right: 12px; }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .cta {
    font-size: 1rem;
    padding: 10px 18px;
    margin-left: 10px;
  }
  header {
    flex-direction: row;
    padding: 12px 8px;
  }
  .section, .hero {
    padding: 24px 8px;
    margin-bottom: 34px;
  }
  .hero h1 {
    font-size: 1.48rem;
  }
  .content-wrapper, .content-grid, .service-list, .feature-grid, .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .card-container {
    gap: 14px;
  }
  .card, .service, .feature, .testimonial-card {
    min-width: 140px;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
  }
  .mini-contact { margin-left:0; }
  .testimonial-card {
    padding: 14px;
    font-size: 1rem;
  }
  .footer-nav { flex-direction: row; flex-wrap: wrap; gap: 14px; }
}

@media (max-width: 500px) {
  .hero, .section {
    padding-left: 0; padding-right: 0;
  }
  .container {padding-left: 6px; padding-right:6px;}
  .card, .service, .feature, .testimonial-card, .thank-you {
    padding: 14px 8px;
  }
}

/* --- Micro-interactions/animations --- */
.cta, .card, .service, .feature, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.14s;
}
.cta:active, .card:active, .service:active, .feature:active {
  transform: scale(0.97) translateY(2px);
  box-shadow: 0 1.5px 8px #21405A33;
}

/* BUTTON FOCUS FOR ACCESSIBILITY */
button:focus, .cta:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus{
  outline: 2.5px solid #89A85C;
  outline-offset: 2px;
}

/* --------- COOKIE CONSENT BANNER --------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 2000;
  background: #181B23;
  color: #F4E7D5;
  box-shadow: 0 -6px 32px #21405A55;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 20px 14px 20px 28px;
  border-radius: 26px 26px 0 0;
  font-size: 1.09rem;
  animation: cookie-slidein .6s cubic-bezier(0.3,1.7,0.4,0.9);
}
@keyframes cookie-slidein {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner.hide {
  display: none !important;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
}
.cookie-banner button {
  border-radius: 32px;
  background: #89A85C;
  color: #181B23;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 7px 26px;
  border: none;
  margin-left: 2px;
  margin-right: 0;
  box-shadow: 0 0 8px #89A85C33;
  cursor: pointer;
  transition: background 0.12s, color 0.14s;
}
.cookie-banner button:focus {
  background: #F4E7D5;
  color: #21405A;
  outline: 2px solid #89A85C;
}
.cookie-banner .settings-btn {
  background: #21405A;
  color: #F4E7D5;
  border: 2px solid #89A85C;
  margin-left: 4px;
}
.cookie-banner .settings-btn:hover {
  background: #89A85C;
  color: #181B23;
}

/* ---- COOKIE MODAL ---- */
.cookie-modal {
  position: fixed;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%) scale(1);
  z-index: 2100;
  background: #181B23;
  border-radius: 15px;
  box-shadow: 0 6px 48px #21405Aaa, 0 1.5px 0 #F4E7D5bb;
  padding: 34px 24px 28px 24px;
  color: #F4E7D5;
  min-width: 320px;
  max-width: 96vw;
  display: none;
  animation: cookie-modalin 0.45s cubic-bezier(0.23,1.3,0.48,0.76);
}
@keyframes cookie-modalin {
  from { transform: translateX(-50%) scale(0.95); opacity: 0; }
  to { transform: translateX(-50%) scale(1); opacity: 1; }
}
.cookie-modal.open { display: block; }
.cookie-modal h3 {color:#89A85C;margin-bottom:8px;}
.cookie-categories {
  margin: 20px 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-category label {
  font-size: 1.10rem;
  color: #F4E7D5;
}
.cookie-category input[type=checkbox] {
  accent-color: #89A85C;
  transform: scale(1.22);
}
.cookie-category .locked {
  opacity: .45;
  font-style: italic;
}
.cookie-modal .cookie-actions {
  margin-top: 16px;
  display: flex;
  gap:14px;
  justify-content: flex-end;
}

@media (max-width: 650px) {
  .cookie-banner {
    gap: 10px;
    align-items: flex-start;
    flex-direction: column;
    font-size: .96rem;
    padding: 16px 6px 16px 10px;
  }
  .cookie-modal {
    min-width: 200px;
    max-width: 98vw;
    padding: 18px 5vw 18px 5vw;
    font-size: 1rem;
  }
}

/* Z-INDEX LAYERS for overlays/menus */
.mobile-menu { z-index: 99; }
.cookie-banner { z-index: 2000; }
.cookie-modal { z-index: 2100; }
.header { z-index:21; }

/* ----------- GENERAL SPACING ----------- */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/**** END SPEEDVEIL TECH-FUTURISTIC CSS ****/
