/* --- CSS RESET & NORMALIZE --- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F1F4F8;
  color: #233343;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
a {
  color: #233343;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #F7C948;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
/* --- TYPOGRAPHY --- */
h1, .display {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  color: #233343;
  margin-bottom: 18px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #F7C948;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.38rem;
  font-weight: 600;
  color: #233343;
  margin-bottom: 12px;
}
strong {
  color: #F7C948;
  font-weight: 700;
}
p, ul, ol, li {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.7;
  margin-bottom: 10px;
  color: #233343;
}
.display {
  font-family: 'Montserrat', Arial, sans-serif;
}
@media (max-width: 600px) {
  h1, .display {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  h3 {
    font-size: 1.1rem;
  }
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: #fff; /* slightly brighter for contrast */
  box-shadow: 0 1px 8px 0 rgba(35,51,67,0.10);
  position: relative;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  color: #233343;
}
header nav a:hover, header nav a:focus {
  background: #F7C948;
  color: #233343;
  text-decoration: none;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 28px;
  background: #F7C948;
  color: #233343;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 26px rgba(247, 201, 72, 0.13);
  border: none;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.28s, transform 0.15s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #233343;
  color: #fff;
  transform: translateY(-3px) scale(1.025) rotate(-1deg);
  box-shadow: 0 6px 20px 0 rgba(35,51,67,0.16);
}
header img {
  height: 46px;
  width: auto;
  margin-right: 6px;
}
header .cta-btn {
  margin-left: 20px;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: none;
  color: #233343;
  border: none;
  outline: none;
  padding: 4px 12px;
  border-radius: 12px;
  position: relative;
  z-index: 101;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F7C948;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #233343;
  color: #fff;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.42s cubic-bezier(0.85,0,0.12,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 24px 18px 32px;
  gap: 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2.1rem;
  margin-bottom: 22px;
  align-self: flex-end;
  cursor: pointer;
  outline: none;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F7C948;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  padding: 14px 2px 14px 0;
  border-radius: 4px;
  width: 100%;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F7C948;
  color: #233343;
}
@media (max-width: 1050px) {
  header nav,
  header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width:1051px) {
  .mobile-menu { display: none !important; }
}

/* --- HERO SECTION / CREATIVE ARTISTIC ELEMENTS --- */
.hero {
  background: #F7C948 linear-gradient(186deg, #F7C948 75%, #F1F4F8 100%);
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
.hero .container {
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 0 24px 0;
  max-width: 650px;
  border-left: 6px solid #233343;
  background: rgba(255,255,255,0.22);
  border-radius: 0 28px 28px 0;
  box-shadow: 1px 7px 16px rgba(247,201,72,0.08);
}
.hero h1 {
  color: #233343;
  font-size: 2.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
  text-shadow: 1px 4px 2px rgba(247,201,72,0.13);
}
.hero p {
  color: #233343;
  font-size: 1.125rem;
}

/* --- CREATIVE LAYOUTS - FEATURE GRIDS --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 16px;
}
.feature-grid > div {
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 4px 16px 0 rgba(35,51,67,0.07);
  padding: 28px 18px 22px 18px;
  flex: 1 1 250px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  border-left: 9px solid #F7C948;
  position: relative;
  /* Artistic overlay */
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 7px rgba(247,201,72,0.23));
}

/* --- CARD, CONTENT, FLEX CONTAINERS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(35,51,67,0.13);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
}
.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: #fff;
  border-radius: 19px;
  box-shadow: 0 5px 16px rgba(35,51,67,0.12);
  margin-bottom: 22px;
  color: #233343;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- TEAM LIST, STORY ELEMENTS --- */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 12px;
}
.team-list > div {
  flex: 1 1 200px;
  min-width: 180px;
  background: #FFF;
  border-radius: 13px;
  padding: 22px 12px;
  box-shadow: 0 3px 10px rgba(35,51,67,.07);
  margin-bottom: 20px;
}
.story-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 10px;
}
.story-teasers > div {
  flex: 1 1 240px;
  min-width: 190px;
  background: #fff;
  padding: 18px 14px;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(247,201,72,0.13);
}

.route-categories {
  display: flex;
  gap: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F7C948;
  margin: 16px 0 0 0;
}
.route-list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 15px;
}
.route-list > div {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 3px 12px rgba(247,201,72,0.14);
  flex: 1 1 245px;
  min-width: 190px;
  padding: 20px 15px;
  margin-bottom: 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fff;
  border-left: 5px solid #F7C948;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(35,51,67,0.08);
  padding: 16px 14px;
  margin-bottom: 8px;
}

.trust-signals {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  background: #F7C948;
  color: #233343;
  border-radius: 13px;
  padding: 10px 18px;
  font-weight: 600;
}
.trust-signals img {
  width: 32px;
  height: 32px;
}

/* --- BUTTONS, LINKS, MICROS --- */
button, .cta-btn {
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.23s, transform 0.16s;
}
button:focus-visible, .cta-btn:focus-visible {
  outline: 2px dashed #F7C948;
  outline-offset: 2px;
}

/* --- FOOTER --- */
footer {
  background: #233343;
  color: #fff;
  padding: 38px 0 28px 0;
  width: 100%;
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: flex-start;
}
.footer-nav a {
  color: #F7C948;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  background: none;
  padding: 6px 6px;
  border-radius: 6px;
  transition: color 0.13s, background 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  background: #F7C948;
}
.footer-brand {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.footer-brand img {
  height: 38px;
  width: auto;
}
.footer-brand span {
  color: #F1F4F8;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width:900px) {
  .container { max-width: 99vw; }
}
@media (max-width:700px) {
  .feature-grid, .team-list, .story-teasers, .route-list {
    flex-direction: column;
    gap: 16px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
@media (max-width:600px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section {
    margin-bottom: 32px;
    padding: 22px 5px;
  }
  .hero .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  .feature-grid>div, .card, .team-list>div, .story-teasers>div, .route-list>div {
    padding: 14px 7px;
    min-width: 120px;
  }
}
@media (max-width: 768px) {
  .content-grid, .feature-grid, .team-list, .story-teasers, .route-list, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  color: #233343;
  box-shadow: 0 -2px 18px #23334322;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 12px 15px 12px;
  gap: 17px;
  animation: cookieBannerIn 0.7s cubic-bezier(.76,0,.12,1);
}
@keyframes cookieBannerIn {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #233343;
  text-align: center;
  font-size: 1rem;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.cookie-btn {
  border-radius: 21px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 11px 26px;
  border: none;
  margin: 0;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.19s;
}
.cookie-btn.accept {
  background: #F7C948;
  color: #233343;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #233343;
  color: #fff;
}
.cookie-btn.reject {
  background: #eee;
  color: #233343;
  border: 1.5px solid #F7C948;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F7C948;
  color: #233343;
}
.cookie-btn.settings {
  background: #fff;
  color: #233343;
  border: 1.5px dashed #F7C948;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #F7C948;
  color: #233343;
}

/* --- COOKIE MODAL --- */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: rgba(35,51,67,.40);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeBackdrop 0.25s linear;
}
@keyframes fadeBackdrop {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  padding: 36px 30px 28px 30px;
  border-radius: 19px;
  box-shadow: 0 12px 38px rgba(35,51,67,0.27);
  max-width: 410px;
  width: 96vw;
  z-index: 2001;
  display: flex;
  flex-direction: column;
  gap: 25px;
  animation: modalIn 0.29s cubic-bezier(.75,0,.12,1);
}
@keyframes modalIn {
  0% { transform: scale(0.74) translateY(67px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-title {
  font-size: 1.18rem;
  color: #233343;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 2px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: #233343;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 3px;
}
.cookie-toggle {
  width: 44px;
  height: 25px;
  border-radius: 14px;
  background: #eee;
  position: relative;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-toggle[data-enabled="true"] {
  background: #F7C948;
}
.cookie-toggle-knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 19px; height: 19px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.19s, background 0.19s;
  box-shadow: 0 2px 8px rgba(35,51,67,0.07);
}
.cookie-toggle[data-enabled="true"] .cookie-toggle-knob {
  left: 22px;
  background: #233343;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 17px;
  justify-content: flex-end;
}
@media (max-width: 700px) {
  .cookie-modal {
    padding: 18px 8px 17px 8px;
    max-width: 97vw;
  }
}

/* --- MICRO-INTERACTIONS & EFFECTS --- */
.card, .feature-grid > div, .testimonial-card, .faq-item, .team-list>div, .story-teasers>div, .route-list>div {
  transition: box-shadow 0.22s, transform 0.13s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover, .faq-item:hover, .team-list>div:hover, .story-teasers>div:hover, .route-list>div:hover {
  box-shadow: 0 7px 28px 0 rgba(247,201,72,0.21), 0 3px 18px rgba(35,51,67,.09);
  transform: translateY(-4px) scale(1.011) rotate(-0.4deg);
}
input, textarea, select {
  border-radius: 7px;
  background: #F9FAFB;
  border: 1px solid #DDD;
  padding: 12px 10px;
  width: 100%;
  margin-bottom: 18px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
input:focus, textarea:focus {
  border-color: #F7C948;
  outline: 2px solid #F7C94822;
}

/* --- UTILITIES and OVERRIDES --- */
.mt-5 { margin-top: 5px !important; }
.mt-15 { margin-top: 15px !important; }
.mb-0 { margin-bottom: 0 !important; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }

/* --- OVERRIDES: Dark text on light for testimonials/review sections --- */
.testimonial-card,
.faq-item, .team-list>div {
  background: #fff;
  color: #233343;
}

/* --- MANDATORY SPACING AND ALIGNMENT --- */
.section:not(:last-child) {
  margin-bottom: 60px;
}
.card-container .card,
.feature-grid > div,
.team-list > div,
.story-teasers > div,
.route-list > div,
.testimonial-card,
.faq-item {
  margin-bottom: 20px;
}

/* --- ARTISTIC FONTS (Fallbacks & Creative headers) --- */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local('Montserrat'), url('https://fonts.gstatic.com/s/montserrat/v25/JTUQjIg1_i6t8kCHKm459WxHqw.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), url('https://fonts.gstatic.com/s/opensans/v34/mem8YaGs126MiZpBA-UFVZ0e.woff2') format('woff2');
  font-display: swap;
}

/* --- END OF STYLE.CSS --- */
