/* ============================================================================
   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, menu, 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;
}
html {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #F7F7F9;
}
body {
  color: #1C355E;
  background-color: #F7F7F9;
  min-height: 100vh;
  font-size: 16px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1C355E;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.5,0,0,1);
  font-weight: 600;
}
a:hover, a:focus {
  color: #E7A827;
  outline: none;
}
ul, ol {
  padding-left: 1.4em;
  margin-bottom: 20px;
}
strong {
  font-weight: bold;
}

/* ============================================================================
   TYPOGRAPHY
============================================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 16px;
  font-weight: 800;
  color: #1C355E;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.14;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  line-height: 1.18;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.375rem;
  line-height: 1.24;
  margin-bottom: 16px;
  font-weight: 700;
}
h4, h5, h6 {
  font-size: 1.125rem;
  font-weight: 700;
}
p, li {
  font-size: 1rem;
  margin-bottom: 12px;
  font-weight: 400;
}
blockquote {
  font-size: 1.125rem;
  font-style: italic;
  color: #1C355E;
  background: #F7F7F9;
  border-left: 4px solid #E7A827;
  padding: 16px 24px;
  margin: 0 0 8px 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* ============================================================================
   CONTAINER & GLOBAL SPACING
============================================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 4px 20px 0 rgba(28,53,94,0.06);
}
@media (max-width: 768px) {
  .section {
    padding: 30px 10px;
    margin-bottom: 36px;
  }
}

/* ============================================================================
   HEADER & NAVIGATION
============================================================================ */
header {
  background: #1C355E;
  color: #FFF;
  box-shadow: 0 2px 10px rgba(28,53,94,0.10);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 0;
}
header img {
  max-height: 46px;
  margin-right: 32px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
header nav a {
  color: #FFF;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
header nav a:hover,
header nav a:focus {
  color: #E7A827;
}
.btn-primary {
  background: #E7A827;
  color: #1C355E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  padding: 13px 32px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 3px 18px 0 rgba(231,168,39,0.13);
  cursor: pointer;
  display: inline-block;
  letter-spacing: 1px;
  transition: background 0.18s, box-shadow 0.24s, color 0.18s;
  margin-left: 30px;
  text-align: center;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #1C355E;
  color: #FFF;
  box-shadow: 0 6px 30px 0 rgba(28,53,94,0.22);
}

/* Hide .mobile-menu-toggle by default on desktop */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 992px) {
  header nav {
    gap: 14px;
  }
  .btn-primary {
    margin-left: 15px;
    font-size: 1rem;
    padding: 11px 21px;
  }
}
@media (max-width: 850px) {
  header nav,
  .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    font-size: 2.1rem;
    background: none;
    border: none;
    color: #FFF;
    cursor: pointer;
    z-index: 1300;
    position: relative;
    margin-left: 8px;
    width: 50px;
    height: 50px;
    justify-content: center;
    transition: color 0.2s;
  }
  .mobile-menu-toggle:focus {
    color: #E7A827;
    outline: none;
  }
}

/* ============================================================================
   MOBILE MENU
============================================================================ */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 85vw;
  max-width: 370px;
  background: #1C355E;
  box-shadow: -8px 0 40px 0 rgba(28,53,94,0.25);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.7,0.1,0.4,1);
  will-change: transform;
  padding: 32px 28px 20px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #FFF;
  font-size: 2.4rem;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 28px;
  transition: color 0.2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #E7A827;
}
.mobile-nav {
  display: flex !important; 
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  color: #FFF;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  padding: 10px 8px;
  border-radius: 10px;
  transition: background 0.17s, color 0.18s;
  display: block;
}
.mobile-nav a:hover {
  background: #E7A827;
  color: #1C355E;
}

/* Cover the rest of page with a transparent scrim when mobile menu is open */
.mobile-menu-backdrop {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(28,53,94,0.33);
  z-index: 100;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.3s;
}
@media (min-width: 851px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-backdrop {
    display: none !important;
  }
}

/* ============================================================================
   HERO HEADER SECTIONS
============================================================================ */
.hero {
  background: #1C355E;
  color: #FFF;
  padding: 96px 0 72px 0;
  border-radius: 0 0 48px 48px;
  margin-bottom: 60px;
  box-shadow: 0 4px 32px 0 rgba(28,53,94,0.13);
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 680px;
  gap: 18px;
}
.hero h1 {
  color: #FFF;
  font-size: 2.8rem;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.25rem;
  color: #ECECF7;
  max-width: 85%;
  margin-bottom: 36px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.hero .btn-primary {
  font-size: 1.18rem;
  background: #E7A827;
  color: #1C355E;
}
@media (max-width: 768px) {
  .hero {
    padding: 46px 0 30px 0;
    border-radius: 0 0 20px 20px;
    margin-bottom: 28px;
  }
  .hero .content-wrapper {
    gap: 15px;
    padding: 0;
    max-width: 100%;
  }
  .hero h1 {
    font-size: 1.9rem;
    margin-bottom: 14px;
  }
  .hero p {
    font-size: 1.01rem;
    margin-bottom: 17px;
    max-width: 100%;
  }
}

/* ============================================================================
   FEATURES, CARDS, FLEX UTILS, TESTIMONIALS
============================================================================ */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 10px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 15px 0 rgba(28,53,94,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 26px 26px 26px;
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 325px;
  transition: box-shadow 0.21s, transform 0.17s;
  border: 2.7px solid #E7A82712;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 33px 0 rgba(28,53,94,0.15);
  border-color: #E7A82755;
  transform: translateY(-5px) scale(1.022);
}
@media (max-width: 780px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div {
    max-width: 100%;
    min-width: 0;
    padding: 21px 14px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: #FFF;
  border-radius: 15px;
  box-shadow: 0 2px 12px 0 rgba(28,53,94,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 230px;
  transition: box-shadow 0.19s, transform 0.13s;
}
.card:hover {
  box-shadow: 0 7px 21px 0 rgba(28,53,94,0.14);
  transform: translateY(-3px) scale(1.017);
}

.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: 28px 28px 22px 28px;
  background: #F7F7F9;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(28,53,94,0.08);
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
  border: 2px solid #E7A82712;
}
.testimonial-card:hover {
  box-shadow: 0 6px 30px #E7A82722;
}
.testimonial-card blockquote {
  color: #1C355E;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.testimonial-card p {
  margin: 0;
  font-size: 1rem;
  color: #39393d;
}

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

@media (max-width: 768px) {
  .content-grid,
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    padding: 16px 12px 14px 12px;
    gap: 9px;
  }
}

/* ============================================================================
   TABLE & PRICING
============================================================================ */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  background: #FFF;
  border-radius: 11px;
  box-shadow: 0 1px 7px 0 rgba(28,53,94,0.06);
  overflow: hidden;
}
thead {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #1C355E;
  color: #FFF;
  font-size: 1.09rem;
  font-weight: 800;
}
th, td {
  padding: 16px 14px;
  text-align: left;
}
th {
  background: #1C355E;
  color: #FFF;
}
tbody tr:nth-child(odd) {
  background: #F7F7F9;
}
tbody tr:nth-child(even) {
  background: #FFF;
}
td {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

@media (max-width: 600px) {
  table, thead, tbody, th, td, tr {
    display: block;
    width: 100%;
  }
  th, td {
    padding: 10px 8px;
    font-size: 0.97rem;
  }
  tr {
    margin-bottom: 12px;
    border-bottom: 1px solid #E7A82722;
  }
}

/* ============================================================================
   OTHER LISTS & SPECIAL BLOCKS
============================================================================ */
.contact-summary, .contact-information, .vehicle-capacity, .safety-features, .service-benefits, .specializations, .pricing-options, .area-listing {
  background: #FFF;
  border-radius: 15px;
  box-shadow: 0 1px 6px 0 rgba(28,53,94,0.08);
  padding: 22px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.contact-summary ul, .contact-information ul, .vehicle-capacity ul, .safety-features ul, .service-benefits ul, .specializations ul, .pricing-options ul, .area-listing ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 0;
}
.contact-summary li, .contact-information li, .vehicle-capacity li, .safety-features li,
.service-benefits li, .specializations li, .pricing-options li, .area-listing li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 0 !important;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #1C355E;
}
.contact-summary img,
.contact-information img {
  width: 30px;
  height: 30px;
  background: #F7F7F9;
  border-radius: 7px;
  padding: 3px;
}

@media (max-width: 600px) {
  .contact-summary, .contact-information, .vehicle-capacity, .safety-features, .service-benefits, .specializations, .pricing-options, .area-listing {
    padding: 12px 6px;
    border-radius: 10px;
  }
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.cta-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin: 18px 0 0 0;
}
@media (max-width: 600px) {
  .cta-section {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin: 11px 0 0 0;
  }
}

/* ============================================================================
   FOOTER
============================================================================ */
footer {
  background: #1C355E;
  color: #FFF;
  padding: 38px 0 20px 0;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -2px 16px 0 rgba(28,53,94,0.07);
  margin-top: 80px;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
footer nav a {
  color: #E7A827;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}
footer nav a:hover {
  color: #FFF;
}
footer p {
  font-size: 1rem;
  color: #ECECF7;
  margin: 0;
  text-align: right;
  letter-spacing: 0.3px;
}
@media (max-width: 768px) {
  footer {
    padding: 22px 0 8px 0;
    border-radius: 10px 10px 0 0;
    margin-top: 32px;
  }
  footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  footer p {
    text-align: left;
    font-size: 0.94rem;
  }
  footer nav {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
  }
}

/* ============================================================================
   COOKIE CONSENT BANNER & MODAL
============================================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #FFF;
  box-shadow: 0 -2px 20px #1C355E22;
  padding: 24px 16px 18px 16px;
  z-index: 3000;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
  transition: transform 0.33s cubic-bezier(0.71, 0.09, 0.45, 0.91);
  transform: translateY(0);
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner p {
  margin: 0;
  color: #1C355E;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.01rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cookie-btn, .cookie-btn-primary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 21px;
  border: none;
  padding: 9px 26px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cookie-btn-primary {
  background: #E7A827;
  color: #1C355E;
  box-shadow: 0 0 0 #FFF0;
}
.cookie-btn-primary:hover, .cookie-btn-primary:focus {
  background: #1C355E;
  color: #FFF;
  box-shadow: 0 3px 12px #E7A82722;
}
.cookie-btn {
  background: #ECECF7;
  color: #1C355E;
  font-weight: 700;
}
.cookie-btn:hover {
  background: #1C355E;
  color: #FFF;
}
.cookie-settings-link {
  color: #E7A827;
  margin-left: 11px;
  cursor: pointer;
  text-decoration: underline;
  font-weight: 700;
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28,53,94,0.52);
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.2s;
}
.cookie-modal-inner {
  background: #FFF;
  color: #1C355E;
  border-radius: 18px;
  box-shadow: 0 8px 64px rgba(28,53,94,0.19);
  padding: 40px 34px;
  width: 96%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  animation: cookieModalShow 0.35s cubic-bezier(.73,.01,.57,1) forwards;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #1C355E;
  cursor: pointer;
}
.cookie-pref-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
  font-size: 1.11rem;
  width: 100%;
  justify-content: space-between;
}
.cookie-pref-toggle {
  width: 45px;
  height: 25px;
  appearance: none;
  background: #ECECF7;
  border-radius: 13px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-pref-toggle:checked {
  background: #E7A827;
}
.cookie-pref-toggle::before {
  content: "";
  display: block;
  position: absolute;
  left: 4px;
  top: 3px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #FFF;
  transition: left 0.2s;
}
.cookie-pref-toggle:checked::before {
  left: 22px;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    font-size: 0.99rem;
    padding: 14px 5px 12px 5px;
  }
  .cookie-modal-inner {
    padding: 16px 5px;
    border-radius: 12px;
  }
}
@keyframes cookieModalShow {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}

/* ============================================================================
   VISUAL ELEMENTS: BUTTONS & ANIMATIONS
============================================================================ */
button {
  font-family: inherit;
}
.btn-primary:active, .cookie-btn-primary:active {
  transform: scale(0.98);
}
.cookie-btn:active {
  transform: scale(0.984);
}

/* Loader (utility if required) */
.loader {
  border: 4px solid #ECECF7;
  border-top: 4px solid #E7A827;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  animation: spinLoader 0.9s linear infinite;
}
@keyframes spinLoader {
  to { transform: rotate(360deg); }
}

/* ============================================================================
   GEOMETRIC SHAPE ACCENTS (MODERN_BOLD)
============================================================================ */
.shape-accent {
  display: block;
  width: 46px;
  height: 8px;
  background: #E7A827;
  border-radius: 4px;
  margin-bottom: 20px;
}

/* ============================================================================
   GENERAL RESPONSIVE UTILITIES
============================================================================ */
@media (max-width: 1000px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
}
@media (max-width: 600px) {
  html {
    font-size: 15px;
  }
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.12rem; }
  h3 { font-size: 1rem; }
}

/* ============================================================================
   ACCESSIBILITY
============================================================================ */
:focus {
  outline: 2px solid #E7A827;
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    transition: none !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
