/* 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background-color: #F8F6F0;
  color: #2E2220;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #23527C;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #AF4224;
}
ul, ol {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 16px;
  text-align: left;
}
button, input, select, textarea {
  font: inherit;
  outline: none;
  border: none;
  background: none;
}

/* VINTAGE RETRO COLOR PALETTE */
:root {
  --retro-blue: #23527C;
  --retro-mustard: #F2C849;
  --retro-cream: #F8F6F0;
  --retro-brown: #AF4224;
  --retro-mint: #91C7B1;
  --retro-darkbrown: #2E2220;
  --retro-accent: #FFFFFF;
  --retro-orange: #EC9147;
  --retro-gray: #DDD5C2;
  --primary: #23527C;
  --secondary: #F2C849;
  --accent: #FFFFFF;
}

/* VINTAGE RETRO FONTS (with web safe fallbacks) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&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 Black', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 2px;
  color: #2E2220;
  margin-bottom: 16px;
  line-height: 1.1;
}
h1 { font-size: 2.5rem; color: #AF4224; text-shadow: 1px 1px 0 #F2C849; }
h2 { font-size: 2rem; color: #23527C; text-shadow: 1px 1px 0 #F2C849; }
h3 { font-size: 1.4rem; color: #23527C; }

p, li, dd, dt {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #2E2220;
}
strong {
  color: #AF4224;
}

small { font-size: 0.85rem; color: #736357; }

blockquote {
  font-style: italic;
  border-left: 4px solid var(--retro-mustard);
  padding-left: 16px;
  color: #23527C;
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  background: var(--retro-gray);
  border-radius: 6px;
}

/* CONTAINER LAYOUTS */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.section, .about-section, .fleet-section, .pricing-section, .faq-section, .legal-section, .confirmation-section, .contact-section, .team-section, .features-section, .services-section, .testimonials-section, .contact-short-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--retro-accent);
  border-radius: 22px;
  box-shadow: 0 4px 18px 0 rgba(174, 138, 85, 0.08);
  border: 2px solid #EADDA6;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--retro-gray);
  border-radius: 16px;
  margin-bottom: 20px;
  padding: 24px;
  border: 2px solid var(--retro-blue);
  box-shadow: 0 2px 10px 0 rgba(46,34,32, 0.07);
  position: relative;
  min-width: 260px;
  flex: 1 1 320px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 8px 24px 0 rgba(174, 138, 85, 0.13);
}

.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: center;
  gap: 20px;
  padding: 20px;
  background: #FFFCEA;
  border-radius: 16px;
  border: 2px dashed var(--retro-mustard);
  box-shadow: 0 2px 6px rgba(174, 138, 85, 0.12);
  min-width: 280px;
  margin-bottom: 32px;
  margin-top: 20px;
}
.testimonial-meta {
  color: #AF4224;
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-size: 1.05rem;
}

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

/* HERO DESIGN */
.hero-section {
  background: repeating-linear-gradient(135deg, #F2C849, #F2C849 30px, #f8f6f0 30px, #f8f6f0 60px);
  border-bottom: 6px solid #23527C;
  border-radius: 0 0 32px 32px;
}
.hero-section .content-wrapper {
  align-items: center;
  text-align: center;
  padding-top: 36px;
  padding-bottom: 36px;
}
.hero-section h1 {
  font-size: 2.4rem;
  color: #23527C;
  background: var(--retro-mustard);
  border-radius: 18px;
  padding: 10px 25px;
  display: inline-block;
  box-shadow: 0 2px 8px #EADDA6;
  margin-bottom: 14px;
}
.hero-section p {
  max-width: 500px;
  font-size: 1.2rem;
  color: #2E2220;
  margin-bottom: 24px;
}

/* NAVIGATION - HEADER */
header {
  background: var(--retro-blue);
  padding: 0;
  box-shadow: 0 2px 14px 0 rgba(35,82,124,0.09);
  border-bottom: 4px solid #F2C849;
  position: relative;
  z-index: 88;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 16px 20px 4px 20px;
}
header nav > a {
  color: #FFFCEA;
  text-decoration: none;
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
  position: relative;
}
header nav > a:hover, header nav > a:focus {
  background: var(--retro-mustard);
  color: #23527C;
}
header .cta.primary {
  background: var(--retro-mustard);
  color: #23527C !important;
  border: 2px solid #23527C;
  font-weight: 900;
  box-shadow: 1px 2px 0px #EADDA6;
  margin-left: 8px;
}
header .cta.primary:hover, header .cta.primary:focus {
  background: #FFFCEA;
  color: #AF4224 !important;
  border-color: #AF4224;
  box-shadow: 2px 3px 0px #F2C849;
}
header img {
  height: 38px;
  width: auto;
  margin-right: 12px;
  vertical-align: middle;
}

/* MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  background: var(--retro-mustard);
  color: #23527C;
  border: 2px solid #AF4224;
  border-radius: 7px;
  padding: 6px 14px;
  font-size: 1.9rem;
  font-weight: bold;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 13px;
  top: 12px;
  cursor: pointer;
  z-index: 90;
  box-shadow: 0 2px 6px rgba(174,66,36,0.12);
  transition: background 0.17s, color 0.16s;
}
.mobile-menu-toggle:active {
  background: #EADDA6;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #F2C849;
  box-shadow: 2px 0 28px rgba(35,82,124,0.23);
  z-index: 9999;
  transform: translateX(-100vw);
  transition: transform 0.42s cubic-bezier(.83,-0.01,.41,1.01);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #AF4224;
  color: #FFFCEA;
  font-size: 2rem;
  border-radius: 7px;
  padding: 10px 20px;
  border: 2px solid #FFFCEA;
  margin: 22px 20px 2px 0;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F2C849;
  color: #2E2220;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 36px 0 36px;
  width: 100%;
}
.mobile-nav a {
  color: #2E2220;
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 6px 10px 6px;
  border-radius: 5px;
  width: 100%;
  transition: background 0.18s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #23527C;
  color: #FFFCEA;
}

/* Hide menu for desktop, show for mobile */
@media (max-width: 990px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
}

/* FOOTER */
footer {
  background: #23527C;
  color: #FFFCEA;
  padding: 0 0 22px 0;
  border-top: 5px solid #F2C849;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 42px 20px 8px 20px;
  text-align: center;
}
footer a {
  color: #F2C849;
  text-decoration: underline;
  margin: 0 8px;
  font-weight: 600;
}
footer a:hover, footer a:focus {
  color: #FFD363;
}
footer img {
  height: 35px;
  margin-bottom: 10px;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  align-items: center;
  font-size: 0.96rem;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  margin: 0;
}

/* CTA BUTTONS */
.cta, .cta.primary {
  display: inline-block;
  background: var(--retro-blue);
  color: var(--retro-mustard);
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 1.1rem;
  border-radius: 11px;
  padding: 12px 32px;
  border: 2px solid var(--retro-mustard);
  box-shadow: 0 2px 8px 0 rgba(35,82,124,0.10);
  transition: background 0.19s, color 0.18s, box-shadow 0.16s, border 0.17s;
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 12px;
  text-decoration: none;
}
.cta.primary {
  background: var(--retro-mustard);
  color: var(--retro-blue);
  border: 2px solid var(--retro-blue);
}
.cta:hover, .cta:focus {
  background: #FFFCEA;
  color: #AF4224;
  border-color: #AF4224;
  box-shadow: 0 5px 14px 0 rgba(226,44,49,0.12);
  text-decoration: none;
}

@media (max-width: 768px) {
  .section, .about-section, .fleet-section, .pricing-section, .faq-section, .legal-section, .confirmation-section, .contact-section, .team-section, .features-section, .services-section, .testimonials-section, .contact-short-section {
    padding: 24px 6px;
    margin-bottom: 36px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .testimonial-card {
    min-width: unset;
    margin-bottom: 16px;
  }
  footer .container {
    padding: 28px 4px 4px 4px;
  }
}

/* FEATURES, SERVICES, TEAM SECTIONS, FLEX LAYOUTS */
.features-section ul,
.services-section ul,
.team-section ul,
.fleet-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex-direction: row;
  justify-content: flex-start;
  margin: 0 0 24px 0;
}
.features-section ul li,
.services-section ul li,
.team-section ul li,
.fleet-section ul li {
  background: var(--retro-mint);
  border-radius: 9px;
  padding: 18px 14px 18px 20px;
  min-width: 230px;
  flex: 1 1 230px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 13px;
  box-shadow: 0 2px 8px 0 rgba(46,34,32,0.09);
  border: 1.5px solid #EADDA6;
  margin-bottom: 20px;
  font-family: 'Roboto', Arial, sans-serif;
}
.features-section ul img,
.services-section ul img,
.team-section ul img,
.fleet-section ul img {
  width: 33px;
  height: 33px;
  margin-right: 6px;
}

@media (max-width: 768px) {
  .features-section ul, .services-section ul, .team-section ul, .fleet-section ul {
    flex-direction: column;
    gap: 10px;
  }
  .features-section ul li,
  .services-section ul li,
  .team-section ul li,
  .fleet-section ul li {
    min-width: 180px;
    padding: 12px 10px 12px 13px;
    font-size: 0.97rem;
  }
}

.text-section {
  max-width: 690px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* PRICING TABLE */
table {
  background: #FFFCEA;
  box-shadow: 0 2px 12px #EADDA6;
  border-radius: 10px;
  margin-bottom: 26px;
  font-size: 1rem;
  overflow: hidden;
}
thead th {
  background: var(--retro-mustard);
  color: #2E2220;
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-size: 1.1rem;
  border-bottom: 2px solid #23527C;
}
tbody td {
  border-bottom: 1px solid #EADDA6;
}
tbody tr:last-child td {
  border-bottom: none;
}
tbody td, thead th {
  min-width: 120px;
}

/* FAQ STYLES */
.faq-section dl {
  margin: 0 0 28px 0;
}
.faq-section dt {
  font-family: 'Montserrat', Arial Black, Arial, sans-serif;
  font-weight: 700;
  color: #23527C;
  font-size: 1.09rem;
  margin-bottom: 8px;
  margin-top: 18px;
}
.faq-section dd {
  margin-bottom: 8px;
  color: #2E2220;
}

/* TEXT-IMAGE-SECTION RESPONSIVE */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 13px;
  }
}

/* COOKIES BANNER STYLE */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #23527C;
  color: #FFFCEA;
  width: 100vw;
  z-index: 9991;
  box-shadow: 0 -2px 18px 0 rgba(35,82,124,0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px 18px 30px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  animation: cookieBannerFadeIn 0.5s;
}
@keyframes cookieBannerFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  border-radius: 7px;
  border: 2px solid #F2C849;
  background: #F2C849;
  color: #23527C;
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  padding: 8px 19px;
  margin: 0;
  cursor: pointer;
  transition: background 0.16s, color 0.17s;
}
.cookie-banner button.reject {
  background: #FFFCEA;
  color: #AF4224;
  border-color: #AF4224;
}
.cookie-banner button.settings {
  background: #23527C;
  border-color: #F2C849;
  color: #F2C849;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #AF4224;
  color: #FFFCEA;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 9993;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(35,82,124,0.35);
  animation: cmfade .24s;
}
@keyframes cmfade {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 96vw;
  max-width: 400px;
  transform: translate(-50%,-50%);
  background: #FFFCEA;
  border: 2.5px solid #F2C849;
  border-radius: 16px;
  padding: 28px 18px 18px 18px;
  z-index: 9994;
  box-shadow: 0 8px 32px 0 rgba(174,138,85,0.18);
  font-family: 'Roboto', Arial, sans-serif;
  animation: cmdrop 0.36s cubic-bezier(.83,-0.01,.41,1.01);
}
@keyframes cmdrop {
  from { opacity: 0; transform: translate(-50%, -30%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}
.cookie-modal h2 {
  margin-bottom: 11px;
  font-size: 1.34rem;
  color: #23527C;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  font-size: 1.07rem;
  gap: 13px;
  padding: 4px 0;
  color: #2E2220;
}
.cookie-modal .cookie-category {
  margin-bottom: 18px;
}
.cookie-modal input[type=checkbox] {
  accent-color: #F2C849;
  transform: scale(1.2);
  margin-top: 2px;
  pointer-events: auto;
}
.cookie-modal input[disabled] {
  accent-color: #23527C;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 11px;
  margin-top: 18px;
}
.cookie-modal button {
  border-radius: 7px;
  border: 2px solid #F2C849;
  background: #F2C849;
  color: #23527C;
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  padding: 8px 19px;
  margin: 0;
  cursor: pointer;
}
.cookie-modal button.close {
  background: #23527C;
  color: #F2C849;
  border: 2px solid #F2C849;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #AF4224;
  color: #FFFCEA;
}

/* OVERRIDE - NO GRID ALLOWED */
[class*=grid], [class*=col] {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
}

/* LEGAL SECTIONS, PAGES */
.legal-section h1 {
  font-size: 2.2rem;
  color: #AF4224;
  text-shadow: 1px 1px 0 #F2C849;
}
.legal-section h2 {
  font-size: 1.19rem;
  color: #23527C;
  margin-top: 19px;
  margin-bottom: 11px;
}
.legal-section ul {
  margin-left: 18px;
  list-style: circle inside;
  color: #2E2220;
}

/* CONTACT PAGE */
.contact-section h2 {
  color: #23527C;
  text-shadow: none;
  font-size: 1.19rem;
  margin-top: 12px;
}
.contact-section p img {
  height: 18px;
  width: 18px;
  margin-right: 7px;
}

/* THANK YOU PAGE & CONFIRMATION */
.confirmation-section {
  background: repeating-linear-gradient(135deg, #F2C849, #F2C849 28px, #FFFCEA 28px, #FFFCEA 56px);
  text-align: center;
  align-items: center;
}
.confirmation-section h1 {
  color: #23527C;
  margin-bottom: 8px;
}

@media (max-width:550px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.2rem; }
  .cta, .cta.primary { font-size: 0.98rem; padding: 11px 16px; }
}

/* MICRO-INTERACTIONS & HOVERS */
.cta, .cta.primary, header nav > a, .mobile-nav a, .cookie-banner button, .cookie-modal button {
  transition: background 0.23s, color 0.18s, border 0.18s, box-shadow 0.17s, transform 0.16s;
}
.card, .testimonial-card, .features-section ul li {
  transition: box-shadow 0.20s, transform 0.17s;
}
.card:hover, .features-section ul li:hover {
  transform: translateY(-3px) scale(1.022);
  box-shadow: 0 12px 32px 0 rgba(35,82,124,0.12);
}
.testimonial-card:hover {
  transform: translateY(-2px) scale(1.018);
  box-shadow: 0 6px 18px 0 rgba(174,138,85,0.14);
}

/* SPACING ENFORCEMENT */
.section, .about-section, .fleet-section, .pricing-section, .faq-section, .legal-section, .confirmation-section, .contact-section, .team-section, .features-section, .services-section, .testimonials-section, .contact-short-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
}
.content-grid {
  gap: 20px;
}
.text-image-section {
  gap: 30px;
}
.testimonial-card {
  gap: 20px;
  padding: 20px;
}
.feature-item {
  gap: 15px;
}

/* PREVENT OVERLAP & MARGINS */
section, .section {
  margin-bottom: 60px;
}
section:last-child {
  margin-bottom: 0;
}

/* SCROLLBAR
::-webkit-scrollbar {width: 10px;background: #f7f2e3;}
::-webkit-scrollbar-thumb {background: #EADDA6; border-radius: 5px;}
::-webkit-scrollbar-thumb:hover {background: #F2C849;}
*/

/* PRINT FRIENDLY */
@media print {
  body { background: #FFF !important; }
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
}
