/* --- CSS RESET & NORMALIZE --- */
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, main, 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;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background: #F6F9F6;
  color: #194C77;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #194C77;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #66B04E;
}
strong, b {
  font-weight: 700;
}
input, button, select, textarea {
  font-family: inherit;
}

/* --- BRAND TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: #194C77;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}

p, ul, ol {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
}

ul, ol { padding-left: 22px; }
li { margin-bottom: 8px; }

/* --- GEOMETRIC/STRUCTURED/MODERN ELEMENTS --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 18px rgba(25, 76, 119, 0.07), 0 1.5px 2px rgba(102, 176, 78, 0.06);
  border: 2.5px solid #EAF1EA;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
  min-width: 280px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 24px rgba(25, 76, 119, 0.12), 0 2.5px 8px rgba(102,176,78,0.09);
  transform: translateY(-4px) scale(1.012);
}

.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;
  align-items: flex-start;
  gap: 20px;
  background: #F6F9F6;
  border: 2.5px solid #EAF1EA;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px rgba(25,76,119,0.06);
  min-width: 240px;
  max-width: 500px;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-color: #66B04E;
  box-shadow: 0 6px 30px rgba(25,76,119,0.14);
}
.testimonial-meta {
  font-size: 0.95rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #194C77;
  margin-top: 10px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(25,76,119,0.08);
  padding: 24px 20px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  border-bottom: 3.5px solid #EAF1EA;
  box-shadow: 0 3px 16px rgba(25,76,119,0.03);
}
header .container {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.16s, color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #66B04E;
  color: #fff;
}

.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 11px 30px;
  color: #fff;
  background: #194C77;
  border: none;
  border-radius: 22px;
  box-shadow: 0 2px 10px rgba(102,176,78,0.08);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-block;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, box-shadow 0.18s;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #66B04E;
  color: #fff;
  transform: scale(1.038);
  box-shadow: 0 4px 16px rgba(102,176,78,0.16);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2.1rem;
  color: #194C77;
  border: none;
  cursor: pointer;
  z-index: 103;
  margin-left: 14px;
  padding: 4px 10px;
  transition: color 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #66B04E;
}

.mobile-menu {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  z-index: 2000;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 6px 44px rgba(25, 76, 119, 0.11);
  transform: translateX(-100%);
  transition: transform 0.29s cubic-bezier(.47,1.64,.41,.8);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #194C77;
  align-self: flex-end;
  padding: 24px 28px 0 0;
  margin-bottom: 16px;
  cursor: pointer;
  z-index: 2010;
  transition: color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #66B04E;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 18px 36px;
  width: 100vw;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #194C77;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 9px 0;
  border-bottom: 1px solid #EAF1EA;
  transition: color 0.17s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  color: #66B04E;
}

@media (max-width: 1100px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .main-nav { gap: 12px; }
}
@media (max-width: 840px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 540px) {
  .container { padding-left: 9px; padding-right: 9px; }
  .cta-btn { padding: 11px 12px; font-size: 0.95rem; }
}

/* --- HERO & SECTION STYLES --- */
.hero-section {
  background: linear-gradient(90deg, #F6F9F6 65%, #66B04E16 100%);
  border-radius: 0 0 32px 32px / 0 0 22px 22px;
  box-shadow: 0 8px 42px rgba(25,76,119,0.07);
  margin-bottom: 40px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-section h1 {
  color: #194C77;
  font-family: 'Montserrat', Arial, sans-serif;
  text-shadow: 1.5px 1.5px 0 #EAF1EA;
}
.hero-section .cta-btn {
  margin-top: 18px;
}

.features-section ul,
.packages-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0;
  justify-content: space-between;
}
.features-section ul li,
.packages-section ul li {
  background: #fff;
  border-radius: 18px;
  border: 2.5px solid #EAF1EA;
  box-shadow: 0 2px 14px rgba(25,76,119,0.09);
  padding: 32px 24px;
  flex: 1 1 285px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 260px;
  transition: box-shadow 0.16s, border-color 0.16s, transform 0.16s;
}
.features-section ul li:hover,
.packages-section ul li:hover {
  border-color: #66B04E;
  box-shadow: 0 5px 18px rgba(102,176,78,0.16);
  transform: translateY(-3px) scale(1.021);
  cursor: pointer;
}
.features-section img,
.packages-section img {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}

/* --- ROUTES PAGE EXTRAS --- */
.routes-overview .route-filters {
  background: #F6F9F6;
  padding: 18px 20px 15px 20px;
  border-radius: 12px;
  border: 2.5px solid #EAF1EA;
  margin-bottom: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.routes-overview .route-filters ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 11px;
  margin-bottom: 0;
  padding-left: 15px;
  align-items: center;
}
.routes-overview .route-filters li {
  background: #66B04E22;
  color: #194C77;
  border-radius: 6px;
  padding: 5px 13px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.route-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 0;
  padding-left: 0;
  list-style: none;
  width: 100%;
}
.route-list li {
  background: #fff;
  border: 2px solid #EAF1EA;
  border-radius: 16px;
  padding: 23px 20px;
  min-width: 220px;
  max-width: 370px;
  flex: 1 1 290px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.route-list h3 {
  margin-bottom: 10px;
  color: #194C77;
}
.route-list span {
  display: inline-block;
  margin-top: 7px;
  padding: 4px 12px;
  background: #66B04E1a;
  color: #194C77;
  border-radius: 7px;
  font-size: 0.96rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}

/* --- SERVICES & USPS --- */
.services-list ul,
.usps {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  margin: 0;
  margin-bottom: 18px;
  padding-left: 0;
  align-items: stretch;
}
.services-list ul li {
  background: #fff;
  border: 2.5px solid #EAF1EA;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(25,76,119,0.06);
  padding: 30px 22px 24px 22px;
  flex: 1 1 300px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.16s, border-color 0.16s;
}
.services-list ul li:hover {
  border-color: #66B04E;
  box-shadow: 0 8px 21px rgba(102,176,78,0.11);
}
.services-list ul li h3 span {
  font-size: 0.99rem;
  color: #66B04E;
  font-weight: 400;
  margin-left: 9px;
}
.usps li {
  background: #F6F9F6;
  color: #194C77;
  border-radius: 9px;
  padding: 11px 16px;
  font-weight: 600;
  font-size: 1rem;
}

/* --- GENERIC CONTENT LAYOUTS --- */
.content-wrapper, .text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.content-wrapper {
  margin-top: 0px;
  margin-bottom: 0px;
}
@media (min-width: 900px) {
  .content-wrapper.flex-row { flex-direction: row; align-items: center; gap: 30px; }
}

.text-section {
  gap: 12px;
}

.cookie-policy-section, .privacy-section, .gdpr-section, .terms-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(25,76,119,0.05);
  margin-bottom: 60px;
  padding: 40px 24px;
}

/* --- CONTACT/KONTAKT PAGE --- */
.contact-details-section .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.contact-details {
  background: #F6F9F6;
  border-radius: 13px;
  border: 2px solid #EAF1EA;
  padding: 18px 18px 15px 18px;
  flex: 1 1 275px;
}
.map-location {
  background: #fff;
  border-radius: 13px;
  border: 2px solid #EAF1EA;
  padding: 20px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}
@media (max-width: 900px) {
  .contact-details-section .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .contact-details, .map-location { min-width: 0; width: 100%; }
}

/* --- CTA SECTION --- */
.cta-section {
  background: #194C77;
  color: #fff;
  border-radius: 16px;
  padding: 45px 24px;
  box-shadow: 0 4px 30px rgba(25,76,119,0.11);
  margin-bottom: 50px;
}
.cta-section h2, .cta-section p { color: #fff; }
.cta-section .cta-btn {
  background: #66B04E;
  color: #fff;
  margin-top: 10px;
}
.cta-section .cta-btn:hover, .cta-section .cta-btn:focus {
  background: #fff;
  color: #194C77;
}

/* --- FOOTER --- */
footer {
  background: #fff;
  border-top: 3px solid #EAF1EA;
  color: #194C77;
  padding: 28px 0 0 0;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 23px;
}
.footer-menu {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-menu a {
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #194C77;
  padding: 3px 9px;
  border-radius: 7px;
  transition: background 0.17s, color 0.17s;
}
.footer-menu a:hover {
  background: #66B04E;
  color: #fff;
}
.contact-info div, .legal-links span {
  font-size: 0.98rem;
  color: #194C77;
  margin-bottom: 2px;
  line-height: 1.5;
}
.legal-links {
  margin-top: 15px;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}

/* --- GENERIC & UTILITY --- */
::-webkit-input-placeholder { color: #6C879F; }
::-moz-placeholder { color: #6C879F; }
:-ms-input-placeholder { color: #6C879F; }
::placeholder { color: #6C879F; }

hr {
  border: none;
  border-top: 2px solid #EAF1EA;
  margin: 32px 0 32px 0;
  width: 100%;
}

/* --- RESPONSIVE LAYOUTS: FLEXBOX ONLY! --- */
@media (max-width: 940px) {
  .content-grid, .card-container, .testimonial-section .content-wrapper, .features-section ul, .packages-section ul, .route-list, .services-list ul {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 28px 10px;
  }
  .hero-section {
    padding-top: 28px;
    padding-bottom: 32px;
    border-radius: 0 0 18px 18px/0 0 9px 9px;
  }
  .testimonial-card {
    max-width: 99vw;
    padding: 18px 8px;
  }
  .content-wrapper, .text-section {
    gap: 13px;
  }
  .cta-section {
    border-radius: 9px;
    padding: 28px 10px;
  }
}
@media (max-width: 540px) {
  .testimonial-card { padding: 10px 2px; }
  .features-section ul li, .packages-section ul li, .services-list ul li, .route-list li {
    min-width: 0;
    max-width: 98vw;
    padding: 19px 7px;
  }
}
.text-image-section {
  flex-direction: row;
  align-items: center;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* --- TRANSITIONS/MICRO-INTERACTIONS --- */
button, .cta-btn, a {
  transition: background 0.16s, color 0.16s, box-shadow 0.13s, transform 0.14s;
}

/* --- FOCUS STATES FOR ACCESSIBILITY --- */
a:focus, button:focus {outline: 2.5px solid #66B04E; outline-offset: 2px;}
.cta-btn:focus { box-shadow: 0 0 0 3px #66B04E33; }

/* --- GEOMETRIC DECOR --- */
.features-section ul li:before, .services-list ul li:before, .packages-section ul li:before, .route-list li:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-bottom: 0;
}

/* --- COOKIE BANNER & MODAL --- */
#cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 3.1px solid #66B04E;
  box-shadow: 0 -2px 20px rgba(25,76,119,0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  padding: 23px 19px;
  z-index: 3000;
  animation: slideUpCookie .5s ease;
}
@keyframes slideUpCookie {
  from {transform: translateY(100%);} to {transform: translateY(0);}
}
#cookie-consent-banner p {
  flex: 1 1 480px;
  font-size: 1rem;
  color: #194C77;
}
#cookie-consent-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 11px;
}
.cookie-btn, .cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  font-weight: 700;
  color: #fff;
  background: #66B04E;
  border: none;
  border-radius: 6px;
  padding: 9px 24px;
  margin: 0;
  cursor: pointer;
  transition: background 0.16s, color 0.17s, transform 0.13s;
}
.cookie-btn.reject {
  background: #E13242;
}
.cookie-btn:hover, .cookie-btn:focus, .cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #194C77;
  color: #fff;
}
.cookie-settings-btn {
  background: #194C77;
  color: #fff;
}
@media (max-width: 720px) {
  #cookie-consent-banner { flex-direction: column; align-items: flex-start; gap: 13px; padding: 16px 5px; }
  #cookie-consent-banner .cookie-actions { gap: 7px; }
}

/* --- COOKIE MODAL --- */
#cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25,76,119,0.29);
  z-index: 3050;
  display: none;
  transition: opacity 0.22s;
}
#cookie-modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
#cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 48px rgba(25,76,119,0.19);
  padding: 36px 22px;
  max-width: 400px;
  width: 96vw;
  z-index: 3060;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInModal 0.3s ease;
}
@keyframes fadeInModal {
  from {opacity:0; transform: scale(0.97);} to {opacity:1; transform: scale(1);}
}
#cookie-modal h3 {
  color: #194C77;
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category input[type=checkbox] {
  accent-color: #66B04E;
  width: 22px;
  height: 22px;
}
.cookie-category.essential label {
  color: #A4B7C9;
  font-weight: 600;
  opacity: 0.78;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 14px;
  justify-content: flex-end;
}

#cookie-modal-close {
  background: none;
  color: #194C77;
  border: none;
  font-size: 1.55rem;
  position: absolute;
  right: 23px;
  top: 22px;
  cursor: pointer;
  z-index: 3140;
}
#cookie-modal-close:hover { color: #E13242; }

/* --- THANK YOU PAGE --- */
.thank-you-section {
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(25,76,119,0.07);
  margin-bottom: 45px;
  padding: 35px 16px 35px 16px;
}

/* --- CUSTOM GEO/STRUCTURAL DESIGN --- */
.features-section ul li, .packages-section ul li, .services-list ul li, .route-list li {
  position: relative;
  overflow: hidden;
}
.features-section ul li::after, .packages-section ul li::after, .services-list ul li::after, .route-list li::after {
  content: '';
  position: absolute;
  right: -20px;
  top: -26px;
  width: 65px;
  height: 65px;
  background: #66B04E26;
  border-radius: 0 40px 18px 0;
  transform: rotate(20deg);
  z-index: 0;
}

/* --- ACCENT BADGES --- */
.badge {
  display: inline-block;
  padding: 5px 13px;
  background: #66B04E;
  color: #fff;
  border-radius: 7px;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 5px;
  font-weight: 600;
}

/* --- LISTS --- */
ul.custom-list {
  list-style: none;
  padding-left: 0;
}
ul.custom-list li:before {
  content: '\25A0';
  color: #194C77;
  margin-right: 10px;
  font-size: 1.1em;
  vertical-align: middle;
  display: inline-block;
}

/* --- MEDIA/MODAL OVERRIDES --- */
@media (max-width: 600px) {
  #cookie-modal { padding: 17px 5px; }
}

/* --- ACCESSIBILITY COLORS --- */
@media (prefers-contrast: high) {
  .cta-btn, .cookie-btn, .cookie-settings-btn {
    background: #000 !important;
    color: #fff !important;
    border: 3px solid #fff !important;
  }
}

/* --- END --- */
