/* 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 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #181C22;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #F6F7F9;
  background: #181C22;
  line-height: 1.55;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}

ul, ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
ul li, ol li {
  margin-bottom: 8px;
}

strong { font-weight: 700; }
a { color: #60A34B; text-decoration: none; transition: color 0.3s; }
a:hover, a:focus { color: #bfd7ea; text-decoration: underline; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* FONT FAMILY IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&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, Helvetica, sans-serif;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #F6F7F9;
}
h1 { font-size: 2.25rem; line-height: 1.15; margin-bottom: 18px; }
h2 { font-size: 1.65rem; line-height: 1.22; }
h3 { font-size: 1.2rem; line-height: 1.25; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 500; }
p, .text-section ul, .text-section ol {
  font-size: 1rem;
  line-height: 1.60;
  color: #e5ecf5;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Header & Navigation */
header {
  width: 100%;
  background: #202634;
  box-shadow: 0 2px 8px rgba(20,30,40,0.16);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 10px;
}
header img {
  height: 44px;
  width: auto;
  filter: grayscale(0.25) brightness(1.1);
}

nav.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
nav.main-nav a {
  color: #F6F7F9;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  padding: 2px 0;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.2s, color 0.2s;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  color: #60A34B;
  border-bottom: 2px solid #60A34B;
}

.cta-button {
  background: linear-gradient(91deg,#60A34B 40%,#1C3763 120%);
  color: #F6F7F9;
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 32px;
  margin-left: 18px;
  border: 0;
  cursor: pointer;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(10,30,40,0.13);
  text-decoration: none;
  letter-spacing: .025em;
  transition: background 0.25s, box-shadow 0.2s, transform 0.15s;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: #232c3f;
  color: #60A34B;
  box-shadow: 0 4px 18px rgba(60,160,75,.21);
  transform: translateY(-1px) scale(1.035);
}

/* Burger Menu */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  color: #60A34B;
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s;
  margin-left: 16px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #2b354a;
  color: #A2E319;
  outline: 2px solid #60A34B;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(25,32,39,0.98);
  z-index: 2100;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.86,0,.07,1);
  overflow-y: auto;
  padding-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #F6F7F9;
  font-size: 2.3rem;
  border: none;
  position: absolute;
  top: 18px; right: 22px;
  cursor: pointer;
  z-index: 2210;
  padding: 5px 12px;
  border-radius: 40px;
  transition: background 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #1C3763;
  color: #60A34B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 52px 32px 32px 32px;
  width: 100vw;
  align-items: flex-start;
}
.mobile-nav a {
  color: #F6F7F9;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  letter-spacing: 0.005em;
  padding: 7px 0;
  width: 100%;
  transition: color 0.17s, background .22s;
  border-radius: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #60A34B;
  background: #1C3763;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 16px;
  }
  .cta-button {
    margin-left: 8px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
  }
  nav.main-nav {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  nav.main-nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 440px) {
  .mobile-nav {
    gap: 20px;
    padding: 35px 14px 16px 14px;
  }
}

/* Footer Styles */
footer {
  width: 100%;
  background: #222834;
  padding: 36px 0 18px 0;
  font-size: 0.97rem;
  box-shadow: 0 -2px 8px rgba(20,30,40,0.13);
}
footer .container {
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}
.footer-nav {
  display: flex;
  gap: 18px;
  margin-bottom: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.footer-nav a {
  color: #c9cfe2;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 4px 0;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s, border-bottom 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #60A34B;
  border-bottom: 1.5px solid #60A34B;
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #7c8495;
  font-size: 0.93rem;
  align-items: center;
}


/* MAIN SECTION SPACING PATTERNS */
.section,
section.hero,
section.features,
section.about-preview,
section.services-preview,
section.services,
section.industries,
section.fleet-types,
section.fleet-usp,
section.work-culture,
section.benefits,
section.jobs,
section.contact-preview,
section.communication-usp,
section.contact-details,
section.privacy-policy,
section.dsgvo-info,
section.cookie-policy,
section.terms,
section.thank-you,
section.testimonials
{
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #232737;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(25,35,50,0.11);
  overflow: hidden;
}
section.hero {
  background: linear-gradient(125deg,#1C3763 65%,#232737 100%);
  box-shadow: 0 2px 42px rgba(16,23,35,0.17);
  border-radius: 0 0 23px 23px;
  color: #F6F7F9;
}
.content-wrapper {
  width: 100%;
}

/* FLEX PATTERNS & CARD CONTAINERS */
.card-container,
.card-grid, 
.feature-grid,
.employee-stories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 13px;
  margin-bottom: 10px;
}
.feature-grid > div,
.card-grid > div {
  background: #252d3c;
  color: #dbe4e9;
  flex: 1 1 220px;
  min-width: 240px;
  max-width: 320px;
  padding: 28px 24px 22px 24px;
  border-radius: 11px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 18px rgba(44,54,64,0.11), 0 1.5px 2px rgba(26,29,45,0.09);
  border-left: 4px solid #60A34B;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}
.feature-grid > div:hover, .feature-grid > div:focus-within {
  background: #30384e;
  box-shadow: 0 8px 32px rgba(96,163,75,0.10), 0 2px 6px rgba(25,29,34,0.22);
  transform: translateY(-2px) scale(1.022);
  border-left: 4px solid #1C3763;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: #232737;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(20,30,32,0.08);
  padding: 30px;
}

.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: #F6F7F9;
  color: #252d3c;
  border-radius: 10px;
  margin-bottom: 24px;
  box-shadow: 0 2px 16px rgba(44, 54, 64, 0.13);
  flex-direction: column;
  border-left: 4px solid #60A34B;
  transition: box-shadow 0.16s, transform 0.14s;
  min-width: 210px;
  max-width: 700px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 36px rgba(28,54,84,0.14);
  transform: scale(1.015);
}
.testimonial-card p {
  font-size: 1.05rem;
  color: #202634;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: #5c636e;
  font-size: 0.99rem;
}
.trust-seals {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 21px;
}

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

.text-section {
  padding: 0 0 2px 0;
  color: #cad3e4;
}
.text-section h3 {
  color: #60A34B;
  font-size: 1.1rem;
  margin-top: 12px;
  margin-bottom: 8px;
}
.text-section ul, .text-section ol {
  margin-top: 6px;
}

.map-placeholder {

  color: #293247;
  border-radius: 8px;
  margin-top: 13px;
  margin-bottom: 20px;
  padding: 23px 14px;
  box-shadow: 0 2px 8px rgba(54,52,92,.11);
  font-size: 15px;
}

/* BUTTONS & INTERACTIONS */
button, .cta-button {
  cursor: pointer;
  user-select: none;
}

button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 10px 24px;
  background: #1C3763;
  color: #F6F7F9;
  border-radius: 6px;
  border: none;
  margin-right: 9px;
  box-shadow: 0 1.5px 10px rgba(44,54,64,0.06);
  transition: background 0.22s, color 0.13s, transform 0.16s;
}
button:hover, button:focus {
  background: #60A34B;
  color: #181C22;
  transform: translateY(-1.5px) scale(1.014);
}

/* ICONS */
ul li img, .feature-grid > div img, .trust-seals img {
  width: 32px;
  height: 32px;
  display: inline-block;
  margin-right: 10px;
  filter: grayscale(0.3) brightness(1.08) drop-shadow(0 1px 6px #20263411);
  vertical-align: text-bottom;
}
.feature-grid > div img {
  margin-bottom: 13px;
  width: 36px;
  height: 36px;
}

/* Responsive Design */
@media (max-width: 1080px) {
  .container { max-width: 96vw; }
  .feature-grid > div, .card-grid > div { min-width: 200px; max-width: 350px; }
}
@media (max-width: 900px) {
  .feature-grid, .card-grid, .card-container {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .feature-grid > div, .card-grid > div { max-width: 100%; }
}
@media (max-width: 768px) {
  .container { padding: 0 7px; }
  footer { padding: 22px 0 10px 0; }
  .footer-nav { gap: 7px; }
  .footer-info { gap: 5px; flex-direction: column; align-items: flex-start; }
  .section,
  section.hero,
  section.features,
  section.about-preview,
  section.services-preview,
  section.services,
  section.industries,
  section.fleet-types,
  section.fleet-usp,
  section.work-culture,
  section.benefits,
  section.jobs,
  section.contact-preview,
  section.communication-usp,
  section.contact-details,
  section.privacy-policy,
  section.dsgvo-info,
  section.cookie-policy,
  section.terms,
  section.thank-you,
  section.testimonials {
    padding: 22px 3px;
    margin-bottom: 34px;
    border-radius: 9px;
  }
  h1 { font-size: 1.42rem; }
  h2 { font-size: 1.13rem; }
  .trust-seals { gap: 16px; }
  .testimonial-card { padding: 13px 10px; max-width: 100%; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.18rem; }
  h2 { font-size: 0.98rem; }
  .feature-grid > div, .card-grid > div {
    padding: 13px 7px 14px 12px;
  }
  .testimonial-card { padding: 9px 5px; }
}

/* Cookie Consent Banner & Modal */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 27000;
  width: 100vw;
  background: #232737;
  color: #F6F7F9;
  box-shadow: 0 -4px 22px rgba(28,55,99,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 34px;
  padding: 18px 16px;
  font-size: 1rem;
  border-radius: 13px 13px 0 0;
  animation: slideUpCookie 0.65s cubic-bezier(.41,0,.2,1) 0s;
}
@keyframes slideUpCookie {
  from {transform: translateY(100%);opacity:0;}
  to { transform: translateY(0); opacity:1;}
}
.cookie-banner__text {
  flex: 1 1 300px;
  color: #F6F7F9;
  font-size: 0.97rem;
  margin-right: 12px;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-banner button,
.cookie-modal button {
  padding: 8px 22px;
  font-size: 1rem;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 600;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
  margin-right: 0;
  margin-left: 0;
  box-shadow: 0 1.5px 10px rgba(44,54,64,0.05);
  transition: background 0.19s, color 0.13s, transform 0.13s;
}
.cookie-banner .accept {
  background: #60A34B;
  color: #1C3763;
}
.cookie-banner .accept:hover { background: #73d25c; color: #232737; }
.cookie-banner .reject {
  background: #363E4C;
  color: #F6F7F9;
}
.cookie-banner .reject:hover { background: #b72323; color: #ffeaea; }
.cookie-banner .settings {
  background: #1C3763;
  color: #F6F7F9;
}
.cookie-banner .settings:hover { background: #60A34B; color: #181C22; }

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 11px 4px;
    font-size: 0.92rem;
    border-radius: 0;
  }
}

.cookie-modal {
  position: fixed;
  z-index: 28000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(15,20,25,.83);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.23s cubic-bezier(.41,0,.20,1);
}
@keyframes fadeInModal { from{opacity:0;} to {opacity:1;}}

.cookie-modal__content {
  background: #232737;
  border-radius: 13px;
  box-shadow: 0 6px 32px rgba(28,55,99,0.29);
  padding: 34px 28px 26px 28px;
  color: #F6F7F9;
  max-width: 95vw;
  min-width: 315px;
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
}
.cookie-modal__content h3 { color: #60A34B; font-size: 1.25rem; }
.cookie-modal__content .close-btn {
  position: absolute;
  top: 18px; right: 20px;
  background: transparent;
  font-size: 1.9rem;
  color: #60A34B;
  border: none;
  cursor: pointer;
  transition: color 0.17s;
  border-radius: 20px;
  padding: 6px 12px;
}
.cookie-modal__content .close-btn:hover, .cookie-modal__content .close-btn:focus {
  color: #F6F7F9;
  background: #202634;
}
.cookie-categories {
  margin: 17px 0 14px 0;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-categories label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.02rem;
  color: #F6F7F9;
}
.cookie-categories input[type="checkbox"] {
  width: 19px;
  height: 19px;
  accent-color: #60A34B;
  margin-right: 8px;
}
.cookie-categories .essential {
  color: #7ccc5b;
  font-weight: 700;
}
.cookie-modal__actions {
  margin-top: 24px;
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 480px) {
  .cookie-modal__content {
    width: 96vw;
    min-width: 0;
    padding: 18px 3vw 13px 3vw;
  }
}

/* Util Classes for Industrial Feel */
.metal-accent {
  border-bottom: 3px solid #A9ADB3;
  box-shadow: 0 2px 8px #22242b55;
}
.shadow-metal {
  box-shadow: 0 6px 25px #1C3763cc, 0 2px 6px #23273766;
}

/* Link focus-visible outline for accessibility */
a:focus-visible, button:focus-visible, .cta-button:focus-visible {
  outline: 2.5px solid #60A34B;
  outline-offset: 2px;
}

/* Hide visually only (for accessibility) */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* Thank-you section */
section.thank-you .cta-button {
  margin-top: 17px;
}

/* Miscellaneous */
::-webkit-scrollbar {
  width: 10px; background: #232737;
}
::-webkit-scrollbar-thumb {
  background: #1C3763;
  border-radius: 7px;
}
::selection {
  background: #60A34B22;
}

/* END */
