/* ===================================================================
   Lively Keel Luxe Drives – Playful Dynamic CSS Theme
   By: Senior CSS Developer & UI Designer
   =================================================================== */

/* ---------------------------
   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;
}

html { box-sizing: border-box; height:100%; }
body {
  height:100%;
  font-size: 16px;
  font-family: 'Open Sans', Arial, sans-serif;
  background-color: #F5F7FB;
  color: #253046;
  min-height: 100vh;
  line-height: 1.65;
}
*, *:before, *:after { box-sizing: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* -----------------------
   CUSTOM VARIABLES
------------------------ */
:root {
  --color-primary: #253046;
  --color-secondary: #C4A572;
  --color-accent: #F9F6F2;
  --color-contrast: #FFD23C;
  --color-playful: #3FC5F0;
  --color-fun1: #FFA07A;
  --color-fun2: #BBF46A;
  --color-danger: #F05D5B;

  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* ------------------------------------------------
   LAYOUT: Container, Section, Helpers, Flex Styles
-------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(63,197,240,0.08), 0 1.5px 6px rgba(39,48,70,0.07);
  position: relative;
  transition: box-shadow 0.3s;
}

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

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0;
}

.feature-grid, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 12px 0 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-accent);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(63,197,240,0.07);
  min-width: 220px;
  flex: 1 1 220px;
  transition: transform 0.22s cubic-bezier(.28,1.35,.72,1.03), box-shadow 0.22s;
  margin-bottom: 20px;
}
.feature-item:hover {
  transform: translateY(-8px) scale(1.045) rotate(-2deg);
  box-shadow: 0 10px 24px rgba(196,165,114,0.14), 0 2px 16px rgba(39,48,70,0.07);
  background: var(--color-fun1);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0;
}

.service-item {
  background: var(--color-playful);
  color: #253046;
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(63,197,240,0.08);
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
  font-family: var(--font-display);
  transition: transform 0.18s, background 0.22s;
  position: relative;
}
.service-item span {
  font-size: 17px;
  font-weight: bold;
  color: var(--color-secondary);
  letter-spacing: 1px;
  background: #fff8e7;
  border-radius: 12px;
  padding: 5px 12px;
  margin-top: 8px;
  box-shadow: 0 1px 6px rgba(252,220,81,0.07);
}
.service-item:hover {
  background: var(--color-fun2);
  transform: scale(1.03) rotate(1.4deg);
}

.featured-vehicles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.vehicle-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 8px rgba(39,48,70,0.05);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 210px;
  margin-bottom: 20px;
  flex: 1 1 250px;
  font-family: var(--font-display);
  transition: box-shadow 0.15s, transform 0.12s;
}
.vehicle-item span {
  background: var(--color-secondary);
  color: #fff;
  border-radius: 10px;
  padding: 2px 14px;
  align-self: flex-start;
  font-size: 15px;
}
.vehicle-item:hover {
  box-shadow: 0 5px 14px rgba(63,197,240,0.11);
  transform: scale(1.03) skewY(1deg);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(39,48,70,0.05);
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 26px rgba(39,48,70,0.13), 0 2px 14px rgba(63,197,240,0.09);
  transform: scale(1.035);
}

.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-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 0;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(39,48,70,0.11),0 1px 8px rgba(252,220,81,0.07);
  flex: 1 1 320px;
  min-width: 270px;
  max-width: 420px;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: 18px;
  transition: box-shadow 0.18s, transform 0.16s;
  position: relative;
  z-index: 1;
  border: 2.5px dashed var(--color-playful);
}
.testimonial-card:hover {
  box-shadow: 0 18px 38px rgba(252,220,81,0.12),0 2px 20px rgba(63,197,240,0.11);
  transform: scale(1.025) rotate(-1.5deg);
  background: #F9F6F2;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 16px;
  color: #253046;
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: #253046;
  margin-bottom: 8px;
  background: none;
  border-left: 4px solid var(--color-playful);
  padding-left: 14px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---------------
   HEADER & NAV
----------------- */
header {
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 25px rgba(39,48,70,0.08);
  position: sticky;
  top: 0;
  z-index: 29;
  min-height: 66px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
  padding: 12px 0;
  font-family: var(--font-display);
}
.main-nav > a {
  padding: 10px 18px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 12px;
  margin-right: 2px;
  color: #FFFFFF;
  transition: background 0.15s, color 0.18s, transform 0.19s;
}
.main-nav > a.cta {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 15px;
  font-family: var(--font-display);
  border-radius: 18px;
  padding: 11px 24px;
  margin-left: 12px;
  font-weight: 700;
  letter-spacing: .2px;
  box-shadow: 0 1px 8px rgba(196,165,114,0.12);
  transition: background 0.17s, box-shadow 0.17s, transform 0.18s;
}
.main-nav > a.cta.primary:hover,
.main-nav > a.cta.primary:focus {
  background: var(--color-fun1);
  color: var(--color-primary);
  box-shadow: 0 4px 18px rgba(63,197,240,0.10);
  transform: scale(1.07) rotate(-2.5deg);
}
.main-nav > a:hover:not(.cta), .main-nav > a:focus:not(.cta) {
  background: var(--color-fun2);
  color: var(--color-primary);
  transform: scale(1.06) skewY(2deg);
}
.main-nav > a img { height: 38px; width: 38px; margin-right: 6px; vertical-align: middle; }

/* --------------
   TYPOGRAPHY
--------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .5px;
  color: var(--color-primary);
  line-height: 1.14;
}
h1 { font-size: 2.4rem; margin-bottom: 14px; }
h2 { font-size: 2rem; margin-bottom: 10px; }
h3 { font-size: 1.38rem; margin-bottom: 6px; }
h4, h5 { font-size: 1.11rem; }
p, li, blockquote, ul {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #253046;
}
li {
  margin-left: 20px;
  margin-bottom: 4px;
  position: relative;
}
li:before {
  content: "☀";
  color: var(--color-secondary);
  font-weight: bold;
  margin-right: 8px;
  font-size: 0.95em;
}

blockquote {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-primary);
  background: transparent;
  margin-bottom: 8px;
  border-left: 3px solid var(--color-playful);
  padding-left: 12px;
}

strong {
  color: var(--color-primary);
  font-weight: 700;
}
a {
  color: var(--color-playful);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: var(--color-fun1);
}

/* HEADINGS playful outline effect */
h1, h2 {
  position: relative;
}
h1:after, h2:after {
  content: '';
  display: block;
  width: 58px;
  height: 5px;
  background: var(--color-fun2);
  border-radius: 2.5px;
  margin-top: 7px;
  opacity: 0.65;
  animation: playful-outline 1.2s 1 cubic-bezier(0.13,1.42,0.8,1.06) both;
}
@keyframes playful-outline {
  0% { width: 0; opacity: 0; }
  70% { width: 70px; opacity: .35; }
  100% { width: 58px; opacity: 0.65; }
}

/* ------------------------
   BUTTONS / CTAs
------------------------ */
.cta {
  display: inline-flex;
  align-items: center;
  background: var(--color-secondary);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 14px 34px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.2px;
  box-shadow: 0 2px 16px rgba(39,48,70,0.10),0 1px 6px rgba(252,220,81,0.07);
  cursor: pointer;
  transition: background 0.16s, color 0.13s, box-shadow .19s, transform 0.21s;
  margin-top: 10px;
  margin-bottom: 12px;
  gap: 8px;
}
.cta.primary {
  background: var(--color-fun1);
  color: var(--color-primary);
}
.cta:hover, .cta:focus {
  background: var(--color-fun2);
  color: #253046;
  transform: scale(1.045) rotate(-2deg) skewY(1deg);
  box-shadow: 0 8px 26px rgba(252,220,81,0.12),0 2px 16px rgba(63,197,240,0.12);
}

/* --------------------
   TABLE STYLES
--------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0 30px 0;
  background: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
}
th, td {
  padding: 10px 16px;
  border-bottom: 2px solid #F3F4F9;
  text-align: left;
}
th {
  color: #fff;
  background: var(--color-secondary);
  font-family: var(--font-display);
  font-weight: 700;
}
td {
  color: var(--color-primary);
  background: #FFF;
}
tbody tr:nth-child(even) td { background: #F5F7FB; }

/* --------------
   CONTACT BLOCK
--------------- */
.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 12px 0 24px 0;
  padding: 20px 0;
}
.contact-details, .location-details, .operating-hours {
  min-width: 170px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-primary);
}
.location-map {
  margin: 12px 0 0 0;
  color: var(--color-fun1);
  font-size: 1rem;
}
/* Utility */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-20 { margin-top: 20px; }

/* ----------------------
   FOOTER STYLES
----------------------- */
footer {
  background: var(--color-accent);
  color: var(--color-primary);
  margin-top: 50px;
  font-size: 1rem;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -6px 16px rgba(39,48,70,0.085);
}
footer section {
  padding: 44px 0 18px 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 24px;
  flex-direction: row;
  align-items: flex-start;
}
.brand-info {
  flex: 1 1 186px;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.brand-info img {
  height: 40px;
  margin-bottom: 7px;
}
.footer-links {
  flex: 2 1 330px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-links a {
  color: var(--color-playful);
  font-family: var(--font-display);
  background: none;
  border-radius: 8px;
  font-size: 15px;
  padding: 3px 13px;
  transition: background 0.16s, color 0.15s;
}
.footer-links a:hover, .footer-links a:focus {
  background: var(--color-fun1);
  color: var(--color-primary);
  text-decoration: underline;
}
.legal-links {
  margin-top: 18px;
  font-size: 13px;
  color: var(--color-secondary);
}
.legal-links a {
  color: var(--color-playful);
  margin: 0 4px;
  font-size: 13px;
}
.legal-links a:hover { color: var(--color-danger); }

.contact-details {
  flex: 1 1 186px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14.5px;
  color: var(--color-primary);
}
.social-links {
  display: flex;
  gap: 13px;
  align-items: center;
  min-width: 80px;
}
.social-links a img {
  width: 30px; height: 30px; filter: none; transition: filter .15s,transform .19s;
}
.social-links a:hover img {
  filter: brightness(1.25) drop-shadow(0px 2px 2px var(--color-fun1));
  transform: scale(1.15) rotate(-5deg);
}

/* -----------------------
   MOBILE MENU STYLES
------------------------ */
.mobile-menu-toggle {
  display: none;
  background: var(--color-fun1);
  color: var(--color-primary);
  font-size: 36px;
  border: none;
  border-radius: 50%;
  width: 50px; height: 50px;
  margin-right: 16px;
  position: absolute;
  top: 14px; right: 18px;
  z-index: 70;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(196,165,114,0.17);
  transition: background 0.15s, box-shadow 0.14s, transform 0.16s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--color-fun2);
  color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(63,197,240,0.13);
  transform: scale(1.06) rotate(-3deg);
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 100vw;
  max-width: 370px;
  height: 100vh;
  background: #fff;
  color: var(--color-primary);
  box-shadow: -7px 0 32px rgba(39,48,70,0.13), 0 4px 22px rgba(196,165,114,0.12);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.44,1.37,.47,1.02);
  z-index: 101;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 0 0 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  box-shadow: -12px 0 38px rgba(63,197,240,0.13),0 4px 42px rgba(252,220,81,0.11);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 23px 0 0;
  font-size: 36px;
  background: none;
  border: none;
  color: var(--color-fun1);
  cursor: pointer;
  transition: color 0.15s, transform 0.13s;
  z-index: 110;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-danger);
  transform: scale(1.17);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 22px;
  padding-left: 30px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: bold;
  margin: 2px 0;
  color: var(--color-primary);
  padding: 7px 0 7px 6px;
  border-radius: 9px;
  transition: background 0.13s, color 0.15s, transform 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-fun2);
  color: var(--color-fun1);
  transform: scale(1.055) skewY(2.5deg);
}

/* Overlay when menu open */
.mobile-menu.open::after {
  content: '';
  position: fixed;
  left: 0; top: 0; height: 100vh; width: 100vw;
  background: rgba(39,48,70,0.31);
  z-index: 100;
  pointer-events: none;
  animation: fadein-overlay .2s both;
}
@keyframes fadein-overlay { from{ opacity:0;} to{opacity:1;}}

/* Hide desktop nav on mobile, show burger */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header {
    position: sticky;
    top: 0;
    z-index: 40;
  }
}

/* -------------------------------------
   RESPONSIVE: FLEX LAYOUT ADJUSTMENTS
-------------------------------------- */
@media (max-width: 1060px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .footer .container, .container, .content-wrapper {
    max-width: 98vw;
    padding-left: 1vw; padding-right: 1vw;
  }
}
@media (max-width: 670px) {
  .testimonial-list, .service-list, .feature-grid, .content-grid, .footer-links, .featured-vehicles-list {
    flex-direction: column;
    gap: 18px;
  }
  .footer .content-wrapper { flex-direction: column; gap: 18px; }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .testimonial-list, .feature-grid, .service-list, .footer-links, .featured-vehicles-list {
    flex-direction: column;
    gap: 16px;
  }
  .section { padding: 28px 6px; }
  footer section { padding: 24px 0 12px 0; }
}

@media (max-width: 520px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.12rem; }
  h3 { font-size: 1.01rem; }
  .cta { font-size: 14.5px; padding: 10px 18px; }
  .section { padding: 18px 3vw; }
  .brand-info img, .footer .brand-info img { height: 28px; }
}

/* -------------------------------------
   COOKIE CONSENT BANNER & MODAL
-------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 130;
  background: #fffbe2;
  color: #253046;
  border-top: 3px solid var(--color-secondary);
  box-shadow: 0 0 28px rgba(196,165,114,0.14), 0 0.5px 4px rgba(39,48,70,0.16);
  padding: 18px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  font-family: var(--font-body);
  font-size: 17px;
  transition: transform 0.44s cubic-bezier(.45,1.43,.47,1.05), opacity 0.29s;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-left: auto;
}
.cookie-btn {
  background: var(--color-secondary);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 9px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  margin-right: 2px;
  transition: background 0.15s, color 0.12s, box-shadow .17s, transform 0.16s;
}
.cookie-btn.settings {
  background: var(--color-fun1);
  color: var(--color-primary);
  margin-left: 5px;
}
.cookie-btn.reject {
  background: var(--color-danger);
  color: #fff;
  margin-left: 5px;
}
.cookie-btn:hover, .cookie-btn:focus {
  filter: brightness(1.11);
  transform: scale(1.06) rotate(-4deg);
  box-shadow: 0 6px 18px rgba(63,197,240,0.07);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; right:0;
  top: 0; bottom: 0;
  z-index: 200;
  background: rgba(39,48,70,0.24);
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.22s;
}
.cookie-modal.open {
  display: flex;
  animation: cookieModalFadeIn .22s both;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(196,165,114,0.22);
  max-width: 90vw; width: 350px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 19px;
}
.cookie-modal-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.cookie-cookie-categories  {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #f9f6f2;
  border-radius: 9px;
  padding: 9px 12px;
  width: 100%;
  font-size: 1rem;
  font-family: var(--font-body);
}
.cookie-category input[type=checkbox] {
  appearance: none; width: 22px; height: 22px;
  background: #fff;
  border: 2px solid var(--color-secondary);
  border-radius: 7px;
  margin-right: 7px;
  position: relative;
  cursor: pointer;
}
.cookie-category input[type=checkbox]:checked  {
  background: var(--color-fun2);
  border-color: var(--color-primary);
}
.cookie-category input[type=checkbox]:checked:after {
  content: '✔';
  color: var(--color-primary);
  font-weight: bold;
  position: absolute;
  left: 4px; top: 0px; font-size: 1.2em;
}
.cookie-modal-content .cookie-modal-close {
  align-self: flex-end;
  font-size: 24px;
  background: none;
  color: var(--color-fun1);
  border: none;
  margin-top: -12px;
  cursor: pointer;
  transition: color 0.13s, transform 0.14s;
}
.cookie-modal-content .cookie-modal-close:hover, .cookie-modal-content .cookie-modal-close:focus {
  color: var(--color-danger);
  transform: scale(1.15);
}

/* Media query for cookie banner */
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 12px 7px;
    font-size: 15px;
  }
  .cookie-actions { margin-left: 0; }
}

/* -------------------------------------
   MICRO-ANIMATIONS for Playful Style
-------------------------------------- */
.cta, .service-item, .feature-item, .testimonial-card, .card, .footer-links a, .main-nav > a, .mobile-nav a, .cookie-btn, .social-links a img, .vehicle-item {
  transition: box-shadow 0.17s, background 0.15s, color 0.13s, transform 0.18s;
}
.cta:active, .cta.primary:active { transform: scale(0.96) rotate(1.2deg); }

/* star micro-interactions in testimonial */
.testimonial-meta span:last-child {
  display: inline-block;
  font-size: 18px;
  color: #FFD23C;
  transition: transform 0.14s;
}
.testimonial-card:hover .testimonial-meta span:last-child {
  transform: scale(1.2) rotate(-6deg);
  color: var(--color-danger);
}

/* playful-dynamic hover: subtle bounce for links/cards */
.footer-links a:active,
.main-nav > a:active,
.mobile-nav a:active,
.service-item:active, .feature-item:active, .testimonial-card:active {
  transform: scale(0.986) rotate(0.8deg);
}

/* -------------------------------------------------
   FORMS, MODALS, MISCELLANEOUS (if used in future)
---------------------------------------------------- */
input, textarea, select {
  font-family: var(--font-body);
  background: #fff;
  border: 2px solid var(--color-fun2);
  border-radius: 8px;
  font-size: 1rem;
  padding: 10px 14px;
  margin-bottom: 14px;
  width: 100%;
  transition: border-color 0.13s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-secondary);
  outline: none;
}
label { font-family: var(--font-body); font-weight: 600; }

/* ---------------------------------
   MISC SPACING / GAP UTILITIES
----------------------------------- */
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.gap-12 { gap: 12px !important; }
.gap-24 { gap: 24px !important; }

/* ----------------------------------
   PRINTING FIXES (in case needed)
------------------------------------- */
@media print {
  .main-nav, .mobile-menu-toggle, .cookie-banner, .cookie-modal, footer, .cta { display: none !important; }
  .section, .container { box-shadow: none !important; background: none !important; }
}
