/* -----------------------------------------------------------------------
   LIVELY VISTAS LOGISTIK - GRADIENT MODERN THEME STYLE.CSS
   Brand: Modern, trusted, dynamic, innovative, clear, spacious, reliable
   Colors: #255286 (Primary), #F4F4F9 or #ffffff (Light backgrounds), #C46700/#E98A15 (Accent)
   Fonts: Montserrat (Display, Headings), Source Sans Pro (Body)
   -----------------------------------------------------------------------*/

/* ------------------- RESET & BASE TYPOGRAPHY ------------------------- */
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: inherit; font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  background: #F4F4F9;
  color: #223150;
  min-height: 100vh;
  scroll-behavior: smooth;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg {
  display: block;
  max-width: 100%;
}
a {
  color: #255286;
  text-decoration: none;
  transition: color .2s;
  cursor: pointer;
}
a:focus, a:hover {
  color: #C46700;
  outline: none;
}
ul, ol {
  margin: 0 0 20px 24px;
}
li {
  margin-bottom: 8px;
}

/* ------------------- TYPOGRAPHY SCALE ------------------------- */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #255286;
  margin-bottom: 24px;
  letter-spacing: -.5px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #223150;
  margin-bottom: 20px;
  letter-spacing: -.25px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #255286;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1rem;
  color: #255286;
  margin-bottom: 12px;
}
p {
  font-size: 1.08rem;
  margin-bottom: 16px;
  color: #223150;
}
strong { font-weight: 700; }
.text-section {
  margin-bottom: 24px;
  color: #223150;
}
.address-block {
  color: #2d3a52;
  font-size: 1rem;
}

/* ------------------- CONTAINERS & SECTIONS ------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent; /* can be overriden by theme sections */
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  align-items: flex-start;
}

/* Spacing between cards and groups */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(34,52,86,0.07), 0 1.5px 4px rgba(196,103,0,0.04);
  padding: 28px 24px;
  transition: box-shadow .18s, transform .18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 18px rgba(34,82,134,0.13), 0 3px 12px rgba(233,138,21,0.09);
  transform: translateY(-3px) scale(1.017);
  z-index: 2;
}
.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;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(34,82,134,0.05);
  padding: 24px 20px 22px 20px;
  transition: box-shadow .16s, transform .17s;
  min-width: 210px;
  flex: 1;
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 0;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 5px 15px rgba(34,82,134,0.11);
  transform: translateY(-3px) scale(1.01);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(34,82,134,0.13), 0 1.5px 4px rgba(196,103,0,0.04);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 480px;
  transition: box-shadow .17s, transform .17s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 7px 20px rgba(34,82,134,0.18);
  transform: translateY(-2px) scale(1.015);
}
.testimonial-card p {
  font-size: 1.08rem;
  margin-bottom: 8px;
  color: #223150;
}
.testimonial-card span {
  font-size: .97rem;
  color: #255286;
  font-weight: 500;
}
.verified-client-badge {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0px;
}
.verified-client-badge img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* CTA Banner */
.cta-banner, .destination-cta, .fleet-cta, .submit-testimonial {
  background: linear-gradient(90deg, #e6eefa 0%, #F4F4F9 50%, #fff 100%);
  border-radius: 22px;
  box-shadow: 0 3px 22px rgba(34,82,134,0.08);
  padding-top: 36px;
  padding-bottom: 36px;
  margin-bottom: 54px;
  display: flex;
  align-items: center;
}
.cta-banner h2, .destination-cta h2, .fleet-cta h2 {
  color: #255286;
  margin-bottom: 10px;
}

/* Workflow and Certifications */
.workflow-icons, .certification-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 10px;
}
.workflow-icons img, .certification-badges img {
  width: 44px;
  height: 44px;
  opacity: .92;
}

/* ---------------- BUTTONS / CTA / LINKS ------------------------- */
.cta-btn, .link-arrow, .mobile-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #255286 0%, #3A74B0 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 12px 32px;
  margin-top: 12px;
  margin-bottom: 0;
  cursor: pointer;
  box-shadow: 0 3px 16px rgba(34,82,134,0.09);
  transition: background .21s, box-shadow .18s, transform .18s;
  text-decoration: none;
  letter-spacing: .03rem;
}
.cta-btn:focus, .cta-btn:hover {
  background: linear-gradient(90deg, #C46700 0%, #E98A15 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.018);
  box-shadow: 0 7px 26px rgba(229,169,77,0.21);
}
.link-arrow {
  background: none;
  color: #C46700;
  font-size: 1.06rem;
  font-weight: 500;
  padding: 0;
  margin-top: 16px;
}
.link-arrow:after {
  content: '\2192';
  margin-left: 8px;
  font-weight: bold;
  font-size: 1.2em;
  transition: margin-left .18s;
}
.link-arrow:hover:after, .link-arrow:focus:after {
  margin-left: 18px;
}

/* ------------- HEADER & NAVIGATION ----------------- */
header {
  width: 100%;
  background: linear-gradient(90deg, #255286 0%, #3A74B0 100%);
  padding: 0; /* container handles padding */
  box-shadow: 0 2px 12px rgba(34,82,134,0.08);
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  position: relative;
  flex-wrap: wrap;
}
.logo img {
  height: 48px;
  margin-right: 8px;
}
.main-nav {
  display: flex;
  gap: 22px;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  opacity: .93;
  padding: 6px 10px;
  border-radius: 8px;
  transition: color .17s, background .18s;
}
.main-nav a:hover, .main-nav a:active {
  color: #E98A15;
  background: rgba(255,255,255,0.18);
}
.main-nav a:focus {
  outline: 2px solid #E98A15;
  background: rgba(255,255,255,0.38);
  color: #255286;
}
header .cta-btn {
  margin-left: 22px;
  margin-right: 0;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  cursor: pointer;
  padding: 8px 12px;
  display: none;
  z-index: 120;
  transition: color .18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #C46700;
}

@media (max-width: 1000px) {
  .main-nav, header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  bottom: 0;
  width: 100vw; height: 100vh;
  background: linear-gradient(120deg, #255286 70%, #3a74b0 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform .35s cubic-bezier(.77,.2,.05,1), box-shadow .2s;
  z-index: 999;
  box-shadow: 0 0 22px rgba(34,82,134,0.17);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  align-self: flex-end;
  margin: 28px 28px 8px 0;
  cursor: pointer;
  z-index: 1001;
  transition: color .17s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #E98A15;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #fff;
  width: 90%;
  border-radius: 12px;
  text-align: left;
  padding: 14px 22px;
  transition: background .18s, color .18s;
  margin-bottom: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(233,138,21,0.14);
  color: #E98A15;
}

@media (max-width: 430px) {
  .mobile-nav a {
    font-size: 1.06rem;
    padding: 11px 12px;
  }
}

/* ---------------------- HERO (index) --------------------------- */
.hero {
  background: linear-gradient(103deg,#255286 0%, #3A74B0 57%, #F4F4F9 100%);
  color: #fff;
  min-height: 360px;
  display: flex;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
  border-radius: 0 0 40px 40px;
  margin-bottom: 44px;
}
.hero h1 {
  color: #fff;
  margin-bottom: 16px;
}
.hero p {
  color: #eef2fb;
  font-size: 1.13rem;
  margin-bottom: 18px;
}
.hero .cta-btn {
  box-shadow: 0 4px 16px rgba(34,82,134,0.13);
  margin-top: 14px;
  font-size: 1.1rem;
}
@media (max-width: 640px) {
  .hero {
    padding-top: 36px;
    padding-bottom: 32px;
    border-radius: 0 0 22px 22px;
    min-height: 180px;
  }
  .hero h1 { font-size: 1.5rem; }
  .hero .cta-btn { font-size: .97rem; }
}

/* -------------------- SERVICES (services.html) ----------------- */
.service-category-grid, .countries-served-grid, .vehicle-types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 22px 0 18px 0;
  justify-content: flex-start;
}
.service-item, .country-item, .vehicle-item {
  background: #fff;
  border-radius: 16px;
  flex: 1 1 240px;
  min-width: 240px;
  max-width: 350px;
  padding: 26px 19px 30px 22px;
  box-shadow: 0 2px 11px rgba(34,82,134,0.16);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .14s, transform .15s;
}
.service-item img, .country-item img, .vehicle-item img {
  width: 42px;
  height: 42px;
  margin-bottom: 0;
  opacity: 0.93;
}
.service-item:hover, .country-item:hover, .vehicle-item:hover, .service-item:focus-within {
  box-shadow: 0 5px 14px rgba(196,103,0,0.13);
  transform: translateY(-3px) scale(1.01);
  z-index: 3;
}

/* ----------------- FOOTER ------------------- */
footer {
  background: linear-gradient(93deg,#255286 19%, #3A74B0 60%, #C46700 100%);
  color: #fff;
  border-radius: 38px 38px 0 0;
  padding: 0 0 28px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin: 0 0 8px 0;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: .94;
  font-size: 1.06rem;
  transition: color .16s;
  margin-bottom: 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #E98A15;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  margin: 14px 0 0 0;
}
.footer-contact img {
  height: 44px;
}
.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
}
.social-links a img {
  width: 32px;
  height: 32px;
  opacity: 0.85;
  transition: opacity .15s;
}
.social-links a:hover img {
  opacity: 1;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 22px;
  padding-top: 12px;
  font-size: .98rem;
  color: #fff;
}
@media (max-width: 700px) {
  .footer-contact {
    flex-direction: column;
    gap: 18px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }
}

/* ------------------- MAP PLACEHOLDER ------------------- */
.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  width: 100%;
  background: #e6eefa;
  border-radius: 18px;
  margin-top: 16px;
  margin-bottom: 10px;
}
.map-placeholder img {
  width: 120px;
  height: auto;
  opacity: 0.66;
}

/* ------------- MISC LISTS, BADGES, ICON GRIDS etc. --------------- */
.industries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  list-style: disc inside;
  margin-left: 0;
  margin-top: 6px;
}
.industries-list li {
  font-size: 1.01rem;
  color: #255286;
  min-width: 170px;
}
.transit-time-descriptions ul,
.vehicle-capabilities ul, .vehicle-safety-features ul, .why-choose ul, .terms ul, .text-section ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.transit-time-descriptions ul li, .vehicle-capabilities ul li, .vehicle-safety-features ul li, .why-choose ul li, .terms ul li, .text-section ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: #223150;
  font-size: 1.02rem;
}
.transit-time-descriptions ul li:before,
.vehicle-capabilities ul li:before, .vehicle-safety-features ul li:before, .why-choose ul li:before, .terms ul li:before, .text-section ul li:before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: #C46700;
  font-size: 1.2em;
  font-weight: bold;
  top: -1px;
}

/* ---------- RESPONSIVE DESIGN ---------------- */
@media (max-width: 1050px) {
  .container {
    max-width: 99vw;
    padding: 0 7px;
  }
  .feature-grid, .service-category-grid, .countries-served-grid, .vehicle-types-grid {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-category-grid, .countries-served-grid, .vehicle-types-grid, .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 19px;
  }
  .service-item, .country-item, .vehicle-item, .testimonial-card {
    max-width: 100%;
  }
}
@media (max-width: 550px) {
  .container {
    max-width: 99vw;
    padding: 0 4px;
  }
  section, .section {
    padding: 24px 5px;
    margin-bottom: 36px;
  }
  h1 { font-size: 1.33rem; margin-bottom: 18px; }
  h2 { font-size: 1.1rem; margin-bottom: 13px; }
  .feature-item, .service-item, .country-item, .vehicle-item, .testimonial-card {
    padding: 14px 7px 14px 12px;
  }
}

/* ----------- COOKIE CONSENT BANNER ------------------ */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1201;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(34,82,134,0.10), 0 -1px 9px rgba(196,103,0,0.06);
  padding: 26px 16px 16px 16px;
  min-height: 64px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border-radius: 16px 16px 0 0;
  transition: transform .32s cubic-bezier(.77,.2,.05,1);
}
#cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-text {
  color: #223150;
  font-size: 1.06rem;
  flex: 3;
  margin-right: 10px;
}
.cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
  justify-content: flex-end;
}
.cookie-btns button {
  border: none;
  border-radius: 999px;
  padding: 8px 25px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  background: #f4f4f9;
  color: #255286;
  margin-left: 4px;
  margin-bottom: 2px;
  transition: background .15s, color .16s, box-shadow .14s;
  cursor: pointer;
  box-shadow: 0 2px 9px rgba(34,82,134,0.05);
}
.cookie-btns button.accept {
  background: linear-gradient(90deg, #255286, #3A74B0);
  color: #fff;
}
.cookie-btns button.accept:hover, .cookie-btns button.accept:focus {
  background: linear-gradient(90deg, #C46700 10%, #E98A15 100%);
}
.cookie-btns button.settings {
  border: 1.5px solid #255286;
  background: #fff;
  color: #255286;
}
.cookie-btns button.settings:hover, .cookie-btns button.settings:focus {
  background: #e6eefa;
  color: #E98A15;
  border-color: #C46700;
}
.cookie-btns button.reject {
  background: #fff;
  color: #C46700;
  border: 1.5px solid #C46700;
}
.cookie-btns button.reject:hover, .cookie-btns button.reject:focus {
  background: #fffbe7;
  color: #E98A15;
}
@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    gap: 10px;
    font-size: .98rem;
    padding: 16px 8px 8px 8px;
    align-items: flex-start;
  }
  .cookie-btns { width: 100%; justify-content: flex-start; }
}
/* Cookie Modal Overlay & Popup */
#cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,82,134,0.19);
  z-index: 1215;
  align-items: center;
  justify-content: center;
  transition: opacity .19s;
}
#cookie-modal-overlay.active {
  display: flex;
}
#cookie-modal {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 7px 40px rgba(34,82,134,0.17);
  padding: 36px 30px 28px 30px;
  max-width: 400px;
  min-width: 260px;
  color: #223150;
  position: relative;
  animation: popupIn .37s;
}
@keyframes popupIn {
  0% { transform: translateY(80px) scale(0.96); opacity: 0; }
  90% { opacity: .98; }
  100% { transform: none; opacity: 1; }
}
#cookie-modal h2 {
  color: #255286;
  font-size: 1.21rem;
  margin-bottom: 16px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category label {
  font-size: 1.03rem;
  color: #255286;
}
.cookie-category input[type='checkbox'],
.cookie-category input[type='radio'] {
  width: 19px;
  height: 19px;
  accent-color: #C46700;
}
.cookie-category.essential label {
  opacity: .76;
  font-style: italic;
}
#cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 15px;
}
#cookie-modal .close-modal {
  position: absolute;
  right: 18px;
  top: 18px;
  background: none;
  border: none;
  color: #C46700;
  font-size: 1.56rem;
  cursor: pointer;
  transition: color .13s;
}
#cookie-modal .close-modal:hover, #cookie-modal .close-modal:focus {
  color: #255286;
}

/* --------- SPECIAL SECTION LAYOUTS (ABOUT, TERMS, ETC.) ----------- */
.about .content-wrapper, .terms .content-wrapper, .cookie-policy .content-wrapper, .privacy-policy .content-wrapper, .gdpr-policy .content-wrapper {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 15px rgba(34,82,134,0.06);
  padding: 36px 24px;
  margin-bottom: 20px;
  gap: 18px;
}
@media (max-width: 600px) {
  .about .content-wrapper, .terms .content-wrapper, .cookie-policy .content-wrapper, .privacy-policy .content-wrapper, .gdpr-policy .content-wrapper {
    padding: 17px 6px;
  }
}

/* --------- THANK YOU/INFO, EMPTY/BANNER PAGES --------- */
.thank-you .content-wrapper {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 13px rgba(34,82,134,0.08);
  padding: 38px 30px;
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .thank-you .content-wrapper {
    padding: 15px 4px;
  }
}

/* ----------- MICROINTERACTIONS/ANIMATIONS ------------- */
.cta-btn, .main-nav a, .footer-nav a, .feature-item, 
.service-item, .country-item, .vehicle-item, .testimonial-card, 
.link-arrow, .mobile-nav a {
  transition: background .19s, color .17s, box-shadow .17s, transform .15s;
}

/*  ---- Remove highlighting of tap/selection on mobile ---- */
*:active { outline: none; }

/* ----------- GENERAL ACCESSIBILITY ----------- */
:focus-visible {
  outline: 2px solid #C46700;
  outline-offset: 2px;
}

/* ENFORCE VISIBLE SCROLLBAR COLOR FOR MODERN LOOK */
::-webkit-scrollbar {
  width: 9px;
  background: #e6eefa;
}
::-webkit-scrollbar-thumb {
  background: #DDE7F6;
  border-radius: 7px;
}

/* -----------------------------------------------------
   END OF STYLE.CSS
----------------------------------------------------- */