/* 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, 
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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #FAFAFD;
  color: #191c29;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #0B2776;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F2A900;
}
ul, ol {
  padding-left: 1.25em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 8px;
}

/* COLOR VARIABLES */
:root {
  --brand-primary: #0B2776;
  --brand-secondary: #F2A900;
  --brand-accent: #F9F9FC;
  --brand-dark: #191c29;
  --brand-muted: #E7E8F0;
  --testimonial-bg: #fffbe7;
  --card-shadow: 0 1px 6px 0 rgba(11,39,118,0.09);
}

/* TYPOGRAPHY */
h1, .hero h1, .thanks h1 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--brand-primary);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-secondary);
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  line-height: 1.22;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 10px;
}
p, .text-section ul, .text-section li {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--brand-dark);
}
strong {
  color: var(--brand-primary);
}

/* CONTAINER, SECTIONS, WRAPPERS */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.section,
#features,
#services,
#about-preview,
#service-scope,
#fleet-features,
#safety-eco,
#positions,
#benefits,
#testimonials,
#contact-details,
#location,
.legal,
.cta-block,
.hero,
.thanks {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-container,
.feature-grid,
.service-list,
.service-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card-container > *,
.feature-grid > *,
.service-list > *,
.service-categories > * {
  flex: 1 1 260px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--brand-accent);
  border-radius: 18px;
  box-shadow: var(--card-shadow);
  padding: 26px 22px;
  transition: box-shadow 0.24s, transform 0.16s;
  min-width: 260px;
}
.card:hover,
.card:focus {
  box-shadow: 0 4px 18px 0 rgba(11,39,118,0.13);
  transform: translateY(-3px) scale(1.012);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 20px 24px;
  background: var(--testimonial-bg);
  border-radius: 18px;
  margin-bottom: 20px;
  min-width: 240px;
  box-shadow: 0 2px 8px 0 rgba(11,39,118,0.08);
  transition: box-shadow .18s, transform .14s;
  border: 1px solid #fbe9bc;
}
.testimonial-card:hover,
.testimonial-card:focus {
  box-shadow: 0 6px 26px 0 rgba(242,169,0,0.10);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card p {
  color: var(--brand-dark);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.36;
}
.testimonial-meta {
  color: var(--brand-primary);
  font-weight: bold;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  margin-top: 8px;
}

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

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 18px 0;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(140deg, #F2A900 0%, #FFEDBE 80%, #F9F9FC 100%);
  border-radius: 0 0 40px 0;
  box-shadow: 0 6px 18px -9px rgba(11,39,118,.10);
  margin-bottom: 60px;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 720px;
  gap: 12px;
}
@media (max-width: 768px) {
  .hero { border-radius: 0 0 20px 0; padding: 32px 10px; }
  .hero .content-wrapper { align-items: flex-start; }
}

/* CTAs & BUTTONS */
.cta, .cta.primary, .cta.secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 13px 32px;
  border-radius: 32px;
  border: 0;
  margin-top: 12px;
  background: var(--brand-primary);
  color: #fff;
  letter-spacing: .07em;
  box-shadow: 0 1px 3px 0 rgba(11,39,118,0.11);
  cursor: pointer;
  transition: background 0.18s,color 0.18s,transform 0.13s,box-shadow 0.21s;
  outline: none;
}
.cta.primary {
  background: var(--brand-primary);
  color: #fff;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--brand-secondary);
  color: #0B2776;
  box-shadow: 0 4px 18px 0 rgba(242,169,0,0.17);
  transform: translateY(-2px) scale(1.03);
}
.cta.secondary {
  background: #fff;
  color: var(--brand-primary);
  border: 2px solid var(--brand-secondary);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--brand-secondary);
  color: #0B2776;
  border-color: var(--brand-primary);
}

button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  cursor: pointer;
  transition: color .2s;
}
button:focus-visible { outline: 2px dashed var(--brand-primary); outline-offset: 2px; }

/* MAIN NAVIGATION */
header {
  position: relative;
  z-index: 50;
  background: #fff;
  box-shadow: 0 2px 14px -8px rgba(11,39,118,0.07);
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 0 12px;
  min-height: 68px;
}
.main-nav img {
  height: 36px;
  margin-right: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--brand-primary);
  font-size: 1.07rem;
  border-radius: 24px;
  padding: 7px 18px;
  transition: background .15s, color .16s;
}
.main-nav a.cta {
  margin-left: 8px;
  padding: 10px 24px;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}

/* Hide mobile toggles on desktop */
.mobile-menu-toggle {
  display: none;
}
/* MOBILE NAVIGATION */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    top: 18px;
    right: 22px;
    z-index: 201;
    background: var(--brand-secondary);
    color: var(--brand-primary);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 2px 10px 0 rgba(11,39,118,0.05);
    transition: background 0.18s, color 0.18s;
    border: none;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #ffdd61;
    color: #0B2776;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(17,23,44,0.92);
  z-index: 1020;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.64,0.03,0.29,0.97);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 24px 34px 8px 0;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px 0 rgba(242,169,0,0.13);
  border: none;
  z-index: 1021;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fffbe7;
  color: #0B2776;
}
.mobile-nav {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 38px 0 42px;
  gap: 18px;
}
.mobile-nav a {
  display: block;
  width: 100%;
  padding: 20px 0 9px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.22rem;
  font-weight: 600;
  border-radius: 10px;
  transition: color .14s, background .12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-secondary);
  background: rgba(242,169,0,0.11);
}

@media (max-width: 500px) {
  .mobile-nav {
    padding-left: 18px;
    padding-right: 18px;
    gap: 13px;
  }
  .mobile-menu-close {
    margin: 15px 11px 3px 0;
    width: 44px; height: 44px;
  }
}

/* LAYOUT FLEX RULES */
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px; 
  align-items: flex-start;
  justify-content: space-between;
  padding: 36px 0 9px 0;
}
.branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-direction: column;
  margin-top: 9px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--brand-primary);
}
.contact-info div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}
.contact-info img {
  width: 18px; height: 18px;
}

@media (min-width: 768px) {
  .container { padding: 0 40px; }
  .footer-wrapper { flex-direction: row; align-items: flex-start; gap: 32px; }
  .footer-nav { flex-direction: row; margin-top: 0; }
}
@media (max-width: 768px) {
  .footer-wrapper { flex-direction: column; align-items: flex-start; gap: 24px; padding: 30px 0 7px 0; }
  .section, .hero, .cta-block { padding: 30px 9px; margin-bottom: 36px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
}

footer {
  background: #FFF;
  border-top: 6px solid var(--brand-secondary);
  box-shadow: 0px -1px 8px 0 rgba(11,39,118,0.04);
  margin-top: 40px;
  z-index: 10;
}

/* ARTISTIC/CREATIVE ELEMENTS */
section {
  position: relative;
}
section:before {
  content: '';
  display: block;
  position: absolute;
  top: -18px;
  left: 0;
  width: 80px;
  height: 5px;
  border-radius: 3px;
  background: var(--brand-secondary);
  opacity: .7;
}
section.cta-block:before { background: var(--brand-primary); opacity: .15; width: 120px; left: 2vw; }

@media (max-width: 700px) {
  section:before { display: none; }
}

.card img, .feature-grid img, .service-list img, .service-categories img {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  filter: drop-shadow(0 2px 7px #ffeda8);
}

/* LEGAL PAGES */
.legal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 10px 0 rgba(11,39,118,0.06);
  margin-bottom: 60px;
}
.legal h1 {
  color: var(--brand-primary);
}

.thanks {
  background: #f6fff3;
  border-radius: 32px;
  box-shadow: 0 0px 16px 1px rgba(11,39,118,0.07);
  padding: 48px 18px;
  margin-bottom: 80px;
  text-align: center;
}
.thanks .content-wrapper {
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.thanks ul {
  margin-bottom: 10px;
}

/* LISTS */
ul, ol {
  margin-left: 16px;
}
.text-section ul {
  margin-bottom: 12px;
}
.text-section li {
  margin-bottom: 7px;
}
.text-section a { color: var(--brand-secondary); }
.text-section a:hover { color: var(--brand-primary); }

/* SPACING FOR FLEX ITEMS (CRITICAL REQUIREMENT) */
.card,
.feature-grid > *,
.service-list > *,
.service-categories > *,
.testimonial-card {
  margin-right: 0;
  margin-bottom: 20px;
}
.card:last-child,
.feature-grid > *:last-child,
.service-list > *:last-child,
.service-categories > *:last-child,
.testimonial-card:last-child {
  margin-bottom: 0;
}

/* TABLES (for terms & policies if needed) */
table {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  margin-bottom: 20px;
}
th, td {
  padding: 12px 10px;
  border-bottom: 1px solid #f1e6bd;
  color: var(--brand-dark);
}
th {
  background: var(--brand-secondary);
  color: #0B2776;
  font-weight: bold;
}

/* RESPONSIVE LAYOUT (CRITICAL FLEXBOX RULES) */
@media (max-width: 968px) {
  .feature-grid, .service-list, .service-categories, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .text-image-section, .content-grid, .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .contact-info { font-size: 0.99rem; }
}
@media (max-width: 550px) {
  .container { padding: 0 6px; }
}

/* INTERACTIVE TRANSITIONS */
.card, .testimonial-card, .cta, .cta.primary, .cta.secondary, .main-nav a, .mobile-menu-toggle, .mobile-menu-close {
  transition: box-shadow 0.19s, transform 0.15s, color 0.12s, background 0.15s;
}

/* MICRO-INTERACTIONS */
.card:active, .cta:active, .mobile-menu-toggle:active, .mobile-menu-close:active {
  transform: scale(.98);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  background: #fffbe7;
  color: var(--brand-dark);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 22px 20px;
  border-top: 2px solid var(--brand-secondary);
  box-shadow: 0px -4px 14px 0 rgba(11,39,118,0.11);
  z-index: 8000;
  font-size: 1rem;
  transform: translateY(100%);
  opacity: 0; pointer-events: none;
  transition: all 0.35s cubic-bezier(0.65,0.05,0.36,1);
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1; pointer-events: auto;
}
.cookie-banner__text {
  flex: 1 1 220px;
}
.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 8px 24px;
  border-radius: 24px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background .14s, color .13s;
}
.cookie-btn.accept {
  background: var(--brand-primary);
  color: #fff;
}
.cookie-btn.accept:hover {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.cookie-btn.reject {
  background: #fff;
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
}
.cookie-btn.reject:hover {
  background: #ffedd7;
}
.cookie-btn.settings {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.cookie-btn.settings:hover {
  background: var(--brand-primary);
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal__backdrop {
  position: fixed; top: 0; left: 0; right:0; bottom:0;
  background: rgba(17,23,44,0.72);
  z-index: 8200;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal__backdrop.show {
  display: flex;
  animation: fadeInModal 0.23s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  padding: 38px 24px 24px 24px;
  max-width: 400px;
  width: 93vw;
  margin: 0 auto;
  box-shadow: 0 4px 36px 0 rgba(11,39,118,0.18);
  z-index: 8500;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  animation: modalSlideIn 0.24s  cubic-bezier(.31,1.48,.56,1.16);
}
@keyframes modalSlideIn {
  from { transform: translateY(48px) scale(.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1;}
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: var(--brand-primary);
  margin-top: 0;
}
.cookie-category {
  margin-bottom: 17px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-primary);
}
.cookie-switch {
  width: 38px;
  height: 22px;
  position: relative;
  display: inline-block;
}
.cookie-switch input[type="checkbox"] {
  width: 0;
  height: 0;
  opacity: 0;
}
.cookie-slider {
  position: absolute;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #eee;
  border-radius: 22px;
  transition: background .17s;
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--brand-secondary);
}
.cookie-slider:before {
  content: '';
  position: absolute;
  left: 3px;
  bottom: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: transform .18s;
  box-shadow: 0 1px 4px 0 rgba(11,39,118,0.06);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(16px);
  background: var(--brand-primary);
}
.cookie-modal .actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  font-size: 0.98rem;
  padding: 7px 18px;
}
.cookie-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--brand-primary);
  cursor: pointer;
  transition: color .15s;
  z-index: 8510;
}
.cookie-modal__close:hover {
  color: var(--brand-secondary);
}

/* Artistic fonts for major headings (Creative style) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');

h1, .hero h1, .thanks h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: none;
}

h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .02em;
}

h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .01em;
}

.cta, .cta.primary, .cta.secondary, .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: none;
  font-weight: 600;
  letter-spacing: .06em;
}

/* Artistic icon highlight for creative effect */
.card img, .feature-grid img {
  border-radius: 12px;
  background: #fff6da;
  box-shadow: 0 2px 9px 0 rgba(242,169,0,.06);
  padding: 7px;
}

/* Artistic underlines for H2s */
h2 {
  position: relative;
  display: inline-block;
}
h2:after {
  content: '';
  display: block;
  width: 44px;
  height: 6px;
  border-radius: 3px;
  background: var(--brand-secondary);
  margin-top: 6px;
  opacity: 0.55;
  position: relative;
}

/* Focus-visible accessibility */
:focus-visible {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 2px;
}

/******************************************************/
/*                END OF CSS FILE                    */
/******************************************************/
