/* 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;
  box-sizing: border-box;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F6F7FB;
  color: #14213D;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.01em;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: #14213D;
  line-height: 1.12;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #14213D;
  line-height: 1.18;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #213052;
  line-height: 1.25;
}

h4, .h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 8px;
  color: #213052;
}

p, li, table, ul, ol {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #28324F;
}
strong, b {
  font-weight: 700;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 18px;
}
li {
  margin-bottom: 8px;
}
a {
  color: #14213D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FCA311;
  text-decoration: underline;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1128px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* FLEX LAYOUTS */
/*.card-container, .card-grid, .feature-grid, .testimonial-grid*/
.card-container, .card-grid, .feature-grid, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* CARD & FEATURE ITEM */
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(20,33,61,.07);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 260px;
  max-width: 380px;
  flex: 1 1 280px;
}

.feature-grid > div, .testimonial-card, .card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(20,33,61,.07);
  padding: 28px 20px;
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 220px;
  transition: box-shadow .2s, transform .2s;
}
.feature-grid > div:hover, .card:hover, .testimonial-card:hover {
  box-shadow: 0 6px 20px 2px rgba(20,33,61,0.10);
  transform: translateY(-2px) scale(1.02);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.icon-descriptions p,
.car-features-summary ul {
  margin-bottom: 10px;
  margin-top: 10px;
}

/* NAVIGATION */
header {
  background-color: #fff;
  box-shadow: 0 2px 12px rgba(20,33,61,.10);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
header img {
  height: 42px;
  width: auto;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
nav.main-nav a {
  font-size: 1rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #14213D;
  padding: 8px 0;
  font-weight: 500;
  transition: color .2s;
  letter-spacing: 0.01em;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  color: #FCA311;
}
.primary-cta {
  background: #FCA311;
  color: #fff !important;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  margin-left: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(20,33,61,.07);
  transition: background .18s, box-shadow .18s, transform .18s;
  text-decoration: none;
  display: inline-block;
}
.primary-cta:hover, .primary-cta:focus {
  background: #2052AE;
  color: #fff;
  box-shadow: 0 4px 14px rgba(20,33,61,.11);
  transform: translateY(-1px) scale(1.04);
}
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #14213D;
  display: none;
  cursor: pointer;
  margin-left: 12px;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,33,61, 0.98);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.75,0,.25,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 50px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
  transition: transform .35s cubic-bezier(.6,0,.3,1), opacity .18s;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #FCA311;
  font-size: 2rem;
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 221;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  align-items: flex-start;
  padding-left: 28px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  padding: 6px 0;
  letter-spacing: 0.04em;
  text-decoration: none;
  outline: none;
  border-radius: 3px;
  transition: background .13s, color .13s;
  min-width: 140px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FCA311;
  background: rgba(255, 255, 255, 0.05);
}

/* MAIN & SECTION LAYOUT */
main {
  margin-top: 16px;
  min-height: 60vh;
  width: 100%;
}
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}

@media (max-width: 900px) {
  section {
    padding: 28px 0;
  }
  .container {
    padding: 0 12px;
  }
}

@media (max-width: 768px) {
  h1, .h1 {
    font-size: 2rem;
  }
  h2, .h2 {
    font-size: 1.38rem;
  }
  .feature-grid > div {
    min-width: 160px;
    padding: 18px 14px;
  }
  nav.main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid,
  .testimonial-grid,
  .card-container,
  .card-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .content-wrapper {
    gap: 18px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}

/* HOMEPAGE HERO */
.content-wrapper > a.primary-cta {
  width: fit-content;
  align-self: flex-start;
  margin-top: 6px;
}

/* FEATURES, BENEFITS, ICON LISTS */
.feature-list, .benefits-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex-direction: column;
  margin-bottom: 20px;
}
.feature-list li, .benefits-list li, .differentiators li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  background: #f2f6fa;
  border-radius: 7px;
  padding: 12px 16px;
  margin-bottom: 8px;
}
.differentiators {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 18px;
}
.differentiators li img {
  width: 26px; height: 26px;
  margin-right: 10px;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 11px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(20,33,61,.06);
}
.pricing-table th,
.pricing-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid #e1e6ef;
}
.pricing-table th {
  background: #21408A;
  color: #fff;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table td {
  color: #28324F;
  font-size: 1rem;
}

@media (max-width: 668px) {
  .pricing-table, .pricing-table thead, .pricing-table tbody, .pricing-table tr {
    display: block;
    width: 100%;
  }
  .pricing-table th, .pricing-table td {
    display: block;
    width: 100%;
    border-bottom: none;
    padding: 10px 10px;
  }
  .pricing-table th {
    background: #21408A;
    border-bottom: 1px solid #e1e6ef;
  }
}

/* TESTIMONIALS */
.testimonial-card {
  background: #F7F8FC;
  border-left: 5px solid #FCA311;
  border-radius: 10px;
  box-shadow: 0 2px 7px rgba(20,33,61,0.07);
  margin-bottom: 20px;
  color: #14213D;
  align-items: flex-start;
  gap: 18px;
  font-size: 1.03rem;
  min-width: 220px;
  max-width: 540px;
  flex: 1 1 260px;
  transition: box-shadow .13s;
}
.testimonial-card p {
  color: #213052;
}
.testimonial-card strong {
  color: #2052AE;
  font-weight: 600;
}

.testimonial-slider, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.customer-quotes {
  background: #e5eaf3;
  border-radius: 9px;
  padding: 20px 24px;
  margin-top: 28px;
  font-style: italic;
  color: #153673;
  font-size: 1.06rem;
}

/* STEP-BY-STEP */
.step-by-step-list {
  list-style: decimal inside;
  padding-left: 16px;
  margin-bottom: 20px;
}
.step-by-step-list li {
  background: #f2f6fa;
  border-radius: 6px;
  margin-bottom: 10px;
  padding: 10px 14px;
  font-size: 1rem;
}

/* CONTACT DETAILS, MAP etc. */
.contact-details, .contact-info, .map-location, .business-hours {
  margin-bottom: 22px;
}
.contact-details p, .contact-info p, .map-location span {
  font-size: 1rem;
  color: #28324F;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.map-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  margin: 20px 0 8px 0;
}
.business-hours h3 {
  margin-bottom: 10px;
}
.business-hours ul {
  margin-left: 0;
  list-style: none;
}
.business-hours li {
  margin-bottom: 6px;
  padding-left: 0;
}

/* FOOTER */
footer {
  background: #14213D;
  color: #fff;
  padding: 40px 0 22px 0;
  font-size: 0.98rem;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  min-height: 120px;
}
.footer-logo {
  flex: 1 1 100px;
  min-width: 80px;
  margin-bottom: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 160px;
  margin-bottom: 28px;
}
.footer-nav a {
  color: #FCA311;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-logo img {
  width: 48px;
  height: auto;
}
footer .contact-details {
  flex: 2 1 200px;
  min-width: 200px;
  color: #dedede;
}
footer .contact-details img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
}
footer .copyright {
  width: 100%;
  text-align: left;
  margin-top: 26px;
  color: #8EA0C7;
  font-size: 0.92rem;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .footer-nav {
    flex-direction: row;
    gap: 24px;
  }
  .footer-logo {
    margin-bottom: 4px;
  }
}

@media (max-width: 620px) {
  footer .container {
    padding: 0 8px;
  }
  footer .footer-logo img {
    width: 36px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 13px;
  }
}

/* BUTTONS */
button, input[type=submit] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  outline: none;
  border-radius: 7px;
  padding: 10px 24px;
  cursor: pointer;
  transition: background .16s, color .16s, box-shadow .16s;
  background: #FCA311;
  color: #fff;
  margin-right: 10px;
  box-shadow: 0 2px 7px rgba(20,33,61,.07);
}
button:hover, button:focus, input[type=submit]:hover, input[type=submit]:focus {
  background: #2052AE;
  color: #fff;
}

/* SELECTION & MICROINTERACTIONS */
::selection {
  background: #FCA31133;
}

/* TRANSITIONS */
a, button, .primary-cta, .card, .feature-grid > div, .testimonial-card {
  transition: all 0.18s cubic-bezier(.77,0,.18,1);
}

/* COOKIE CONSENT */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #203366;
  color: #fff;
  box-shadow: 0 -2px 16px rgba(20,33,61,0.14);
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  gap: 26px;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity .24s, transform .27s;
}
.cookie-consent-banner.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-consent-banner button {
  background: #FCA311;
  color: #fff;
  border-radius: 8px;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  margin-right: 8px;
  transition: background .2s, color .2s;
}
.cookie-consent-banner button.reject {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.cookie-consent-banner button.settings {
  background: #1b2440;
  color: #FCA311;
}
.cookie-consent-banner button:hover, 
.cookie-consent-banner button:focus {
  background: #2052ae;
  color: #fff;
}
.cookie-consent-banner button.reject:hover {
  background: #132342;
  color: #FCA311;
}

@media (max-width: 590px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 18px;
    font-size: 0.99rem;
    padding: 18px 8px;
    align-items: flex-start;
  }
  .cookie-consent-banner .cookie-buttons {
    gap: 11px;
    flex-direction: row;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0.97);
  background: #fff;
  box-shadow: 0 12px 48px 12px rgba(20,33,61,0.15);
  border-radius: 18px;
  z-index: 12000;
  width: 94%;
  max-width: 425px;
  padding: 36px 26px 26px 26px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .23s;
}
.cookie-modal.show {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #14213D;
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  right: 18px;
  top: 18px;
  background: none;
  border: none;
  font-size: 1.65rem;
  color: #FCA311;
  cursor: pointer;
}
.cookie-modal .cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e1e2f1;
  font-size: 1rem;
}
.cookie-modal .cookie-category .toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}
.cookie-modal .cookie-category input[type=checkbox] {
  accent-color: #FCA311;
  width: 22px;
  height: 22px;
}
.cookie-modal .cookie-category label {
  color: #153673;
  font-size: 1rem;
  cursor: pointer;
}
.cookie-modal .cookie-category.essential label {
  color: #90979f;
}
.cookie-modal .cookie-category.essential input[disabled] {
  filter: grayscale(80%);
  opacity: 0.7;
  cursor: not-allowed;
}
.cookie-modal .cookie-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal button {
  border-radius: 7px;
  font-weight: 600;
  padding: 10px 18px;
}

/* MODAL ANIMATION BACKDROP */
.cookie-modal-backdrop {
  position: fixed;
  top:0; left:0; width:100vw; height:100vh;
  background: rgba(20,33,61,0.25);
  z-index:11999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .21s;
}
.cookie-modal-backdrop.show {
  opacity: 1;
  pointer-events: all;
}

/* FORM, TEXT SECTIONS */
.text-section {
  background: #f6f8fc;
  border-radius: 8px;
  padding: 17px 18px;
  margin-bottom: 14px;
  color: #1a253a;
  font-size: 1rem;
  line-height: 1.6;
}
.contact-form-info {
  background: #fff5d8;
  border-left: 5px solid #FCA311;
}

@media (max-width: 420px) {
  .cookie-modal {
    max-width: 98vw;
    padding: 24px 6vw 18px 6vw;
  }
  .cookie-modal .close-cookie-modal {
    right: 11px;
    top: 12px;
    font-size: 1.18rem;
  }
  .cookie-modal h2 {
    font-size: 1.09rem;
  }
}

/* UTILITY */
.mt-0 {margin-top:0 !important;}
.mt-8 {margin-top:8px !important;}
.mt-16 {margin-top:16px !important;}
.mt-24 {margin-top:24px !important;}
.mb-0 {margin-bottom:0 !important;}
.mb-8 {margin-bottom:8px !important;}
.mb-16 {margin-bottom:16px !important;}
.mb-24 {margin-bottom:24px !important;}

/* HIDE elements for accessibility only */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
