/* --- CSS RESET & BASE STYLES --- */
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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #263238;
  background: #F5F7FA;
  min-height: 100vh;
  background-color: #F5F7FA;
}
img, picture, video {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
button, .btn-primary, .btn-link {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  outline: none;
  border: none;
  cursor: pointer;
}

/* --- BRAND COLORS (CSS variables for maintainability) --- */
:root {
  --color-primary: #263238;
  --color-secondary: #00BFAE;
  --color-accent: #F5F7FA;
  --color-warning: #ff287b;
  --color-success: #5eea4c;
  --color-heading: #263238;
  --shadow-vibrant: 0 4px 24px 0 rgba(38,50,56,0.12), 0 2px 8px 0 rgba(0,191,174,0.11);
  --radius-main: 18px;
  --radius-btn: 25px;
  --transition-fast: 0.15s cubic-bezier(0.7,0,0.35,1);
  --transition-pop: 0.26s cubic-bezier(0.68,-0.55,0.27,1.55);
}

/* --- TYPOGRAPHY --- */
@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 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--color-heading);
  margin-bottom: 8px;
}
h1 {
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-secondary);
  letter-spacing: -0.5px;
  line-height: 1.2;
}
h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
}
h4 {
  font-size: 1.125rem;
  font-weight: 700;
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #263238;
  margin-bottom: 10px;
  line-height: 1.7;
}
strong {
  font-weight: bold;
}
small {
  font-size: 0.92rem;
  color: #7a8b9f;
}

/* --- UTILITY CLASSES --- */
.container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-vibrant);
  padding: 32px 26px 28px 26px;
  transition: transform var(--transition-pop), box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 8px 30px 0 rgba(0,191,174,0.17), 0 4px 10px 0 rgba(38,50,56,0.12);
  z-index: 2;
}
.section > .container {
  padding: 0;
}

/* --- FLEXBOX PATTERNS --- */
.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: #fff;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-vibrant);
  margin-bottom: 20px;
  flex: 1 1 270px;
  min-width: 0;
  transition: box-shadow var(--transition-fast);
}
.testimonial-card p {
  font-size: 1.08rem;
  font-style: italic;
  color: #222;
  margin-bottom: 6px;
}
.testimonial-card span {
  color: #00BFAE;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 22px;
  border-radius: var(--radius-main);
  background: #fff;
  box-shadow: var(--shadow-vibrant);
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 2px 20px 0 rgba(38,50,56,0.05);
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 15px 18px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--color-primary);
  padding: 10px 14px;
  border-radius: 12px;
  transition: background var(--transition-fast), color var(--transition-fast);
  position: relative;
  z-index: 2;
}
header nav a:hover, header nav a.active {
  background: var(--color-secondary);
  color: #fff;
}
header img {
  max-height: 46px;
}
.btn-primary {
  background: var(--color-secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  padding: 13px 36px;
  border-radius: var(--radius-btn);
  font-weight: 900;
  box-shadow: 0 2px 14px 0 rgba(0,191,174,0.15);
  transition: background 0.17s, transform 0.13s;
  margin-left: 16px;
  display: inline-block;
  letter-spacing: 0.06em;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #009985;
  transform: scale(1.05);
}
.btn-link {
  background: none;
  color: var(--color-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-btn);
  padding: 10px 28px;
  display: inline-block;
  transition: background 0.18s, color 0.18s;
  margin-top: 16px;
}
.btn-link:hover,
.btn-link:focus {
  background: var(--color-secondary);
  color: #fff;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform 0.5s cubic-bezier(.8,-0.26,.14,1.35);
  box-shadow: 10px 0 35px 0 rgba(0,191,174,0.13), 0 0 0 9999px rgba(0,0,0,0.22);
  display: flex;
  flex-direction: column;
  padding: 0 0 0 12px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--color-secondary);
  font-size: 2.4rem;
  border: none;
  margin: 20px 0 20px 10px;
  align-self: flex-start;
  cursor: pointer;
  z-index: 5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 18px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-primary);
  padding: 12px 0;
  border-radius: 8px;
  transition: background 0.23s, color 0.17s;
}
.mobile-nav a:hover { background: var(--color-secondary); color: #fff; }

@media (max-width: 990px) {
  header .container {
    flex-wrap: wrap;
  }
  header nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
    background: none;
    font-size: 2.2rem;
    border: none;
    color: var(--color-secondary);
    cursor: pointer;
    margin-left: 10px;
    z-index: 20;
  }
}
@media (min-width: 991px) {
  .mobile-menu { display: none !important; }
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(92deg, #00BFAE 42%, #FF287B 100%);
  color: #fff;
  padding: 50px 0 80px 0;
  box-shadow: 0 10px 30px 0 rgba(0,191,174,0.09);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 30px;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 3px 21px rgba(38,50,56,0.14);
}
.hero p {
  font-size: 1.25rem;
  color: #fff;
  opacity: 0.97;
}
.hero .btn-primary {
  margin-top: 18px;
  background: #FF287B;
}
.hero .btn-primary:hover {
  background: #00BFAE;
}

/* --- FEATURES, STEPS, FLEET, ETC. --- */
.feature-grid, .steps-preview, .fleet-preview, .comparison-chart {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
  margin: 25px 0 0 0;
}
.feature-grid > li, .fleet-preview > div, .steps-preview > div, .comparison-chart > div {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-vibrant);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.22s, box-shadow 0.2s;
}
.steps-preview > div h3 {
  color: #00BFAE;
  margin-bottom: 8px;
}
.feature-grid > li img, .steps-preview > div img, .fleet-preview > div img {
  margin-bottom: 16px;
  width: 43px;
}
.comparison-chart > div h3 {
  color: #FF287B;
}
.feature-grid > li:hover, .comparison-chart > div:hover, .steps-preview > div:hover {
  transform: scale(1.045) translateY(-6px);
  box-shadow: 0 8px 30px 0 rgba(0,191,174,0.13), 0 4px 14px 0 rgba(255,40,123,0.13);
  z-index: 2;
}

/* --- TABLES --- */
table {
  width: 100%;
  margin: 18px 0 25px 0;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-vibrant);
}
th, td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid #eef1f4;
  font-size: 1.06rem;
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #00BFAE;
  font-weight: 900;
  background: #F5F7FA;
}
tr:last-child td {
  border-bottom: none;
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
.testimonials .content-wrapper { gap: 30px; }
.testimonials h2 {
  color: #FF287B;
  text-align: left;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 300px;
  margin-bottom: 12px;
  background: #fff;
  color: #222;
  font-size: 1rem;
  border-left: 7px solid #00BFAE;
  box-shadow: var(--shadow-vibrant);
  transition: box-shadow var(--transition-fast), border-color var(--transition-pop);
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px 0 rgba(255,40,123,0.12), 0 4px 14px 0 rgba(0,191,174,0.07);
  border-left: 7px solid #FF287B;
}

/* --- ECO BADGE (on fleet page) --- */
.eco-badge {
  display: inline-block;
  background: #5eea4c;
  color: #263238;
  border-radius: 14px;
  padding: 4px 16px;
  font-size: 1.04rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin: 18px 0 10px 0;
  box-shadow: 0 2px 8px 0 rgba(60, 202, 73,0.09);
}

/* --- FAQ PREVIEW & CONTACT PROMPT --- */
.faq-preview .btn-link {
  margin-top: 20px;
}
.contact-prompt .text-section {
  gap: 10px;
}

/* --- CONTACT & LOCATE SECTION --- */
.contact-section .contact-details, .locate-section .content-wrapper {
  margin-top: 16px;
  gap: 12px;
}
.contact-details p, .locate-section p {
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.contact-details img {
  width: 22px;
  margin-right: 7px;
}

/* --- FOOTER --- */
footer {
  background: #263238;
  color: #fff;
  padding: 48px 0 16px 0;
  margin-top: 70px;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  padding-bottom: 24px;
}
.footer-logo, .footer-links, .footer-contact {
  flex: 1 1 240px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-logo img {
  max-height: 36px;
  margin-bottom: 10px;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-links a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.86;
  transition: color 0.16s, opacity 0.20s;
}
.footer-links a:hover {
  color: #00BFAE;
  opacity: 1;
}
.footer-contact img {
  width: 20px;
  vertical-align: middle;
  margin-right: 7px;
}
.footer-social {
  display: flex;
  gap: 20px;
  margin: 20px 0 16px 6px;
  align-items: center;
}
.footer-social a img {
  width: 30px;
  filter: grayscale(65%) brightness(1.3);
  transition: filter 0.18s;
}
.footer-social a:hover img {
  filter: none;
}
footer small {
  opacity: 0.76;
  margin-top: 6px;
  display: block;
  text-align: right;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 1101;
  background: #fff;
  border-top: 3px solid #00BFAE;
  box-shadow: 0 -2px 20px 0 rgba(38,50,56,0.10);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: cookie-slidein 0.5s cubic-bezier(0.8,-0.26,0.14,1.35);
}
@keyframes cookie-slidein {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #263238;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 6px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cookie-banner .btn-cookie {
  background: #00BFAE;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: var(--radius-btn);
  padding: 10px 32px;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0;
  box-shadow: 0 2px 12px 0 rgba(0,191,174,0.09);
  cursor: pointer;
  transition: background 0.16s, transform 0.13s;
}
.cookie-banner .btn-cookie:hover {
  background: #FF287B;
  transform: scale(1.05);
}
.cookie-banner .btn-cookie-settings {
  background: #fff;
  color: #00BFAE;
  border: 2px solid #00BFAE;
  margin-left: 0;
  font-weight: 700;
  transition: background 0.16s, color 0.16s;
}
.cookie-banner .btn-cookie-settings:hover {
  background: #00BFAE;
  color: #fff;
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1400;
  background: rgba(38,50,56,0.50);
  align-items: center;
  justify-content: center;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  padding: 38px 22px 28px 22px;
  max-width: 420px;
  min-width: 260px;
  box-shadow: 0 8px 40px 0 rgba(255,40,123,0.16), 0 6px 20px 0 rgba(0,191,174,0.11);
  animation: modal-pop 0.27s cubic-bezier(0.68,-0.55,0.27,1.55);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@keyframes modal-pop {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  color: #263238;
  font-size: 1.3rem;
  margin-bottom: 7px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 18px;
}
.cookie-modal label {
  font-size: 1.06rem;
}
.cookie-modal input[type="checkbox"] {
  width: 24px;
  height: 24px;
  accent-color: #00BFAE;
}
.cookie-modal .cookie-category.essential label {
  color: #00BFAE;
  font-weight: 700;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.cookie-modal .btn-cookie,
.cookie-modal .btn-cookie-settings {
  padding: 10px 25px;
  font-size: 1rem;
}
.cookie-modal .btn-cookie-settings {
  background: #fff;
  color: #00BFAE;
  border: 2px solid #00BFAE;
}
.cookie-modal .btn-cookie-settings:hover {
  background: #00BFAE;
  color: #fff;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 850px) {
  .feature-grid, .steps-preview, .fleet-preview, .comparison-chart, .testimonial-slider, .footer-columns {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper { max-width: 100%; }
}
@media (max-width: 650px) {
  .container, .content-wrapper, .section {
    padding: 0 7px;
  }
  .testimonials, .hero {
    padding-left: 7px;
    padding-right: 7px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.24rem; }
  .btn-primary, .btn-link, .cookie-banner .btn-cookie, .cookie-modal .btn-cookie {
    font-size: 0.97rem;
    padding: 11px 10px;
  }
  .card, .feature-item, .fleet-preview > div, .comparison-chart > div, .testimonial-card {
    padding: 17px 10px;
  }
}
/* Responsive: text-image-section & similar patterns */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

/* --- ANIMATION MICRO-INTERACTIONS --- */
.btn-primary, .btn-link, .cookie-banner .btn-cookie, .cookie-banner .btn-cookie-settings {
  transition: background 0.17s, color 0.15s, transform 0.13s;
}
a, .btn-link { transition: color 0.16s, background 0.13s; }
.card, .feature-item {
  transition: box-shadow var(--transition-fast), transform var(--transition-pop);
}

/* --- CUSTOM SCROLLBAR FOR VIBRANT FEEL --- */
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg,#00BFAE 60%,#FF287B 100%);
  border-radius: 10px;
}
body::-webkit-scrollbar-track {
  background: #F5F7FA;
}

/* --- SELECTION --- */
::selection {
  background: #00BFAE;
  color: #fff;
}

/* Ensure all base selectors apply properly */
main ul, .text-section ul {
  margin-left: 15px;
  list-style: disc;
  color: #263238;
  font-size: 1rem;
  margin-bottom: 14px;
  padding-left: 15px;
}
main ol, .text-section ol {
  margin-left: 12px;
  list-style: decimal;
  color: #263238;
  font-size: 1rem;
  margin-bottom: 14px;
  padding-left: 16px;
}
main ul li, main ol li { margin-bottom: 8px; }

/* --- FOCUS STYLES --- */
a:focus, button:focus, .btn-primary:focus, .btn-link:focus, input:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid #00BFAE;
  outline-offset: 2px;
  box-shadow: 0 2px 10px 0 #00BFAE33;
}

/* --- ACCESSIBILITY (high contrast for testimonials/reviews) --- */
.testimonial-card, .faq-preview, .cookie-banner, .cookie-modal, .card {
  color: #1b1e21;
  background: #fff;
}
.testimonial-card p, .testimonial-card span {
  color: #1b1e21;
}

/* --- OVERLAP PROTECTION, GAPS & MARGINS --- */
.section, .container, .card, .feature-item, .text-section, .testimonials, .steps-preview, .fleet-preview, .comparison-chart, .footer-columns {
  gap: 20px;
  margin-bottom: 20px;
}
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* --- Z-INDEX MANAGEMENT --- */
header { z-index: 50; }
.mobile-menu { z-index: 1200; }
.cookie-banner { z-index: 1101; }
.cookie-modal-overlay { z-index: 1400; }

/* --- NO CSS GRID/COLUMNS USED ANYWHERE --- */
