/* =========================
   CSS RESET & NORMALIZE
   ========================= */
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,
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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  background: #F8F2EA;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F8F2EA;
  color: #1C2833;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #1C2833;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFD100;
  text-decoration: none;
  outline: none;
}
ul, ol {
  margin-left: 1.25em;
  margin-bottom: 24px;
}
ul li, ol li {
  margin-bottom: 8px;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  color: #38414A;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  text-shadow: 0 2px 0 #FFD10033;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.33rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, .text-section p {
  margin-bottom: 16px;
  font-size: 1rem;
}
strong {
  font-weight: bold;
}
hr {
  border: 0;
  height: 1px;
  background: #E5D3B0;
  margin: 32px 0;
}

/* ==============
  FONT IMPORTS
  ============== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F8F2EA;
  color: #1C2833;
}

/* ===============
   RETRO PATTERNS
  =============== */
body:before {
  content: '';
  display: block;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(135deg, #e1be73 0, #e1be73 2px, transparent 2px, transparent 22px),
    repeating-linear-gradient(45deg, #FFD10011 0, #FFD10011 4px, transparent 4px, transparent 24px);
}

/* ===========================
   LAYOUT CONTAINERS & SPACING
   =========================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fffbe7;
  border-radius: 22px;
  box-shadow: 0 2px 18px 0 rgba(70, 52, 14, 0.07);
  position: relative;
}

/* ==========
   HEADER
   ========== */
header {
  background: #1C2833;
  border-bottom: 6px solid #FFD100;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
header img {
  height: 44px;
  width: auto;
}

/* ================
   MAIN NAVIGATION
   ================ */
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.06rem;
  color: #F8F2EA;
  border-radius: 7px;
  padding: 7px 24px;
  background: none;
  transition: background 0.18s, color 0.18s, box-shadow .18s;
}
.main-nav a.cta,
.main-nav a.primary {
  background: #FFD100;
  color: #1C2833;
  box-shadow: 0 2px 12px #ffd10015;
  border-radius: 7px;
  margin-left: 16px;
  text-shadow: none;
}
.main-nav a:hover, .main-nav a:focus {
  background: #c6a041;
  color: #F8F2EA;
}
.main-nav a.cta:hover,
.main-nav a.primary:hover {
  background: #1C2833;
  color: #FFD100;
  box-shadow: 0 3px 14px #cdad1117;
}

/* ================
  MOBILE MENU
  ================ */
.mobile-menu-toggle {
  background: none;
  font-size: 2rem;
  color: #FFD100;
  border: none;
  cursor: pointer;
  margin-left: 12px;
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 110;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:hover {
  background: #FFD10022;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #1C2833;
  z-index: 2000;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 24px;
  padding-bottom: 24px;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #FFD100;
  font-size: 2.25rem;
  font-weight: bold;
  align-self: flex-end;
  margin-right: 20px;
  margin-bottom: 24px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fffbe7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 18px;
  align-items: flex-start;
  margin-left: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFD100;
  background: none;
  padding: 10px 7px;
  border-radius: 6px;
  transition: background 0.18s, color 0.19s;
  text-decoration: none;
  text-align: left;
  min-width: 180px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #FFD100;
  color: #1C2833;
  text-decoration: none;
}

/* ===============
   HERO SECTION
   =============== */
.hero {
  background: #FFD100;
  background: linear-gradient(101deg, #FFD100 60%, #f7e09b 100%);
  border-radius: 0 0 44px 44px;
  box-shadow: 0 2px 16px #1C283317;
  margin-bottom: 60px;
  padding: 54px 0 44px 0;
  position: relative;
}
.hero h1 {
  font-size: 2.6rem;
  color: #1C2833;
  text-shadow: 0 3px #fffbe799, 0 0px #FFD100cc;
  margin-bottom: 10px;
}
.hero .subheadline {
  font-size: 1.19rem;
  color: #7d6f44;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 30px;
  letter-spacing: 0.6px;
}
.hero .cta.primary {
  font-size: 1.09rem;
}

/* ==================
   FEATURES & CARDS
   ================== */
.features, .services, .values, .benefits, .about-preview, .services-preview, .fleet, .legal, .map, .faq, .thankyou {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fffbe7;
  border-radius: 22px;
  box-shadow: 0 2px 18px 0 rgba(70, 52, 14, 0.06);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F9ECD6;
  border-radius: 16px;
  box-shadow: 0 2px 10px #ffd10017;
  padding: 28px 22px 24px 22px;
  min-width: 250px;
  min-height: 260px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  position: relative;
  border: 2.5px solid #efd387;
  transition: box-shadow 0.21s, transform 0.2s, border-color 0.19s;
}
.feature-item img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  margin-bottom: 4px;
  background: #FFD10033;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 7px 26px #ffd10033;
  border-color: #FFD100;
  transform: translateY(-4px) scale(1.024);
  background: #ffe9aa;
}

/* =====================
   TESTIMONIALS SECTION
   ===================== */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F9ECD6;
  border-radius: 28px;
  box-shadow: 0 3px 24px #1C283308;
}
.testimonials h2 {
  color: #624115;
  font-size: 2rem;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fffbe7;
  box-shadow: 0 4px 18px #ac884015;
  border-radius: 16px;
  padding: 28px 32px 24px 32px;
  min-width: 270px;
  flex: 1 1 300px;
  margin-bottom: 20px;
  border-left: 7px solid #FFD100;
  position: relative;
  transition: box-shadow 0.2s, border-color 0.16s, transform .2s;
}
.testimonial-card p {
  color: #1C2833;
  font-size: 1.12rem;
  text-align: center;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 0;
}
.testimonial-name {
  color: #7d6204;
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 34px #ffd10040;
  border-color: #b38800;
  transform: translateY(-3px) scale(1.02);
}

/* ===================
   CTA, BUTTONS & LINKS
   =================== */
.cta, .primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  background: #FFD100;
  color: #1C2833;
  border-radius: 8px;
  padding: 13px 32px;
  box-shadow: 0 2px 12px #ffd10027;
  border: none;
  letter-spacing: 0.5px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, box-shadow 0.21s, transform .19s;
}
.cta:active, .cta:hover, .primary:active, .primary:hover {
  background: #1C2833;
  color: #FFD100;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 18px #FFD10060;
}
.cta-link {
  display: inline-block;
  background: none;
  color: #b38800;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 700;
  margin-top: 6px;
  border-bottom: 2px dashed #FFD100;
  text-decoration: none;
  transition: color 0.15s, border-color 0.17s, background 0.12s;
}
.cta-link:hover, .cta-link:focus {
  background: #FFD10055;
  color: #1C2833;
  border-color: #1C2833;
  text-decoration: none;
}
.btn {
  border-radius: 6px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  background: #FFD100;
  color: #1C2833;
  padding: 12px 26px;
  font-size: 1rem;
  margin-right: 10px;
  margin-bottom: 0;
  margin-top: 10px;
  transition: background 0.15s, color 0.15s, box-shadow 0.16s;
}
.btn:hover, .btn:focus {
  background: #1C2833;
  color: #FFD100;
}

/* =====================
   SECTION SPACING RULES
   ===================== */
.section,
.features, .testimonials, .services, .values, .about-preview, .services-preview,.fleet, .legal, .faq, .thankyou, .contact-data, .map, .team, .contact-cta, .benefits {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .feature-grid, .testimonial-slider, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.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;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}

/* ===============================
  ABOUT/LEGAL/GENERIC CONTENT BLOCKS
  =============================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section h2, .text-section h3, .text-section h4 {
  margin-bottom: 6px;
  color: #b38800;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.text-section ul, .text-section ol {
  margin-bottom: 0;
}
.text-section ul li {
  font-size: 1rem;
  margin-bottom: 6px;
  list-style-type: disc;
}
.text-section ol li {
  font-size: 1rem;
  margin-bottom: 6px;
  list-style-type: decimal;
}

/* =============
   FOOTER
  ============= */
footer {
  background: #1C2833;
  color: #FFEDB9;
  padding-top: 36px;
  padding-bottom: 26px;
  border-top: 7px solid #FFD100;
  margin-top: 60px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-main > a {
  flex: 0 0 auto;
}
footer img {
  max-width: 60px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 10px;
  font-size: 1.05em;
}
.footer-nav a {
  color: #FFD100;
  background: none;
  text-decoration: underline;
  border-radius: 5px;
  padding: 2px 0;
  transition: background 0.14s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F9ECD6;
  background: #FFD10033;
  text-decoration: none;
}
.footer-contact {
  font-size: 0.97em;
  color: #FFEDB9;
}
.footer-contact a {
  color: #FFD100;
  text-decoration: underline;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  margin-left: 8px;
  margin-bottom: 0;
}
.footer-social a img {
  width: 30px;
  height: 30px;
  filter: grayscale(30%) brightness(90%);
  opacity: 0.7;
  transition: filter 0.2s, opacity 0.2s, transform 0.2s;
  border-radius: 50%;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: none;
  opacity: 1;
  background: #FFD10044;
  transform: scale(1.05) rotate(-4deg);
}

/* =====================
   COOKIE CONSENT BANNER
   ===================== */
.cookie-consent-banner {
  position: fixed;
  z-index: 3000;
  left: 0; right: 0;
  bottom: 0;
  background: #E5D3B0;
  color: #453917;
  box-shadow: 0 -2px 24px #48260236;
  padding: 24px 15px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  width: 100vw;
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-consent-banner button,
.cookie-consent-banner .cookie-btn {
  border: none;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 24px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.15s, color 0.15s, box-shadow 0.13s;
}
.cookie-consent-banner button.accept {
  background: #FFD100;
  color: #1C2833;
}
.cookie-consent-banner button.accept:hover {
  background: #1C2833;
  color: #FFD100;
}
.cookie-consent-banner button.reject {
  background: #bdb490;
  color: #1C2833;
}
.cookie-consent-banner button.reject:hover {
  background: #1C2833;
  color: #E5D3B0;
}
.cookie-consent-banner button.settings {
  background: #fffbe7;
  color: #1C2833;
}
.cookie-consent-banner button.settings:hover {
  background: #FFD100;
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(28, 40, 51, 0.64);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4000;
  animation: cookieModalFadeIn 0.28s ease;
}
@keyframes cookieModalFadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
.cookie-modal-content {
  background: #fffbe7;
  color: #1C2833;
  border-radius: 18px;
  box-shadow: 0 7px 40px #68490039;
  padding: 38px 36px 25px 36px;
  max-width: 430px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: cookieModalSlideIn 0.39s cubic-bezier(.77,0,.18,1);
}
@keyframes cookieModalSlideIn {
  from {transform: translateY(48px) scale(0.93); opacity: 0;}
  to   {transform: none; opacity: 1;}
}
.cookie-modal-content h2 {
  color: #b38800;
  font-size: 1.35rem;
  margin: 0 0 12px 0;
}
.cookie-modal-content .cookie-categories label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-modal-content input[type="checkbox"] {
  accent-color: #FFD100;
  width: 18px;
  height: 18px;
}
.cookie-modal-content .essentials {
  color: #888;
  font-size: 0.96em;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 18px;
  background: none;
  border: none;
  color: #b38800;
  font-size: 1.75rem;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #1C2833;
}
.cookie-modal-content .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}

/* =============
   MISC PATTERNS
  ============= */
.service-highlights, .contact-data ul, .benefits ul {
  list-style-type: disc;
  margin-left: 23px;
  margin-bottom: 18px;
  font-size: 1.04rem;
}
.section ul {
  list-style-type: disc;
  margin-left: 23px;
  margin-bottom: 18px;
}
.section ol {
  list-style-type: decimal;
  margin-left: 23px;
}
.section ul li, .section ol li {
  font-size: 1rem;
  margin-bottom: 4px;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE DESIGN
   ========================= */
@media (max-width: 1080px) {
  .container {
    max-width: 94vw;
  }
  .footer-main {
    gap: 28px;
  }
  .feature-item, .testimonial-card {
    min-width: 220px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 99vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  header .container {
    padding-left: 7px;
    padding-right: 7px;
    height: 72px;
  }
  .footer-main {
    flex-direction: column;
    gap: 20px;
  }
  .footer-nav {
    flex-direction: row;
    gap: 12px;
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .container {
    padding-left: 7px;
    padding-right: 7px;
    max-width: 100vw;
  }
  .section, .features, .testimonials, .services, .values, .about-preview, .services-preview, .fleet, .legal, .faq, .thankyou, .contact-data, .map, .team, .contact-cta, .benefits {
    padding: 26px 7px 29px 7px;
    margin-bottom: 40px;
    border-radius: 17px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .feature-grid, .testimonial-slider, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .testimonial-card, .card {
    min-width: 170px;
    width: 100%;
    max-width: 100vw;
  }
  .hero {
    padding: 36px 0 23px 0;
    border-radius: 0 0 18px 18px;
    margin-bottom: 38px;
  }
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.48rem;
  }
  .footer-social {
    gap: 14px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 4px;
    font-size: 0.98rem;
  }
  .footer-main > a img {
    max-width: 40px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 480px) {
  body, .container {
    font-size: 15px;
  }
  .hero h1 {
    font-size: 1.3rem;
    text-align: left;
  }
  .feature-item, .testimonial-card {
    padding: 18px 8px 16px 8px;
    font-size: .97rem;
  }
  .cookie-modal-content {
    padding: 15px 6px 19px 8px;
    max-width: 98vw;
  }
  .cookie-consent-banner {
    padding: 16px 3px 14px 8px;
    font-size: 0.98rem;
  }
}

/* ===============
 UTILITY CLASSES
=============== */
.d-none {
  display: none !important;
}
.d-flex {
  display: flex !important;
}
.flex-col {
  flex-direction: column !important;
}
.flex-row {
  flex-direction: row !important;
}
.align-center {
  align-items: center !important;
}
.align-start {
  align-items: flex-start !important;
}
.gap-20 {
  gap: 20px !important;
}
.gap-30 {
  gap: 30px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
.mb-60 {
  margin-bottom: 60px !important;
}

/* ================
  PRINT SUPPORT
 ================ */
@media print {
 header, footer, .mobile-menu, .cookie-consent-banner, .cookie-modal {
   display: none !important;
 }
 .section, .features, .testimonials, .services, .values, .about-preview, .services-preview,.fleet, .legal, .faq, .thankyou, .contact-data, .map, .team, .contact-cta, .benefits {
   margin-bottom: 24px;
   padding: 18px 0 18px 0;
   background: none;
   box-shadow: none;
   border-radius: 0;
 }
}

/* ==================
    SCROLLBARS
================== */
body, .mobile-menu, .cookie-modal {
  scrollbar-color: #FFD100 #e5d3b0;
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 10px;
  background: #F8F2EA;
}
::-webkit-scrollbar-thumb {
  background: #FFD100cc;
  border-radius: 9px;
  border: 3px solid #F8F2EA;
}
::-webkit-scrollbar-thumb:hover {
  background: #b38800dd;
}

/* =============
 RETRO DETAILS
============ */
.section:before, .features:before, .about-preview:before, .services-preview:before, .testimonials:before {
  content: '';
  position: absolute;
  top: -18px; left: -18px;
  width: 64px; height: 64px;
  background: repeating-linear-gradient(37deg, #FFD10055 0 10px, transparent 10px 16px);
  border-radius: 100% 68% 71% 90% / 84% 100% 66% 80%;
  z-index: 0;
  opacity: 0.23;
}
.section:after, .features:after, .about-preview:after, .services-preview:after, .testimonials:after {
  content: '';
  position: absolute;
  right: -18px; bottom: -18px;
  width: 40px; height: 40px;
  background: #FFD10051;
  border-radius: 99% 66% 67% 81% / 90% 99% 79% 87%;
  z-index: 0;
  opacity: 0.13;
}

/* ================
 FADE-IN ANIMATION
================ */
@keyframes fadeinAppear {
  0% { opacity: 0; transform: translateY(32px) scale(.94); }
  93% { opacity: 0.95;
    transform: translateY(-3px) scale(1); }
  100% { opacity: 1; transform: none; }
}
.section, .features, .testimonials, .contact-cta, .hero, .about-preview, .services-preview, .fleet, .values, .team, .legal, .faq, .map {
  animation: fadeinAppear 0.77s cubic-bezier(.61,0,.23,1) both;
}

/* Prevent absolute positioning for cards (only for section pseudo-decorations) */

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