/* ------------------------------------------
   Breeze Route Auto Minimalist CSS Framework
   Author: Senior CSS Developer & UI Designer
---------------------------------------------*/
/* --- 1. Normalize & Reset --- */
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 {
  /* set Montserrat and Roboto for fallback*/
  font-family: 'Roboto', 'Arial', sans-serif;
  font-size: 16px;
  background: #fff;
  color: #212529;
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #212529;
  font-family: 'Roboto', 'Arial', sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
a {
  color: #013A63;
  text-decoration: none;
  transition: color .2s;
}
a:focus, a:hover {
  color: #D90429;
  outline: none;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', 'Arial', sans-serif;
  color: #013A63;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}
h1 { font-size: 2.5rem; margin-bottom: 32px; }
h2 { font-size: 2rem;   margin-bottom: 28px; }
h3 { font-size: 1.35rem; margin-bottom: 20px; font-weight: 600; color: #013A63; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 16px; font-weight: 600; }
p, li {
  font-size: 1rem;
  color: #212529;
  margin-bottom: 16px;
  font-family: 'Roboto', 'Arial', sans-serif;
}
p + p {
  margin-top: 8px;
}
strong {
  font-weight: 600;
  color: #013A63;
}

/* --- 2. Layout Containers & Spacing --- */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 14px;
  /* lots of whitespace, gentle rounded corners, no border */
}

.content-wrapper, .text-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(1,58,99,0.06);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .25s, transform .25s;
}
.card:hover {
  box-shadow: 0 4px 16px rgba(1,58,99,0.11);
  transform: translateY(-3px);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.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: 16px;
  padding: 20px 24px;
  margin-bottom: 24px;
  background: #F8F9FA;
  border-radius: 14px;
  box-shadow: 0 1.5px 5px rgba(1,58,99,0.06);
}
.testimonial-card p {
  font-size: 1.13rem;
  font-style: italic;
  color: #013A63;
  margin-bottom: 4px;
}
.testimonial-card span {
  font-size: 1rem;
  color: #2c405a;
}
.testimonial-card img {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 2px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

/* Extra spacing for lists with icons */
ul li img, ol li img {
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  opacity: 0.85;
}
ul li, ol li {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.5;
  margin-bottom: 14px;
  /* No bullet, gentle gap */
}

/* Footer styles */
footer {
  background: #013A63;
  color: #fff;
  padding: 40px 0 0 0;
  margin-top: 80px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 20px;
}
.footer-nav a {
  color: #EAF1F7;
  font-size: 1rem;
  transition: color .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #D90429;
}
.contact-footer {
  font-size: 0.92rem;
  color: #DFE3E8;
  padding-bottom: 24px;
}

/* --- 3. Header & Navigation --- */
header {
  background: #fff;
  border-bottom: 1px solid #EAF1F7;
  box-shadow: 0 2px 8px rgba(1,58,99,0.03);
  width: 100%;
  z-index: 1002;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  min-height: 72px;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 24px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  flex: 1 1 auto;
}
header nav a {
  color: #013A63;
  font-family: 'Montserrat', 'Roboto', 'Arial', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 6px;
  border-radius: 7px;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover, header nav a:focus {
  color: #fff;
  background: #D90429;
}
.btn-primary {
  background: #013A63;
  color: #fff;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 12px 28px;
  margin-left: 24px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 1.5px 5px rgba(1,58,99,0.07);
  cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .17s;
  outline: none;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #D90429;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(217, 4, 41, 0.13);
  transform: translateY(-2px) scale(1.03);
}

/* Hamburger menu button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #013A63;
  font-size: 2rem;
  cursor: pointer;
  margin-left: auto;
  outline: none;
  z-index: 1201;
  padding: 0 12px;
  border-radius: 7px;
  transition: background 0.13s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F8F9FA;
}

/* --- 4. Mobile Main Menu --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(1,58,99,0.96);
  transform: translateX(100%);
  transition: transform .33s cubic-bezier(.77,0,.18,1);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 28px 0 0 0;
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 1300;
  cursor: pointer;
  outline: none;
  padding: 0 10px;
  border-radius: 7px;
  transition: background 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(217,4,41,0.08);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 56px 40px 24px 40px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.18rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 500;
  padding: 14px 0 14px 8px;
  border-radius: 8px;
  transition: background 0.14s, color 0.14s;
  min-width: 180px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #D90429;
  color: #fff;
}

/* --- 5. Cookie Consent Banner & Modal --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #013A63;
  box-shadow: 0 -2px 16px rgba(1,58,99,0.08);
  padding: 28px 20px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  font-size: 1rem;
  animation: slideup .4s;
}
@keyframes slideup {
  from {transform: translateY(100%);}  to {transform: translateY(0);}
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 18px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  background: #F8F9FA;
  color: #013A63;
  font-weight: 500;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
  box-shadow: 0 1.5px 5px rgba(1,58,99,0.04);
}
.cookie-banner .accept {
  background: #013A63;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #D90429;
  color: #fff;
}
.cookie-banner .reject {
  background: #D90429;
  color: #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #013A63;
  color: #fff;
}
.cookie-banner .settings {
  background: #F8F9FA;
  color: #013A63;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #DFE3E8;
}

/* Cookie Modal ---- */
.cookie-modal-backdrop {
  position: fixed;
  left:0; right:0; top:0; bottom:0;
  background: rgba(1,58,99,0.32);
  z-index: 1550;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-backdrop.open {
  display: flex;
  animation: fadein .27s;
}
@keyframes fadein { from { opacity: 0; } to { opacity: 1;} }
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(1,58,99,0.16);
  max-width: 400px;
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  min-width: 310px;
  gap: 18px;
  position: relative;
  animation: modalIn .4s cubic-bezier(.5,.85,0,1);
}
@keyframes modalIn { from { transform: translateY(80px); opacity:0;} to { transform: translateY(0);opacity:1;} }
.cookie-modal h2 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.cookie-modal label {
  font-size: 1.04rem;
  font-family: 'Roboto', sans-serif;
  color: #013A63;
}
.cookie-modal input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #013A63;
  margin-right: 3px;
}
.cookie-modal .always-on {
  color: #aaa;
  font-size: 0.98em;
  margin-left: 2px;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 13px;
  margin-top: 10px;
}
.cookie-modal .close-modal {
  background: none;
  border: none;
  font-size: 1.55rem;
  position: absolute;
  top: 13px;
  right: 14px;
  color: #013A63;
  cursor: pointer;
  padding: 0 6px;
  border-radius: 6px;
  transition: background .13s;
}
.cookie-modal .close-modal:hover { background: #F8F9FA; }

/* --- 6. General Components --- */
::-webkit-input-placeholder { color: #949ea9; }
::-moz-placeholder { color: #949ea9; }
:-ms-input-placeholder { color: #949ea9; }
::placeholder { color: #949ea9; }

/* HERO / CTA areas */
main > section:first-child {
  padding-top: 44px;
}

/* Cards - optional in future pages */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/* --- 7. Responsive Design (Mobile First) --- */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  header .container {
    gap: 14px;
  }
}

@media (max-width: 900px) {
  .footer-nav {
    gap: 14px;
    flex-direction: column;
    align-items: flex-start;
  }
  header nav {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 1.8rem; margin-bottom: 24px; }
  h2 { font-size: 1.4rem; margin-bottom: 18px; }
  .btn-primary {
    padding: 11px 20px;
    font-size: 1rem;
    margin-left: 0;
    margin-top: 16px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
  .card-container, .content-grid, .content-wrapper {
    flex-direction: column !important;
    gap: 16px;
    align-items: stretch;
  }
  .testimonial-card {
    padding: 15px 13px;
    font-size: 1rem;
    border-radius: 10px;
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 14px;
    align-items: stretch;
  }
  header .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .btn-primary {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 4px;
  }
  .section {
    padding: 15px 2px;
    margin-bottom: 26px;
  }
  .footer-nav, .contact-footer {
    padding-left: 2px;
  }
}

/* --- Utility classes --- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* --- Z-index Consistency --- */
header { z-index: 1002; }
.mobile-menu { z-index: 1200; }
.cookie-banner { z-index: 1500; }
.cookie-modal-backdrop { z-index: 1550; }

/* --- Scrollbar minimal (for mobile menu) --- */
.mobile-menu,
.cookie-modal {
  scrollbar-width: thin;
  scrollbar-color: #F8F9FA #013A63;
}
.mobile-menu::-webkit-scrollbar, .cookie-modal::-webkit-scrollbar {
  width: 7px; background: #013A63;
}
.mobile-menu::-webkit-scrollbar-thumb, .cookie-modal::-webkit-scrollbar-thumb {
  background: #F8F9FA; border-radius: 3.5px;
}
/* --- Hide overlayed elements for a11y when not open --- */
.mobile-menu:not(.open) { visibility: hidden; pointer-events: none; }
.cookie-modal-backdrop:not(.open) { display: none !important; }

/* --- Transitional micro-interactions --- */
.btn-primary, .cookie-banner button, .mobile-menu-toggle, .mobile-menu-close {
  transition: background .17s, color .17s, box-shadow .18s, transform .18s;
}

.card, .testimonial-card {
  transition: box-shadow .23s, transform .18s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 7px 24px rgba(1,58,99,0.13);
  transform: translateY(-2px) scale(1.01);
}

/* --- Accessibility contrast for testimonials --- */
.testimonial-card, .testimonial-card p, .testimonial-card span {
  color: #013A63;
  background: #F8F9FA;
  text-shadow: none;
}
.testimonial-card strong { color: #D90429; }

/* --- Misc --- */
hr {
  border: none;
  border-top: 1px solid #EAF1F7;
  margin: 40px 0;
}
table {
  border-collapse: collapse;
}
td, th {
  border: 1px solid #EAF1F7;
  padding: 8px 12px;
  font-size: 0.98rem;
}

/* --- End of Breeze Route Auto CSS --- */
