/* CSS RESET & BASELINE ---------------------- */
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,
main, 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  color: #232836;
  background: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #232836;
  text-decoration: none;
  transition: color 0.2s;
}

/* BRAND VARIABLES ---------------------------- */
:root {
  --brand-primary: #232836;
  --brand-secondary: #DACEBC;
  --brand-accent: #8A631C;
  --brand-white: #fff;
  --gray-light: #EFEFEF;
  --gray-base: #E3E4E8;
  --shadow: 0 2px 16px 0 rgba(35,40,54,0.11);
  --radius: 14px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* TYPOGRAPHY --------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand-primary);
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

p, li, a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
}
p {
  margin-bottom: 16px;
}
.subheadline {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--brand-accent);
  margin-bottom: 26px;
  letter-spacing: 0.03em;
}
.small {
  font-size: 0.9rem;
  color: #555;
}

/* STRUCTURED CONTAINER & FLEX PATTERNS --------*/
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--brand-white);
  margin-bottom: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.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: 24px 28px;
  margin-bottom: 20px;
  background: var(--gray-light);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  border: 2.5px solid var(--brand-accent);
  max-width: 480px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FLEX LAYOUTS FOR GRIDS, LISTS, NAVS ---------*/
.features .content-wrapper,
.values .content-wrapper,
.benefits .content-wrapper,
.inclusions .content-wrapper,
.services .content-wrapper,
.feature_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature_grid {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature_grid li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 18px 22px;
  flex: 1 1 250px;
  font-size: 1.02rem;
  box-shadow: 0 1px 5px 0 rgba(35,40,54,0.08);
  min-width: 210px;
}
.features ul,
.values ul,
.services ul,
.benefits ul,
.inclusions ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
}
.features ul li,
.values ul li,
.services ul li,
.benefits ul li,
.inclusions ul li {
  background: var(--gray-base);
  padding: 18px 22px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1 1 320px;
  font-size: 1rem;
  margin-bottom: 20px;
  min-width: 210px;
  box-shadow: 0 1px 4px 0 rgba(35,40,54,0.05);
}
.process-steps .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.process-steps ol {
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  counter-reset: step;
  list-style: none;
}
.process-steps li {
  flex: 1 1 200px;
  min-width: 180px;
  position: relative;
  background: var(--gray-light);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 24px 18px 24px 52px;
  margin-bottom: 20px;
}
.process-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 24px;
  background: var(--brand-accent);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.vehicles-overview ul,
.values ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  margin: 0;
}
.vehicles-overview ul li {
  flex: 1 1 260px;
  background: var(--gray-base);
  border-radius: var(--radius);
  padding: 24px 28px;
  min-width: 220px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

/* HERO SECTIONS ----------------------------- */
.hero {
  background: var(--brand-primary);
  color: var(--brand-secondary);
  padding: 60px 0 54px;
  border-bottom: 6px solid var(--brand-accent);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  color: var(--brand-secondary);
  margin-bottom: 14px;
}
.hero .subheadline {
  color: #fff;
  font-weight: 400;
}

/* HEADER & NAVIGATION ---------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(35,40,54,0.03);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 12px;
}
.logo-link img {
  height: 46px;
  width: auto;
  margin-right: 16px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-primary);
  letter-spacing: 0.01em;
  padding: 8px 10px;
  position: relative;
  border-radius: 6px;
  transition: background 0.15s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--brand-secondary);
  color: var(--brand-accent);
}
.cta.primary {
  background: var(--brand-accent);
  color: #fff;
  padding: 14px 32px;
  border: none;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 2px 10px 0 rgba(138,99,28,0.09);
  letter-spacing: 0.04em;
  cursor: pointer;
  display: inline-block;
  transition: background 0.15s, transform 0.13s;
  margin-left: 18px;
}
.cta.primary:hover, .cta.primary:focus {
  background: #A77B37;
  transform: translateY(-2px) scale(1.03);
  color: var(--brand-secondary);
}
.cta.secondary {
  background: transparent;
  color: var(--brand-accent);
  border: 2px solid var(--brand-accent);
  border-radius: 10px;
  padding: 12px 24px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: 18px;
  transition: background 0.2s, color 0.18s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--brand-accent);
  color: #fff;
}
.cta.link {
  background: transparent;
  color: var(--brand-accent);
  text-decoration: underline;
  border: none;
  padding: 0;
  font-weight: 600;
  margin-left: 2px;
  font-family: var(--font-display);
}
.cta.link:hover, .cta.link:focus {
  color: var(--brand-primary);
}

/* MOBILE MENU ------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-accent);
  border: none;
  color: #fff;
  font-size: 2.1rem;
  padding: 8px 18px;
  border-radius: 9px;
  cursor: pointer;
  margin-left: 18px;
  transition: box-shadow 0.16s;
  z-index: 1201;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--brand-accent);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(35,40,54, 0.92);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 30px 0 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1232;
  transition: color 0.15s;
}
.mobile-menu-close:hover {
  color: var(--brand-accent);
}
.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding: 52px 34px 34px;
}
.mobile-nav a {
  color: var(--brand-secondary);
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 7px;
  padding: 10px 12px;
  width: 100%;
  display: block;
  transition: background 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-accent);
  color: #fff;
}

/* TABLES ----------------------------------- */
table {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 18px 0 20px 0;
  background: var(--gray-light);
}
th, td {
  text-align: left;
  padding: 14px 18px;
  font-size: 1rem;
}
th {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  font-family: var(--font-display);
  border-bottom: 2.5px solid var(--brand-accent);
}
tr:nth-child(even) td {
  background: #F8F7F2;
}

/* LEGAL/POLICY TEXTS ----------------------- */
.legal .container {
  padding: 40px 0px;
}
.legal h1 {
  font-size: 2.2rem;
  color: var(--brand-accent);
  margin-bottom: 22px;
}
.legal h2 {
  font-size: 1.13rem;
  color: var(--brand-primary);
  margin-top: 34px;
  margin-bottom: 6px;
}
.legal ul {
  padding-left: 24px;
  margin: 10px 0 12px 0;
}

/* FORMS, INPUTS, FIELDS ------------------- */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 11px 14px;
  border: 1.6px solid var(--brand-accent);
  border-radius: 6px;
  margin-bottom: 18px;
  background: #fff;
  transition: border 0.18s;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--brand-primary);
  outline: none;
}
button {
  cursor: pointer;
  font-family: var(--font-display);
}

/* TESTIMONIALS ---------------------- */
.testimonial-card p {
  font-family: var(--font-display);
  font-size: 1.13rem;
  font-weight: 500;
  color: var(--brand-primary);
}
.testimonial-card span {
  font-size: 0.99rem;
  color: #181b23;
  opacity: 0.82;
  font-style: italic;
  text-align: right;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* FOOTER ----------------------------------- */
footer {
  background: #191a22;
  color: #fff;
  padding: 44px 0 28px;
  font-size: 1rem;
  border-top: 5px solid var(--brand-accent);
  margin-top: 64px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
}
.footer-left img {
  height: 38px;
  margin-bottom: 10px;
}
.footer-left p {
  font-size: 1rem;
  color: #D5D3D9;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a {
  color: #eee;
  padding: 2px 0;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: var(--brand-accent);
  text-decoration: underline;
}
.footer-contact p, .footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.99rem;
  color: #eee;
  margin-bottom: 6px;
}
.footer-contact img {
  width: 19px;
  height: 19px;
}

/* CTA SECTIONS ----------------------------- */
section.cta {
  background: var(--brand-primary);
  color: var(--brand-secondary);
  border-radius: var(--radius);
  margin-bottom: 68px;
  padding: 40px 0;
  box-shadow: 0 2px 18px 0 rgba(35,40,54,0.07);
}
section.cta h2 {
  color: var(--brand-secondary);
  margin-bottom: 16px;
}
section.cta p {
  color: var(--brand-secondary);
}
section.cta .cta.primary {
  margin-top: 24px;
}

/* CONFIRMATION SECTION ------------- */
.confirmation-text, .next-steps {
  font-size: 1.17rem;
  color: #484848;
  margin-bottom: 20px;
}

/* COOKIE CONSENT BANNER --------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 -4px 32px 0 rgba(35,40,54,0.13);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 14px 22px 18px;
  transition: transform 0.4s;
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(140%);
}
.cookie-banner-content {
  max-width: 920px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
.cookie-banner p {
  flex: 1 1 300px;
  color: var(--brand-secondary);
  margin: 0;
}
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-actions button {
  font-family: var(--font-display);
  border-radius: 7px;
  font-size: 1rem;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  margin-left: 4px;
  transition: background 0.17s;
}
.accept-cookies {
  background: var(--brand-accent);
  color: #fff;
}
.accept-cookies:hover {
  background: #A77B37;
}
.reject-cookies {
  background: #fff;
  border: 1.6px solid var(--brand-accent);
  color: var(--brand-accent);
}
.reject-cookies:hover {
  background: var(--brand-accent);
  color: #fff;
}
.cookie-settings {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border: 1.6px solid var(--brand-primary);
}
.cookie-settings:hover {
  background: var(--brand-accent);
  color: #fff;
  border: 1.6px solid var(--brand-accent);
}

/* COOKIE SETTINGS MODAL --------------------- */
.cookie-modal {
  position: fixed;
  z-index: 2011;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(35,40,54,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.18s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-dialog {
  background: #fff;
  color: var(--brand-primary);
  padding: 38px 32px 32px 32px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 410px;
  width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-dialog h2 {
  margin-bottom: 12px;
  color: var(--brand-accent);
}
.cookie-modal-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
}
.cookie-modal-list label {
  font-size: 1.03rem;
  display: flex;
  align-items: center;
  gap: 14px;
}
.toggle {
  width: 52px;
  height: 28px;
  background: var(--gray-base);
  border-radius: 16px;
  position: relative;
  transition: background 0.19s;
  margin-left: 8px;
}
.toggle input[type='checkbox'] {
  display:none;
}
.toggle-slider {
  position: absolute;
  left: 3px; top: 3px;
  width: 22px;
  height: 22px;
  background: var(--brand-accent);
  border-radius: 50%;
  transition: left .2s;
}
.toggle input[type='checkbox']:checked + .toggle-slider {
  left: 27px;
  background: var(--brand-primary);
}
.cookie-modal-dialog .cta.primary {
  width: 100%;
  margin-top: 15px;
}

/* RESPONSIVE DESIGN ------------------------- */
@media (max-width: 1050px) {
  .main-nav {
    gap: 13px;
  }
  .container {
    max-width: 94vw;
  }
  .features ul li, .values ul li, .services ul li, .benefits ul li, .inclusions ul li {
    min-width: 140px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 100vw;
    padding: 0 10px;
  }
  .footer-contact {
    min-width: 180px;
  }
  .vehicles-overview ul li {
    min-width: 140px;
    padding: 20px 10px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding: 0 5vw;
  }
  .content-wrapper, .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .vehicles-overview ul, .features ul, .values ul, .services ul, .benefits ul, .inclusions ul {
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-card {
    max-width: 96vw;
    min-width: unset;
  }
  .footer-left, .footer-nav, .footer-contact {
    min-width: unset;
    flex: 1 1 100%;
    margin-bottom: 18px;
  }
  footer .container {
    flex-direction: column;
    gap: 28px;
    padding-bottom: 10px;
  }
  .hero {
    padding: 32px 0 30px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.55rem;
  }
  h2 {
    font-size: 1.16rem;
  }
  .hero h1 {
    font-size: 1.3rem;
  }
  .footer-nav, .footer-contact {
    font-size: 0.97rem;
    gap: 6px;
  }
}

/* GEOMETRIC ELEMENTS (decoratives as needed) ----*/
.card, .testimonial-card, .feature_grid li,
.features ul li, .vehicles-overview ul li {
  border-radius: 12px 36px 14px 36px;
  /* Slight geometric effect */
  border-width: 2px 4px 2.5px 4px;
  border-style: solid;
  border-color: transparent var(--brand-accent) var(--brand-secondary) var(--brand-accent);
}

/* UI/UX MICRO-INTERACTIONS ------------------- */
.card, .testimonial-card, .feature_grid li, .vehicles-overview ul li {
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .testimonial-card:hover, .feature_grid li:hover, .vehicles-overview ul li:hover {
  box-shadow: 0 4px 24px 0 rgba(35,40,54,.18);
  transform: translateY(-4px) scale(1.03);
  z-index: 3;
}

/* UTILS & EXTRAS ---------------------------- */
.text-section {
  max-width: 680px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
/* Enforce spacing between all cards/blocks */
section + section {
  margin-top: 14px;
}
.card-container > *, .content-grid > *, .features .content-wrapper > *, .vehicles-overview ul > *, .testimonial-card {
  margin-bottom: 20px;
}

/* Prevent overlapping - z-index layer checks */
header, .mobile-menu,.cookie-banner, .cookie-modal { z-index: 1000; }

/* GENERAL LISTS (for legal and content) ------*/
ul, ol {
  margin-left: 23px;
  margin-bottom: 17px;
  font-size: 1rem;
  line-height: 1.7;
}
ul li, ol li {
  margin-bottom: 11px;
  font-family: var(--font-body);
  color: var(--brand-primary);
}

/* Hide list style for custom lists */
.feature_grid, .features ul, .values ul, .benefits ul, .inclusions ul, .services ul {
  list-style: none;
}

/* Hide visually on desktop */
.mobile-menu {
  display: none;
}
.mobile-menu.open {
  display: flex;
}

/* Hide cookie modal by default */
.cookie-modal.hide { display: none; }

/* END OF STYLE.CSS */
