/* =========================================
   CSS Reset & Normalize (Mobile First)
========================================== */
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; margin: 0; padding: 0; }

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background: #F4F7FA;
  color: #183054;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; border: 0; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', Arial, sans-serif; font-weight: 600; margin-bottom: .6em; color: #183054; }
h1 { font-size: 2.25rem; margin-bottom: 0.5em; }
h2 { font-size: 1.6rem; margin-bottom: 0.4em; }
h3 { font-size: 1.2rem; margin-bottom: .3em; }
p { margin-bottom: 1.1em; }
address { font-style: normal; color: #183054; font-size: 1rem; margin-bottom: 1em; }

/* Typography hierarchy */
.text-section p, .text-section li { font-size: 1.05rem; }

/* =========================================
   Layout Containers & Spacing
========================================== */
.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section,
.fleet-list-section,
.fleet-features,
.location-details,
.location-benefits,
.legal-section,
.thank-you-section,
.contact-section,
.contact-cta,
.faq-section,
.faq-contact {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 24px rgba(24,48,84,0.06);
}

@media (max-width: 900px) {
  .section, .fleet-list-section, .fleet-features,
  .location-details, .location-benefits, .legal-section,
  .thank-you-section, .contact-section, .contact-cta,
  .faq-section, .faq-contact {
    padding: 28px 10px;
    margin-bottom: 38px;
  }
  .container {
    padding: 0 8px;
  }
}

/* Flex Containers for Cards & Content */
.card-container,
.feature-grid,
.service-list,
.service-grid,
.fleet-list,
.benefits-summary ul,
.team-section ul,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .card-container, .feature-grid, .service-list, .service-grid,
  .fleet-list, .benefits-summary ul, .team-section ul, .content-grid {
    gap: 16px;
    flex-direction: column;
  }
}

.card {
  position: relative;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(24,48,84,0.07);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 5px 20px rgba(24,48,84,0.14);
  transform: translateY(-3px) scale(1.015);
}

/* Grid Style for Content */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* Text-Image Section */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 26px;
  border-radius: 13px;
  background: #f4f7fa;
  color: #183054;
  box-shadow: 0 2px 10px rgba(24,48,84, 0.08);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.13s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 28px rgba(24,48,84,0.13);
  transform: translateY(-2px);
}
.testimonial-card p {
  font-size: 1.08rem;
  font-style: italic;
  color: #183054;
}
.testimonial-card span {
  font-size: .97rem;
  color: #547099;
  font-style: normal;
  font-family: 'Montserrat', Arial, sans-serif;
}
.rating-summary {
  margin-top: 10px;
  font-weight: 600;
  color: #183054;
  background: #e1e9f2;
  display: inline-block;
  border-radius: 8px;
  padding: 6px 16px;
}

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

/*******************************
   Header & Navigation
*******************************/
header {
  background: #fff;
  border-bottom: 1px solid #e1e1e1;
  position: relative;
  z-index: 1010;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 18px 20px;
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
}
nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #183054;
  padding: 6px 0;
  position: relative;
  transition: color 0.18s;
}
nav a:after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: #8AB6D6;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.2s;
}
nav a:hover, nav a:focus { color: #8AB6D6; }
nav a:hover:after, nav a:focus:after { opacity: 0.7; }

.cta-btn {
  background: #183054;
  color: #fff;
  border-radius: 6px;
  padding: 12px 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.03rem;
  letter-spacing: 0.04em;
  border: none;
  box-shadow: 0 4px 18px rgba(24,48,84,0.10);
  cursor: pointer;
  transition: background 0.17s, box-shadow 0.17s, transform 0.11s;
  margin-left: 34px;
  text-align: center;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #8AB6D6;
  color: #183054;
  box-shadow: 0 7px 34px rgba(24,48,84,0.17);
  transform: translateY(-2px) scale(1.03);
}
.cta-btn.mini {
  padding: 9px 24px;
  font-size: 0.95rem;
  margin-left: 0;
}

/******************************
   Mobile Burger Menu
*******************************/
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #183054;
  font-size: 2.2rem;
  margin-left: 18px;
  cursor: pointer;
  z-index: 1015;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus { outline: 2px solid #8AB6D6; }
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(24, 48, 84, 0.93);
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.74,.18,.22,.98);
  z-index: 2002;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  margin: 26px 38px 8px 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 100;
}
.mobile-menu-close:focus { outline: 2px solid #8AB6D6; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-right: 38px;
  margin-top: 30px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #fff;
  padding: 12px 0 14px 0;
  transition: color 0.18s;
  border-radius: 4px;
  font-weight: 500;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #8AB6D6;
  color: #183054;
}

@media (max-width: 900px) {
  nav { display: none; }
  .cta-btn { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}

/*******************************
   Hero Section & Main Content
*******************************/
.hero {
  background: linear-gradient(120deg,#F4F7FA 70%,#8AB6D6 110%);
  border-radius: 0 0 32px 32px;
  padding: 64px 0 42px 0;
  margin-bottom: 40px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  color: #183054;
  font-size: 2.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 14px;
}
.hero p {
  color: #183054;
  font-size: 1.19rem;
  margin-bottom: 21px;
}

@media (max-width: 700px) {
  .hero { padding: 40px 0 22px 0; }
  .hero h1 { font-size: 1.38rem; }
}

/*********************************
    Features Section & Grids
**********************************/
.features .feature-grid, .services-overview .service-list, .services-overview .service-grid, .fleet-list-section .fleet-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid li, .service-list li, .service-grid li, .fleet-list li {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(24,48,84,0.07);
  padding: 32px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 12px;
  min-width: 210px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.feature-grid li:hover, .service-list li:hover, .service-grid li:hover, .fleet-list li:hover {
  box-shadow: 0 5px 20px rgba(24,48,84,0.15);
  transform: translateY(-3px) scale(1.015);
}
.feature-grid img, .service-grid img {
  height: 42px;
  margin-bottom: 10px;
  filter: brightness(0.85);
}
.feature-grid h3, .service-list h3, .service-grid h3, .fleet-list h3 {
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 6px;
  font-weight: 600;
  color: #183054;
}
.feature-grid p, .service-list p, .service-grid p, .fleet-list p {
  font-size: 1rem;
  color: #465373;
}

/***********************************
      About & Team Section
***********************************/
.team-section,
.about-intro {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 24px rgba(24,48,84,0.06);
  margin-bottom: 60px;
  padding: 40px 24px 40px 24px;
}
.team-section ul, .about-intro ul {
  margin-bottom: 14px;
  padding-left: 20px;
}
.team-section ul li, .about-intro ul li {
  list-style: disc inside;
  margin-bottom: 8px;
  line-height: 1.6;
  color: #3D5B80;
  font-size: 1rem;
}

/**********************************
    Process & Step-List Section
**********************************/
.process-flow .step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.process-flow .step-list li {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(24,48,84,0.07);
  padding: 28px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
  min-width: 210px;
}
.process-flow .step-list h3 { margin-bottom: 7px; font-size: 1.09rem; }

/***************************
    Contact Section
****************************/
.contact-section .contact-details,
.contact-snippet address,
.contact-section address {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-section address p, .contact-snippet address p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 7px;
  color: #183054;
}
.contact-section address img, .contact-snippet address img {
  height: 22px;
  width: 22px;
  margin: 0;
}
.contact-snippet .cta-btn, .contact-section .cta-btn, .contact-cta .cta-btn {
  margin-top: 18px;
}

/*************************
    Location Section
*************************/
.location-details .map-placeholder {
  background: #E6EFF8;
  border-radius: 12px;
  padding: 22px 16px 18px 20px;
  margin: 20px 0;
  box-shadow: 0 1px 6px rgba(24,48,84,0.07);
}
.directions ul {
  margin: 10px 0 8px 18px;
}
.directions ul li {
  list-style: disc inside;
  margin-bottom: 7px;
  color: #3D5B80;
}

/**********************
     FAQ Section
***********************/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 10px rgba(24,48,84, 0.08);
  padding: 20px 20px 18px 20px;
  margin-bottom: 7px;
  transition: box-shadow 0.16s, transform 0.13s;
}
.faq-item h2 {
  font-size: 1.13rem;
  color: #183054;
  margin-bottom: 6px;
}
.faq-item p {
  color: #495869;
  font-size: 1rem;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 7px 20px rgba(24,48,84,0.12);
  transform: scale(1.016); 
}

/*************************
    Legal Section/Text
**************************/
.legal-section {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 3px 24px rgba(24,48,84,0.06);
  margin-bottom: 60px;
  padding: 38px 22px 36px 22px;
}
.legal-section ul {
  margin: 10px 0 8px 18px;
}
.legal-section ul li {
  color: #3D5B80;
  font-size: 1rem;
  margin-bottom: 7px;
  list-style: disc inside;
}

/*************************
    Thank-you Section
**************************/
.thank-you-section .text-section {
  margin-bottom: 22px;
}
.thank-you-section h1 {
  color: #183054;
  font-size: 2rem;
  margin-bottom: 18px;
}

/*******************************
         Footer Styles
*******************************/
footer {
  background: #fff;
  border-top: 1px solid #e1e1e1;
  padding: 32px 0 16px 0;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 1em;
  justify-content: center;
}
.footer-menu a {
  color: #547099;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.87;
}
.footer-menu a:hover, .footer-menu a:focus { color: #183054; }
.footer-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 1rem;
  justify-content: center;
  padding-top: 12px;
}
.footer-bottom img {
  height: 31px;
  width: auto;
}
.footer-bottom address { color: #547099; font-size: .98rem; }

/*************************************
   Cookie Consent Banner & Modal
**************************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  color: #183054;
  box-shadow: 0 -2px 24px rgba(24,48,84,0.14);
  padding: 18px 20px 22px 20px;
  z-index: 2100;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  font-size: 1rem;
  opacity: 1;
  transition: transform .38s cubic-bezier(.64,.04,.23,1.1), opacity .28s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 260px;
  color: #183054;
}
.cookie-banner .cookie-actions {
  display: flex; gap: 16px; flex-direction: row;
}
.cookie-btn {
  border: none;
  border-radius: 5px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .99rem;
  font-weight: 600;
  padding: 9px 22px;
  box-shadow: 0 2px 10px rgba(24,48,84,0.08);
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, box-shadow 0.11s;
}
.cookie-btn.accept {
  background: #183054;
  color: #fff;
}
.cookie-btn.reject {
  background: #e1e9f2;
  color: #183054;
}
.cookie-btn.settings {
  background: #8AB6D6;
  color: #183054;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #F4F7FA;
  color: #183054;
  box-shadow: 0 5px 15px rgba(24,48,84,0.10);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus { background: #8AB6D6; color: #183054; }

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(24,48,84,0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2200;
  opacity: 1;
  transition: opacity 0.28s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  color: #183054;
  border-radius: 13px;
  max-width: 410px;
  width: 92vw;
  box-shadow: 0 8px 40px rgba(24,48,84,0.18);
  padding: 36px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popin .28s cubic-bezier(.64,.04,.23,1.1);
}
@keyframes popin {
  0% { transform: scale(.91) translateY(22px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-content h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.26rem;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
  padding: 7px 0;
}
.cookie-category label {
  font-size: 1rem;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 19px;
  border-radius: 10px;
  background: #e1e9f2;
  position: relative;
  outline: none;
  transition: background 0.17s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #8AB6D6;
}
.cookie-toggle:before {
  content: "";
  position: absolute;
  top: 2.5px;
  left: 2px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 1px rgba(24,48,84,0.12);
  transition: left 0.17s;
}
.cookie-toggle:checked:before {
  left: 20px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

/**************************
     Utilities & Helpers
***************************/
@media (max-width: 900px) {
  footer .footer-menu, .footer-bottom { flex-direction: column; align-items: center; gap: 8px; }
}
@media (max-width: 600px) {
  .feature-grid li, .service-list li, .service-grid li, .fleet-list li, .process-flow .step-list li {
    padding: 19px 10px 15px 12px;
  }
  .container { padding: 0 5px; }
  .content-wrapper { gap: 13px; }
  footer { padding: 16px 0 10px 0; }
}

/********************************
  Subtle Animation for Buttons
*********************************/
.cta-btn, .cookie-btn {
  transition: background 0.17s, color 0.17s, box-shadow 0.17s, transform 0.13s;
}

/**********************************
  Miscellaneous
***********************************/
::-webkit-input-placeholder { color: #8e9aa7; opacity:0.87;}
:-moz-placeholder { color: #8e9aa7; opacity:0.87;}
::-moz-placeholder { color: #8e9aa7; opacity:0.87;}
:-ms-input-placeholder { color: #8e9aa7; opacity:0.87;}

/**********************************
         Accessibility
***********************************/
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus {
  outline: 2px solid #8AB6D6;
  outline-offset: 1px;
  z-index: 4;
}

/**********************************
     Hide elements visually
***********************************/
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
