/* =======================================================
   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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #1a1a1a;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
}

/* =======================================================
   VARIABLES (Brand, Monochrome)
   ======================================================= */
:root {
  --primary: #274472;
  --secondary: #1a1a1a;
  --accent: #ededed;
  --white: #fff;
  --gray-100: #f5f5f5;
  --gray-200: #ededed;
  --gray-300: #dbdbdb;
  --gray-400: #b5b5b5;
  --gray-600: #7a7a7a;
  --gray-900: #191919;
  --shadow: 0 4px 24px 0 rgba(0,0,0,0.09);
  --border-radius: 14px;
  --elevation: 0 1.5px 9px 0 rgba(32,32,32,0.13);
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
  --display-font: 'Montserrat', 'Arial', sans-serif;
  --body-font: 'Roboto', 'Arial', sans-serif;
}

/* =======================================================
   LAYOUT & CONTAINER
   ======================================================= */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

main {
  background: var(--white);
  min-height: 60vh;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--gray-100);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  transition: box-shadow var(--transition), background 0.24s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(0,0,0,0.18);
  background: var(--gray-200);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  margin-bottom: 24px;
  border-radius: var(--border-radius);
  background: var(--accent);
  box-shadow: 0 2px 18px 0 rgba(34,34,34,0.09);
  border-left: 4px solid var(--primary);
  color: #222;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* Cards for vehicle listings or offers */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.service-list > div {
  background: var(--gray-100);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  flex: 1 1 240px;
  min-width: 220px;
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--transition), background 0.22s;
}
.service-list > div:hover {
  background: var(--gray-200);
  box-shadow: 0 8px 26px 0 rgba(0,0,0,0.13);
}

/* =======================================================
   TYPOGRAPHY
   ======================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--display-font);
  color: var(--secondary);
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.5em;
}
h2 {
  font-size: 2rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.6em;
}
h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.35em;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 500;
}
p, ul, ol, li, blockquote, address, dl, dd {
  font-family: var(--body-font);
  color: var(--secondary);
  font-size: 1rem;
  line-height: 1.7;
}
p {
  margin-bottom: 0.7em;
}
strong {
  font-weight: 600;
}
blockquote {
  font-family: var(--display-font);
  font-size: 1.2rem;
  font-weight: 500;
  color: #191919;
  border-left: 3px solid var(--primary);
  margin-left: 0;
  padding-left: 16px;
  background: transparent;
}
cite {
  font-style: normal;
  font-size: 1rem;
  color: var(--gray-600);
  display: block;
  margin-top: 2px;
}
dl dt {
  font-weight: 600;
  margin-top: 16px;
}
dl dd {
  margin-left: 0;
  margin-bottom: 12px;
}
address {
  font-style: normal;
  color: var(--secondary);
  font-size: 1rem;
  margin-top: 0.5em;
}

/* Typography utility */
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

/* =======================================================
   HEADER & NAVIGATION
   ======================================================= */
header {
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1010;
  box-shadow: 0 1px 10px 0 rgba(32,32,32,0.04);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  gap: 22px;
}
header img {
  height: 38px;
  min-width: 120px;
  margin-right: 22px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: var(--body-font);
  color: var(--secondary);
  font-size: 1rem;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}
.cta-primary {
  margin-left: 20px;
  padding: 12px 30px;
  border-radius: 24px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--display-font);
  font-size: 1.08rem;
  font-weight: 700;
  box-shadow: var(--elevation);
  border: none;
  cursor: pointer;
  outline: none;
  letter-spacing: 0.02em;
  transition: background var(--transition), box-shadow var(--transition);
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: #1a2943;
  box-shadow: 0 4px 18px 0 rgba(39,68,114,0.19);
  color: var(--white);
}

/* Hamburger Button */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  position: relative;
  z-index: 1202;
  padding: 5px 16px 5px 8px;
  border-radius: 8px;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--gray-200);
}

/* Mobile Menu (nav overlay) */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(32,32,32,0.94);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  pointer-events: all;
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.38s cubic-bezier(.42,0,.19,1);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 30px 28px 20px 0;
  font-size: 2.5rem;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(255,255,255,0.08);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 18px;
  margin-left: 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--display-font);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  padding: 12px 0;
  transition: color var(--transition);
  border-bottom: 2px solid transparent;
  outline: none;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

/* Hide desktop nav on mobile, show burger */
@media (max-width: 950px) {
  .main-nav, .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 950px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =======================================================
   TABLES
   ======================================================= */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2em;
  background: var(--gray-100);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
thead th {
  background: var(--secondary);
  color: var(--white);
  font-family: var(--display-font);
  padding: 18px 12px;
  font-weight: 600;
  font-size: 1.04rem;
}
tbody td {
  padding: 16px 12px;
  font-size: 1rem;
  color: var(--secondary);
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-300);
}
tbody tr:last-child td {
  border-bottom: none;
}
tbody tr:hover {
  background: #f8f8f8;
}

/* =======================================================
   LISTS
   ======================================================= */
ul, ol {
  margin-left: 1.4em;
  margin-bottom: 1.2em;
}
ul li, ol li {
  margin-bottom: 0.7em;
  padding-left: 0.4em;
  font-size: 1rem;
  color: var(--gray-900);
  position: relative;
}
ul li::before {
  content: '\2022';
  color: var(--primary);
  font-size: 1.25em;
  margin-right: 0.5em;
  line-height: 0;
  vertical-align: baseline;
  position: absolute;
  left: -1.35em;
  top: 0.06em;
}
ol li::before {
  content: "";
  display: none;
}

/* =======================================================
   FOOTER
   ======================================================= */
footer {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  padding: 40px 0 0 0;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 30px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  margin-bottom: 12px;
}
footer nav a {
  color: var(--secondary);
  font-family: var(--display-font);
  font-size: 1.03rem;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
  padding: 4px 0;
}
footer nav a:hover {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}
.footer-contact {
  font-size: 0.97rem;
  color: var(--gray-600);
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: var(--body-font);
  margin-top: 6px;
}

/* =======================================================
   BUTTONS
   ======================================================= */
button, .cta-primary {
  font-family: var(--display-font);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 24px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition);
}
button:focus-visible, .cta-primary:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* =======================================================
   ICONS in Contact Section
   ======================================================= */
li img {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
  filter: grayscale(100%) brightness(0.3);
  opacity: 0.88;
}

/* =======================================================
   RESPONSIVE DESIGN (MOBILE-FIRST)
   ======================================================= */
.section, .service-list > div, .testimonial-card, .card {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 768px) {
  .container {
    padding: 0 7px;
  }
  header .container {
    height: 65px;
    padding: 4px 7px !important;
  }
  .section {
    margin-bottom: 32px;
    padding: 26px 5px;
  }
  .service-list,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 17px;
  }
  .service-list > div, .card {
    min-width: 0;
    padding: 24px 12px;
  }
  .testimonial-card {
    padding: 17px 10px;
  }
  .main-nav { display: none; }
  .footer-contact {
    font-size: 0.93rem;
    padding: 0 0 8px 0;
  }
  .text-image-section {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 18px;
  }
  table thead {
    display: none;
  }
  table, table tbody, table tr, table td {
    display: block;
    width: 100%;
  }
  table tr {
    border-bottom: 2px solid var(--gray-300);
    margin-bottom: 18px;
  }
  table td {
    padding: 11px 7px;
    text-align: left;
    position: relative;
  }
}

@media (min-width: 600px) {
  h1 { font-size: 2.85rem; }
  h2 { font-size: 2.20rem; }
  h3 { font-size: 1.25rem; }
}
@media (min-width: 950px) {
  .container {
    padding: 0 28px;
  }
  header .container {
    max-width: 1250px;
    padding: 0 40px;
    height: 90px;
  }
}

/* =======================================================
   MICRO-INTERACTIONS & TRANSITIONS
   ======================================================= */
a, .cta-primary, button, .main-nav a, .mobile-nav a {
  transition: color 0.20s, background 0.2s, box-shadow 0.18s, border-color 0.20s;
}
.service-list > div, .card, .testimonial-card {
  transition: background 0.2s, box-shadow 0.2s;
}
li, th, td {
  transition: color 0.18s;
}

/* =======================================================
   COOKIE BANNER (FIXED BOTTOM)
   ======================================================= */
.cookie-banner {
  position: fixed;
  width: 100vw;
  max-width: 100vw;
  left: 0;
  bottom: 0;
  background: #222;
  color: #fff;
  box-shadow: 0 -2px 18px 0 rgba(0,0,0,0.21);
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 1rem;
  font-family: var(--body-font);
  animation: cb-slide-in 0.45s cubic-bezier(.5,1.5,.2,1) 1;
}
@keyframes cb-slide-in {
  0%{ transform: translateY(100%); }
  100%{ transform: translateY(0); }
}
.cookie-banner p {
  max-width: 430px;
  margin-right: 15px;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
}
.cookie-banner button,
.cookie-banner .btn-cookie {
  border-radius: 22px;
  border: none;
  padding: 9px 24px;
  font-size: 1rem;
  font-family: var(--display-font);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  margin: 0 2px;
}
.cookie-banner .accept {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #11213b;
}
.cookie-banner .reject {
  background: var(--gray-300);
  color: var(--secondary);
}
.cookie-banner .reject:hover {
  background: #d7d7d7;
}
.cookie-banner .settings {
  background: var(--white);
  color: var(--secondary);
  border: 1.5px solid var(--primary);
}
.cookie-banner .settings:hover {
  background: var(--gray-100);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    padding: 17px 4px 22px 4px;
    gap: 16px;
  }
  .cookie-banner p {
    margin-right: 0;
    max-width: 95vw;
  }
}

/* COOKIE MODAL (Settings) */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,32,32,0.79);
  z-index: 3550;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: var(--white);
  color: var(--secondary);
  border-radius: var(--border-radius);
  max-width: 420px;
  width: 95vw;
  padding: 32px 22px 24px 22px;
  box-shadow: 0px 6px 26px rgba(22,22,22,0.15);
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  animation: cookie-modal-pop 0.44s cubic-bezier(.36,2,.22,1);
}
@keyframes cookie-modal-pop {
  0% { opacity: 0; transform: scale(0.95) translateY(32px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h3 {
  font-family: var(--display-font);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 1.05rem;
}
.cookie-modal-category label {
  font-weight: 600;
  color: var(--secondary);
}
.cookie-modal-category .toggle {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.toggle-input {
  display: none;
}
.toggle-switch {
  width: 36px;
  height: 18px;
  border-radius: 15px;
  background: var(--gray-300);
  margin-left: 10px;
  position: relative;
  transition: background 0.18s;
}
.toggle-switch:after {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left 0.22s cubic-bezier(.6,0,.3,1), background 0.13s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.toggle-input:checked + .toggle-switch {
  background: var(--primary);
}
.toggle-input:checked + .toggle-switch:after {
  left: 20px;
  background: #fff;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 11px;
  justify-content: flex-end;
}
.cookie-modal button {
  padding: 10px 28px;
  font-size: 1rem;
  border-radius: 20px;
  font-family: var(--display-font);
}
.cookie-modal .save {
  background: var(--primary);
  color: #fff;
}
.cookie-modal .save:hover {
  background: #192435;
}
.cookie-modal .cancel {
  background: var(--gray-300);
  color: var(--secondary);
}
.cookie-modal .cancel:hover {
  background: #bdbdbd;
}
.cookie-modal .close {
  position: absolute;
  right: 12px;
  top: 10px;
  font-size: 1.35rem;
  background: transparent;
  border: none;
  color: var(--gray-600);
  cursor: pointer;
  border-radius: 10px;
  padding: 4px 6px;
  transition: background 0.16s;
}
.cookie-modal .close:hover, .cookie-modal .close:focus {
  background: var(--gray-200);
}

/* =======================================================
   ACCESSIBILITY FOCUS STYLES
   ======================================================= */
a:focus, button:focus, .cta-primary:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* =======================================================
   SCROLLBAR (subtle monochrome)
   ======================================================= */
::-webkit-scrollbar {
  width: 9px;
  background: var(--gray-200);
}
::-webkit-scrollbar-thumb {
  background: var(--gray-400);
  border-radius: 8px;
}

/* =======================================================
   PRINT
   ======================================================= */
@media print {
  header, .mobile-menu, .cta-primary, .cookie-banner, .cookie-modal-backdrop, footer { display: none !important; }
  .container, main { width: 98vw; margin: 0; padding: 0; }
}
