/* 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, u, 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #f8f8fa;
  color: #1A4D77;
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* VARIABLES (with fallbacks for older browsers) */
:root {
  --brand-primary: #1A4D77;
  --brand-secondary: #FFD700;
  --accent: #FFFFFF;
  --text-dark: #1A4D77;
  --text-light: #FFFFFF;
  --bg-hero: #E3F6FE;
  --bg-card: #FFFFFF;
  --bg-accent: #FFD700;
  --shadow: 0 6px 24px rgba(26,77,119,0.08), 0 1.5px 5px rgba(26,77,119,0.08);
  --radius: 18px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* UTILITY FLEX CLASSES */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  min-width: 240px;
  flex: 1 1 240px;
}
.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: 20px;
  padding: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  margin-bottom: 20px;
  min-width: 260px;
  flex: 1 1 260px;
  max-width: 420px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: var(--brand-primary);
  color: var(--text-light);
  box-shadow: 0 4px 16px rgba(26,77,119,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo-header img {
  height: 46px;
  width: auto;
  margin-right: 24px;
  vertical-align: middle;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 16px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  color: var(--text-light);
  font-family: var(--font-display);
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 0;
  transition: color 0.16s, background 0.18s;
  border-radius: 8px;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--brand-secondary);
  background: rgba(255,255,255,0.08);
}
.main-nav .btn-primary {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  padding: 10px 22px;
  border-radius: 99px;
  box-shadow: 0 2px 8px rgba(255,215,0,0.09);
  font-weight: bold;
  font-size: 17px;
  letter-spacing: 0.04em;
  margin-left: 12px;
  border: none;
  transition: background 0.2s,color 0.2s,box-shadow 0.2s;
}
.main-nav .btn-primary:hover,
.main-nav .btn-primary:focus {
  background: #fae135;
  color: #1A4D77;
  box-shadow: 0 3px 16px rgba(255,215,0,0.17);
}
.mobile-menu-toggle {
  display: none;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border: none;
  font-size: 32px;
  padding: 8px 14px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255,215,0,0.12);
  transition: background 0.18s;
  margin-left: 18px;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #fae135;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,77,119,0.97);
  z-index: 1600;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.65,0,0.35,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: transparent;
  color: #FFD700;
  font-size: 36px;
  border: none;
  padding: 24px 24px 6px 16px;
  cursor: pointer;
  align-self: flex-end;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 40px 32px 10px 36px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.04em;
  transition: color 0.18s;
  padding: 6px 10px;
  border-radius: 9px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #FFD700;
  background: rgba(255,255,255,0.11);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(96deg, #fdfdff 0%, #e0eaff 100%);
  border-bottom: 4px solid var(--brand-secondary);
  padding: 54px 0 44px 0;
  margin-bottom: 50px;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 300px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--brand-primary);
  margin-bottom: 18px;
  letter-spacing: -1px;
  line-height: 1.08;
}
.hero p {
  font-size: 1.25rem;
  font-family: var(--font-body);
  color: #253a53;
  margin-bottom: 34px;
  max-width: 570px;
}
.hero .btn-primary {
  font-size: 1.15rem;
  padding: 16px 34px;
}

/* BUTTONS & INTERACTIVE */
.btn-primary {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 99px;
  padding: 12px 32px;
  box-shadow: 0 3px 18px rgba(255,215,0,0.16);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.17s, color 0.17s, box-shadow 0.15s, transform 0.16s;
  line-height: 1.2;
  display: inline-block;
  margin-top: 8px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #fae135;
  box-shadow: 0 7px 24px rgba(255,215,0,0.25);
  color: var(--brand-primary);
  transform: translateY(-2px) scale(1.04);
}
.btn-secondary {
  background: var(--brand-primary);
  color: var(--brand-secondary);
  border-radius: 10px;
  padding: 9px 24px;
  border: 2px solid var(--brand-secondary);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  transition: background 0.16s, color 0.14s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #1A4D77cc;
  color: #fff;
}

/* TYPOGRAPHY */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  color: var(--brand-primary);
  font-weight: 900;
  line-height: 1.08;
}
h1 { font-size: 2.25rem; margin-bottom: 20px; }
h2 { font-size: 1.65rem; margin-bottom: 12px; }
h3 { font-size: 1.32rem; margin-bottom: 8px; }
h4,h5 { font-size: 1rem; margin-bottom: 7px; }
strong { font-weight: 700; }
p,li,span,div,address,td,th { font-family: var(--font-body); }
p,li,td,th,span,address { font-size: 16px; letter-spacing: 0.01em; }

ul,ol {
  margin-left: 28px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
li {
  line-height: 1.65;
}

/* FEATURE GRID STYLING */
.feature-grid, .fleet-highlights, .service-list, .included-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  align-items: flex-start;
  margin-top: 8px;
  margin-bottom: 16px;
  list-style: none;
}
.feature-grid li, .fleet-highlights li, .service-list li, .included-services-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border-radius: var(--radius);
  padding: 15px 20px;
  box-shadow: var(--shadow);
  color: #1A4D77;
  font-weight: 500;
  min-width: 245px;
  font-size: 16px;
  margin-bottom: 0;
}
.feature-grid img, .fleet-highlights img, .service-list img, .included-services-list img {
  height: 28px;
  width: 28px;
}

/* CARDS (e.g., .service-card, .testimonial-card) */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 22px;
}
.service-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 1 1 270px;
  min-width: 260px;
  max-width: 370px;
  padding: 24px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.18s, box-shadow 0.18s;
  border: 3px solid #FFD70010;
}
.service-card:hover, .service-card:focus {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 14px 32px rgba(26,77,119,0.12),0 1.5px 5px rgba(26,77,119,0.08);
  border-color: #FFD700CC;
}

/* CARDS INSIDE FLEX CONTAINERS */
.fleet-overview, .model-specs, .pricing-plans, .pricing-notes, .thank-you-message, .next-steps, .contact-details, .cta-contact {
  margin-bottom: 22px;
}
.fleet-overview ul, .model-specs ul {
  gap: 13px;
}
.fleet-overview li, .model-specs li {
  background: #fafdff;
  border-radius: 10px;
  padding: 10px 18px;
  box-shadow: 0 1px 6px rgba(26,77,119,0.05);
  margin-bottom: 0;
}

/* TESTIMONIALS */
.testimonials {
  background: #fafdff;
  padding: 44px 0 38px 0;
  margin-bottom: 58px;
}
.testimonials .container,
.testimonials .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  color: #1A4D77;
  font-style: italic;
  border-left: 6px solid var(--brand-secondary);
  box-shadow: 0 7px 32px #FFD70010;
  font-size: 17px;
  margin-right: 30px;
  margin-left: 0;
  transition: box-shadow 0.14s, border-color 0.14s;
}
.testimonial-card:hover {
  border-color: #FAE135;
  box-shadow: 0 16px 32px #FFD70022;
}
.testimonial-card strong {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--brand-primary);
  font-size: 16px;
}
.testimonial-card span {
  font-style: normal;
  color: #222f3d;
  font-size: 15px;
  opacity: 0.96;
}

/* CTA SECTION */
.cta {
  background: linear-gradient(87deg, #FFD700 16%, #fffbe0 100%);
  border-radius: var(--radius);
  box-shadow: 0 18px 24px #FFD70009;
  margin-bottom: 50px;
  padding: 36px 0 44px 0;
}
.cta .container {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cta h2 {
  color: var(--brand-primary);
  text-align: center;
  margin-bottom: 16px;
}
.cta .btn-primary {
  margin: 0 auto;
  display: block;
  font-size: 20px;
}

/* ACCORDION FAQ */
.accordion-faq {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.faq-item {
  background: #FFFFFF;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 22px 12px 22px;
  cursor: pointer;
  transition: box-shadow 0.16s;
  margin-bottom: 12px;
}
.faq-item:hover {
  box-shadow: 0 9px 28px rgba(26,77,119,0.11);
}
.faq-item h2 {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 7px;
  cursor: pointer;
}
.faq-answer {
  font-size: 16px;
  color: #1A4D77;
  background: #fafdff;
  padding: 10px 7px 12px 0;
  border-radius: 8px;
  margin-bottom: 3px;
  transition: max-height 0.22s;
}

/* TABLES */
.rate-table {
  width: 100%;
  border-spacing: 0;
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.rate-table th, .rate-table td {
  padding: 18px 14px;
  border-bottom: 1px solid #e2e7ef;
  font-size: 16px;
}
.rate-table th {
  background: #FFD70033;
  color: #1A4D77;
  font-family: var(--font-display);
  font-weight: 900;
  text-align: left;
}
.rate-table td {
  background: #fff;
}
.rate-table tr:last-child td {
  border-bottom: none;
}

/* SUPPORT/CONTACT ELEMENTS */
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin: 18px 0;
}
.social-links a img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 2px 6px #FFD700A0);
  transition: transform 0.13s;
}
.social-links a:hover img,
.social-links a:focus img {
  transform: scale(1.16) rotate(-7deg);
  filter: brightness(1.17) drop-shadow(0 5px 16px #FFD70044);
}
.cta-contact {
  padding-top: 12px;
}

/* ADDRESS BLOCK */
.address-block,
.working-hours {
  background: #fafdff;
  border-radius: 11px;
  padding: 18px 24px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.address-block img,
.working-hours img {
  height: 18px;
  width: 18px;
  margin-right: 7px;
}

/* FOOTER */
footer {
  background: var(--brand-primary);
  color: var(--brand-secondary);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 46px 0 0 0;
  position: relative;
  margin-top: 40px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo img {
  height: 46px;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 12px #FFD70033);
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  margin-bottom: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: var(--brand-secondary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: color 0.15s;
  padding: 5px 8px;
  border-radius: 7px;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #fffde5;
  background: rgba(255,215,0,0.11);
}
footer address {
  color: #fff;
  font-style: normal;
  margin-bottom: 4px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
}
footer address span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-note {
  color: #d7c40b;
  font-size: 14px;
  margin-top: 3px;
  margin-bottom: 18px;
}

/* MISCELLANEOUS SECTIONS */
.privacy-text, .gdpr-text, .cookie-text, .terms-text, .thank-you-message {
  background: #fff;
  color: #1A4D77;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 18px;
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 1.6;
}
.quality-guarantee {
  background: #fffde2;
  border-radius: 10px;
  padding: 14px 18px;
  color: #1A4D77;
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15.5px;
  font-weight: 600;
  border-left: 4px solid var(--brand-secondary);
}

/* Cookie Consent Banner */
#cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--brand-primary);
  color: var(--brand-secondary);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 25px 16px;
  gap: 26px;
  z-index: 2500;
  box-shadow: 0 -8px 22px #1A4D775c;
  font-size: 16px;
  font-family: var(--font-body);
  border-radius: 24px 24px 0 0;
  transition: transform 0.36s cubic-bezier(0.7,0,0.3,1), opacity 0.22s;
}
#cookie-consent-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
#cookie-consent-banner .banner-message {
  flex: 1 1 340px;
  color: var(--brand-secondary);
}
#cookie-consent-banner .banner-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
#cookie-consent-banner .btn-primary, #cookie-consent-banner .btn-secondary {
  box-shadow: none;
  font-size: 16px;
  padding: 8px 22px;
  border-radius: 8px;
}
#cookie-consent-banner .btn-secondary {
  background: #fff;
  color: #1A4D77;
  border: 2px solid #FFD700;
}
#cookie-consent-banner .btn-secondary:hover,
#cookie-consent-banner .btn-secondary:focus {
  background: #FFD700;
  color: #1A4D77;
}

/* Cookie Modal Overlay */
#cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 2900;
  background: rgba(26,77,119,0.94);
  align-items: center;
  justify-content: center;
}
#cookie-modal.open {
  display: flex;
}
#cookie-modal .modal-content {
  background: #fff;
  color: #1A4D77;
  border-radius: 16px;
  box-shadow: 0 12px 40px #1A4D7733;
  max-width: 380px;
  min-width: 90vw;
  width: 100%;
  max-width: 430px;
  padding: 38px 28px 34px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#cookie-modal .modal-header {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--brand-primary);
}
#cookie-modal .modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #FFD700;
  cursor: pointer;
}
#cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #e7e7f0;
}
#cookie-modal .category-switch {
  margin-left: 18px;
  accent-color: #FFD700;
  min-width: 20px;
  min-height: 20px;
  cursor: pointer;
}
#cookie-modal .category-switch[disabled] {
  opacity: 0.44;
  cursor: not-allowed;
}
#cookie-modal .modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 19px;
}
#cookie-modal .btn-primary {
  font-size: 15px;
  padding: 8px 18px;
}
#cookie-modal .btn-secondary {
  font-size: 15px;
  padding: 8px 18px;
}

/* ANIMATIONS & MICROINTERACTIONS */
.btn-primary, .btn-secondary, .main-nav a, .mobile-nav a, .service-card, .testimonial-card, .faq-item {
  transition: box-shadow 0.16s, color 0.18s, background 0.16s, border 0.16s, transform 0.13s;
}

/* RESPONSIVENESS: MOBILE-FIRST */
@media (max-width: 1130px) {
  .container { max-width: 98vw; }
  .service-cards { gap: 18px; }
}

@media (max-width: 900px) {
  .feature-grid, .fleet-highlights, .service-list, .included-services-list {
    flex-direction: column;
    gap: 12px;
  }
  .service-cards {
    flex-direction: column;
    gap: 16px;
  }
  .hero h1 {
    font-size: 2.12rem;
  }
  .main-nav { gap: 10px; }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .hero {
    padding-top: 38px;
    padding-bottom: 26px;
    margin-bottom: 32px;
  }
  .hero h1 { font-size: 1.45rem; }
  .hero p { font-size: 1rem; }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.13rem; }
  .cta {
    padding: 28px 0 29px 0;
    margin-bottom: 30px;
  }

  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .service-cards {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px;
  }
  .testimonial-card {
    max-width: 98vw;
  }
  .footer-nav {
    gap: 12px;
    flex-direction: column;
  }
  .footer-logo img {
    height: 38px;
  }
  #cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 8px 16px 12px;
    font-size: 15px;
    border-radius: 18px 18px 0 0;
  }
  #cookie-modal .modal-content {
    min-width: 90vw;
    max-width: 95vw;
    padding: 23px 8px 18px 13px;
    font-size: 15px;
  }
}
@media (max-width: 540px) {
  .section {
    margin-bottom: 36px;
    padding: 20px 2px;
  }
  .feature-grid li, .fleet-highlights li, .service-list li, .included-services-list li {
    min-width: 180px;
    padding: 8px 7px;
    font-size: 15px;
  }
  .card, .service-card, .testimonial-card {
    padding: 14px 7px;
    font-size: 15px;
  }
  .hero .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .address-block, .working-hours {
    padding: 8px 6px;
    font-size: 14px;
  }
  .social-links a img {
    width: 30px; height: 30px;
  }
}

/* PRINT FRIENDLY */
@media print {
  header, footer, #cookie-consent-banner, .mobile-menu, .btn-primary, .btn-secondary, nav { display: none !important; }
  body { color: #000; background: #fff; }
}

/* END OF CSS */
