/* --- 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 {
  scroll-behavior: smooth;
  background: #faf6ee;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #382f29;
  background: #F1F5F9;
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  text-decoration: none;
  color: #1A4B88;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F2B705;
}
ul, ol {
  margin-left: 1.6em;
  margin-bottom: 16px;
}

/* VINTAGE RETRO COLOR PALETTE - mottled, characterful */
:root {
  --primary: #1A4B88;
  --secondary: #F1F5F9;
  --accent: #F2B705;
  --bg-paper: #FFFAF2;
  --border: #dac59c;
  --dark: #382f29;
}

/* RETRO PATTERNED BG (subtle) */
body {
  background: var(--secondary) url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="40" height="40" fill="%23FFFAF2"/><circle cx="6" cy="6" r="1" fill="%23f2b705"/><circle cx="34" cy="34" r="1" fill="%231a4b88"/><circle cx="34" cy="6" r="1" fill="%23dac59c"/><circle cx="6" cy="34" r="1" fill="%23dac59c"/></svg>') repeat;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', Georgia, serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  line-height: 1.13;
  text-shadow: 0 2px 0 #ffeeb6;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  text-shadow: 0 1px 0 #f2e4ab;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.125rem;
  margin-bottom: 6px;
}
p, li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
}
strong, b {
  color: var(--primary);
  font-weight: 700;
}
small {
  font-size: 0.925rem;
  color: #6a6158;
}

/* DEFAULT CONTAINERS & LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-paper);
  border-radius: 26px;
  box-shadow: 0 3px 18px 0 rgba(92, 63, 21, 0.08);
  border: 1.5px solid var(--border);
}

/* HERO STYLES */
.hero {
  padding: 0;
  margin-bottom: 48px;
  background: linear-gradient(90deg, #ffefa9 30%, #F1F5F9 100%);
  box-shadow: 0 4px 30px 0 rgba(250, 196, 88, 0.09);
  border-bottom: 2.5px solid var(--accent);
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
  padding: 35px 18px 36px 18px;
}
.hero h1 {
  color: var(--primary);
  text-shadow: 0 2px 0 #fff9d1;
}
.hero p {
  font-size: 1.15rem;
  max-width: 700px;
  color: var(--dark);
  margin-bottom: 22px;
}
.hero .cta {
  margin-top: 8px;
}

/* NAVIGATION HEADER */
header {
  background: var(--primary);
  color: #fff;
  border-bottom: 2px solid var(--border);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  position: relative;
}
header img {
  height: 45px;
}
nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
nav a {
  color: #fff;
  font-weight: 500;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.08rem;
  background: none;
  border-radius: 4px;
  padding: 6px 10px;
  transition: background 0.2s, color 0.2s;
}
nav a.cta {
  background: var(--accent);
  color: var(--primary);
  font-weight: bold;
  border-radius: 18px;
  padding: 8px 24px;
  font-size: 1.12rem;
  margin-left: 12px;
  box-shadow: 0 2px 10px 0 rgba(242, 183, 5, 0.07);
  letter-spacing: 1px;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
}
nav a.cta:hover, nav a.cta:focus {
  background: #ffe59a;
  color: var(--primary);
  box-shadow: 0 2px 16px 0 rgba(242, 183, 5, 0.09);
}
nav a:hover:not(.cta), nav a:focus:not(.cta) {
  background: #102e53;
  color: var(--accent);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #fffbe0;
  font-size: 2.1rem;
  border: 2px solid var(--accent);
  border-radius: 12px;
  width: 48px;
  height: 48px;
  color: var(--primary);
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.1s;
  z-index: 2200;
  cursor: pointer;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #fff4b8;
  box-shadow: 0 2px 10px 0 rgba(250, 196, 88, 0.13);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 340px;
  height: 100vh;
  background: linear-gradient(120deg, #fffbe0 65%, #ffe9be 100%);
  box-shadow: -8px 0 32px rgba(62,20,1,0.15);
  z-index: 3000;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.47,1.64,.41,.8);
  display: flex;
  flex-direction: column;
  padding: 38px 22px 24px 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin-bottom: 20px;
  padding: 6px 14px;
  font-size: 2rem;
  background: #ffe7aa;
  color: #664600;
  border: 1.5px solid var(--accent);
  border-radius: 40% 12px 40% 8px/49% 12px 46% 0;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff2c1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 12px;
}
.mobile-nav a {
  color: #1A4B88;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.22rem;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2B705;
  color: #382f29;
}
@media (max-width: 1023px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none!important;
  }
}

/* MAIN LAYOUT + SPACING PATTERNS */
main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.feature-grid, .service-grid, .vehicle-types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div, .service-grid > div, .vehicle-types-grid > div {
  background: #fffaf2;
  border: 2px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 2px 15px 0 rgba(90, 90, 50, 0.07);
  padding: 30px 22px;
  margin-bottom: 20px;
  min-width: 240px;
  flex: 1 1 260px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, background 0.2s, border-color 0.18s;
  position: relative;
}
.feature-grid > div:hover, .service-grid > div:hover, .vehicle-types-grid > div:hover {
  background: #fff7d6;
  border-color: var(--accent);
  box-shadow: 0 5px 22px 0 rgba(242, 183, 5, 0.18);
}
.feature-grid img, .service-grid img, .vehicle-types-grid img {
  height: 50px;
  width: 50px;
  margin-bottom: 14px;
  filter: drop-shadow(0 3px 8px #f2b70533);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fffaf2;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 14px 0 rgba(90, 90, 50, 0.06);
  margin-bottom: 20px;
  padding: 22px 20px;
  position: relative;
}

.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) {
  .feature-grid, .service-grid, .vehicle-types-grid, .card-container, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div, .service-grid > div, .vehicle-types-grid > div {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}

/* CONTACT INFO FLEX */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  margin: 16px 0 14px 0;
  color: #57422f;
}
.contact-info > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.03rem;
}
.contact-info img {
  height: 22px;
  width: 22px;
  filter: grayscale(60%) contrast(1.1) brightness(0.97);
}

/* TESTIMONIALS */
.testimonial-list, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 24px 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fffde9;
  border: 1.5px solid #ffe09b;
  box-shadow: 0 2px 12px 0 rgba(229, 177, 24, 0.10);
  border-radius: 20px 60px 18px 22px/22px 58px 18px 20px;
  margin-bottom: 20px;
  max-width: 430px;
  width: 100%;
  color: #382f29;
  position: relative;
  transition: box-shadow 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 26px 0 rgba(242, 183, 5, 0.15);
  background: #fff7ba;
}
.testimonial-card p {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.14rem;
  color: #3d3321;
  line-height: 1.5;
}
.testimonial-meta {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #685722;
  margin-top: -8px;
}
@media (max-width: 768px) {
  .testimonial-list, .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
}

/* BUTTONS & CALLS TO ACTION */
.cta, .cta-btn, button, input[type="submit"] {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: bold;
  border: none;
  border-radius: 24px;
  padding: 11px 30px;
  font-size: 1.09rem;
  box-shadow: 0 2px 11px 0 rgba(242, 183, 5, 0.10);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.17s;
  outline: 0;
  margin-bottom: 0;
  margin-top: 10px;
  letter-spacing: 0.6px;
}
.cta:hover, .cta:focus, .cta-btn:hover, .cta-btn:focus, button:hover, button:focus, input[type="submit"]:hover {
  background: #ffe59a;
  color: #382f29;
  box-shadow: 0 4px 25px 0 rgba(242, 183, 5, 0.17);
}

/* FOOTER LAYOUT */
footer {
  background: #fffaf2 url('data:image/svg+xml;utf8,<svg width="40" height="34" viewBox="0 0 40 34" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse cx="20" cy="24" rx="16" ry="3" fill="%23f2b705" fill-opacity=".08"/></svg>') repeat-x bottom;
  border-top: 2px solid var(--border);
  padding-top: 45px;
  margin-top: 38px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.footer-menu {
  display: flex;
  gap: 18px;
}
.footer-menu a {
  color: var(--primary);
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.06rem;
  border-radius: 6px;
  padding: 4px 11px;
  transition: background 0.16s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #fff1bd;
  color: #b89200;
}
.social-links {
  display: flex;
  gap: 14px;
}
.social-links a img {
  width: 28px;
  height: 28px;
  filter: grayscale(30%) sepia(0.14) contrast(1.03);
  transition: filter 0.2s;
}
.social-links a:hover img {
  filter: none;
}
.footer-bottom {
  text-align: center;
  padding: 13px 0 6px 0;
  color: #a28f63;
  font-size: .96rem;
}
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  footer .container {
    padding-bottom: 14px;
  }
}

/* UL/LISTS */
ul, ol {
  margin-bottom: 18px;
  font-family: 'Open Sans', Arial, sans-serif;
}
ul li, ol li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
}
ul li:before {
  content: '';
  display: inline-block;
  background: var(--accent);
  border-radius: 3px;
  width: 13px;
  height: 7px;
  margin-right: 7px;
  position: absolute;
  left: 0;
  top: 8px;
}

/* MODERN RETRO ANIMATIONS */
.cta, .cta-btn, button, input[type="submit"] {
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, letter-spacing 0.11s;
}

@media (max-width: 500px) {
  .container, .hero .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .hero .container {
    min-height: 200px;
    padding-top: 25px;
    padding-bottom: 20px;
  }
  main > section {
    padding: 20px 5px;
  }
}

/* FOCUS VISIBLE */
a:focus-visible, .cta:focus-visible, button:focus-visible {
  outline: 2.5px solid var(--primary);
  outline-offset: 3px;
  z-index: 10;
}

/* MICRO-INTERACTIONS */
.feature-grid > div:after, .service-grid > div:after, .vehicle-types-grid > div:after {
  content: '';
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 36px;
  height: 12px;
  background: rgba(245, 206, 62,0.12);
  border-radius: 60px 52px 40px 42px/22px 8px 8px 18px;
  pointer-events: none;
}


/* -------- COOKIE BANNER & MODAL --------- */
.cookie-banner {
  position: fixed;
  z-index: 9000;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 22px 10px 24px 10px;
  background: linear-gradient(90deg, #fffbe0 85%, #ffe9be 100%);
  border-top: 2.5px solid var(--accent);
  box-shadow: 0 -4px 32px 0 rgba(150,120,18, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 38px;
}
.cookie-banner__text {
  flex: 1 1 220px;
  font-size: 1rem;
  color: #67562a;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cookie-banner__button, .cookie-banner__settings {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: bold;
  font-size: 1.01rem;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 14px;
  padding: 9px 19px;
  margin: 0 3px 0 0;
  cursor: pointer;
  transition: background 0.16s, color 0.13s, box-shadow 0.18s;
}
.cookie-banner__button:hover, .cookie-banner__settings:hover {
  background: #ffe59a;
  color: #382f29;
  box-shadow: 0 4px 18px 0 rgba(242, 183, 5, .14);
}
.cookie-banner__button.reject {
  background: #eee5dc;
  color: #a37200;
}
.cookie-banner__button.reject:hover {
  background: #ffecd6;
  color: #e34900;
}
@media (max-width:768px){
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 5px 16px 10px;
  }
  .cookie-banner__actions {
    gap: 10px;
  }
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 11000;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(27, 36, 54, 0.46);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
}
.cookie-modal {
  background: #fffbe0;
  border-radius: 24px;
  max-width: 430px;
  width: 94vw;
  padding: 35px 28px 26px 28px;
  box-shadow: 0 4px 32px 0 rgba(90,70,15,0.16);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
  font-size: 1.02rem;
}
.cookie-modal h2 {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 1.24rem;
  font-family: 'Roboto Slab', Georgia, serif;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 13px;
}
.cookie-modal .cookie-category strong {
  color: var(--primary);
}
.cookie-modal .cookie-toggle {
  width: 44px;
  height: 20px;
  background: #ffeebb;
  border-radius: 24px;
  border: 1.5px solid #f2b705;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
  appearance: none;
}
.cookie-modal .cookie-toggle:checked {
  background: #f2b705;
}
.cookie-modal .cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 2.5px;
  top: 2.5px;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.2s;
}
.cookie-modal .cookie-toggle:checked:before {
  left: 24px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal .modal-btn {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 600;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 14px;
  padding: 9px 19px;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal .modal-btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.cookie-modal .modal-btn:hover {
  background: #ffe59a;
  color: #382f29;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 18px;
  background: #ffe7aa;
  border: 1.2px solid var(--accent);
  border-radius: 50%;
  font-size: 1.43rem;
  color: #664600;
  width: 34px;
  height: 34px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal .cookie-modal-close:hover {
  background: #fff2c1;
}

/* --- MISC COMPONENTS --- */
.client-logos {
  margin: 20px 0 0 0;
  display: flex;
  gap: 20px;
  align-items: center;
}
.client-logos img {
  height: 48px;
  filter: grayscale(60%) contrast(1.18);
  opacity: 0.82;
  transition: filter 0.2s, opacity 0.11s;
}
.client-logos img:hover { filter:none; opacity:1; }

/* RESPONSIVE HIERARCHY */
@media (max-width: 1099px) {
  h1 { font-size: 2.03rem; }
  h2 { font-size: 1.48rem; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.54rem; }
  h2 { font-size: 1.10rem; }
  h3 { font-size: 1.05rem; }
}

/* RETRO DETAILS */
.section {
  position: relative;
  overflow: visible;
}
.section:before {
  content: '';
  position: absolute;
  left: -32px;
  top: 18px;
  width: 24px;
  height: 24px;
  background: radial-gradient(circle at 10px 10px, #f2b705 80%, rgba(242,183,5,0.64) 99%, transparent 100%);
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}
.section:after {
  content: '';
  position: absolute;
  right: -22px;
  bottom: 12px;
  width: 33px;
  height: 14px;
  background: repeating-linear-gradient(-18deg,#dac59c,#dac59c 2px,transparent 0,transparent 6px);
  opacity: 0.10;
}


/* PRINT AND ACCESSIBILITY */
@media print {
  * {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
  }
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  body { font-size: 11pt;  }
}
