/* =========================================================
   エグゼクティブカー東京 - NATURE ORGANIC STYLE CSS
   Brand: 洗練・高級感・信頼性 × ナチュラル・オーガニック
   ========================================================= */

/* --------------------
   FONT & BASE SETTINGS
--------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

:root {
  /* Brand Colors */
  --color-primary: #23272F; /* 深いグレー */
  --color-secondary: #A2B5C5; /* 落ち着いたブルーグレー */
  --color-accent: #F2C94C; /* 明るいアクセントイエロー */
  /* Nature Organic Palette */
  --color-green: #4E8D5B;
  --color-earth: #A68B6B;
  --color-sand: #F5F3EA;
  --color-bark: #6B5C4A;
  --color-leaf: #B7C9A8;
  --color-cream: #F9F7F3;
  --color-error: #B94A48;
  /* Typography */
  --font-display: 'Noto Sans JP', Meiryo, sans-serif;
  --font-body: Meiryo, 'Noto Sans JP', sans-serif;
  /* Shadows & Radius */
  --shadow-card: 0 4px 16px 0 rgba(80, 90, 70, 0.10);
  --shadow-hover: 0 8px 24px 0 rgba(80, 90, 70, 0.14);
  --radius-card: 18px;
  --radius-btn: 24px;
  --radius-section: 36px 36px 0 0;
  /* Spacing */
  --gap-section: 60px;
  --gap-card: 24px;
  --gap-content: 20px;
  --gap-feature: 15px;
  --gap-testimonial: 20px;
  --gap-text-image: 30px;
  --container-max: 1100px;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: var(--font-body);
  color: var(--color-primary);
  background: var(--color-cream);
  margin: 0;
  padding: 0;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
  background-image: linear-gradient(120deg, #F5F3EA 0%, #E9E5D6 100%);
}

/* --------------------
   CONTAINER & LAYOUT
--------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: var(--gap-content);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--gap-content);
}

.section {
  margin-bottom: var(--gap-section);
  padding: 40px 20px;
  background: var(--color-cream);
  border-radius: var(--radius-section);
  box-shadow: 0 2px 8px 0 rgba(80, 90, 70, 0.05);
}

/* --------------------
   TYPOGRAPHY
--------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: 0.5em;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.2rem;
  line-height: 1.2;
}
h2 {
  font-size: 1.5rem;
  color: var(--color-green);
  margin-bottom: 0.7em;
}
h3 {
  font-size: 1.15rem;
  color: var(--color-bark);
}
p, ul, ol, li, blockquote {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 0.7em;
}
blockquote {
  font-style: italic;
  color: var(--color-bark);
  background: var(--color-leaf);
  border-left: 4px solid var(--color-green);
  padding: 12px 20px;
  border-radius: 0 12px 12px 0;
  margin: 0 0 0.5em 0;
}

ul, ol {
  padding-left: 1.3em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.4em;
}
a {
  color: var(--color-green);
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--color-accent);
}

/* --------------------
   HEADER & NAVIGATION
--------------------- */
header {
  background: linear-gradient(90deg, #F5F3EA 60%, #E9E5D6 100%);
  box-shadow: 0 2px 8px 0 rgba(80, 90, 70, 0.06);
  position: relative;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 18px 20px;
}
header img {
  height: 48px;
  width: auto;
  border-radius: 12px;
  background: var(--color-leaf);
  padding: 4px 8px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-bark);
  text-decoration: none;
  font-size: 1rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-green);
  border-bottom: 2px solid var(--color-green);
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--color-green) 60%, var(--color-earth) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 12px 32px;
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-card);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  margin-left: 20px;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, var(--color-earth) 30%, var(--color-green) 100%);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.03);
}

/* Hamburger menu button */
.mobile-menu-toggle {
  display: none;
  background: var(--color-green);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 16px;
  box-shadow: 0 2px 8px 0 rgba(80, 90, 70, 0.10);
  transition: background 0.2s, transform 0.1s;
  z-index: 1002;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-earth);
  transform: scale(1.08);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36, 44, 38, 0.92);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  width: 100vw;
  height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  margin: 24px 24px 0 0;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-end;
  margin: 40px 36px 0 0;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}

/* Hide desktop nav on mobile, show burger */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* --------------------
   HERO SECTION
--------------------- */
.hero {
  background: linear-gradient(120deg, var(--color-leaf) 0%, var(--color-sand) 100%);
  border-radius: 0 0 48px 48px;
  box-shadow: 0 6px 24px 0 rgba(80, 90, 70, 0.08);
  margin-bottom: var(--gap-section);
  padding: 60px 0 40px 0;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 24px;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.5rem;
  margin-bottom: 0.5em;
}
.hero p {
  color: var(--color-bark);
  font-size: 1.15rem;
  margin-bottom: 1.2em;
}

/* --------------------
   FEATURE GRID
--------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-card);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap-feature);
  background: var(--color-leaf);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  min-width: 220px;
  flex: 1 1 220px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.feature-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px) scale(1.03);
}
.feature-item h3 {
  color: var(--color-green);
  margin-bottom: 0.3em;
}

/* --------------------
   CAR GALLERY & CARDS
--------------------- */
.car-gallery, .car-grid, .featured-car-slider {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-card);
  justify-content: flex-start;
  margin-bottom: 20px;
}
.captioned-image, .car-card, .featured-car {
  background: var(--color-sand);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 18px 14px 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  min-width: 210px;
  flex: 1 1 210px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.captioned-image img, .car-card img, .featured-car img {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(80, 90, 70, 0.08);
  margin-bottom: 8px;
}
.captioned-image p, .car-card p, .featured-car p {
  color: var(--color-bark);
  font-size: 0.98rem;
  text-align: center;
}
.car-card h3 {
  margin-bottom: 0.3em;
}
.car-card ul {
  margin: 0;
  padding-left: 1.1em;
  font-size: 0.98rem;
}
.car-card:hover, .captioned-image:hover, .featured-car:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px) scale(1.03);
}

/* Featured car slider (horizontal scroll on mobile) */
.featured-car-slider {
  overflow-x: auto;
  flex-wrap: nowrap;
  gap: 20px;
}
.featured-car {
  min-width: 220px;
  max-width: 260px;
}

/* --------------------
   TESTIMONIALS
--------------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: var(--gap-testimonial);
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.testimonial-card blockquote {
  color: var(--color-bark);
  background: var(--color-leaf);
  border-left: 4px solid var(--color-green);
  padding: 10px 18px;
  border-radius: 0 10px 10px 0;
  margin: 0;
  font-size: 1.05rem;
}
.testimonial-card p {
  color: var(--color-primary);
  font-size: 0.98rem;
  margin: 0 0 0 10px;
  font-weight: 500;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.02);
}

/* Ensure contrast for testimonials */
.testimonial-card, .testimonial-card blockquote {
  background: #fff;
  color: var(--color-primary);
}

/* --------------------
   CTA BANNER
--------------------- */
.cta-banner {
  background: linear-gradient(90deg, var(--color-green) 60%, var(--color-earth) 100%);
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -2px 12px 0 rgba(80, 90, 70, 0.08);
  padding: 48px 0 36px 0;
  margin-bottom: 0;
}
.cta-banner .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.cta-banner h2 {
  color: #fff;
  font-size: 1.5rem;
}
.cta-banner .cta-btn {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 2px 8px 0 rgba(80, 90, 70, 0.10);
}
.cta-banner .cta-btn:hover {
  background: var(--color-green);
  color: #fff;
}

/* --------------------
   TEAM SECTION
--------------------- */
.team-section {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-card);
  margin-bottom: 20px;
}
.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-sand);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 20px 16px;
  min-width: 180px;
  flex: 1 1 180px;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.team-member img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 rgba(80, 90, 70, 0.10);
  margin-bottom: 8px;
}
.team-member h3 {
  color: var(--color-green);
  margin-bottom: 0.2em;
}
.team-member p {
  color: var(--color-bark);
  font-size: 0.98rem;
  text-align: center;
}
.team-member:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px) scale(1.03);
}

/* --------------------
   FAQ ACCORDION
--------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--color-leaf);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 18px 16px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.faq-item h3 {
  color: var(--color-green);
  font-size: 1.05rem;
  margin-bottom: 0.4em;
}
.faq-item p {
  color: var(--color-bark);
  font-size: 0.98rem;
  margin-bottom: 0;
}
.faq-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.02);
}

/* --------------------
   MAP PLACEHOLDER
--------------------- */
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--color-sand);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 18px 14px;
  margin-bottom: 20px;
}
.map-placeholder img {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(80, 90, 70, 0.08);
}

/* --------------------
   TABLES
--------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-sand);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  overflow: hidden;
}
thead {
  background: var(--color-leaf);
}
th, td {
  padding: 12px 10px;
  text-align: left;
  font-size: 0.98rem;
  color: var(--color-primary);
}
th {
  color: var(--color-green);
  font-weight: 700;
}
tr {
  border-bottom: 1px solid #e0e0e0;
}
tr:last-child {
  border-bottom: none;
}

/* --------------------
   FOOTER
--------------------- */
footer {
  background: linear-gradient(90deg, #E9E5D6 60%, #F5F3EA 100%);
  border-top: 2px solid var(--color-leaf);
  padding: 36px 0 18px 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--color-bark);
  font-family: var(--font-display);
  font-size: 0.98rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-green);
}
.brand-contact {
  color: var(--color-primary);
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 8px;
}
footer small {
  color: var(--color-bark);
  font-size: 0.92rem;
}

/* --------------------
   COOKIE CONSENT BANNER
--------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--color-leaf);
  color: var(--color-primary);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  box-shadow: 0 -2px 12px 0 rgba(80, 90, 70, 0.10);
  z-index: 2000;
  animation: cookie-slide-in 0.6s cubic-bezier(.77,0,.18,1);
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--color-primary);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-btn);
  padding: 8px 22px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px 0 rgba(80, 90, 70, 0.08);
}
.cookie-btn.accept {
  background: var(--color-green);
  color: #fff;
}
.cookie-btn.accept:hover {
  background: var(--color-earth);
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: var(--color-error);
  border: 1.5px solid var(--color-error);
}
.cookie-btn.reject:hover {
  background: var(--color-error);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-btn.settings:hover {
  background: var(--color-green);
  color: #fff;
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(36, 44, 38, 0.70);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fade-in 0.3s;
}
@keyframes cookie-modal-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(80, 90, 70, 0.18);
  padding: 36px 28px 28px 28px;
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookie-modal-slide-in 0.4s cubic-bezier(.77,0,.18,1);
}
@keyframes cookie-modal-slide-in {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--color-green);
  font-size: 1.2rem;
  margin-bottom: 0.5em;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  color: var(--color-primary);
}
.cookie-modal .cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 12px;
  background: var(--color-leaf);
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
  margin-right: 8px;
}
.cookie-modal .cookie-toggle input {
  display: none;
}
.cookie-modal .cookie-toggle span {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.2s, background 0.2s;
  box-shadow: 0 1px 4px 0 rgba(80, 90, 70, 0.10);
}
.cookie-modal .cookie-toggle input:checked + span {
  left: 18px;
  background: var(--color-green);
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal .cookie-btn {
  min-width: 100px;
}
.cookie-modal .cookie-category.essential label {
  color: var(--color-bark);
  font-weight: 700;
}
.cookie-modal .cookie-category.essential .cookie-toggle {
  opacity: 0.5;
  pointer-events: none;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 18px; right: 24px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--color-bark);
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-modal .cookie-close:hover {
  color: var(--color-error);
}

/* --------------------
   RESPONSIVE DESIGN
--------------------- */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 10px;
  }
  .feature-grid, .car-gallery, .car-grid, .team-section {
    gap: 16px;
  }
  .footer-nav {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
    border-radius: 18px 18px 0 0;
  }
  .hero {
    padding: 36px 0 24px 0;
    border-radius: 0 0 24px 24px;
  }
  .feature-grid, .car-gallery, .car-grid, .team-section {
    flex-direction: column;
    gap: 16px;
  }
  .captioned-image, .car-card, .featured-car, .team-member {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
  }
  .cta-banner {
    padding: 28px 0 18px 0;
    border-radius: 18px 18px 0 0;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 10px;
  }
  .cookie-banner .cookie-actions {
    gap: 8px;
  }
  .cookie-modal {
    padding: 18px 8px 18px 8px;
    min-width: 0;
    max-width: 98vw;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  .hero h1 {
    font-size: 1.4rem;
  }
  .cta-btn {
    padding: 10px 18px;
    font-size: 0.98rem;
  }
}

/* --------------------
   FLEXBOX LAYOUTS (MANDATORY)
--------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --------------------
   MICRO-INTERACTIONS
--------------------- */
button, .cta-btn, .cookie-btn {
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
}
button:active, .cta-btn:active, .cookie-btn:active {
  transform: scale(0.97);
}

/* --------------------
   UTILITY CLASSES
--------------------- */
.hide {
  display: none !important;
}

/* --------------------
   PREVENT OVERLAPPING
--------------------- */
.card, .card-container > *, .feature-item, .testimonial-card, .team-member, .faq-item, .captioned-image, .car-card, .featured-car, .map-placeholder {
  margin-bottom: 20px;
}

/* --------------------
   END OF CSS
--------------------- */
