/* ========================
   CSS RESET & BASE STYLES
   ======================== */
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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F7F8FA;
  color: #273040;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #273040;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  padding-left: 24px;
}
strong, b {
  font-weight: 700;
}
button, .cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  border: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 16px;
  text-align: left;
}
th {
  background: #273040;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
}
td {
  background: #fff;
  border-bottom: 2px solid #E6E6EA;
}

/* ========================
   TYPOGRAPHY
   ======================== */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  color: #273040;
  line-height: 1.2;
  margin-bottom: 24px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: #273040;
  margin-bottom: 20px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #273040;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #273040;
  margin-bottom: 12px;
}
p, li, td, th, label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
.text-section p {
  margin-bottom: 18px;
}

/* ========================
   COLOR PALETTE & ELEMENTS
   ======================== */
:root {
  --color-primary: #273040;
  --color-secondary: #99A3B0;
  --color-accent: #F6C342;
  --color-bg: #F7F8FA;
  --color-dark: #1B202A;
  --color-white: #fff;
}

::-webkit-input-placeholder {
  color: #99A3B0;
}
::-moz-placeholder {
  color: #99A3B0;
}
:-ms-input-placeholder {
  color: #99A3B0;
}
::placeholder {
  color: #99A3B0;
}

/* ========================
   CONTAINERS & SECTIONS
   ======================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}


/* ========================
   HEADER & NAVIGATION
   ======================== */
header {
  background: var(--color-primary);
  box-shadow: 0 6px 22px rgba(39,48,64,0.08);
  position: sticky;
  top: 0;
  z-index: 1030;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
header img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.01em;
  padding: 2px 0;
  border-bottom: 2.5px solid transparent;
  transition: color 0.2s, border-bottom 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-accent);
  border-bottom: 2.5px solid var(--color-accent);
  outline: none;
}
.main-nav .cta-btn {
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 26px;
  padding: 10px 26px;
  font-size: 1.125rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-left: 20px;
  border: none;
  box-shadow: 0 4px 14px 0 rgba(246,195,66, 0.18);
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: #ffdb6b;
  color: var(--color-dark);
  box-shadow: 0 8px 22px 0 rgba(39,48,64, 0.10);
}

/* BURGER MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 2rem;
  color: var(--color-primary);
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 1101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #ffe3a7;
}

/* MOBILE SLIDE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 330px;
  background: var(--color-primary);
  color: #fff;
  box-shadow: -2px 0 32px rgba(27,32,42,0.22);
  transform: translateX(110%);
  transition: transform 0.35s cubic-bezier(0.4,0.7,0.2,1);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 18px 22px 0 0;
  cursor: pointer;
  z-index: 1202;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 54px 0 0 0;
  padding: 0 32px;
  flex: 1;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  color: #fff;
  padding: 12px 0;
  border-bottom: 2.5px solid transparent;
  transition: color 0.2s, border-bottom 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-accent);
  border-bottom: 2.5px solid var(--color-accent);
  outline: none;
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
  background: linear-gradient(86deg, #fff 80%, #f6c34226 120%);
  padding: 54px 0 40px 0;
  position: relative;
  margin-bottom: 40px;
}

.hero h1 {
  color: var(--color-primary);
}

.content-wrapper{
  padding-top: 100px;
}

.hero p {
  color: var(--color-secondary);
  font-size: 1.25rem;
}
.hero .cta-btn {
  margin-top: 18px;
}

/* ========================
   FLEXBOX PATTERNS
   ======================== */
.features-grid, .card-container {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 20px 0 0 0;
}
.feature {
  flex: 1 1 210px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 20px 0 rgba(39,48,64, 0.07);
  padding: 30px 28px 26px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 210px;
  max-width: 305px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.feature:hover {
  box-shadow: 0 8px 36px 0 rgba(246,195,66,0.21);
  transform: translateY(-4px) scale(1.03);
}
.feature img {
  height: 48px;
  width: 48px;
}
.features-grid .feature h3 {
  margin-bottom: 0;
  color: var(--color-primary);
}

.card-container {
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 18px 0 rgba(39,48,64,0.09);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 10px 32px 0 rgba(246,195,66,0.14);
  transform: translateY(-5px) scale(1.015);
}

.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;
}

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

/* Testimonials */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 20px 0 rgba(39,48,64, 0.11);
  min-width: 240px;
  max-width: 350px;
  transition: box-shadow 0.19s, transform 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 34px 0 rgba(246,195,66, 0.16);
  transform: translateY(-4px) scale(1.02);
}
.testimonial-card p {
  color: #273040;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.testimonial-person {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-secondary);
  font-weight: bold;
  font-size: 1rem;
}
.stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.stars img {
  width: 22px;
  height: 22px;
  display: inline-block;
}

/* Cards and lists in .car-preview, .usp-highlights, .optional-extras-info */
.car-preview ul,
.usp-highlights,
.certification-highlights,
.optional-extras-info {
  margin-bottom: 16px;
}
.car-preview ul li,
.usp-highlights li,
.certification-highlights li {
  margin-bottom: 9px;
  font-size: 1.09rem;
}
.certification-highlights {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff8e3;
  color: var(--color-dark);
  border-radius: 16px;
  padding: 14px 20px;
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(246,195,66, 0.12);
}
.certification-highlights img {
  width: 26px;
  height: 26px;
}
.quick-response-info {
  background: #f6c3420a;
  border-left: 4px solid var(--color-accent);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 1rem;
  color: var(--color-dark);
  margin-top: 19px;
}

/* Contact info */
.contact-info, .contact-options {
  display: flex;
  flex-direction: column;
  font-size: 1.09rem;
  gap: 7px;
  margin: 20px 0 0 0;
}
.contact-info img,
.contact-options img {
  width: 20px;
  height: 20px;
  margin-bottom: -4px;
  margin-right: 7px;
  display: inline-block;
}

/* Map Embed (static placeholder) */
.map-embed {
  background: repeating-linear-gradient(-55deg, #e9ecef, #e9ecef 14px, #fff 14px, #fff 20px);
  border-radius: 16px;
  min-height: 140px;
  width: 100%;
  margin: 18px 0;
  display: flex;
}

/* Step by step list */
.step-by-step-process {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style-type: decimal;
  margin-left: 24px;
  margin-top: 16px;
}
.step-by-step-process li {
  font-size: 1.08rem;
  margin-bottom: 8px;
  font-weight: 600;
}

/* Included services, optional extras, FAQ lists */
.included-services, .faq-short-list {
  margin: 24px 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1.02rem;
}

/* FAQ PAGE */
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}
.faq-categories button {
  background: #fff;
  border: 2px solid var(--color-accent);
  color: var(--color-primary);
  border-radius: 18px;
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s, border 0.16s;
  cursor: pointer;
}
.faq-categories button:hover, .faq-categories button:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px 0 rgba(39,48,64,0.07);
  padding: 18px 20px 13px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item h2 {
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0px 0;
}
.faq-answer {
  color: var(--color-secondary);
}

input[type="text"] {
  border: 2px solid #e2e6eb;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 1rem;
  width: 100%;
  background: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-primary);
  margin-bottom: 14px;
  transition: border 0.18s;
}
input[type="text"]:focus {
  border-color: var(--color-accent);
  outline: none;
}

/* Thank you message (& generic message cards) */
.thank-you-message, .next-steps-info {
  background: #fffbe8;
  color: var(--color-dark);
  border-radius: 20px;
  padding: 18px 22px;
  font-size: 1.12rem;
  margin-bottom: 18px;
}

/*************************
  BUTTONS & CALLS TO ACTION
**************************/
.cta-btn {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.12rem;
  border-radius: 30px;
  padding: 12px 34px;
  margin: 10px 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 14px 0 rgba(246,195,66,0.10);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #ffe3a7;
  color: var(--color-dark);
  box-shadow: 0 8px 22px 0 rgba(246,195,66,0.18);
  outline: none;
}

/* =================================
   FOOTER
   ================================= */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 42px 0 18px 0;
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1.6px solid rgba(255,255,255,0.13);
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-main img {
  height: 32px;
}
.footer-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  outline: none;
}
.footer-info {
  margin-top: 11px;
  font-size: 1rem;
  color: var(--color-secondary);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

/* =============
   RESPONSIVE 
   ============= */
@media (max-width: 1024px) {
  .features-grid {
    gap: 16px;
  }
  .feature,
  .testimonial-card{
    max-width: 45vw;
    min-width: 190px;
  }
  .main-nav {
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .container {
    padding: 0 10px;
  }
  .footer-main {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 4vw;
  }
  .section {
    padding: 32px 7vw;
    margin-bottom: 40px;
  }
  .features-grid,
  .testimonial-slider,
  .testimonial-list,
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .feature, .testimonial-card {
    max-width: 100%;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .content-grid,
  .footer-info {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 560px) {
  :root {
    font-size: 15px;
  }
  h1, .hero h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
  .section {
    padding: 24px 2vw;
  }
}

/* ========================
   COOKIE CONSENT BANNER
   ======================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 -3px 34px 0 rgba(39,48,64,0.12);
  padding: 24px 22px 20px 22px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  width: 100vw;
  max-width: 100vw;
  font-size: 1.05rem;
  transition: transform 0.3s cubic-bezier(0.4,0.7,0.2,1), opacity 0.3s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner p {
  flex: 1 1 260px;
  margin: 0 12px 0 0;
  color: var(--color-primary);
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-btns button {
  padding: 10px 22px;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
  margin-top: 4px;
}
.cookie-btns .accept {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-btns .accept:hover, .cookie-btns .accept:focus {
  background: #ffe3a7;
}
.cookie-btns .reject {
  background: #e6e6ea;
  color: var(--color-primary);
}
.cookie-btns .reject:hover, .cookie-btns .reject:focus {
  background: #99A3B0;
  color: #fff;
}
.cookie-btns .settings {
  background: none;
  border: 2px solid var(--color-accent);
  color: var(--color-primary);
}
.cookie-btns .settings:hover, .cookie-btns .settings:focus {
  background: var(--color-accent);
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(39,48,64, 0.46);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.25s;
}
.cookie-modal-backdrop.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 42px 0 rgba(39,48,64,0.21);
  max-width: 388px;
  width: 92vw;
  padding: 32px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookieModalIn 0.35s cubic-bezier(0.47,1,0.49,0.98) both;
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: scale(0.92) translateY(38px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.28rem;
  margin-bottom: 9px;
  line-height: 1.15;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 10px; right: 12px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--color-accent);
  cursor: pointer;
  z-index: 3;
}
.cookie-modal .cookie-category {
  margin-bottom: 14px;
}
.cookie-modal .cookie-category label {
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: var(--color-accent);
  width: 20px;
  height: 20px;
}
.cookie-modal .category-desc {
  color: var(--color-secondary);
  margin-left: 32px;
  margin-top: 1.5px;
  font-size: 0.97rem;
}
.cookie-modal .always-enabled {
  color: #339e5c;
  font-weight: bold;
  font-size: 0.99rem;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  padding: 8px 19px;
  border-radius: 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  background: var(--color-accent);
  color: var(--color-primary);
  transition: background 0.2s, color 0.2s;
}
.cookie-modal .modal-actions button.secondary {
  background: #e6e6ea;
  color: var(--color-primary);
}
.cookie-modal .modal-actions button.secondary:hover, .cookie-modal .modal-actions button.secondary:focus {
  background: #99a3b0;
  color: #fff;
}
.cookie-modal .modal-actions button:hover, .cookie-modal .modal-actions button:focus {
  background: #ffe3a7;
}

/***************************
  MICRO-INTERACTIONS & EFFECTS
****************************/
a, button, .cta-btn, .main-nav a, .mobile-nav a, .footer-nav a {
  transition: color 0.2s, background 0.18s, border-bottom 0.16s, box-shadow 0.16s, transform 0.16s;
}
.feature:hover, .card:hover, .testimonial-card:hover {
  transition: box-shadow 0.2s, transform 0.19s;
}

/* =============
   PRINT SUPPORT
   ============= */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body, .container { background: #fff !important; color: #000 !important; }
}
