/* 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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  font-size: 16px;
}
body {
  min-height: 100vh;
  background: #181D23;
  color: #F2F2F2;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
img, picture, video {
  max-width: 100%;
  display: block;
}
a {
  color: #4FA3A5;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #F2F2F2;
}
ul, ol {
  list-style: none;
}
strong, b {
  font-weight: 600;
}


/* FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #F2F2F2;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.25;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 16px;
  color: #CDCDCD;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  background: #1D232B;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(34,58,94,0.06);
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* HEADER & NAVIGATION */
header {
  background-color: #181D23;
  border-bottom: 2px solid #2E425C;
  position: sticky;
  top: 0;
  z-index: 1030;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 20px;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #F2F2F2;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
  position: relative;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover,
header nav a:focus {
  background: #223A5E;
  color: #4FA3A5;
}
header nav .cta-button {
  background: #4FA3A5;
  color: #1C262E;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(34,58,94,0.13);
  padding: 10px 26px;
  font-size: 1rem;
  font-weight: 800;
  border: none;
  letter-spacing: 0.03em;
  margin-left: 16px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
header nav .cta-button:hover,
header nav .cta-button:focus {
  background: #223A5E;
  color: #F2F2F2;
  box-shadow: 0 4px 24px rgba(79,163,165,0.25);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: #F2F2F2;
  font-size: 2.2rem;
  cursor: pointer;
  display: none;
  padding: 0 8px;
  margin-left: 10px;
  transition: color 0.16s;
}
.mobile-menu-toggle:focus {
  outline: 1.5px solid #4FA3A5;
  color: #4FA3A5;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 88vw;
  max-width: 340px;
  height: 100vh;
  background: #181D23;
  box-shadow: -4px 0 24px rgba(34,58,94,0.28);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.71,0.06,0.31,0.97);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #4FA3A5;
  font-size: 2.25rem;
  cursor: pointer;
  margin: 18px 18px 0 0;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #F2F2F2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 32px 32px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  color: #F2F2F2;
  font-weight: 600;
  border-radius: 6px;
  padding: 14px 10px;
  margin-bottom: 2px;
  transition: background 0.14s, color 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #2E425C;
  color: #4FA3A5;
}

@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 1024px) {
  .mobile-menu {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* MAIN & FLEX SPACINGS */
main {
  padding-top: 40px;
  padding-bottom: 40px;
  min-height: 75vh;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .content-wrapper {
    gap: 24px;
  }
}

/* FLEX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #212a36;
  border: 1.5px solid #2E425C;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(34,58,94,0.10);
  margin-bottom: 20px;
  position: relative;
  padding: 28px;
  min-width: 265px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.18s, border-color 0.22s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 6px 36px rgba(79,163,165,0.16),0 1.5px 6px rgba(34,58,94,0.09);
  border-color: #4FA3A5;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

/* Feature grid on homepage and vehicles page */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}
.feature-grid > div {
  min-width: 220px;
  flex: 1 1 220px;
  background: #222C36;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(34,58,94,0.09);
  padding: 32px 18px 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border: 1.5px solid #263855;
  transition: box-shadow 0.16s, border-color 0.22s;
}
.feature-grid > div:hover {
  border-color: #4FA3A5;
  box-shadow: 0 6px 36px rgba(79,163,165,0.08),0 2px 8px rgba(34,58,94,0.10);
}
.feature-grid h3 {
  color: #4FA3A5;
  font-size: 1.18rem;
}
.feature-grid img {
  max-width: 48px;
  filter: grayscale(0.50) contrast(1.3);
  margin-bottom: 4px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F2F2F2;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(34,58,94,0.13);
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #223A5E;
  margin: 0 0 0 0;
}
.testimonial-card .author {
  color: #223A5E;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-left: 14px;
}

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

/* Responsive ULs and grids */
.services-list, .benefits-list, .employer-benefits, .benefit-list, .vehicle-highlights ul, .next-steps ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 12px 0 18px 0;
  padding-left: 18px;
  list-style: disc inside;
}
@media (min-width: 600px) {
  .services-list, .benefits-list, .employer-benefits, .benefit-list {
    gap: 14px;
    font-size: 1.06rem;
  }
}

/* HIGHLIGHTS, BADGES, ETC. */
.highlight {
  display: inline-block;
  background: #4FA3A5;
  color: #223A5E;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.08em;
  padding: 6px 15px;
  margin-right: 10px;
  margin-bottom: 8px;
  letter-spacing: 0.005em;
}

/* CTA BUTTONS */
.cta-button {
  background: #4FA3A5;
  color: #181D23 !important;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.13rem;
  border-radius: 7px;
  padding: 12px 36px;
  display: inline-block;
  margin-top: 14px;
  border: none;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(34,58,94,0.10);
  transition: background 0.14s, color 0.13s, box-shadow 0.16s;
  text-align: center;
}
.cta-button:hover,
.cta-button:focus {
  background: #223A5E;
  color: #F2F2F2 !important;
  box-shadow: 0 2px 32px rgba(34,58,94,0.18);
}

/* SECTIONS LAYOUT */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}

@media (max-width: 1024px) {
  .feature-grid {
    flex-direction: column;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.1rem; }
  .section {
    padding: 32px 6px;
    margin-bottom: 36px;
  }
  main {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

/* ABOUT: team/leadership */
.leadership-profiles h3 {
  color: #4FA3A5;
  margin-bottom: 10px;
}
.leadership-profiles ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.leadership-profiles li {
  background: #212A36;
  border-radius: 6px;
  padding: 14px 14px 10px 14px;
  border: 1px solid #243552;
  color: #F2F2F2;
  font-size: 1rem;
}

/* CONTACT/COMPANY DETAILS */
.company-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.company-details b {
  color: #4FA3A5;
}
.company-details a {
  color: #4FA3A5;
  word-break: break-all;
}
.opening-hours h3, .contact-form-note strong {
  color: #4FA3A5;
}
.contact-form-note {
  background: #212A36;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 1rem;
  color: #F2F2F2;
}

/* FOOTER */
footer {
  background: #19212B;
  border-top: 2.5px solid #2E425C;
  color: #ACB7C2;
  padding: 36px 0 12px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
  justify-content: space-between;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a {
  color: #4FA3A5;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 0 7px;
  border-radius: 4px;
  transition: color 0.14s, background 0.14s;
  font-weight: 600;
}
.footer-links a:hover,
.footer-links a:focus {
  background: #29384C;
  color: #F2F2F2;
}
.contact-summary {
  font-size: 1rem;
  color: #ACB7C2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 300px;
}
.contact-summary img {
  width: 18px;
  vertical-align: middle;
  margin-right: 6px;
  filter: grayscale(1) brightness(1.5);
}
.social-media-links {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0 0 8px 0;
}
.social-media-links a {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: none;
  border-radius: 60%;
  transition: background 0.17s;
  width: 38px;
  height: 38px;
  justify-content: center;
}
.social-media-links a:hover,
.social-media-links a:focus {
  background: #223A5E;
}
.social-media-links img {
  width: 22px;
  height: 22px;
}
.legal-disclaimer {
  margin-top: 8px;
  color: #4FA3A5;
  font-size: 13px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5000;
  background: #161A1F;
  color: #F2F2F2;
  box-shadow: 0 -2px 16px rgba(34,58,94,0.22);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  gap: 28px;
  font-size: 1rem;
  transition: transform 0.27s cubic-bezier(.61,.13,.32,.96), opacity 0.19s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  flex: 1;
  color: #F2F2F2;
  font-size: 1.02rem;
  margin-right: 16px;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #4FA3A5;
  color: #181D23;
  border-radius: 4px;
  padding: 7px 18px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin-left: 2px;
  transition: background 0.14s, color 0.14s;
  box-shadow: 0 2px 4px rgba(34,58,94,0.10);
}
.cookie-btn.cookie-reject,
.cookie-btn.cookie-settings {
  background: #2E425C;
  color: #F2F2F2;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #223A5E;
  color: #4FA3A5;
}
.cookie-btn.cookie-accept:hover,
.cookie-btn.cookie-accept:focus {
  background: #19212B;
  color: #4FA3A5;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 10px;
  }
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5051;
  width: 100vw;
  height: 100vh;
  background: rgba(35,58,94,0.47);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  transition: opacity 0.19s, transform 0.17s;
}
.cookie-modal.hide {
  opacity: 0;
  transform: scale(1.08);
  pointer-events: none;
}
.cookie-modal__content {
  background: #212A36;
  color: #F2F2F2;
  border-radius: 14px;
  box-shadow: 0 4px 32px rgba(34,58,94,0.18);
  min-width: 340px;
  max-width: 94vw;
  padding: 32px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
}
.cookie-modal h2 {
  color: #4FA3A5;
}
.cookie-modal__close {
  position: absolute;
  top: 14px;
  right: 22px;
  background: none;
  border: none;
  color: #4FA3A5;
  font-size: 2.15rem;
  cursor: pointer;
  z-index: 10;
  transition: color 0.14s;
}
.cookie-modal__close:hover,
.cookie-modal__close:focus {
  color: #F2F2F2;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.cookie-category {
  background: #223A5E;
  border-radius: 6px;
  padding: 14px 10px;
  color: #F2F2F2;
  font-size: 0.99rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-category.disabled {
  opacity: 0.68;
  color: #ACB7C2;
}
.cookie-toggle {
  appearance: none;
  width: 44px;
  height: 22px;
  background: #212A36;
  border: 1.5px solid #4FA3A5;
  border-radius: 12px;
  outline: none;
  position: relative;
  cursor: pointer;
  transition: background 0.14s, border 0.12s;
}
.cookie-toggle:checked {
  background: #4FA3A5;
  border-color: #223A5E;
}
.cookie-toggle::before {
  content: '';
  display: block;
  position: absolute;
  left: 4px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #F2F2F2;
  transition: left 0.16s, background 0.16s;
}
.cookie-toggle:checked::before {
  left: 24px;
  background: #223A5E;
}
.cookie-modal__actions {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

/* Misc */
.text-section {
  margin-bottom: 12px;
}
.application-instructions {
  margin-top: 12px;
  background: #273144;
  padding: 16px 12px;
  border-radius: 8px;
  font-size: 0.97rem;
  color: #F2F2F2;
}
.next-steps ul {
  padding-left: 14px;
}
@media (max-width: 470px) {
  .cookie-modal__content { min-width: unset; }
}


/* MICRO-INTERACTIONS & SHADOWS */
button, .cta-button, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  outline: none;
}
button:focus, .cta-button:focus, .cookie-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2.5px solid #4FA3A5;
  outline-offset: 1.5px;
}

.card, .feature-grid > div, .testimonial-card {
  transition: box-shadow 0.16s, border-color 0.19s, background 0.13s;
}
.card:active, .feature-grid > div:active {
  background: #212A36;
  border-color: #223A5E;
}
.cta-button:active, .cookie-btn:active {
  opacity: 0.90;
  box-shadow: none;
}

/* SCROLLBAR for modern feel */
::-webkit-scrollbar {
  width: 10px;
  background: #212a36;
}
::-webkit-scrollbar-thumb {
  background: #2E425C;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #4FA3A5;
}

/* Accessibility & Focus States */
a:focus-visible, .cta-button:focus-visible, .cookie-btn:focus-visible {
  outline: 2.5px solid #4FA3A5;
  outline-offset: 2px;
}

/* Hide visually but keep accessible */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* DOTTED HILL - METALLIC ACCENTS */
hr {
  border: 0;
  border-top: 2px solid #4FA3A5;
  opacity: 0.15;
  margin: 36px 0;
}

/* Urban Industrial background textures (Optional) */
body::after {
  content: '';
  pointer-events: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 0;
  opacity: 0.08;
  background: repeating-linear-gradient(135deg,#191e25 0 18px,transparent 21px,transparent 65px), repeating-linear-gradient(-45deg,#2e425c 0 2.5px,transparent 3.5px,transparent 42px);
}

/* --- END OF STYLE.CSS --- */
