/* ------------------- 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;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F1FAEE;
  color: #1d3557;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #E63946;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1D3557;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.5em;
}
strong, b {
  font-weight: 700;
}

/* Font Face Example
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;900&family=Roboto:wght@400;500;700&display=swap');
*/
body {
  font-family: 'Roboto', Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -1px;
}
h1 {
  font-size: 2.5rem;
  color: #1D3557;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  color: #E63946;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.25rem;
  color: #1D3557;
  margin-bottom: 10px;
}


/* ------------------ CREATIVE ARTISTIC STYLES ------------------- */
:root {
  --primary: #1D3557;
  --secondary: #E63946;
  --accent: #F1FAEE;
  --creative-violet: #6842ef;
  --creative-peach: #ffad69;
  --creative-lightblue: #43b5ea;
  --transition-hover: background 0.25s, color 0.18s, box-shadow 0.23s, border-color 0.18s;
}

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

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

/* ------------------- HEADER & NAVIGATION ----------------------- */
header {
  background: #1D3557;
  color: #fff;
  box-shadow: 0 2px 10px rgba(29,53,87,0.10);
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 75px;
  gap: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.logo img {
  height: 46px;
  min-width: 90px;
  transition: filter 0.2s;
  border-radius: 8px;
}
.logo img:hover {
  filter: brightness(1.07);
}
nav.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-left: 24px;
}
nav.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #F1FAEE;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: var(--transition-hover);
}
nav.main-nav a:hover, nav.main-nav a:focus {
  color: #E63946;
  border-bottom: 2px solid #E63946;
}

.cta.primary {
  background: #E63946;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 30px;
  padding: 11px 28px;
  margin-left: 18px;
  box-shadow: 0 3px 16px 0 rgba(230,57,70,0.13);
  outline: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-hover);
  letter-spacing: 0.02em;
  border: 2px solid #E63946;
  position: relative;
  overflow: hidden;
}
.cta.primary:after {
  content: '';
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  background: rgba(104,66,239,0); /* artistic violet on hover */
  transition: background 0.25s;
  z-index: 0;
  pointer-events: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: #6842ef;
  color: #fff;
  border-color: #6842ef;
}
.cta {
  background: #F1FAEE;
  color: #1D3557;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border-radius: 28px;
  padding: 10px 24px;
  border: 2px solid #6842ef;
  font-size: 1.05rem;
  box-shadow: 0 2px 12px 0 rgba(68,66,239,0.07);
  transition: var(--transition-hover);
  position: relative;
  display: inline-block;
}
.cta:hover, .cta:focus {
  background: #43b5ea;
  color: #fff;
  border-color: #43b5ea;
}

/* ------------------- MOBILE NAVIGATION ------------------------- */
.mobile-menu-toggle {
  display: none;
  background: #E63946;
  border: none;
  color: #fff;
  font-size: 2rem;
  border-radius: 8px;
  padding: 7px 14px;
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.22s;
  z-index: 2002;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #1D3557;
  color: #ffad69;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100%; width: 100vw;
  background: #6842ef;
  color: #fff;
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  /* Hidden by default */
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 22px 12px 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2010;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #ffad69;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-left: 36px;
  margin-top: 16px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #ffad69;
  border-bottom: 2px solid #ffad69;
}

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

/* -------------------- HERO & FEATURES -------------------------- */
.hero {
  background: linear-gradient(120deg, #F1FAEE 76%, #43b5ea 131%);
  padding: 65px 0 35px;
  margin-bottom: 0;
  overflow: hidden;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero h1 {
  font-size: 2.8rem;
  font-family: 'Montserrat', cursive, sans-serif;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: #1D3557;
  text-shadow: 1px 2px 0 #ffad69, 0px 2px 6px rgba(230,57,70,0.07);
}
.hero p {
  font-size: 1.32rem;
  color: #6842ef;
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.features {
  background: #fff;
  margin-bottom: 0;
}
.features .content-wrapper {
  align-items: flex-start;
  text-align: left;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.feature {
  background: #F1FAEE;
  border-radius: 20px;
  box-shadow: 0 3px 14px 0 rgba(68,66,239,0.04);
  padding: 32px 24px;
  min-width: 210px;
  max-width: 320px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.17s;
  margin-bottom: 0;
  position: relative;
}
.feature img {
  height: 48px; width: 48px;
  margin-bottom: 18px;
  filter: drop-shadow(0 1px 6px #1d355733);
}
.feature h3 {
  margin-bottom: 11px;
  font-size: 1.22rem;
}
.feature p {
  color: #1d3557cc;
  text-align: center;
  font-size: 1.04rem;
}
.feature:hover {
  transform: translateY(-6px) scale(1.035);
  box-shadow: 0 6px 20px #6842ef22;
}

/* -------------------- CARD & GRID UTILITY --------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 18px;
  background: #fff;
  position: relative;
  box-shadow: 0 6px 24px rgba(104, 66, 239, 0.09),0 1.5px 8px #E6394621;
  padding: 24px 20px;
  transition: box-shadow 0.19s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 14px 40px #6842ef2c,0 2.5px 12px #e6394633;
  transform: translateY(-5px);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

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


/* --------------------- TESTIMONIALS -------------------------- */
.testimonials, .testimonials-snippet {
  background: #6842ef;
  color: #fff;
  margin-bottom: 0;
}
.testimonials h1, .testimonials-snippet h2 {
  color: #ffad69;
  text-shadow: 0 3px 10px #1d355770;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  background: #fff;
  color: #1d3557;
  border-radius: 22px;
  box-shadow: 0 4px 24px #e639465e;
  margin-bottom: 24px;
  flex-wrap: wrap;
  min-width: 0;
  max-width: 640px;
}
.testimonial-card blockquote {
  font-size: 1.18rem;
  font-style: italic;
  color: #1D3557;
  margin: 0 0 0.5em 0;
  border-left: 5px solid #E63946;
  padding-left: 16px;
  line-height: 1.5;
}
.testimonial-card p {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #6842ef;
  margin-bottom: 0;
  font-weight: 700;
}

/* CRITICAL - readable on all backgrounds */
.testimonial-card strong { color: #1d3557; }

/* ------------------ OTHER SECTIONS STYLE ---------------------- */
.services-overview {
  background: #ffad69;
  color: #1D3557;
  border-radius: 32px 32px 0 0;
  margin-bottom: 0;
}
.services-overview h2 {
  color: #1D3557;
}
.services-overview ul {
  font-size: 1.08rem;
}
.fleet-preview {
  background: #43b5ea11;
}

.stats, .timeline, .team, .benefits, .process, .about-snippet, .about, .fleet, .safety, .legal, .faq, .contact, .call-to-action, .confirmation, .support-cta {
  background: #fff;
  border-radius: 22px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 20px #6842ef12;
}
@media (max-width: 768px) {
  .stats, .timeline, .team, .benefits, .process, .about-snippet, .about, .fleet, .safety, .legal, .faq, .contact, .call-to-action, .confirmation, .support-cta {
    padding: 32px 10px;
  }
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.service {
  background: #F1FAEE;
  border-radius: 20px;
  padding: 28px 22px;
  box-shadow: 0 2px 14px #43b5ea22;
  min-width: 210px;
  flex: 1 1 210px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.service img {
  height: 44px; width: 44px;
  margin-bottom: 11px;
}
.service:hover {
  box-shadow: 0 10px 36px #43b5ea44;
  transform: translateY(-8px) scale(1.02);
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.benefits-grid li {
  background: #F1FAEE;
  border-radius: 15px;
  padding: 11px 19px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px #6842ef0a;
  color: #1d3557;
  font-size: 1.05rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: #ffad69;
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 2px 18px #43b5ea24;
  transition: box-shadow 0.14s;
}
.faq-item h3 {
  font-size: 1.13rem;
  margin-bottom: 6px;
}
.faq-item p {
  color: #1D3557;
  font-weight: 500;
}
.faq-item:hover {
  box-shadow: 0 6px 20px #E6394620;
}

/* --------------- CONTACT & FOOTER STYLES ---------------------- */
.contact-info-snippet, .contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 1.08rem;
}
.contact-info-snippet img,
.contact-details img {
  height: 18px;
  width: 18px;
  vertical-align: middle;
  margin-right: 9px;
}
.map {
  margin-top: 20px;
  background: #F1FAEE;
  border-radius: 13px;
  padding: 14px 18px;
  font-size: 0.96rem;
}

footer {
  background: #1D3557;
  color: #fff;
  font-size: 0.98rem;
  padding: 24px 0 9px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 7px;
}
.footer-nav a {
  color: #ffad69;
  font-family: 'Montserrat',sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #E63946;
}
.footer-info {
  color: #fff;
  text-align: center;
  opacity: .93;
}

/* --------------- COOKIE CONSENT BANNER & MODAL ----------------- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; width: 100vw;
  background: #6842ef;
  color: #fff;
  z-index: 2500;
  box-shadow: 0 -4px 32px #6842ef26;
  padding: 26px 20px 18px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transition: transform 0.32s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner-message {
  font-size: 1.06rem;
  color: #ffad69;
  max-width: 640px;
  line-height: 1.54;
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border: none;
  padding: 8px 22px;
  font-size: 1.01rem;
  cursor: pointer;
  transition: var(--transition-hover);
  box-shadow: 0 1.5px 5px #1d35572c;
}
.cookie-btn.accept {
  background: #ffad69;
  color: #1d3557;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #E63946;
  color: #fff;
}
.cookie-btn.reject {
  background: #FFF;
  color: #E63946;
  border: 2px solid #E63946;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #E63946;
  color: #fff;
}
.cookie-btn.settings {
  background: #6842ef;
  color: #ffad69;
  border: 2px solid #ffad69;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #ffad69;
  color: #6842ef;
}

/* Cookie Modal Popup */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2600;
  inset: 0;
  background: rgba(29,53,87,0.47);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.24s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 48px #6842ef26;
  padding: 36px 32px 28px 32px;
  min-width: 320px;
  max-width: 94vw;
  color: #1d3557;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: stretch;
}
.cookie-modal h2 {
  color: #6842ef;
  margin-bottom: 4px;
}
.cookie-toggle-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 19px;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-toggle input[type=checkbox] {
  appearance: none;
  background: #F1FAEE;
  border: 2px solid #6842ef;
  width: 28px;
  height: 18px;
  border-radius: 10px;
  position: relative;
  outline: none;
  transition: border 0.13s;
  cursor: pointer;
}
.cookie-toggle input[type=checkbox]:checked {
  background: #43b5ea;
  border-color: #43b5ea;
}
.cookie-toggle input[type=checkbox]::after {
  content: '';
  display: block;
  background: #E63946;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  position: absolute;
  top: 2.5px;
  left: 4px;
  transition: left 0.15s, background 0.18s;
}
.cookie-toggle input[type=checkbox]:checked::after {
  left: 11px;
  background: #6842ef;
}
.cookie-toggle label {
  font-family: 'Montserrat',sans-serif;
  color: #6842ef;
  font-weight: 500;
  font-size: 1.04rem;
}
.cookie-toggle.disabled {
  opacity: 0.55;
}
.cookie-modal .cookie-btn {
  min-width: 120px;
  align-self: flex-end;
  margin-top: 16px;
}

/* Hide visually when closed */
.cookie-modal-overlay:not(.show), .cookie-banner.hide {
  pointer-events: none;
}

/* ------------------- MEDIA QUERIES (RESPONSIVE) --------------- */
@media (max-width: 900px) {
  .feature-grid, .service-list,
  .benefits-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .service-list .service, .feature-grid .feature {
    min-width: 0;
    max-width: 100%;
  }
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 700px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .features, .stats, .timeline, .team, .benefits, .process, .about-snippet, .about, .fleet, .safety, .legal, .faq, .contact, .call-to-action, .confirmation, .support-cta {
    padding: 24px 5px;
    border-radius: 14px;
  }
  .hero {
    padding: 44px 0 17px;
  }
  .footer-nav {
    gap: 10px;
  }
}
@media (max-width: 550px) {
  .hero h1 { font-size: 1.37rem; }
  .hero p { font-size: 1rem; }
  .testimonial-card {
    padding: 13px 7px;
  }
  .card, .faq-item {
    padding: 12px 5px;
    font-size: 0.98rem;
  }
  .feature {
    padding: 18px 8px;
  }
  .service {
    padding: 14px 8px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* --- Artistic Details & Visual Accents --- */
h1, h2, h3 {
  position: relative;
  z-index: 1;
  font-family: 'Montserrat',cursive,sans-serif;
}
h2:after {
  content: '';
  display: block;
  width: 52px;
  height: 5px;
  background: #ffad69;
  border-radius: 2.5px;
  margin: 7px 0 0 0;
}
.features h2:after,
.services-overview h2:after,
.fleet-preview h2:after,
.stats h2:after,
.timeline h2:after,
.team h2:after,
.benefits h2:after,
.process h2:after,
.legal h2:after,
.faq h2:after,
.confirmation h1:after {
  background: #43b5ea;
}

blockquote {
  font-family: 'Montserrat', cursive, sans-serif;
  font-size: 1.10rem;
  color: #6842ef;
  background: #F1FAEE;
  border-radius: 11px;
  padding: 8px 24px;
  margin-bottom: 10px;
}
blockquote:before {
  content: '“';
  font-family: 'Georgia', serif;
  font-size: 2.3rem;
  color: #E63946;
  margin-right: 9px;
  vertical-align: -16px;
}
blockquote:after {
  content: '”';
  font-family: 'Georgia', serif;
  font-size: 2.3rem;
  color: #E63946;
  margin-left: 7px;
  vertical-align: -16px;
}

/* Utility: visually hidden (for a11y) */
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; border: 0; padding: 0; overflow: hidden; clip: rect(0 0 0 0); }

/* Utility: focus-ring */
:focus-visible {
  outline: 2.5px solid #43b5ea;
  outline-offset: 2px;
}

/* Success/confirmation */
.confirmation {
  background: #F1FAEE;
  text-align: center;
}
.confirmation h1 {
  color: #6842ef;
}
.confirmation .cta.primary {
  margin-top: 28px;
}

/* Hide scrollbar in mobile menu */
.mobile-menu {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.mobile-menu::-webkit-scrollbar { display:none; }

/* ---- Modal backdrop z-index ---- */
.cookie-modal-overlay { z-index: 2600; }

/* ========================= END OF FILE ========================= */
