/* RESET & BASE TYPOGRAPHY ------------------------------ */
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;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #183254;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  padding-bottom: 80px; /* For cookie banner on mobile */
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 24px;
}
li {
  margin-bottom: 8px;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Oswald', Arial, sans-serif;
  color: #183254;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.5rem; font-weight: 600; margin-bottom: 16px;
}
h2 {
  font-size: 2rem; font-weight: 500; margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem; font-weight: 500; margin-bottom: 10px;
}
p, .subheadline {
  margin-bottom: 18px;
}
sub, sup {
  font-size: 75%;
}
a {
  color: #183254;
  text-decoration: none;
  transition: color 0.2s;
  outline: none;
}
a:focus, a:hover {
  color: #A4DDEE;
  text-decoration-skip: ink;
}
:focus {
  outline: 2px solid #A4DDEE;
  outline-offset: 2px;
}
strong {
  font-weight: 600;
}

/* BRAND COLOR & UTILITY CLASSES ----------------------- */
.bg-primary { background: #183254; color: #fff; }
.bg-secondary { background: #A4DDEE; color: #183254; }
.bg-accent { background: #E6E6E6; }
.text-primary { color: #183254; }
.text-secondary { color: #A4DDEE; }
.text-accent { color: #E6E6E6; }

/* CONTAINER & LAYOUT --------------------------------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}

/* SECTIONS, CARDS & FLEXBOX PATTERNS ----------------- */
.section, .hero, .features, .about-preview, .vehicles-intro, .cta, .testimonials-preview, .testimonials, .user-stories, .confirmation, .about, .team, .why-choose-us, .services, .process, .requirements, .legal, .contact, .map {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(24,50,84,0.05);
}
@media (max-width: 768px){
  .section, .hero, .features, .about-preview, .vehicles-intro, .cta, .testimonials-preview, .testimonials, .user-stories, .confirmation, .about, .team, .why-choose-us, .services, .process, .requirements, .legal, .contact, .map {
    padding: 28px 6px;
    margin-bottom: 34px;
    border-radius: 10px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(24,50,84,0.07);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.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: 18px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(24,50,84,0.07);
  color: #183254;
  min-width: 0; /* for flex-wrap */
}
.testimonial-card strong {
  margin-bottom: 8px;
}
.rating {
  font-size: 1.2em; color: #A4DDEE; letter-spacing: 1px; margin-top: 2px;
}
.feature-item, .feature, .service-cards > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 rgba(24,50,84,0.06);
  padding: 22px 18px;
  min-width: 220px;
  margin-bottom: 20px;
}
.icon-grid, .icons {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 8px;
}
@media (max-width: 768px){
  .icon-grid, .icons { gap: 14px; }
  .feature-item, .feature, .service-cards > div { min-width: 0; }
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.story-snippet {
  background: #E6E6E6;
  border-radius: 8px;
  padding: 18px 14px;
  margin-bottom: 20px;
  color: #183254;
}
@media (max-width: 768px){
  .card-container, .content-grid, .service-cards { flex-direction: column; gap: 18px; }
}

/* HERO SECTION ---------------------------------- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #E6E6E6;
  box-shadow: none;
  margin-bottom: 48px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #183254;
}
.hero .subheadline {
  font-size: 1.125rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #5A6D89;
  font-weight: 400;
  margin-bottom: 28px;
}

/* HEADER & MAIN NAVEIGATION ---------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(24,50,84,0.06);
  margin-bottom: 12px;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 16px;
  padding-top: 12px; padding-bottom: 12px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
header nav a {
  color: #183254;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  padding: 5px 4px;
  letter-spacing: 0.03em;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-bottom .2s;
}
header nav a:hover, header nav a:focus {
  color: #A4DDEE;
  border-bottom: 2px solid #A4DDEE;
}
.button-primary, .button-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  border: none;
  outline: none;
  min-width: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.08rem;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  padding: 10px 28px;
  margin-left: 12px;
  transition: background .22s, color .22s, box-shadow .22s, border .18s;
}
.button-primary {
  background: #183254;
  color: #fff;
  box-shadow: 0 1px 6px 0 rgba(24,50,84,0.10);
}
.button-secondary {
  background: transparent;
  color: #183254;
  border: 2px solid #A4DDEE;
  box-shadow: none;
}
.button-primary:hover, .button-primary:focus {
  background: #A4DDEE;
  color: #183254;
  box-shadow: 0 2px 12px 0 rgba(24,50,84,0.14);
}
.button-secondary:hover, .button-secondary:focus {
  background: #A4DDEE;
  color: #183254;
}
.button-primary:active, .button-secondary:active {
  filter: brightness(0.95);
}

/* Hamburger Mobile Navigation --------------------------- */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: #183254;
  cursor: pointer;
  z-index: 130;
  margin-left: 18px;
  transition: color .18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #A4DDEE;
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(24,50,84, 0.97);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(0.22,0.68,0.67,1.3);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  color: #fff;
  border: none;
  align-self: flex-end;
  margin: 22px 24px 8px 0;
  cursor: pointer;
  transition: color .2s;
  z-index: 220;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #A4DDEE;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-top: 38px;
  padding-left: 36px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 9px 0;
  transition: color .18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #A4DDEE;
}
@media (max-width: 1024px){
  header nav {
    display: none;
  }
  .button-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px){
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}
/* Hide mobile menu by default. */
.mobile-menu { display: none; }
.mobile-menu.open { display: flex; }

/* FOOTER ----------------------------------- */
footer {
  width: 100%;
  background: #fff;
  box-shadow: 0 -1px 12px 0 rgba(24,50,84,0.03);
  padding: 36px 0 16px 0;
}
footer .container {
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-bottom: 8px;
}
footer nav a {
  color: #183254;
  font-size: 1rem;
  font-family: 'Oswald', Arial, sans-serif;
  padding: 3px 0;
  border-bottom: 2px solid transparent;
  transition: color .18s, border-bottom .18s;
}
footer nav a:hover,footer nav a:focus{ color: #A4DDEE; border-bottom: 2px solid #A4DDEE; }
footer .footer-contact {
  display: flex;
  flex-direction: row;
  gap: 34px;
  flex-wrap: wrap;
  font-size: 0.98rem;
  color: #183254;
  margin-bottom: 8px;
  margin-top: 6px;
}
footer .footer-contact a { color: #183254; }
footer small {
  display: block;
  color: #B9B9B9;
  font-size: 0.93rem;
}
@media (max-width: 800px){
  footer .footer-contact {
    flex-direction: column;
    gap: 8px;
  }
  footer .container { gap: 12px; }
}

/* COOKIE CONSENT BANNER & MODAL ------------------------- */
#cookie-consent-banner, .cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #183254;
  box-shadow: 0 -2px 18px 0 rgba(24,50,84,0.09);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 28px;
  z-index: 3000;
  font-size: 1rem;
  transition: transform 0.35s, opacity 0.22s;
}
#cookie-consent-banner.hide, .cookie-consent-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner-message{
  flex: 1 1 auto;
  max-width: 525px;
}
.cookie-consent-buttons {
  display: flex;
  gap: 15px;
}
.cookie-consent-btn {
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  padding: 8px 20px;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
  margin: 0;
}
.cookie-consent-btn.accept {
  background: #183254;
  color: #fff;
}
.cookie-consent-btn.accept:hover,.cookie-consent-btn.accept:focus {
  background: #A4DDEE;
  color: #183254;
}
.cookie-consent-btn.reject {
  background: transparent;
  color: #183254;
  border: 2px solid #A4DDEE;
}
.cookie-consent-btn.reject:hover,.cookie-consent-btn.reject:focus {
  background: #A4DDEE;
  color: #183254;
}
.cookie-consent-btn.settings {
  background: #E6E6E6;
  color: #183254;
}
.cookie-consent-btn.settings:hover,.cookie-consent-btn.settings:focus {
  background: #A4DDEE;
  color: #183254;
}
@media(max-width:700px){
  #cookie-consent-banner,.cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 12px;
    font-size: 0.97rem;
  }
  .cookie-consent-buttons{ gap: 10px; }
}

.cookie-modal-overlay {
  position: fixed;
  top:0;left:0;right:0;bottom:0;
  background: rgba(24,50,84,0.66);
  z-index: 3050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  max-width: 430px;
  width: 98vw;
  border-radius: 12px;
  padding: 36px 30px 22px 30px;
  box-shadow: 0 3px 26px 0 rgba(24,50,84,0.19);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 0;
  transform: translateY(30px) scale(0.99);
  transition: opacity .16s, transform .22s;
}
.cookie-modal-overlay.open .cookie-modal {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.cookie-modal h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #183254;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: #A4DDEE;
}
.category-label {
  font-size: 1.04rem;
  color: #183254;
}
.category-description {
  font-size: 0.95rem;
  color: #595959;
}
.cookie-modal-close {
  position: absolute;
  right: 15px; top: 12px;
  font-size: 1.7rem;
  background: transparent;
  color: #183254;
  border: none;
  cursor: pointer;
  transition: color .19s;
}
.cookie-modal-close:hover,.cookie-modal-close:focus{color: #A4DDEE;}
.cookie-modal-actions {
  display: flex;
  gap: 14px; margin-top: 8px;
}
@media (max-width: 500px){
  .cookie-modal { padding: 22px 6vw 18px 6vw; }
}

/* FORMS, CONTACT & FAQ ------------------------------- */
.text-section {
  margin-bottom: 16px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #E6E6E6;
  border-radius: 10px;
  padding: 18px 12px;
}
.contact-details img {
  width: 18px;
  margin-right: 7px;
  vertical-align: middle;
  opacity: 0.83;
}
.location-map {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #F7FBFD;
  border-radius: 9px;
  gap: 22px;
  padding: 20px 16px;
  margin-bottom: 12px;
}
@media (max-width: 700px){.location-map{flex-direction:column;gap:12px;padding:12px 8px;}}

/* LEGAL (data privacy, GDPR) ------------------------- */
.legal ul {
  padding-left: 22px; margin-bottom: 22px;
}
.legal h1, .legal h2 {
  margin-bottom: 15px;
}
.legal h2 {
  font-size: 1.3rem;
  color: #183254;
  margin-top: 22px;
}

/* CTA (Call To Action) Section ----------------------- */
.cta {
  background: #A4DDEE;
  color: #183254;
  border-radius: 13px;
  box-shadow: 0 2px 10px 0 rgba(164,221,238,0.10);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 40px;
}
.cta h2 {
  margin-bottom: 18px;
}
.cta .button-primary, .cta .button-secondary {
  margin: 0 12px 0 0;
}
@media (max-width:620px){ .cta .content-wrapper{ align-items:stretch; } }

/* TEAM SECTION ----------------------------------------- */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 10px;
}
.team-grid > div {
  background: #E6E6E6;
  border-radius: 10px;
  padding: 16px 18px;
  min-width: 160px;
  box-shadow: 0 1px 8px 0 rgba(24,50,84,0.04);
  font-size: 1.07rem;
}
@media (max-width: 650px){
  .team-grid{flex-direction:column;gap:14px;}
  .team-grid > div{min-width:0;}
}

/* PROCESS / STEPS -------------------------------------- */
.visual-steps {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 18px;
}
.visual-steps span {
  padding: 5px 14px;
  background: #A4DDEE;
  color: #183254;
  border-radius: 8px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
}
@media(max-width:500px){.visual-steps{gap:7px;font-size:.96rem;}}

/* FAQ / REQUIREMENTS ------------------------------------ */
dt {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  margin-top: 12px;
  margin-bottom: 4px;
}
dd {
  margin-bottom: 8px;
  color: #5A6D89;
}

/* Misc — Ratings, Scroll, Animations, Disabled, etc. ---- */
::-webkit-scrollbar {
  width: 8px; background: #F7FBFD;
}
::-webkit-scrollbar-thumb {
  background: #A4DDEE; border-radius: 8px;
}
:disabled, [aria-disabled='true'] {
  opacity: 0.61;
  cursor: not-allowed;
}
/* Micro-interaction for cards & buttons */
.card, .feature-item, .feature, .service-cards > div, .team-grid > div {
  transition: box-shadow .19s, transform .19s;
}
.card:hover, .feature-item:hover, .feature:hover, .service-cards>div:hover, .team-grid>div:hover {
  box-shadow: 0 6px 18px 0 rgba(24,50,84,0.13);
  transform: translateY(-2px) scale(1.012);
}
.button-primary, .button-secondary, .cookie-consent-btn {
  box-shadow: 0 1px 5px 0 rgba(24,50,84,0.08);
}
.button-primary:active, .button-secondary:active, .cookie-consent-btn:active {
  box-shadow: none;
}

/* Responsive Font Sizes ------------------------------ */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .hero .subheadline { font-size: 1rem; }
  .testimonial-card, .feature-item, .feature, .service-cards > div {font-size: .99rem;}
}

/* Enhance visual hierarchy */
h1, h2, h3 {
  line-height: 1.2;
}

/* Spacing for all content blocks */
section + section, .content-wrapper > * + * {
  margin-top: 20px;
}

/* Prevent accidental overlap of content */
main, .content-wrapper, .section, .cta, .card-container, .testimonial-card, .feature-grid,
.team-grid, .service-cards, .card, .story-snippet, .contact-details, .visual-steps {
  min-width: 0;
  max-width: 100%;
}

/* GAP Fixes for edge-case spacing */
.feature-grid, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.feature {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 rgba(24,50,84,0.05);
  padding: 22px 18px;
}
@media (max-width: 750px){.feature-grid{flex-direction:column;gap:13px;}}

/* Miscellaneous Utility Classes ---------------------------- */
.mb-0{margin-bottom:0 !important;} .mt-0{margin-top:0 !important;}

/* Hide visually-only (for screen readers) */
.sr-only { position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden; }

