/* RESET & NORMALIZE */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { height: 100%; font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Roboto', Arial, sans-serif; background: #F6F8FA; color: #234563; min-height: 100vh; line-height: 1.6; }

img { max-width: 100%; height: auto; display: block; }
a { color: #234563; text-decoration: none; transition: color 0.2s; }
a:focus, a:hover { color: #47A37E; outline: none; }
ul, ol { list-style: none; }
button, input[type="submit"] { cursor: pointer; font-family: inherit; background: none; border: none; outline: none; }

/* BRAND FONTS */
h1, h2, h3, h4, h5, h6, .cta-primary, .cta-secondary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
}
h1 { font-size: 2.4rem; margin-bottom: 24px; letter-spacing: -1px; }
h2 { font-size: 1.75rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 15px; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 10px; }

p { margin-bottom: 16px; font-size: 1rem; }
strong, b { font-weight: 700; }

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}

/* GENERAL FLEX UTILS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 22px rgba(35, 69, 99, 0.06);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  box-shadow: 0 4px 22px rgba(35, 69, 99, 0.10);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(35, 69, 99, 0.18);
  transform: translateY(-3px) scale(1.03);
}
.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: #F6F8FA;
  border-radius: 14px;
  min-width: 220px;
  margin-bottom: 20px;
  box-shadow: 0 2px 20px rgba(35, 69, 99, 0.10);
  font-size: 1.1rem;
  color: #222;
}
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.testimonial-card .customer-name {
  font-weight: 700;
  color: #234563;
  margin-top: 12px;
}
.testimonial-card .stars {
  color: #FFC600;
  font-size: 18px;
  margin-top: 6px;
  letter-spacing: 1.5px;
}

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

/* HEADER & NAVIGATION */
header {
  background: #234563;
  color: #fff;
  padding: 0;
  box-shadow: 0 4px 18px rgba(35, 69, 99, 0.09);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 42px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.22s;
  padding: 8px 0;
  position: relative;
}
.main-nav a::after {
  content: "";
  display: block;
  width: 0%;
  height: 3px;
  background: #47A37E;
  transition: width 0.24s;
  position: absolute;
  bottom: -4px;
  left: 0;
  border-radius: 1.5px;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 100%;
}
.main-nav a:hover, .main-nav a.active {
  color: #47A37E;
}

.cta-primary {
  background: #47A37E;
  color: #fff;
  padding: 10px 28px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.6px;
  box-shadow: 0 2px 10px rgba(71,163,126,0.13);
  margin-left: 24px;
  transition: background 0.18s, transform 0.2s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #234563;
  color: #FFC600;
  transform: translateY(-2px) scale(1.03);
}

.cta-secondary {
  background: none;
  color: #47A37E;
  border: 2px solid #47A37E;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.05rem;
  transition: background 0.2s, color 0.2s;
  margin-top: 18px;
  display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #47A37E;
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  background: #47A37E;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 2rem;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  margin-left: 18px;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FFC600;
  color: #234563;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #234563;
  color: #fff;
  z-index: 2000;
  transition: transform 0.35s cubic-bezier(.85,-0.01,.18,1.19);
  transform: translateX(-110vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 32px;
  padding-left: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 12px 24px 12px 0;
  background: #47A37E;
  border-radius: 50%;
  font-size: 2rem;
  color: #fff;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.17s;
  border: none;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFC600;
  color: #234563;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 20px 48px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.18rem;
  font-weight: bold;
  padding: 16px 0;
  border-bottom: 1px solid #47A37E;
  transition: color 0.18s, background 0.18s;
  border-radius: 9px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #234563;
  color: #47A37E;
}

/* HERO SECTION */
.hero {
  background: #234563;
  color: #fff;
  padding: 80px 0 60px 0;
  min-height: 320px;
  display: flex;
  align-items: center;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 10px 44px rgba(35, 69, 99, 0.18);
  margin-bottom: 48px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: #FFC600;
  font-size: 2.7rem;
  margin-bottom: 16px;
  letter-spacing: -2px;
  max-width: 800px;
}
.hero p {
  font-size: 1.18rem;
  color: #fff;
  max-width: 600px;
  margin-bottom: 24px;
}
.hero .cta-primary {
  margin-top: 8px;
}

/* FEATURE BLOCKS, SERVICES, FLEET */
.features-grid, .service-list-detailed, .vehicle-types, .client-resources {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 24px;
}
.feature-block, .vehicle-types li, .service-list-detailed li, .client-resources li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 22px rgba(71,163,126,0.11);
  padding: 28px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.18s, transform 0.15s;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 335px;
}
.feature-block img, .vehicle-types img, .service-list-detailed img, .client-resources img {
  width: 38px; height: 38px;
  margin-bottom: 6px;
}
.feature-block h3, .vehicle-types strong, .service-list-detailed strong {
  color: #47A37E;
  margin: 0 0 10px 0;
}
.feature-block:hover, .vehicle-types li:hover, .service-list-detailed li:hover, .client-resources li:hover {
  box-shadow: 0 8px 28px rgba(71,163,126,0.18);
  transform: translateY(-3px) scale(1.03);
}

.service-list, .usp-list, .fleet-advantages, .blog-posts, .blog-categories ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 18px 0 24px 0;
}

/* BLOG SEARCH BAR & CATEGORIES */
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.search-bar input[type="text"] {
  flex: 1;
  padding: 10px 14px;
  border: 2px solid #47A37E;
  border-radius: 18px;
  font-size: 1rem;
  outline: none;
}
.search-bar button {
  background: #47A37E;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s;
}
.search-bar button:hover { background: #FFC600; }
.search-bar img { width: 20px; height: 20px; }

.blog-categories {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.blog-categories ul { flex-direction: row; gap: 18px; }
.blog-categories li {
  font-weight: 700; color: #47A37E; background: #e6f9ee; padding: 5px 14px; border-radius: 8px;
}

.blog-posts li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(71,163,126,0.09);
  padding: 26px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.blog-posts li:hover {
  box-shadow: 0 6px 24px rgba(71,163,126,0.20);
  transform: translateY(-2px) scale(1.02);
}
.blog-posts h3 { color: #234563; margin-bottom: 9px; }
.blog-posts a {
  color: #47A37E;
  font-weight: bold;
  margin-top: 4px;
  display: inline-block;
  border-bottom: 2px solid #47A37E;
  transition: border-color 0.18s;
}
.blog-posts a:hover, .blog-posts a:focus {
  border-bottom: 2px solid #FFC600; color: #FFC600;
}

/* CTA SECTIONS */
.cta-section {
  background: #47A37E;
  border-radius: 18px;
  color: #fff;
  margin: 48px 0;
  box-shadow: 0 4px 32px rgba(71,163,126,0.18);
  padding: 48px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-section h2 { color: #FFC600; font-size: 2rem; }
.cta-section .cta-primary {
  background: #FFC600;
  color: #234563;
}
.cta-section .cta-primary:hover { background: #fff; color: #47A37E; }

/* HIGHLIGHT BLOCKS */
.highlight {
  background: #e6f9ee;
  border-left: 6px solid #47A37E;
  border-radius: 12px;
  padding: 22px 24px;
  margin: 26px 0 0 0;
}

/* ADDRESS/CONTACT */
address {
  font-style: normal;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(71,163,126,0.10);
  padding: 20px 24px;
  display: flex; flex-direction: column; gap: 9px;
}
address p { display: flex; align-items: center; gap: 10px; margin-bottom: 0; font-size: 1.02rem; }
address img { width: 20px; height: 20px; }

/* FOOTER */
footer {
  margin-top: 60px;
  background: #234563;
  color: #fff;
  padding: 40px 0 28px 0;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  margin-bottom: 12px;
}
.footer-branding img { width: 98px; height: auto; margin-right: 10px; }
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  margin-top: 10px;
}
.footer-menu a {
  color: #FFC600;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.16s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #47A37E;
}
.footer-social {
  display: flex;
  gap: 18px;
}
.footer-social img { width: 24px; height: 24px; }

/* RESPONSIVE FLEX PATTERNS */
@media (max-width: 1024px) {
  .main-nav { gap: 18px; }
  .features-grid, .service-list-detailed, .vehicle-types, .client-resources { gap: 18px; }
}
@media (max-width: 900px) {
  .blog-categories ul { flex-wrap: wrap; gap: 10px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { max-width: 98vw; padding: 0 10px; }
  .hero { padding: 46px 0 38px 0; min-height: 200px; border-radius: 0 0 22px 22px; margin-bottom: 18px; }
  .hero h1 { font-size: 2rem; }
  .main-nav { display: none; }
  .cta-primary { margin-left: 0; }
  .mobile-menu-toggle { display: flex; }
  .testimonial-cards { flex-direction: column; gap: 14px; }
  .features-grid, .service-list-detailed, .vehicle-types, .client-resources { flex-direction: column; gap: 16px; }
  .footer-branding { flex-direction: column; font-size: 0.98rem; }
  .footer-menu { flex-direction: column; gap: 6px; }
  .content-grid, .card-container { flex-direction: column; gap: 16px; }
  .text-image-section { flex-direction: column; gap: 14px; }
  .section { padding: 24px 8px; margin-bottom: 32px; }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  .logo img { height: 32px; }
  .footer-branding img { width: 66px; }
}

/* UI ENERGETIC COLORS AND ELECTRIC ACCENTS */
.feature-block {
  border-left: 5px solid #FFC600;
}
.feature-block h3, .feature-block p, .vehicle-types strong, .service-list-detailed strong {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.feature-block:hover, .vehicle-types li:hover, .service-list-detailed li:hover {
  border-left: 5px solid #47A37E;
  background: #e6f9ee;
}

.highlight h3 { color: #234563; font-size: 1.2rem; }

.cta-primary, .cta-secondary, .search-bar input[type="text"], .feature-block, .testimonial-card, .blog-posts li, .vehicle-types li, .card {
  box-shadow: 0 2px 20px rgba(35, 69, 99, 0.06);
  border-radius: 14px;
}

/* BUTTONS */
button, .user-options button {
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 30px;
  background: #47A37E;
  color: #fff;
  border: none;
  transition: background 0.16s, color 0.16s, transform 0.17s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  margin-right: 10px;
  margin-bottom: 3px;
}
button:hover, .user-options button:hover,
button:focus, .user-options button:focus {
  background: #FFC600;
  color: #234563;
  transform: scale(1.03);
}

.user-options { display: flex; gap: 12px; margin: 20px 0; }

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #234563;
  color: #fff;
  z-index: 3050;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 24px 18px;
  box-shadow: 0 -4px 30px rgba(35,69,99,0.18);
  gap: 20px;
  font-size: 1.05rem;
  animation: fadeinBanner 1.1s;
}
@keyframes fadeinBanner {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: #47A37E;
  color: #fff;
  border-radius: 30px;
  font-weight: bold;
  padding: 8px 18px;
  border: none;
  margin: 0 4px;
  transition: background 0.15s, color 0.15s;
}
.cookie-banner button.accept {
  background: #FFC600;
  color: #234563;
}
.cookie-banner button.accept:hover {
  background: #fff;
  color: #47A37E;
}
.cookie-banner button.settings {
  background: #fff;
  color: #47A37E;
  border: 2px solid #47A37E;
}
.cookie-banner button.settings:hover {
  background: #FFC600;
  color: #234563;
}
.cookie-banner button.reject {
  background: #234563;
  color: #FFC600;
  border: 2px solid #FFC600;
}
.cookie-banner button.reject:hover {
  background: #47A37E;
  color: #fff;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  background: rgba(35,69,99,0.80);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeinModalBg 0.28s linear;
}
@keyframes fadeinModalBg { from { opacity:0; } to{ opacity:1; } }
.cookie-modal {
  background: #fff;
  color: #234563;
  border-radius: 18px;
  min-width: 320px;
  max-width: 96vw;
  padding: 38px 32px 28px 32px;
  box-shadow: 0 8px 44px rgba(35,69,99,0.19);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: popinModal 0.38s cubic-bezier(.41,1.37,.55,1.19);
  font-size: 1.05rem;
}
@keyframes popinModal { from{ transform: scale(0.85); opacity: 0;} to { transform: none; opacity:1;} }
.cookie-modal h2 { font-size: 1.7rem; color: #47A37E; margin-bottom:10px; }
.cookie-modal .cookie-modal-categories { display: flex; flex-direction: column; gap: 16px; margin: 14px 0 18px 0; }
.cookie-modal .cookie-category {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.08rem;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: #47A37E;
  width: 20px; height: 20px;
  margin:0;
}
.cookie-modal .cookie-category.essential label {
  color: #234563;
  font-weight: bold;
}
.cookie-modal .cookie-modal-actions {
  display: flex; gap: 14px;
  margin-top: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 14px;
  background: #47A37E;
  color: #fff;
  border-radius: 50%;
  width: 38px; height: 38px;
  font-size: 1.2rem;
  border: none;
  display: flex; align-items: center; justify-content:center;
  transition: background 0.17s, color 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #FFC600; color: #234563;
}

@media (max-width: 520px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 10px; font-size: 0.97rem; }
  .cookie-modal { padding: 20px 6vw 20px 6vw; }
}

/* UTILITIES */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-32 { margin-top: 32px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.gap-8 { gap: 8px; }
.gap-20 { gap: 20px; }

/* SPECIAL COLOR UTILITIES */
.electric-fg { color: #FFC600 !important; }
.bg-accent { background: #F6F8FA; }
.bg-electric { background: #FFC600; color: #234563; }

/* VISUAL HIERARCHY */
h1, h2, h3, .cta-primary, .cta-secondary, .feature-block h3, .vehicle-types strong {
  text-shadow: 0 2px 7px rgba(71,163,126,0.04);
}

/* ACCESSIBILITY/FOCUS */
a:focus, .cta-primary:focus, .cta-secondary:focus, .main-nav a:focus, .mobile-nav a:focus {
  outline: 2px solid #FFC600;
  outline-offset: 2px;
}

/* FIXED Z-INDEXES FOR INTERACTIVES */
.mobile-menu { z-index: 2000; }
.cookie-banner { z-index: 3050; }
.cookie-modal-overlay { z-index: 4000; }

/* END OF STYLE */
