/* =========================
  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, 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #fff;
  color: #0e2540;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #13476e;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1ea36c;
}
ul, ol {
  margin: 0 0 16px 18px;
  padding: 0;
}
li {
  margin-bottom: 10px;
  list-style-type: disc;
}
strong {
  font-weight: 700;
}
button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}

/* =========================
  BRAND VARIABLES (FOR REFERENCE)
========================= */
:root {
  --primary: #13476e;
  --primary-dark: #0e2540;
  --secondary: #ffffff;
  --secondary-alt: #e4e7ec;
  --accent: #1ea36c;
  --accent-dark: #13784d;
  --electric-magenta: #ff007b;
  --electric-yellow: #f7ff00;
  --light-grey: #f8fafb;
  --box-shadow: 0 6px 24px 0 rgba(19, 71, 110, 0.08);
  --border-radius: 18px;
}

/* =========================
  TYPOGRAPHY & HEADINGS
========================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.5rem;
  color: var(--electric-magenta);
  text-shadow: 0px 3px 32px #ffb5e0;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  color: var(--primary);
}
h3 {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #20242e;
}
.text-section h2 {
  color: var(--primary);
  font-weight: 800;
}

/* =========================
  CONTAINER AND LAYOUT BASICS
========================= */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--light-grey);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* style per requirements */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  margin-bottom: 20px;
  background: var(--secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  transition: box-shadow 0.25s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 12px 36px 0 rgba(19, 71, 110, 0.16);
  transform: translateY(-4px) scale(1.03);
}
.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: 12px;
  padding: 20px 28px;
  margin-bottom: 20px;
  background: #fff;
  border-left: 6px solid var(--electric-magenta);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 16px 0 rgba(30, 163, 108, 0.10);
  color: #1f2636;
  transition: box-shadow 0.2s, background 0.2s;
}
.testimonial-card span {
  color: var(--primary);
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
}
.testimonial-card:hover {
  background: var(--secondary-alt);
  box-shadow: 0 6px 32px 0 rgba(255, 0, 123, 0.07);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =========================
  HEADER & NAVIGATION
========================= */
header {
  width: 100%;
  background: var(--primary);
  box-shadow: 0 2px 16px 0 rgba(19, 71, 110, 0.11);
  position: sticky;
  top: 0;
  z-index: 80;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 20px;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  position: relative;
  padding: 6px 0;
  transition: color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--electric-yellow);
}
.cta.primary {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--secondary);
  border-radius: 50px;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-left: 20px;
  box-shadow: 0 2px 12px 0 rgba(30, 163, 108, 0.13);
  border: none;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.11s;
  cursor: pointer;
  text-transform: uppercase;
  text-shadow: 0px 2px 12px #19d78d23;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--electric-magenta);
  color: var(--secondary-alt);
  transform: scale(1.05);
  box-shadow: 0 6px 26px 0 rgba(255, 0, 123, 0.16);
}

/* Hamburger button */
.mobile-menu-toggle {
  background: var(--electric-magenta);
  color: var(--secondary);
  width: 44px;
  height: 44px;
  font-size: 2rem;
  border-radius: 50%;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.14s, transform 0.15s;
  position: relative;
  z-index: 999;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--electric-yellow);
  color: var(--primary-dark);
  outline: none;
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  z-index: 1001;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.5,-0.11,.48,1.47);
  opacity: 0.99;
  box-shadow: 0px 2px 64px 0 rgba(19, 71, 110, 0.19);
  padding: 0 32px 32px 32px;
  gap: 40px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--electric-yellow);
  color: var(--primary);
  border: none;
  font-size: 2.3rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-self: flex-end;
  margin-top: 22px;
  margin-bottom: 20px;
  transition: background 0.18s, color 0.15s, transform 0.13s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--electric-magenta);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.mobile-nav a {
  font-size: 1.22rem;
  color: var(--electric-yellow);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  transition: color 0.16s, background 0.18s;
  border-radius: 10px;
  padding: 10px 14px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--primary);
  background: var(--electric-magenta);
}

@media (max-width: 1000px) {
  .main-nav {
    gap: 14px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* =========================
  HERO SECTION
========================= */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(100deg, var(--primary) 0%, var(--accent-dark) 80%);
  padding: 64px 0 40px 0;
  min-height: 55vh;
}
.hero .container {
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 22px;
  max-width: 580px;
  background: rgba(255,255,255,0.90);
  border-radius: var(--border-radius);
  padding: 40px 32px;
  box-shadow: 0 6px 36px 0 rgba(19,71,110,0.06);
  align-items: flex-start;
}
.hero h1 {
  color: var(--electric-magenta);
  font-size: 2.7rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.05;
  letter-spacing: -2px;
}
.hero p {
  color: var(--primary-dark);
  font-size: 1.18rem;
  font-weight: 500;
  margin-bottom: 22px;
}
.hero .cta.primary {
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

/* =========================
   FEATURES, SERVICES, ETC.
========================= */
.features, .services, .about-short, .contact-cta, .team, .fleet, .security, .service-details, .map, .legal, .thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features ul, .services ul, .fleet ul, .about-short ul,
.about ul, .security ul, .service-details ul, .legal ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}
.features li, .services li, .about-short li, .about li, .fleet li, .security li, .service-details li, .legal li {
  font-size: 1.08rem;
  color: var(--primary-dark);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  list-style: disc inside;
  display: flex;
  align-items: center;
  gap: 10px;
}
.features li img, .about-short li img, .about li img, .fleet li img, .service-details li img, .security li img {
  width: 26px;
  height: 26px;
  display: inline-block;
  vertical-align: middle;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
}
.service-card {
  flex: 1 1 240px;
  min-width: 200px;
  max-width: 330px;
  background: var(--secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 26px 22px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.19s;
  position: relative;
  border-left: 5px solid var(--accent);
}
.service-card:hover,
.service-card:focus-within {
  box-shadow: 0 8px 28px 0 rgba(19,71,110,0.16);
  border-left-color: var(--electric-magenta);
  transform: translateY(-4px) scale(1.03);
}
.service-price {
  color: var(--electric-magenta);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 1.07rem;
  background: var(--electric-yellow);
  display: inline-block;
  border-radius: 14px;
  padding: 4px 14px;
  margin-top: 8px;
}

/* =========================
   TESTIMONIALS & CTA
========================= */
.testimonials {
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--border-radius);
}
.testimonials h2, .testimonials h1 {
  color: var(--electric-yellow);
  text-shadow: 0 4px 24px #19304f69;
}
.testimonials .testimonial-card {
  background: #fff;
  border-left: 6px solid var(--electric-magenta);
  color: #121212;
  margin-bottom: 28px;
}
.contact-cta {
  text-align: center;
  background: var(--accent);
  border-radius: var(--border-radius);
  color: var(--secondary);
  box-shadow: 0 2px 24px 0 rgba(19,71,110,0.12);
}
.contact-cta h2, .contact-cta p {
  color: #fff;
}
.contact-cta .cta.primary {
  background: var(--electric-magenta);
  color: var(--electric-yellow);
}
.contact-cta .cta.primary:hover,
.contact-cta .cta.primary:focus {
  background: var(--electric-yellow);
  color: var(--primary-dark);
}
.cta {
  margin-top: 12px;
}

/* =========================
  FOOTER
========================= */
footer {
  background: var(--primary);
  padding: 32px 0 22px 0;
  color: var(--secondary);
  width: 100%;
  position: relative;
  z-index: 10;
  margin-top: 40px;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
footer .content-wrapper {
  flex-direction: row;
  width: 100%;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  font-size: 0.95rem;
}
.footer-nav a {
  color: var(--electric-yellow);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.98rem;
}
.footer-contact img {
  height: 33px;
  margin-bottom: 5px;
}
.footer-contact address {
  font-style: normal;
  color: #f6fcff;
}
.footer-contact a {
  color: #fff;
  border-bottom: 2px dotted var(--electric-yellow);
  font-weight: bold;
  transition: color 0.19s;
}
.footer-contact a:hover {
  color: var(--electric-magenta);
  border-bottom: 2px solid var(--electric-magenta);
}

/* =========================
  COOKIES BANNER + MODAL
========================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4444;
  width: 100vw;
  max-width: 100vw;
  padding: 24px;
  background: var(--primary-dark);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -3px 24px 0 rgba(19, 71, 110, 0.15);
  color: var(--electric-yellow);
  font-size: 1.04rem;
  gap: 24px;
  animation: cookies-slide-up 0.95s cubic-bezier(.62,0,.43,1.34);
}
@keyframes cookies-slide-up {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 2;
  margin-bottom: 0;
  color: var(--electric-yellow);
  font-size: 1rem;
}
.cookie-actions {
  display: flex;
  gap: 12px;
  flex: 1;
  justify-content: flex-end;
}
.cookie-btn {
  padding: 7px 18px;
  font-size: 1rem;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  cursor: pointer;
  margin-left: 0;
  border: none;
  background: var(--electric-yellow);
  color: var(--primary-dark);
  transition: background 0.18s, color 0.14s, box-shadow 0.16s;
}
.cookie-btn.settings {
  background: var(--electric-magenta);
  color: #fff;
  font-weight: 700;
  margin-left: 4px;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--accent);
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: var(--primary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--electric-magenta);
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--electric-yellow);
  color: var(--primary);
}

/* Cookie Modal */
#cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 4445;
  align-items: center;
  justify-content: center;
}
#cookie-modal.active {
  display: flex;
}
.cookie-modal-content {
  background: var(--secondary);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 64px 6px rgba(19,71,110,0.23);
  max-width: 430px;
  width: 95vw;
  padding: 42px 30px 28px 30px;
  color: var(--primary);
  animation: modal-pop .42s cubic-bezier(.62,0,.43,1.34);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
@keyframes modal-pop {
  0% {transform: scale(0.6) translateY(100px); opacity: 0;}
  100% {transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal-content h2 {
  color: var(--accent);
  margin-bottom: 7px;
}
.cookie-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px 0 6px 0;
  font-size: 1rem;
}
.cookie-cat label {
  font-size: 1.04rem;
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  background: var(--secondary-alt);
  border-radius: 12px;
  position: relative;
  transition: background 0.17s;
  display: inline-block;
  margin-left: 10px;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 20px;
  height: 20px;
  background: var(--electric-magenta);
  border-radius: 50%;
  transition: transform 0.16s, background 0.12s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  transform: translateX(20px);
  background: var(--accent);
}
.cookie-modal-content .cookie-btns {
  margin-top: 24px;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 22px;
  font-size: 2rem;
  color: var(--accent);
  background: none;
  border: none;
  border-radius: 50%;
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--electric-yellow);
  color: var(--primary-dark);
}

/* =========================
  MISC ELEMENTS
========================= */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.map .content-wrapper {
  gap: 0;
}

/* =========================
  RESPONSIVE DESIGN
========================= */
@media (max-width: 1200px) {
  .container {
    max-width: 990px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 760px;
  }
  .footer-contact img {
    display: none;
  }
}
@media (max-width: 900px) {
  footer .container, footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-nav {
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .content-wrapper, .card-container, .service-cards, .features ul, .footer-nav {
    flex-direction: column;
    gap: 14px;
  }
  .hero {
    min-height: 36vh;
    padding: 36px 0 18px 0;
  }
  .hero .content-wrapper {
    padding: 18px 6px;
  }
  .feature-item {
    gap: 9px;
  }
  .section {
    padding: 24px 10px;
    margin-bottom: 34px;
  }
  .card, .service-card {
    padding: 18px 10px;
    margin-bottom: 16px;
  }
  .testimonials {
    padding: 22px 5vw;
  }
  .testimonial-card {
    padding: 13px 9px;
    margin-bottom: 14px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.94rem;
  }
  .cookie-actions {
    width: 100%;
    justify-content: flex-start;
    gap: 9px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.12rem;
  }
  .cookie-modal-content {
    padding: 22px 6vw 18px 6vw;
    font-size: 0.96rem;
  }
}
@media (max-width: 480px) {
  .card, .service-card {
    min-width: unset;
    max-width: 95vw;
  }
  .cookie-banner {
    padding: 18px 8px;
    font-size: 0.92rem;
  }
  .cookie-modal-content {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}

/* =========================
  UTILITY CLASSES
========================= */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

/* =========================
  PRINT SUPPORT
========================= */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, #cookie-modal, nav, footer { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}

/* =========================
  END STYLES
========================= */
