/* ===========================
   CSS RESET & NORMALIZATION
   ============================ */
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.5;
  background: #F4F2EE;
  color: #153A28;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
ol, ul {
  list-style: none;
}
a {
  background: none;
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
}
button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
}
:root {
  --brand-primary: #184A7C;
  --brand-secondary: #EEBC1D;
  --brand-accent: #F7F7F7;
  --earth-dark: #153A28;
  --earth-green: #41743B;
  --earth-beige: #F4F2EE;
  --earth-brown: #917162;
  --earth-olive: #8D9A55;
  --brand-bg-card: #FFFFFF;
  --brand-bg-section: #F4F2EE;
  --shadow-card: 0 2px 16px rgba(55, 63, 50, 0.07);
}

/* ===================
   TYPOGRAPHY SCALE
   ===================*/
body {
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--earth-dark);
}
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: -1px;
  margin-bottom: 16px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--earth-green);
  margin-bottom: 12px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 8px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--earth-green);
  margin-bottom: 8px;
}
p, li {
  font-size: 1rem;
  color: var(--earth-dark);
  line-height: 1.7;
}
strong {
  font-weight: 700;
}
.text-section h2, .text-section h3 {
  margin-top: 16px;
}
.text-section ul, .features-section ul, .service-cards, .solution-cards, .feature-grid, .benefits-list,
.fleet-stats, .fleet-overview ul, .vehicle-types-list, .vehicle-features ul,
.culture-points, .employee-testimonials, .job-list, .industries-served,
.contact-info-list, .contact-fields, .stat-blocks, .eco-friendly-stats {
  margin-bottom: 16px;
}

/* ================================
   GENERAL LAYOUT & CONTAINERS
   ================================*/
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-bg-section);
  border-radius: 28px;
  box-shadow: 0 1px 8px rgba(64, 73, 43, 0.04);
}

/* ================================
   HEADER & NAVIGATION
   ================================*/
header {
  background: var(--brand-bg-card);
  box-shadow: 0 2px 12px rgba(129, 145, 97, 0.05);
  padding: 0;
  z-index: 20;
  position: relative;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 18px 0;
}

.header-flex a img {
  max-height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--brand-primary);
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.22s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--earth-olive);
  color: #fff;
}
.cta-header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: var(--earth-green);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 18px 30px 18px 30px/26px 16px 26px 16px ;
  box-shadow: var(--shadow-card);
  margin-left: 14px;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
}
.cta-header:hover, .cta-header:focus {
  background: var(--brand-secondary);
  color: var(--earth-dark) !important;
  transform: scale(1.05) translateY(-1px);
}

/* ================================
   HERO & KEY CTAS
   ================================*/
.hero-section, .careers-hero, .contact-hero, .thank-you-section {
  background: linear-gradient(130deg, #e6ece3 15%, #f4f2ee 65%, #fff 100%);
  margin-bottom: 60px;
  border-radius: 0 0 48px 48px/0 0 32px 32px;
  box-shadow: 0 2px 40px 0 rgba(61,107,33,0.05);
  padding: 52px 0 56px 0;
  position: relative;
}
.hero-section h1, .careers-hero h1, .contact-hero h1, .thank-you-section h1 {
  color: var(--earth-green);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.15;
}
.hero-section p, .careers-hero p, .contact-hero p {
  max-width: 560px;
  margin-bottom: 24px;
  font-size: 1.18rem;
  color: var(--earth-brown);
}

.cta-main, .cta-secondary, .cta-footer {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  display: inline-block;
  padding: 14px 36px;
  background: var(--earth-green);
  color: #fff !important;
  border: none;
  border-radius: 32px 24px 32px 24px/16px 32px 16px 32px;
  font-size: 1.07rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(129,145,97,0.08);
  margin-top: 10px;
  transition: background 0.21s, box-shadow 0.25s, transform 0.14s;
  position: relative;
  z-index: 2;
}
.cta-main:hover, .cta-main:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary) !important;
  box-shadow: 0 8px 24px rgba(65,116,59,0.14);
  transform: translateY(-2px) scale(1.03);
}
.cta-secondary {
  background: var(--brand-primary);
  color: #fff;
  border-radius: 24px 12px 32px 20px/14px 24px 16px 32px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.cta-footer {
  background: var(--earth-olive);
  color: #fff;
}
.cta-footer:hover, .cta-footer:focus {
  background: var(--brand-secondary);
  color: var(--earth-dark);
}
/* For mobile forms etc */
.cta-main:active, .cta-secondary:active, .cta-footer:active {
  transform: scale(0.98);
}

/* ================================
   CARD & FLEX CONTAINERS
   ================================*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--brand-bg-card);
  border-radius: 20px 38px 18px 28px/16px 30px 22px 20px;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px !important;
  padding: 28px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  max-width: 390px;
  transition: box-shadow 0.2s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(65,116,59,0.12);
  transform: translateY(-3px);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.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;
}

.feature-grid, .service-cards, .solution-cards, .benefits-list, .vehicle-types-list, .fleet-stats, .eco-friendly-stats, .job-list, .culture-points, .industries-served, .stat-blocks, .certification-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 32px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.feature-grid li, .service-cards li, .solution-cards li, .benefits-list li, .vehicle-types-list li, .fleet-stats li,
.eco-friendly-stats li, .job-list li, .culture-points li, .industries-served li, .stat-blocks li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 18px 14px;
  background: var(--brand-bg-card);
  border-radius: 16px 40px 16px 28px/14px 28px 16px 24px;
  box-shadow: 0 1px 4px rgba(65,116,59,0.07);
  font-size: 1.05rem;
  color: var(--earth-dark);
  min-width: 200px;
  flex: 1 1 240px;
  margin-bottom: 0;
  transition: box-shadow 0.21s, background 0.15s;
}
.feature-grid li:hover, .service-cards li:hover, .solution-cards li:hover, .benefits-list li:hover,
.vehicle-types-list li:hover {
  background: var(--earth-green);
  color: #fff;
  box-shadow: 0 3px 14px rgba(129,145,97,0.11);
}
.feature-grid img, .service-cards img, .solution-cards img, .benefits-list img, .vehicle-types-list img,
.contact-info-list img, .contact-fields img, .stat-blocks img {
  width: 32px;
  height: 32px;
}

.certification-badges {
  display: flex;
  gap: 22px;
  align-items: center;
}
.certification-badges img {
  width: 46px;
  height: 46px;
  filter: grayscale(0.15) contrast(1.05);
}

/* ================================
   TESTIMONIALS & SLIDER
   ================================*/
.testimonials-section, .employee-testimonials {
  background: var(--earth-beige);
  margin-bottom: 60px;
}
.testimonials-section h2, .employee-testimonials h2 {
  color: var(--brand-primary);
}
.testimonial-slider {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  min-width: 260px;
  border-radius: 22px 16px 30px 18px/12px 22px 24px 20px;
  box-shadow: 0 2px 24px rgba(129,145,97,0.06);
  background: #fff;
  flex: 1 1 300px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.14s;
  color: #283c28;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(19,74,124,0.10);
  transform: scale(1.025) translateY(-2px);
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #1D231C;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--earth-green);
  margin-left: 12px;
  font-weight: 500;
}
.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  margin-top: 18px;
}
.client-logos img {
  width: 60px;
  height: auto;
  filter: grayscale(0.4) contrast(1.15);
  opacity: 0.85;
  transition: filter 0.17s, opacity 0.17s;
}
.client-logos img:hover {
  filter: grayscale(0) contrast(1.2);
  opacity: 1;
}

/* ================================
   CONTACT & INFO LISTS
   ================================*/
.contact-info-list, .contact-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-info-list li,
.contact-fields li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  line-height: 1.6;
  background: var(--earth-beige);
  border-radius: 12px 16px 18px 20px/12px 20px 16px 12px;
  padding: 12px 18px 12px 12px;
}
.contact-info-list li img, .contact-fields li img {
  width: 24px;
  height: 24px;
}

/* ================================
   FOOTER
   ================================*/
footer {
  background: var(--earth-green);
  color: #f3f3e3;
  padding: 50px 0 32px 0;
  position: relative;
  margin-top: 60px;
  box-shadow: 0 -4px 28px rgba(64, 73, 43, 0.035);
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-brand img {
  max-width: 64px;
  margin-bottom: 6px;
}
.footer-brand p {
  color: #deecde;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 200px;
}
.footer-nav a {
  color: #f3f3e3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.93;
  transition: color 0.17s, opacity 0.17s;
  padding: 5px 0 5px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-secondary);
  opacity: 1;
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #e6ece3;
  font-size: 1rem;
}
.footer-contact img {
  width: 20px;
  height: 20px;
}

/* ================================
   PROCESS LISTS, MAP, MISC
   ================================*/
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}
.process-steps li {
  background: var(--earth-beige);
  border-radius: 12px 16px 18px 20px/12px 20px 16px 12px;
  padding: 10px 14px;
  font-size: 1rem;
}
.how-we-deliver ul {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.how-we-deliver li {
  background: var(--brand-bg-card);
  border-radius: 14px 32px 12px 18px/12px 14px 18px 14px;
  padding: 12px 18px;
  font-size: 0.99rem;
}
.map-block {
  background: var(--earth-beige);
  border-radius: 24px;
  padding: 32px 18px;
  margin-bottom: 60px;
}
.embedded-map {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.embedded-map img {
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 4px 22px rgba(129,145,97,0.11);
}

/* ========================
   FLEXBOX ALIGNMENT CLASSES
   ========================*/
.align-center {
  align-items: center !important;
}
.align-start {
  align-items: flex-start !important;
}
.justify-center {
  justify-content: center !important;
}
.justify-between {
  justify-content: space-between !important;
}

/* ========================
   MOBILE NAVIGATION
   ========================*/
.mobile-menu-toggle {
  display: none;
  background: var(--earth-green);
  color: #fff;
  border-radius: 18px;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  z-index: 50;
  border: none;
  transition: background 0.18s, color 0.14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--brand-secondary);
  color: var(--earth-dark);
}
.mobile-menu {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,48,19,0.96);
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.77,.04,.18,.98);
  display: flex;
  flex-direction: column;
  padding: 0;
  will-change: transform;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.25rem;
  position: absolute;
  top: 24px;
  right: 26px;
  padding: 10px 15px;
  border-radius: 50%;
  z-index: 1002;
  transition: background 0.14s, color 0.13s;
  border: none;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-secondary);
  color: #234b1e;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  margin-top: 100px;
  padding: 32px 32px 32px 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.33rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 10px 8px;
  border-radius: 12px;
  transition: background 0.16s, color 0.10s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-secondary);
  color: var(--earth-dark);
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 12px;
  }
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 900px) {
  .footer-flex {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .header-flex {
    gap: 14px;
  }
  .main-nav {
    display: none;
  }
  .cta-header {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 50;
  }
  .section, .about-section, .fleet-overview, .vehicles-section, .sustainability-section, .legal-section,
  .solutions-section, .expertise-section, .benefits-section, .thank-you-section
  {
    padding: 30px 8vw;
    margin-bottom: 36px;
    border-radius: 16px;
  }
  .hero-section, .careers-hero, .contact-hero, .thank-you-section {
    padding: 34px 0 40px 0;
    border-radius: 0 0 28px 28px/0 0 22px 22px;
  }
  h1, .h1 {
    font-size: 2rem;
  }
  h2, .h2 {
    font-size: 1.3rem;
  }
  .feature-grid, .service-cards, .solution-cards, .benefits-list, .vehicle-types-list, .fleet-stats, .eco-friendly-stats, .job-list, .culture-points, .industries-served, .stat-blocks {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
  .card-container {
    flex-direction: column;
    gap: 12px;
  }
  .content-grid, .footer-flex {
    flex-direction: column;
    gap: 28px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card, .card {
    min-width: unset;
    max-width: 100%;
  }
  .mobile-menu {
    padding-bottom: 40px;
  }
  .mobile-nav {
    margin-top: 64px;
    padding: 10vw 10vw 10vw 10vw;
    gap: 18px;
  }
}
@media (max-width: 500px) {
  .container {
    padding: 0 4px;
    max-width: 99vw;
  }
  .about-section, .fleet-overview, .vehicles-section, .sustainability-section, .section {
    padding: 16px 2vw;
  }
  .content-wrapper {
    gap: 14px;
  }
}

/* =========================
   COOKIE CONSENT BANNER
   =========================*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 2000;
  background: #ebe8d8;
  color: var(--earth-dark);
  border-top: 2px solid var(--earth-olive);
  box-shadow: 0 -3px 32px rgba(100, 132, 72, 0.16);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 24px 26px 24px;
  font-size: 0.99rem;
  transition: transform 0.3s, opacity 0.25s;
  opacity: 1;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner-message {
  flex: 1 1 340px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--earth-dark);
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 24px;
  border-radius: 18px 22px 18px 22px/12px 18px 12px 18px;
  border: none;
  background: var(--brand-primary);
  color: #fff;
  margin: 0 4px;
  transition: background 0.17s, color 0.14s, transform 0.13s;
}
.cookie-btn.accept {
  background: var(--earth-green);
}
.cookie-btn.reject {
  background: var(--brand-primary);
}
.cookie-btn.settings {
  background: var(--brand-secondary);
  color: var(--earth-dark);
}
.cookie-btn:hover {
  filter: brightness(1.04);
  transform: translateY(-2px) scale(1.02);
}

/* =========================
   COOKIE MODAL
   =========================*/
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(70, 114, 79, 0.22);
  backdrop-filter: blur(2px);
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s;
}
.cookie-modal-backdrop.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: var(--earth-dark);
  border-radius: 32px 22px 32px 22px/16px 32px 16px 32px;
  box-shadow: 0 8px 52px rgba(64, 73, 43, 0.11);
  max-width: 95vw;
  width: 400px;
  padding: 32px 26px 29px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  animation: popupAppear 0.32s cubic-bezier(.7,.22,.25,.87);
  position: relative;
}
@keyframes popupAppear {
  0% { transform: scale(0.85) translateY(60px); opacity: 0; }
  90% { transform: scale(1.02) translateY(-8px); opacity: .98; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 11px;
  font-size: 1.7rem;
  color: var(--earth-green);
  background: none;
  border: none;
  border-radius: 24px;
  padding: 3px 5px;
  transition: background 0.13s, color 0.12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--brand-secondary);
  color: #282c21;
}
.cookie-modal h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--brand-primary);
  font-size: 1.25rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  width: 100%;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--earth-beige);
  border-radius: 16px;
  padding: 13px 15px;
  font-size: 1rem;
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--earth-green);
  width: 20px;
  height: 20px;
}
.cookie-toggle-label {
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--brand-primary);
}
.cookie-legend {
  font-size: 0.98rem;
  color: var(--earth-brown);
  margin-bottom: 8px;
  font-style: italic;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 10px;
}
.cookie-modal .cookie-btn {
  font-size: 1.01rem;
  padding: 8px 20px;
  border-radius: 14px 22px 14px 22px/12px 17px 12px 17px;
}

/* =========================
   ACCESSIBLE FOCUS STATES
   =========================*/
*:focus {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 2px;
}

/* =========================
   MISC MICROINTERACTIONS
   =========================*/
section, .card, .testimonial-card, .feature-grid li, .service-cards li, .solution-cards li, .benefits-list li, .vehicle-types-list li {
  transition: box-shadow 0.18s, background 0.15s, color 0.15s, transform 0.14s;
}
.icon-animated {
  animation: icon-bounce 1.3s infinite alternate;
}
@keyframes icon-bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

/* =========================
   CUSTOM ORGANIC DECORATIVE SHAPES (OPTIONAL)
   =========================*/
.organic-decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.16;
}
/* Example: .hero-section::before for an organic leafish shape */
.hero-section::before {
  content: '';
  display: block;
  position: absolute;
  right: -60px; bottom: -30px;
  width: 160px; height: 90px;
  background: radial-gradient(ellipse at 70% 40%, var(--earth-green) 60%, transparent 100%);
  border-radius: 170px 90px 130px 170px / 120px 170px 90px 100px;
  opacity: 0.14;
  z-index: 0;
}

/* =========================
   PRINT STYLES FOR LEGAL
   =========================*/
@media print {
  nav, .mobile-menu-toggle, .mobile-menu, .cta-main, .cta-header, .cta-secondary, .cookie-banner, .cookie-modal { 
    display: none !important;
  }
  .container, .section {
    max-width: unset;
    padding: 0;
    margin: 0;
    background: none !important;
    box-shadow: none !important;
  }
  body, html {
    background: #fff !important;
    color: #000;
    font-size: 12pt;
  }
}

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