/* ----- 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,
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, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background-color: #F7FAFD;
  color: #1A2130;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
a {
  background: none;
  text-decoration: none;
  color: inherit;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font: inherit;
  margin: 0;
  background: none;
  border: none;
  outline: none;
}

/* ----- FONT IMPORTS ----- */
@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');

/* ----- CSS VARIABLES ----- */
:root {
  --color-primary: #20416D;
  --color-secondary: #E2E6EA;
  --color-accent: #F4B400;
  --color-light: #FFFFFF;
  --color-dark: #222B45;
  --color-fun1: #33D9E2;
  --color-fun2: #FF5A5F;
  --color-fun3: #50E3C2;
  --color-fun4: #8467C7;
  --color-bg: #F7FAFD;
  --shadow-card: 0 6px 24px rgba(32, 65, 109, 0.08), 0 2px 6px rgba(244, 180, 0, 0.08);
  --radius-card: 20px;
}

/* ----- TYPOGRAPHY ----- */
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: var(--color-bg);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.18rem;
}
p, li {
  font-size: 1.08rem;
  color: #374151;
}
p {
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
  color: var(--color-fun2);
}

/* PLAYFUL DYNAMIC STYLE: Fun Fonts, Visual Hierarchy */
h1, h2 {
  font-family: 'Montserrat', cursive, sans-serif;
  font-weight: 900;
  line-height: 1.1;
}

/* ----- LAYOUT CONTAINERS ----- */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  padding: 24px 22px 22px 22px;
  background: var(--color-light);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: transform .2s cubic-bezier(.5,1.3,.5,1), box-shadow .2s;
  min-width: 260px;
}
.card:hover {
  transform: translateY(-6px) scale(1.032) rotate(-2deg);
  box-shadow: 0 10px 32px rgba(80,227,194,0.11), 0 2px 8px rgba(244,180,0,0.115);
}
.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;
  min-width: 260px;
  background: var(--color-secondary);
  border-radius: var(--radius-card);
  margin-bottom: 22px;
  box-shadow: 0 4px 18px rgba(32,65,109,0.07);
  transition: box-shadow 0.22s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px rgba(80, 227, 194,.09);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ----- HEADER, NAVIGATION, CTA ----- */
header {
  background: var(--color-light);
  box-shadow: 0 4px 10px rgba(32,65,109,0.04);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 18px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
header nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1.07rem;
  padding: 8px 12px;
  border-radius: 14px;
  transition: background .16s, color .16s;
  position: relative;
}
header nav a:not(.cta-btn):hover,
header nav a.active {
  background: var(--color-fun1);
  color: var(--color-light);
  text-shadow:0 2px 8px rgba(80,227,194,0.06);
}
.cta-btn {
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  border-radius: 999px;
  font-size: 1.1rem;
  padding: 10px 30px 10px 22px;
  position: relative;
  box-shadow: 0 4px 14px rgba(244,180,0,.12);
  margin-left: 10px;
  border: 2px solid var(--color-primary);
  transition: background .17s, color .17s, transform .16s;
  cursor: pointer;
  letter-spacing: 0.03em;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-fun2);
  color: var(--color-light);
  border-color: var(--color-fun2);
  transform: scale(1.06) rotate(-2deg);
}

/* LOGO */
header img, .footer-logo img {
  height: 46px;
  display: block;
  user-select: none;
}

/* ----- HERO SECTION ----- */
.hero {
  background: linear-gradient(110deg, var(--color-fun1) 0%, var(--color-accent) 98%);
  border-radius: 0 0 40px 40px;
  min-height: 340px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  box-shadow: 0 8px 38px 0 rgba(50,97,219,0.13);
}
.hero .container {
  display: flex;
  min-height: 280px;
  align-items: center;
  justify-content: flex-start;
}
.hero h1 {
  color: var(--color-light);
  font-size: 2.5rem;
  text-shadow: 0 4px 18px rgba(32,65,109,0.11);
}
.hero p {
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 22px;
}
.hero .cta-btn {
  background: var(--color-light);
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.hero .cta-btn:hover {
  color: var(--color-light);
  background: var(--color-fun2);
  border: 2px solid var(--color-fun2);
}

/* ----- LISTS, FEATURES, ICONS ----- */
ul {
  padding-left: 0;
  margin-bottom: 10px;
}
ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.5;
  margin-bottom: 9px;
}
ul li img {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: var(--color-fun1);
  box-shadow: 0 2px 6px rgba(80,227,194,0.14);
  padding: 3px;
  object-fit: cover;
  margin-right: 7px;
  transition: transform .2s;
}
ul li img:hover {
  transform: scale(1.13) rotate(-7deg);
  filter: brightness(1.15);
}

/* ----- SERVICES, OFFER, CARDS ----- */
.services-list, .services-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.services-list > div, .services-categories > div {
  background: var(--color-light);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  flex: 1 1 290px;
  min-width: 250px;
  padding: 20px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: box-shadow .18s, transform .16s;
  margin-bottom: 12px;
  min-height: 195px;
}
.services-list > div:hover, .services-categories > div:hover {
  box-shadow: 0 12px 38px 0 rgba(80,227,194,0.10);
  transform: translateY(-6px) scale(1.021) rotate(-2deg);
}

/* ----- FEATURES GRID (ABOUT) ----- */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.features-grid > div {
  background: var(--color-fun3);
  color: var(--color-primary);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  flex: 1 1 300px;
  padding: 18px 18px 14px 18px;
  min-width: 200px;
  min-height: 145px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .15s, transform .15s;
  margin-bottom: 10px;
}
.features-grid > div img {
  width: 32px;
  margin-bottom: 7px;
}
.features-grid > div:hover {
  transform: scale(1.045) rotate(2deg);
  box-shadow: 0 14px 42px rgba(255,90,95,0.10);
}

/* ----- FLEET TABLE & CATEGORIES ----- */
.fleet-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 20px;
}
.fleet-categories ul li {
  margin-bottom: 7px;
}
.vehicle-comparison-table {
  width: 100%;
  overflow-x: auto;
}
.vehicle-comparison-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--color-light);
  border-radius: var(--radius-card);
  box-shadow: 0 3px 16px rgba(32,65,109,0.06);
}
.vehicle-comparison-table th, .vehicle-comparison-table td {
  padding: 13px 14px;
  text-align: left;
}
.vehicle-comparison-table thead th {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}
.vehicle-comparison-table tbody tr:nth-child(even) td {
  background: #F4FBFA;
}
.vehicle-comparison-table td {
  color: #2F3440;
  font-size: 1.04rem;
}

/* ----- STEPPER (HOW IT WORKS) ----- */
.stepper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 15px;
}
.stepper ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.stepper li {
  position: relative;
  padding-left: 44px;
  min-height: 40px;
  background: var(--color-light);
  border-left: 6px solid var(--color-fun2);
  border-radius: 0 14px 14px 0;
  box-shadow: 0 1px 6px rgba(32,65,109,.06);
  font-size: 1.15rem;
  font-family: 'Montserrat', sans-serif;
}
.stepper li:before {
  content: '';
  position: absolute;
  left: -17px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-fun1);
  z-index: 2;
  border: 3px solid var(--color-light);
}
.stepper li strong {
  color: var(--color-fun2);
}

/* FAQ ACCORDION */
.faq-accordion > div {
  background: var(--color-light);
  border-radius: var(--radius-card);
  padding: 17px 22px 12px 22px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-card);
  transition: box-shadow .18s, transform .1s;
}
.faq-accordion > div:hover {
  transform: translateY(-3px) scale(1.011);
  box-shadow: 0 13px 33px rgba(244,180,0,0.10);
}
.faq-accordion h3 {
  font-size: 1.13rem;
  margin-bottom: 7px;
  color: var(--color-fun2);
  font-family: 'Montserrat', sans-serif;
}

.faq-snippet {
  background: var(--color-fun3);
  border-radius: 13px;
  padding: 18px 20px;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(80,227,194,0.07);
  color: var(--color-dark);
  margin-bottom: 12px;
}

.contact-prompt {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}

/* ----- CONTACT DETAILS ----- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-details li {
  background: #fffbe3;
  padding: 12px 17px;
  border-radius: 11px;
  align-items: center;
  color: var(--color-primary);
  box-shadow: 0 2px 12px #f4b40028;
  font-weight: 500;
  font-size: 1.1rem;
}
.contact-details img {
  width: 28px;
  margin-right: 12px;
  vertical-align: middle;
}
.map {
  margin-top: 16px;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* ----- FOOTER ----- */
footer {
  background: var(--color-primary);
  color: var(--color-light);
  box-shadow: 0 -8px 28px 0 rgba(32,65,109,0.08);
  margin-top:60px;
  padding-top: 32px;
  padding-bottom: 24px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo {
  flex: 0 0 120px;
}
.footer-menu, .footer-contact, .footer-social{
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 130px;
}
.footer-menu a {
  color: var(--color-light);
  opacity: 0.85;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  transition: color .15s, opacity .13s;
}
.footer-menu a:hover {
  color: var(--color-accent);
  opacity: 1;
}
.footer-contact img {
  width: 20px;
  vertical-align: middle;
  margin-right: 7px;
}
.footer-social {
  flex-direction: row;
  gap: 15px;
  align-items: center;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  transition: transform .23s, filter .16s;
  filter: brightness(0.95);
}
.footer-social a:hover img {
  filter: brightness(1.15) drop-shadow(0 3px 10px var(--color-fun2));
  transform: scale(1.13) rotate(-7deg);
}
.footer-legal {
  flex-basis: 100%;
  text-align: center;
  margin-top: 24px;
  opacity: 0.75;
  font-size: 0.98rem;
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu-toggle {
  background: var(--color-fun2);
  color: var(--color-light);
  font-size: 2.2rem;
  line-height: 1;
  padding: 2px 16px 3px 16px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: none;
  transition: background .18s;
  margin-left: 7px;
  z-index: 103;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-light);
  box-shadow: 0 8px 44px 5px rgba(32,65,109,0.22);
  z-index: 999;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform .44s cubic-bezier(0.55,0.22,0.43,1.15), opacity .2s;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.active {
  transform: translateX(0vw);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: var(--color-fun2);
  font-size: 2.5rem;
  border: none;
  margin: 26px 0 0 24px;
  align-self: flex-start;
  cursor: pointer;
  z-index: 25;
  transition: color .19s;
}
.mobile-menu-close:hover {
  color: var(--color-accent);
}
.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 38px 0 38px;
  gap: 25px;
  margin-top: 21px;
}
.mobile-nav a {
  font-size: 1.35rem;
  color: var(--color-primary);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-secondary);
  width: 100%;
  transition: background .15s, color .13s;
  border-radius: 0;
  font-family: 'Montserrat', sans-serif;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover {
  background: var(--color-fun1);
  color: var(--color-light);
  border-radius: 13px;
}

/* Hide main nav on mobile */
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width:1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ---------- COOKIE CONSENT BANNER ---------- */
.cookie-banner {
  position: fixed;
  z-index: 2000;
  left: 0;
  bottom: 0;
  width: 100%;
  box-shadow: 0 -3px 18px 0 rgba(32,65,109,0.10);
  background: var(--color-light);
  color: var(--color-dark);
  padding: 28px 16px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  animation: cookieBannerSlideIn .73s cubic-bezier(.4,1.33,.68,1.11);
}
@keyframes cookieBannerSlideIn {
  0% { transform: translateY(200px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1.08rem;
  color: var(--color-dark);
  text-align: center;
}
.cookie-banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-btn {
  border-radius: 999px;
  font-size: 1.02rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  padding: 8px 32px;
  margin-bottom: 0;
  cursor: pointer;
  border: none;
  transition: background .18s, color .18s, transform .11s;
  background: var(--color-fun3);
  color: var(--color-dark);
  box-shadow: 0 2px 14px #33d9e22a;
}
.cookie-btn.accept {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-btn.settings {
  background: var(--color-fun2);
  color: var(--color-light);
}
.cookie-btn.reject {
  background: var(--color-fun1);
  color: var(--color-primary);
}
.cookie-btn:hover {
  transform: scale(1.07);
  filter: brightness(1.09);
  box-shadow: 0 5px 18px #20416d1b;
}

/* ----- COOKIE MODAL ----- */
.cookie-modal {
  position: fixed;
  z-index: 2600;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,65,109,0.34);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.18s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: var(--color-light);
  border-radius: 18px;
  max-width: 430px;
  width: 97vw;
  padding: 38px 27px 28px 27px;
  box-shadow: 0 14px 44px 4px rgba(80,227,194,0.17);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalPopup .45s cubic-bezier(.42,0,0,.99);
}
@keyframes modalPopup {
  from { transform: scale(0.75) translateY(60px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-content h2 {
  color: var(--color-fun2);
  font-size: 1.33rem;
  margin-bottom: 2px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  background: var(--color-secondary);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.08rem;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--color-fun2);
  width: 21px;
  height: 21px;
}
.cookie-category.essential label {
  color: var(--color-accent);
  font-weight: 700;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  color: var(--color-fun2);
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color .13s;
}
.cookie-modal-close:hover {
  color: var(--color-accent);
}

/* ----- ANIMATED ELEMENTS (playful) ----- */
.card, .testimonial-card, .services-list > div, .features-grid > div {
  transition: box-shadow 0.2s, transform 0.18s, background .13s;
}
.cta-btn, .cookie-btn {
  transition: background .17s, color .18s, filter .17s, transform .17s;
}
.cta-btn:active, .cookie-btn:active {
  filter: brightness(0.93);
  transform: scale(.97);
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  header .container {
    height: 64px;
    padding: 0 5px;
    gap: 8px;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 10px 18px 10px 14px;
  }
  .section {
    margin-bottom: 36px;
    padding: 28px 7px;
  }
  .content-wrapper {
    padding: 0 2px;
    gap: 18px;
  }
  .card-container {
    gap: 12px;
  }
  .card {
    min-width: 94vw;
    padding: 14px 11px 14px 11px;
  }
  .testimonial-card {
    min-width: 92vw;
    padding: 13px 8px;
    gap: 12px;
  }
  .text-image-section, .content-grid, .services-list, .features-grid, .services-categories {
    flex-direction: column;
    gap: 14px;
  }
  .stepper ol { gap: 9px; }
  footer .container {
    flex-direction: column;
    gap: 17px;
  }
  .vehicle-comparison-table th, .vehicle-comparison-table td {
    padding: 7px 8px;
    font-size: .97rem;
  }
  .map {
    min-height: 80px;
  }
}

@media (max-width: 490px) {
  .cookie-modal-content {
    padding: 18px 2px 14px 2px;
    max-width: 98vw;
  }
  .vehicle-comparison-table table, .vehicle-comparison-table td, .vehicle-comparison-table th {
    font-size: 0.94rem;
  }
  .testimonial-card, .card {
    min-width: unset;
  }
  header img, .footer-logo img {
    height: 32px;
  }
}

/* ----- ADDITIONAL PLAYFUL DECORATIVE EFFECTS ----- */
.card::after, .testimonial-card::before {
  content: '';
  display: block;
  position: absolute;
  right: 12px;
  top: 9px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--color-fun1);
  opacity: 0.08;
  z-index: 1;
}
.card::before {
  content: '';
  display: block;
  position: absolute;
  left: 12px;
  bottom: 7px;
  width: 21px; height: 21px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.07;
  z-index: 1;
}
.testimonial-card::before {
  left: 10px;
  right: unset;
  background: var(--color-fun2);
  opacity: 0.085;
  width: 15px;
  height: 15px;
  top:10px;
}

/* ----- SELECTION ----- */
::selection {
  background: var(--color-fun2);
  color: var(--color-light);
}

/* Accessibility: strong color contrast in testimonials/reviews */
.testimonial-card p, .testimonial-card span {
  color: #222B45;
}

/* Spacing utility classes for extra margin */
.mt-8 { margin-top:8px; } .mt-16 { margin-top:16px; } .mt-32 { margin-top:32px; }
.mb-8 { margin-bottom:8px; } .mb-20 { margin-bottom:20px; }

/* Hide outlines except on keyboard navigation */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 1.5px;
}

/* Utility for visually-hidden (e.g. modal close for a11y) */
.visually-hidden {
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden;
    clip: rect(1px,1px,1px,1px);
    white-space: nowrap;
}
