/* ==========================
   RESET & NORMALIZE
==============================*/
html {
  box-sizing: border-box;
  font-size: 100%;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
body, html {
  height: 100%;
  background: #FAFAFB;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #373C3D;
  background-color: #FAFAFB;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #234E3E;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.25;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
p, ul, ol {
  margin-bottom: 16px;
}
strong { font-weight: 600; }
a { color: #214E3E; text-decoration: none; transition: color .2s; }
a:hover, a:focus { color: #E5B22C; }
ul, ol { padding-left: 22px; }
img, svg { max-width: 100%; height: auto; display: block; border: 0; }
[role=button], button, .cta-btn {
  cursor: pointer;
  font-family: inherit;
}

/* ===========================
   VARIABLES (with fallbacks)
=============================*/
:root {
  --primary: #214E3E;
  --primary-light: #b8dbca;
  --primary-bg-pastel: #e6f5ea;
  --secondary: #BFBFBF;
  --accent: #E5B22C;
  --accent-pale: #FAE9BF;
  --pastel-pink: #fff0f6;
  --pastel-blue: #e0f0ff;
  --pastel-lavender: #f3eefd;
  --white: #fff;
  --gray-100: #f8f9fb;
  --gray-200: #edf1f7;
  --gray-400: #d3d6db;
  --gray-600: #78849c;
  --radius: 16px;
  --card-shadow: 0 4px 10px 0 rgba(33, 78, 62,.07);
  --input-shadow: 0 1px 4px 0 rgba(33,80,62,.08);
  --transition: all 0.25s cubic-bezier(.4,0,.2,1);
}

/* ===========================
   CONTAINERS & SECTIONS
=============================*/
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}
main section {
  margin-bottom: 60px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.text-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* ===========================
   FLEX LAYOUTS
=============================*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: var(--pastel-blue);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  flex: 1 1 260px;
  min-width: 260px;
  transition: box-shadow .2s;
}
.card:hover {
  box-shadow: 0 8px 24px 0 rgba(33, 78, 62,.09);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--pastel-pink);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  margin-bottom: 20px;
  min-width: 0;
  transition: transform .18s;
}
.testimonial-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 32px rgba(229,178,44,0.11);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 200px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 20px 16px 16px 16px;
  margin-bottom: 20px;
  min-width: 200px;
  transition: box-shadow .2s;
}
.feature-item:hover {
  box-shadow: 0 8px 24px 0 rgba(33, 78, 62,.12);
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}

/* Feature grid uses flexbox, not grid! */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
}

/* FAQ styles */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: var(--pastel-lavender);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 22px 18px;
  margin-bottom: 20px;
  transition: box-shadow .18s;
}
.faq-item h2 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

/* Utility (Generic) */
.mt-32 { margin-top: 32px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }

/* ===========================
   HERO & CALL-TO-ACTION SECTIONS
=============================*/
.hero-section {
  background: var(--primary-bg-pastel);
  padding: 60px 0 40px 0;
  display: flex;
  align-items: center;
  min-height: 380px;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-section h1 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 18px;
  letter-spacing: .2px;
  text-align: center;
}
.hero-section p {
  font-size: 1.18rem;
  max-width: 480px;
  margin-bottom: 30px;
  color: #3f4e4d;
  text-align: center;
}
.hero-section .cta-btn {
  margin-top: 10px;
}

.cta-section {
  background: var(--pastel-lavender);
  text-align: center;
  padding: 48px 20px 40px;
  border-radius: var(--radius);
  margin-bottom: 60px;
  box-shadow: var(--card-shadow);
}
.cta-section .cta-btn {
  margin-top: 14px;
}

/* ===========================
   NAVIGATION & HEADER
=============================*/
header {
  background: var(--white);
  box-shadow: 0 2px 10px 0 rgba(33,80,62,0.04);
  position: relative;
  z-index: 102;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 18px 0 18px 0;
  width: 100%;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-size: 16px;
  padding: 8px 8px;
  border-radius: 7px;
  transition: background .18s, color .14s;
  font-weight: 500;
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--accent-pale);
  color: var(--accent);
}
.main-nav a.cta-btn {
  background: var(--accent);
  color: var(--white);
  border-radius: 22px;
  padding: 10px 26px;
  font-size: 1rem;
  margin-left: 10px;
  box-shadow: 0 4px 20px 0 rgba(229,178,44,.11);
  transition: background .22s, box-shadow .22s;
  font-weight: 700;
}
.main-nav a.cta-btn:hover {
  background: #c39119;
  color: var(--white);
}
.main-nav img {
  width: 126px;
  height: 34px;
  margin-right: 14px;
}

/* ===========================
   MOBILE MENU
=============================*/
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--accent);
  color: var(--white);
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  z-index: 500;
  border: none;
  box-shadow: var(--card-shadow);
  transition: background .2s, box-shadow .21s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #c39119;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(250,250,251,0.97);
  z-index: 1002;
  transform: translateX(100%);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0 0 0 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2rem;
  color: var(--primary);
  background: transparent;
  border: none;
  margin: 30px 30px 0 0;
  cursor: pointer;
  transition: color .18s;
}
.mobile-menu-close:hover { color: var(--accent); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 30px;
  align-items: flex-start;
  gap: 14px;
  padding: 0 32px;
}
.mobile-nav a {
  padding: 11px 0 11px 14px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  color: var(--primary);
  border-radius: 12px;
  transition: background .17s, color .13s;
  font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-blue);
  color: var(--accent);
}
@media (max-width: 1068px) {
  .main-nav a {
    font-size: 15px;
    padding: 8px 5px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
  }
  .main-nav a {
    font-size: 15px;
    padding: 6px 4px;
  }
}
@media (max-width: 800px) {
  .main-nav {
    justify-content: flex-start;
    gap: 5px;
    font-size: 14px;
  }
  .main-nav a.cta-btn {
    font-size: .98rem;
    padding: 10px 14px;
  }
}
@media (max-width: 700px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 700px) {
  header { padding-bottom: 0; }
}

/* ===========================
   FOOTER
=============================*/
footer {
  background: var(--primary-bg-pastel);
  padding: 44px 0 28px 0;
  margin-top: 40px;
}
.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.footer-main img { width: 55px; height: 55px; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0 auto 10px auto;
  justify-content: center;
}
.footer-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 15px;
  margin: 0 8px;
  padding: 4px 7px;
  border-radius: 3px;
  transition: background .16s;
}
.footer-nav a:hover {
  background: var(--pastel-blue);
  color: var(--accent);
}
footer div {
  color: #678076;
  font-size: 15px;
}

/* ==========================
   TESTIMONIALS
============================*/
.testimonials-section .container {
  display: flex;
  flex-direction: column;
}
.testimonial-card {
  background: var(--pastel-pink);
  color: #23323d;
  font-size: 1.15rem;
  max-width: 620px;
  margin-bottom: 20px;
  justify-content: space-between;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  position: relative;
}
.testimonial-card p {
  color: #23323d;
  font-size: 1.13rem;
  font-weight: 500;
  margin-bottom: 0px;
}
.customer-name {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  margin-left: 14px;
  text-align: right;
  word-break: keep-all;
}

/* ========================== 
   BUTTONS
============================*/
.cta-btn, .btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  border-radius: 24px;
  padding: 12px 32px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .2px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  box-shadow: 0 2px 10px 0 rgba(229,178,44,0.10);
  border: none;
  outline: none;
  transition: background .18s, box-shadow .19s, transform .08s;
}
.cta-btn:hover,.btn:hover, .cta-btn:focus, .btn:focus {
  background: #c39119;
  color: var(--white);
  box-shadow: 0 4px 14px 0 rgba(229,178,44,0.13);
  transform: translateY(-2px) scale(1.01);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent-pale);
}

/* ===========================
   CARDS / HIGHLIGHT BLOCKS
=============================*/
.card, .feature-item, .faq-item, .testimonial-card {
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

/* ===========================
   FORMS (minimal stub)
=============================*/
input, textarea, select {
  font-family: inherit;
  padding: 11px 16px;
  font-size: 1rem;
  color: #2d433a;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 9px;
  transition: border .17s, box-shadow .18s;
  box-shadow: var(--input-shadow);
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-pale);
}

label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--primary);
}

/* ===========================
   LISTS & ICONS
=============================*/
li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.6;
}
li img {
  width: 22px;
  height: 22px;
  margin-top: 2px;
}

/* ===========================
   SPECIAL PAGES/SECTIONS
=============================*/
.faqs-section,
.about-main-section,
.services-section,
.gdpr-section,
.cookies-policy-section,
.policy-section,
.terms-section,
.thankyou-section,
.contact-section,
.footer-contact-section,
.fleet-main-section {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  margin-bottom: 60px;
  padding: 40px 24px;
}

.office-address {
  font-size: 1rem;
  color: #234E3E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 18px;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  color: #789698;
}
.social-links a {
  display: inline-flex;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: var(--accent-pale);
  transition: background .16s, transform .12s;
}
.social-links a:hover {
  background: var(--accent);
  transform: scale(1.09);
}
.social-links img {
  width: 22px;
  height: 22px;
}

/* ===========================
   COOKIE BANNER & MODAL
=============================*/
.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1500;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: var(--pastel-blue);
  color: #1c3935;
  border-radius: 22px;
  box-shadow: 0 4px 18px 0 rgba(47,61,110,.08);
  padding: 18px 24px;
  font-size: 1rem;
  gap: 18px;
  max-width: 500px;
  margin: 0 auto;
  justify-content: space-between;
  opacity: 1;
  transition: opacity .23s, visibility .18s;
}
.cookie-banner.hide { opacity: 0; pointer-events: none; visibility: hidden; }
.cookie-banner p {
  flex: 2 1 230px;
  font-size: 0.98rem;
  margin-bottom: 0;
}
.cookie-banner .btn,
.cookie-banner .btn-outline {
  font-size: .97rem;
  padding: 9px 15px;
  min-width: 36px;
  margin-left: 8px;
}

.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(52, 64, 93, 0.16);
  z-index: 1520;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity .22s;
  pointer-events: none;
  opacity: 0;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff9fa;
  border-radius: 18px;
  box-shadow: 0 6px 32px 6px rgba(35, 78, 62, .10);
  padding: 46px 32px 32px 32px;
  min-width: 300px;
  max-width: 97vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.4rem;
  color: var(--primary);
}
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 14px;
  font-size: 1.4rem;
  background: transparent;
  color: #789698;
  border: none;
  padding: 2px 8px;
  transition: color .15s;
  cursor: pointer;
}
.cookie-modal-close:hover { color: var(--accent); }
.cookie-options {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 14px;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-option label {
  margin-bottom: 0;
  font-size: 1.08rem;
  color: var(--primary);
}
.cookie-option input[type=checkbox] {
  accent-color: var(--accent);
  width: 22px;
  height: 22px;
}
.cookie-option .essential {
  font-weight: 700;
  color: var(--accent);
}
.cookie-modal .btn-group {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

/* ===========================
   ANIMATIONS
=============================*/
@media (prefers-reduced-motion: no-preference) {
  .mobile-menu,
  .mobile-menu.open {
    transition: transform .35s cubic-bezier(.7,.1,.3,1), opacity .18s;
  }
  .cookie-banner {
    transition: opacity .22s .09s, visibility .12s;
  }
}

/* ===========================
   RESPONSIVE DESIGN
=============================*/
@media (max-width: 920px) {
  .hero-section h1, .cta-section h2,.thankyou-section h1 {
    font-size: 2rem;
  }
  .main-nav img { width: 97px; height: 26px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .container { padding: 0 6px; }
  .section, .about-main-section, .services-section,
  .gdpr-section, .cookies-policy-section,.policy-section, .terms-section, .thankyou-section, .contact-section, .footer-contact-section, .fleet-main-section {
    padding: 29px 5px;
  }
  .hero-section {
    min-height: 260px;
    padding: 32px 0 26px 0;
  }
  .cta-section {
    padding:32px 4px 30px;
  }
  .feature-grid { gap: 16px; }
  .card-container, .faq-list { gap: 14px; }
  .feature-item, .faq-item { min-width: 160px; padding: 14px 12px; }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 10px;
    max-width: 100%;
  }
  .mb-32, .mt-32 { margin-top: 18px !important; margin-bottom: 18px !important; }
  .text-image-section { flex-direction: column; gap: 16px; align-items: flex-start; }
  .content-grid { flex-direction: column; gap: 10px; }
  .footer-main img { width: 37px; height: 37px; }
  .cookie-banner { left: 0; right: 0; max-width: 100vw; padding: 8px 10px; border-radius: 0; bottom: 0; font-size: .93rem; }
  .cookie-modal-content { padding: 30px 10px 20px 10px; min-width: 0; }
}
@media (max-width: 540px) {
  h1 { font-size: 1.36rem; }
  h2 { font-size: 1.01rem; }
  .main-nav img { width: 80px; }
}

/* ===========================
   MISC OVERRIDES
=============================*/
hr {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 25px 0;
}
::-webkit-scrollbar { width: 8px; background: #f8faf8; }
::-webkit-scrollbar-thumb { background: #d6e4df; border-radius: 6px; }
::-webkit-input-placeholder { color: #c2c2c2; font-size: .97rem; }
::-moz-placeholder { color: #c2c2c2; font-size: .97rem; }
:-ms-input-placeholder { color: #c2c2c2; font-size: .97rem; }
::placeholder { color: #c2c2c2; font-size: .97rem; }

/* ===========================
   DREAMY/PASTEL EFFECTS
=============================*/
.section, .card, .feature-item, .faq-item, .testimonial-card {
  background: linear-gradient(145deg, #fff 84%, #eaf2fe 100%);
  box-shadow: 0 2px 8px 0 rgba(229,178,44,0.04);
}
.cta-section {
  background: linear-gradient(135deg,#f3eefd 70%, #e6f5ea 100%);
}
.hero-section {
  background: linear-gradient(120deg, #e6f5ea 80%, #faf0e8 100%);
}

/* ===========================
   VISUAL HIERARCHY
=============================*/
.content-wrapper > h1,
.content-wrapper > h2 {
  text-align: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  margin-bottom: 12px;
}
.content-wrapper > p {
  text-align: center;
  max-width: 600px;
}

/* ===========================
   ENSURE NO OVERLAP
=============================*/
main *,
.section *,
.card *,
.feature-item *,
.faq-item *,
.testimonial-card * {
  word-break: break-word;
  box-sizing: border-box;
}

/* ===========================
   END CSS
=============================*/
