:root {
  --bg: #0d1f1a;
  --bg-card: #132b24;
  --bg-hover: #1a3d33;
  --text: #ffffff;
  --text-muted: #8fb3a6;
  --accent: #2ecc71;
  --accent-light: #4ade80;
  --accent-dark: #27ae60;
  --accent-warm: #a8e6cf;
  --primary: #2ecc71;
  --primary-light: #4ade80;
  --primary-dark: #27ae60;
  --border: rgba(46, 204, 113, 0.15);
  --radius: 12px;
  --glow: rgba(46, 204, 113, 0.15);
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* Loader */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  overflow: hidden;
}

.loader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__logo {
  width: 120px;
  height: 120px;
}

.loader__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Countdown Overlay */
.countdown-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0f 0%, #16161d 50%, #1a1a24 100%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease, visibility 1s ease;
  overflow: hidden;
}

body:has(.countdown-overlay:not(.countdown--hidden)) {
  overflow: hidden !important;
}

.countdown--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.countdown-content {
  text-align: center;
  z-index: 10;
  padding: 20px;
}

.countdown-logo {
  width: 180px;
  margin-bottom: 30px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

.countdown-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #fff;
  margin-bottom: 30px;
  font-weight: 400;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-value {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, #d4d4dc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
}

.countdown-separator {
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 300;
  color: var(--primary);
  margin-bottom: 25px;
}

.countdown-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Fireworks Animation */
.fireworks {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.firework {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
}

.firework::before,
.firework::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: inherit;
  animation: firework-particle 1.5s ease-out infinite;
}

.firework::before {
  box-shadow:
    0 -30px 0 #ff6b6b,
    21px -21px 0 #ff6b6b,
    30px 0 0 #ffd93d,
    21px 21px 0 #ffd93d,
    0 30px 0 #6bcb77,
    -21px 21px 0 #6bcb77,
    -30px 0 0 #4d96ff,
    -21px -21px 0 #4d96ff;
  animation: firework-explode 2s ease-out infinite;
}

.firework::after {
  box-shadow:
    0 -50px 0 #ff6b6b,
    35px -35px 0 #ffd93d,
    50px 0 0 #6bcb77,
    35px 35px 0 #4d96ff,
    0 50px 0 #ff6b6b,
    -35px 35px 0 #ffd93d,
    -50px 0 0 #6bcb77,
    -35px -35px 0 #4d96ff;
  animation: firework-explode 2s ease-out infinite;
  animation-delay: 0.1s;
}

.firework:nth-child(1) {
  left: 15%;
  top: 25%;
  animation: firework-rise 2s ease-out infinite;
}

.firework:nth-child(2) {
  left: 85%;
  top: 20%;
  animation: firework-rise 2s ease-out infinite;
  animation-delay: 0.4s;
}

.firework:nth-child(2)::before,
.firework:nth-child(2)::after {
  animation-delay: 0.4s;
}

.firework:nth-child(3) {
  left: 50%;
  top: 15%;
  animation: firework-rise 2s ease-out infinite;
  animation-delay: 0.8s;
}

.firework:nth-child(3)::before,
.firework:nth-child(3)::after {
  animation-delay: 0.8s;
}

.firework:nth-child(4) {
  left: 25%;
  top: 35%;
  animation: firework-rise 2s ease-out infinite;
  animation-delay: 1.2s;
}

.firework:nth-child(4)::before,
.firework:nth-child(4)::after {
  animation-delay: 1.2s;
}

.firework:nth-child(5) {
  left: 75%;
  top: 30%;
  animation: firework-rise 2s ease-out infinite;
  animation-delay: 1.6s;
}

.firework:nth-child(5)::before,
.firework:nth-child(5)::after {
  animation-delay: 1.6s;
}

@keyframes firework-rise {
  0% {
    opacity: 1;
    transform: translateY(100px) scale(0);
  }
  30% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  50%, 100% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
}

@keyframes firework-explode {
  0%, 30% {
    opacity: 0;
    transform: scale(0);
  }
  35% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  75% {
    opacity: 0.5;
    transform: scale(1.5);
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}

/* Sparkle particles */
.countdown-overlay::before,
.countdown-overlay::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.8) 50%, transparent 50%),
    radial-gradient(2px 2px at 40% 70%, rgba(255,255,255,0.6) 50%, transparent 50%),
    radial-gradient(2px 2px at 60% 20%, rgba(255,255,255,0.7) 50%, transparent 50%),
    radial-gradient(2px 2px at 80% 50%, rgba(255,255,255,0.5) 50%, transparent 50%),
    radial-gradient(2px 2px at 10% 80%, rgba(255,255,255,0.6) 50%, transparent 50%),
    radial-gradient(2px 2px at 90% 90%, rgba(255,255,255,0.7) 50%, transparent 50%);
  animation: sparkle 4s linear infinite;
}

.countdown-overlay::after {
  animation-delay: -2s;
  opacity: 0.5;
}

@keyframes sparkle {
  0% { transform: translateY(0); opacity: 1; }
  50% { opacity: 0.5; }
  100% { transform: translateY(-20px); opacity: 1; }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  background: rgba(9,9,11,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 32px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav > a,
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav > a:hover,
.nav__link:hover {
  color: var(--primary-light);
  background: var(--glow);
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: rgba(18, 18, 26, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  z-index: 200;
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(8px);
}

.nav__dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.15s;
}

.nav__dropdown-menu a:hover {
  color: var(--primary-light);
  background: var(--glow);
}

.header__cta {
  background: linear-gradient(135deg, var(--primary-light), var(--primary), var(--primary-dark));
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(46, 204, 113, 0.3);
}

.header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

/* Language Switcher */
.lang-switcher {
  position: relative;
  margin-left: 8px;
}

.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.lang-switcher__btn:hover {
  background: var(--glow);
  color: var(--primary-light);
}

.lang-switcher__menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  min-width: 80px;
  background: rgba(18, 18, 26, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s;
  z-index: 200;
}

.lang-switcher:hover .lang-switcher__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switcher__menu a {
  display: block;
  padding: 8px 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.15s;
}

.lang-switcher__menu a:hover {
  color: var(--primary-light);
  background: var(--glow);
}

.lang-switcher__menu a.active {
  color: var(--primary-light);
}

/* Mobile Lang */
.mobile-menu__lang {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.mobile-menu__lang-options {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.mobile-menu__lang-options a {
  padding: 10px 20px;
  background: var(--bg-hover);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
}

.mobile-menu__lang-options a:hover,
.mobile-menu__lang-options a.active {
  background: var(--primary);
  color: #fff;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(9,9,11,0.25);
}

.hero__content {
  max-width: 600px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 0 40px rgba(46, 204, 113, 0.3);
  text-align: center;
  white-space: nowrap;
}

.hero h1 span {
  color: #fff;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  max-width: 500px;
  line-height: 1.6;
  font-weight: 400;
  text-align: center;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary-light), var(--primary), var(--primary-dark));
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(46, 204, 113, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(46, 204, 113, 0.4);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn--outline:hover {
  background: var(--bg-hover);
  border-color: rgba(255,255,255,0.2);
}

/* Section */
.section {
  padding: 100px 0;
}

.section__header {
  margin-bottom: 60px;
}

.section__header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section__header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Cars Grid */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .cars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cars-grid {
    grid-template-columns: 1fr;
  }
}

.car-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.car-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.car-card__image {
  height: 220px;
  overflow: hidden;
}

.car-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transition: transform 0.5s;
}

.car-card:hover .car-card__image img {
  transform: scale(1.05);
}

.car-card__body {
  padding: 24px;
}

.car-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.car-card__specs {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.car-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(46, 204, 113, 0.5), 0 0 40px rgba(46, 204, 113, 0.3);
}

.car-card__price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  text-shadow: none;
}

.car-card__btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s;
}

.car-card__btn:hover {
  background: var(--primary-light);
  color: #fff;
}

.car-card__btn--whatsapp {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  margin-top: 8px;
}

.car-card__btn--whatsapp:hover {
  background: var(--primary);
  color: #fff;
}

/* Steps */
.section--light {
  background: linear-gradient(180deg, #14141c, #12121a);
  border-radius: 24px;
  margin: 0 24px;
  border: 1px solid var(--border);
}

.section__header--center {
  text-align: center;
}

.section__cta {
  text-align: center;
  margin-top: 48px;
}

/* Page Hero (met achtergrond foto) */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 60px;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.5);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero__content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 12px;
  color: #fff;
}

.page-hero__content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
}

/* Tablet */
@media (max-width: 1024px) {
  .page-hero {
    min-height: 40vh;
    padding: 100px 0 50px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .page-hero {
    min-height: 35vh;
    padding: 90px 0 40px;
  }
  
  .page-hero__bg img {
    object-position: center center;
  }
  
  .page-hero__content h1 {
    font-size: 1.8rem;
  }
  
  .page-hero__content p {
    font-size: 1rem;
    padding: 0 20px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .page-hero {
    min-height: 30vh;
    padding: 80px 0 30px;
  }
  
  .page-hero__content h1 {
    font-size: 1.5rem;
  }
}

/* Page Header */
.page-header {
  padding: 160px 0 60px;
  text-align: center;
  background: var(--bg-card);
}

.page-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  margin-bottom: 12px;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.steps-wrapper {
  position: relative;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps__line {
  position: absolute;
  top: 72px;
  left: 12.5%;
  width: 75%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-light), var(--primary-dark));
  border-radius: 2px;
  z-index: 0;
}

.step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
  z-index: 1;
}

.step__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(145deg, var(--primary-light), var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(46, 204, 113, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}

.step__icon svg {
  width: 36px;
  height: 36px;
  color: #fff;
}

.step__number {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Reviews */
.section--dark {
  background: var(--bg-card);
}

.reviews__google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.google-icon {
  flex-shrink: 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  background: #4285F4;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
}

.review-card__avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  filter: blur(3px);
}

.review-card__name {
  font-weight: 600;
  font-size: 0.95rem;
}

.review-card__stars {
  color: var(--primary);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.review-card__translate {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0;
  margin-top: 10px;
  text-decoration: underline;
  transition: opacity 0.2s;
}

.review-card__translate:hover {
  opacity: 0.7;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.feature {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.feature__number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 16px;
}

.feature h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-section__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.cta-section .btn {
  font-size: 1.1rem;
  padding: 18px 40px;
}

/* Contact Form */
.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row .form-group {
  margin-bottom: 0;
  min-width: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-group input[type="date"] {
  width: 100%;
  min-width: 0;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239898a0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
}

.btn--whatsapp:hover {
  background: #1da851;
}

.form-buttons {
  display: flex;
  gap: 12px;
}

.form-buttons .btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 16px;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info__item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info__item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.contact-info__item a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.contact-info__item a:hover {
  color: var(--primary-light);
}

/* Contact Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.contact-card--highlight {
  background: linear-gradient(145deg, var(--primary-dark), var(--primary));
  border: none;
  text-align: center;
}

.contact-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-card__icon svg {
  color: #fff;
}

.contact-card--highlight h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #fff;
}

.contact-card--highlight p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.contact-card--highlight .btn {
  background: #fff;
  color: var(--primary);
  width: 100%;
  justify-content: center;
}

.contact-card--highlight .btn:hover {
  background: rgba(255,255,255,0.9);
}

.contact-card .contact-info__item {
  margin-bottom: 16px;
}

.contact-card .contact-info__item:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .contact-form-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    padding-top: 0;
  }
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
  font-family: inherit;
}

.faq__question:hover {
  color: var(--primary-light);
}

.faq__question svg {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--text-muted);
}

.faq__item.active .faq__question svg {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq__answer {
  display: none;
  padding: 0 24px 20px;
}

.faq__item.active .faq__answer {
  display: block;
}

.faq__answer p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Locations Grid */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.location-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.location-card__icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.location-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.location-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Chauffeur Grid */
.chauffeur-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.chauffeur-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}

.chauffeur-card__icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.chauffeur-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.chauffeur-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.chauffeur-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
}

.chauffeur-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.chauffeur-feature span {
  color: var(--primary);
  font-weight: 600;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* Page Header */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg) 100%);
  text-align: center;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 12px;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Filter Bar */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.filter-btn:hover {
  background: var(--bg-hover);
  color: var(--text);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Cars Grid Full */
.cars-grid--full {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

/* Car Card Badge */
.car-card__image {
  position: relative;
}

.car-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-light);
}

/* Steden Grid */
.steden-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.stad-link {
  display: block;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.stad-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .steden-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .steden-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .steden-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Blog Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-grid--small {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin: 0 auto;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.blog-card a {
  text-decoration: none;
  color: inherit;
}

.blog-card__image {
  height: 200px;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__content {
  padding: 20px;
}

.blog-card__category {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.blog-card__content h2,
.blog-card__content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text);
}

.blog-card__content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.blog-card__date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Blog Article */
.blog-article {
  padding: 120px 0 60px;
}

.blog-article__header {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.blog-article__back {
  display: inline-block;
  color: var(--primary);
  margin-bottom: 20px;
  text-decoration: none;
}

.blog-article__back:hover {
  text-decoration: underline;
}

.blog-article__category {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.8rem;
  padding: 5px 15px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.blog-article__header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 15px;
}

.blog-article__meta {
  color: var(--text-muted);
}

.blog-article__image {
  max-width: 900px;
  margin: 0 auto 40px;
  border-radius: 12px;
  overflow: hidden;
}

.blog-article__image img {
  width: 100%;
  height: auto;
}

.blog-article__content {
  max-width: 700px;
  margin: 0 auto;
}

.blog-article__intro {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 30px;
  line-height: 1.7;
}

.blog-article__content h2 {
  font-size: 1.5rem;
  margin: 40px 0 15px;
  color: var(--text);
}

.blog-article__content h3 {
  font-size: 1.2rem;
  margin: 30px 0 10px;
  color: var(--text);
}

.blog-article__content p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.blog-article__content ul,
.blog-article__content ol {
  margin: 15px 0 25px 20px;
  color: var(--text-muted);
}

.blog-article__content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.blog-article__cta {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  margin-top: 40px;
  text-align: center;
}

.blog-article__cta h3 {
  margin: 0 0 10px !important;
}

.blog-article__cta p {
  margin-bottom: 20px;
}

.blog-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 30px;
}

.blog-table th,
.blog-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.blog-table th {
  background: var(--bg-card);
  color: var(--text);
}

.blog-table td {
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid--small {
    grid-template-columns: 1fr;
  }
  
  .blog-article {
    padding: 100px 0 40px;
  }
}

/* City Landing Pages */
.city-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-card) 100%);
  text-align: center;
}

.city-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  color: var(--text);
}

.city-hero h1 span {
  color: var(--primary);
}

.city-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 30px;
}

.city-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.city-service {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
}

.city-service h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text);
}

.city-service p {
  color: var(--text-muted);
  line-height: 1.6;
}

.city-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.city-feature {
  text-align: center;
  padding: 20px;
}

.city-feature__icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.city-feature h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text);
}

.city-feature p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.city-cars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.city-car {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-car:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.city-car__img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.city-car h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text);
}

.city-car p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.city-car__price {
  color: var(--primary);
  font-weight: 600;
}

.city-cta {
  text-align: center;
  margin-top: 40px;
}

.city-cta-block {
  text-align: center;
  padding: 20px 0;
}

.city-cta-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 15px;
  color: #fff;
}

.city-cta-block p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 25px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.section--primary {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.city-cta-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--text);
}

.city-cta-block p {
  color: var(--text-muted);
  margin-bottom: 25px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn--white {
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn--white:hover {
  background: var(--primary-dark);
}

.btn--outline-white {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn--outline-white:hover {
  background: var(--primary);
  color: #fff;
}

@media (max-width: 768px) {
  .city-services {
    grid-template-columns: 1fr;
  }
  
  .city-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .city-cars {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  margin-bottom: 12px;
}

.footer__logo img {
  height: 24px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer__links h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer__links a {
  display: block;
  color: var(--text);
  margin-bottom: 10px;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__more {
  color: var(--primary-light) !important;
  font-weight: 500;
  margin-top: 4px;
}

.footer__more:hover {
  color: var(--primary) !important;
}

.footer__contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer__contact a:hover {
  color: var(--text);
}

.footer__bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer__socials {
  display: flex;
  gap: 16px;
}

.footer__socials a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer__socials a:hover {
  color: var(--text);
}

/* Sticky WhatsApp Button */
.whatsapp-sticky {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-sticky:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-sticky svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 300;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.menu-open .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-open .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 9, 11, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu > a {
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.mobile-menu__group {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu__label {
  display: block;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.mobile-menu__group a {
  display: block;
  padding: 12px 16px 12px 32px;
  font-size: 1rem;
  color: var(--text-muted);
}

.mobile-menu__group a:hover {
  color: var(--text);
}

.mobile-menu__cta {
  display: block;
  margin: 16px;
  padding: 16px;
  background: var(--primary);
  color: #fff !important;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
}

.mobile-menu__cta:hover {
  background: var(--primary-light);
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .header__cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 100vh;
  }

  .hero__bg img {
    object-fit: cover;
    object-position: center 70%;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero__buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 1rem;
  }

  .section {
    padding: 50px 0;
  }

  .section--light {
    margin: 0 12px;
    border-radius: 16px;
    padding: 40px 20px;
  }

  .section__header h2 {
    font-size: 1.6rem;
  }

  .section__header p {
    font-size: 0.95rem;
  }

  .cars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .car-card__body {
    padding: 20px;
  }

  .car-card__title {
    font-size: 1.1rem;
  }

  .car-card__btn {
    padding: 14px;
    font-size: 0.95rem;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .steps__line {
    display: none;
  }

  .step {
    padding: 20px;
  }

  .step h3 {
    font-size: 1rem;
  }

  .step p {
    font-size: 0.85rem;
  }

  .reviews-grid {
    gap: 16px;
  }

  .review-card {
    padding: 20px;
  }

  .review-card p {
    font-size: 0.9rem;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature {
    padding: 24px;
  }

  .feature__number {
    font-size: 2.5rem;
  }

  .contact-form-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-form {
    padding: 16px;
    overflow: hidden;
    width: 100%;
  }

  .form-row {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .form-row .form-group {
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .form-group {
    width: 100%;
    max-width: 100%;
  }

  .form-buttons {
    flex-direction: column;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: calc(100%) !important;
    max-width: calc(100%) !important;
    min-width: 0 !important;
    display: block;
    box-sizing: border-box !important;
  }

  .form-group input[type="date"] {
    width: calc(100%) !important;
    max-width: calc(100%) !important;
    min-width: 0 !important;
    -webkit-min-logical-width: 0 !important;
  }

  .contact-sidebar {
    order: -1;
  }

  .contact-card--highlight {
    padding: 24px;
  }

  .contact-card--highlight h3 {
    font-size: 1.1rem;
  }

  .faq__question {
    padding: 18px 16px;
    font-size: 0.95rem;
  }

  .faq__answer {
    padding: 0 16px 18px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
    align-items: center;
  }

  .footer__brand {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__logo {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 12px;
  }

  .footer__logo img {
    margin: 0 auto;
    max-width: 100px;
    height: auto;
    object-fit: contain;
  }

  .footer__brand p {
    text-align: center;
    max-width: 280px;
    margin: 0 auto;
  }

  .footer__links {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__links h4 {
    text-align: center;
  }

  .footer__links a {
    text-align: center;
    justify-content: center;
  }

  .footer__contact {
    align-items: center;
  }

  .footer__contact a {
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    align-items: center;
  }

  .whatsapp-sticky {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-sticky svg {
    width: 28px;
    height: 28px;
  }

  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .location-card {
    padding: 24px;
  }

  .location-card__icon {
    font-size: 2.5rem;
  }

  .chauffeur-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .chauffeur-card {
    padding: 24px;
  }

  .chauffeur-features {
    gap: 12px 24px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    min-height: 100vh;
  }

  .hero__bg img {
    object-position: center 75%;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step__icon {
    width: 48px;
    height: 48px;
  }

  .section__header h2 {
    font-size: 1.4rem;
  }

  .car-card__image {
    height: 200px;
  }

  .review-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .cta-section__inner h2 {
    font-size: 1.3rem;
  }

  .btn {
    padding: 14px 20px;
    font-size: 0.9rem;
  }

  .page-header {
    padding: 100px 0 40px;
  }

  .page-header h1 {
    font-size: 1.6rem;
  }

  .filter-bar {
    gap: 8px;
    margin-bottom: 24px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .cars-grid--full {
    grid-template-columns: 1fr;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .location-card__icon {
    font-size: 2rem;
  }

  .chauffeur-card__icon {
    font-size: 2rem;
  }
}

/* Extra fix for all mobile devices */
@media (max-width: 932px) {
  .form-row {
    display: flex !important;
    flex-direction: column !important;
  }
  
  .form-group input[type="date"] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
}


/* ===========================================
   LANDINGSPAGINA'S - VERBETERDE LAYOUT
   =========================================== */

/* Container consistency */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section spacing */
.section {
  padding: 80px 0;
}

.section--dark {
  background: var(--bg-card);
}

.section--primary {
  background: var(--primary);
}

.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 50px;
  color: var(--text);
}

/* Extra ruimte voor FAQ titels */
.section__title + .faq {
  margin-top: 20px;
}

/* Content with Image - Twee kolommen layout */
.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.content-with-image--reverse {
  direction: rtl;
}

.content-with-image--reverse > * {
  direction: ltr;
}

.content-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 24px;
  color: var(--text);
}

.content-text p {
  margin-bottom: 18px;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
}

.content-text .btn {
  margin-top: 10px;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.feature-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: var(--text-muted);
  line-height: 1.6;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.1rem;
}

/* City Services Grid - 2x3 of 3x2 */
.city-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.city-service {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
}

.section--dark .city-service {
  background: var(--bg);
}

.city-service h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: var(--text);
}

.city-service p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* City Cars Grid */
.city-cars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.city-car {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section--dark .city-car {
  background: var(--bg);
}

.city-car:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.city-car__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.city-car h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text);
}

.city-car p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.city-car__price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px !important;
}

.city-car .btn {
  width: 100%;
}

/* Price Table */
.price-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.price-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
}

.section--dark .price-item {
  background: var(--bg);
}

.price-item h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--text);
}

.price-item p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.price-item .price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

/* CTA Block */
.city-cta-block {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.city-cta-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 16px;
  color: #fff;
}

.city-cta-block p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.btn--white {
  background: #fff;
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* FAQ Styling - Matching Homepage */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
}

.section--dark .faq__item {
  background: var(--bg);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  font-family: inherit;
}

.faq__question span {
  flex: 1;
  padding-right: 16px;
}

.faq__question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--primary);
}

.faq__item.active .faq__question svg {
  transform: rotate(180deg);
}

  color: var(--text-muted);
  line-height: 1.7;
}

.faq__answer a {
  color: var(--primary);
}

/* Related Links */
.related-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.related-link {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.related-link:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.related-link h3 {
  color: var(--text);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.related-link p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Collab/Social Proof Section */
.collab-names {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.collab-category h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 1.1rem;
  font-weight: 600;
}

.collab-category p {
  color: var(--text);
  font-size: 1.1rem;
  line-height: 2;
}

/* Tips Grid */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.tip-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.tip-card h3 {
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: var(--text);
}

.tip-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===========================================
   RESPONSIVE - TABLET (max 1024px)
   =========================================== */
@media (max-width: 1024px) {
  .city-services {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .city-cars {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .price-table {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .content-with-image {
    gap: 40px;
  }
}

/* ===========================================
   RESPONSIVE - MOBILE (max 768px)
   =========================================== */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .section__title {
    margin-bottom: 40px;
  }
  
  .content-with-image {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .content-with-image--reverse {
    direction: ltr;
  }
  
  .content-text h2 {
    text-align: center;
  }
  
  .content-text p {
    text-align: center;
  }
  
  .content-text .btn {
    display: block;
    text-align: center;
  }
  
  .content-text .feature-list {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .city-services {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .city-service {
    padding: 24px;
  }
  
  .city-cars {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .city-car {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
  
  .city-car__img {
    height: 200px;
  }
  
  .price-table {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .price-item {
    padding: 28px 20px;
  }
  
  .related-links {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .collab-names {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .tips-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .faq__question {
    padding: 18px 20px;
    font-size: 0.95rem;
  }
  
  .faq__item.active .faq__answer {
    padding: 0 20px 18px;
  }
  
  .city-cta-block {
    padding: 10px;
  }
  
  .city-cta-block h2 {
    font-size: 1.5rem;
  }
}

/* ===========================================
   RESPONSIVE - SMALL MOBILE (max 480px)
   =========================================== */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .section__title {
    font-size: 1.5rem;
    margin-bottom: 32px;
  }
  
  .content-text h2 {
    font-size: 1.4rem;
  }
  
  .city-service {
    padding: 20px;
  }
  
  .city-car {
    padding: 18px;
  }
  
  .city-car__img {
    height: 160px;
  }
  
  .city-car h3 {
    font-size: 1.1rem;
  }
  
  .btn--white {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

/* Car Cards met foto's - voor chauffeur pagina */
.cars-grid--chauffeur {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.car-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.car-card__content {
  padding: 24px;
}

.car-card__content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text);
}

.car-card__content p {
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .cars-grid--chauffeur {
    grid-template-columns: 1fr;
  }
  
  .car-card__img {
    height: 200px;
  }
}

/* ===========================================
   BLAUW THEMA GLOW EFFECTEN
   =========================================== */

/* Glow op section headers */
.section__header h2 {
  text-shadow: 0 0 30px rgba(46, 204, 113, 0.25);
}

/* Glow op feature numbers */
.feature__number {
  text-shadow: 0 0 20px rgba(46, 204, 113, 0.5);
}

/* Subtiele glow op hero subtitel */
.hero p,
.hero__content p {
  text-shadow: 0 2px 15px rgba(0,0,0,0.4);
}

/* Glow op location card prijzen */
.location-card__price {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(46, 204, 113, 0.5), 0 0 40px rgba(46, 204, 113, 0.3);
}

/* Glow op buttons */
.btn--primary {
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3), 0 0 25px rgba(46, 204, 113, 0.15);
}

.btn--primary:hover {
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4), 0 0 35px rgba(46, 204, 113, 0.25);
}

/* Glow op kaart hover */
.car-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(46, 204, 113, 0.1);
}

/* WhatsApp button glow */
.whatsapp-sticky {
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 20px rgba(46, 204, 113, 0.1);
}

/* Logo subtiele glow */
.logo img {
  filter: drop-shadow(0 0 10px rgba(46, 204, 113, 0.2));
}

/* ===========================================
   FAQ STYLING VOOR TROUWAUTO PAGINAS
   (faq-item, faq-question, faq-answer)
   =========================================== */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-hover);
}

.faq-question span {
  font-weight: 500;
  color: var(--text);
  font-size: 1rem;
}

.faq-question svg {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .faq-question {
    padding: 16px 20px;
  }
  
  .faq-question span {
    font-size: 0.95rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 16px;
  }
}

/* ============================================
   RAMADAN THEMA
   ============================================ */

/* Banner */
.ramadan-banner {
  background: linear-gradient(135deg, #1a3d33 0%, #0d1f1a 100%);
  padding: 10px 20px;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  box-shadow: 0 2px 20px rgba(46, 204, 113, 0.3);
  border-bottom: 1px solid rgba(46, 204, 113, 0.3);
}

.ramadan-banner p {
  margin: 0;
  color: #ffffff;
  font-size: 0.9rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 40px rgba(46, 204, 113, 0.3);
}

.ramadan-banner strong {
  color: #4ade80;
}

.ramadan-banner__moon {
  color: #4ade80;
  margin-right: 6px;
}

.ramadan-banner__sep {
  margin: 0 10px;
  opacity: 0.4;
}

#ramadan-dag {
  color: #ffffff;
}

#ramadan-maghreb {
  color: #4ade80;
  font-weight: 600;
}

.ramadan-banner__sep2 {
  margin: 0 8px;
  opacity: 0.4;
}

@media (max-width: 768px) {
  .ramadan-banner {
    padding: 10px 16px;
  }
  .ramadan-banner p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .ramadan-banner__sep {
    display: none;
  }
  .ramadan-banner__sep2 {
    margin: 0 5px;
  }
  #ramadan-dag {
    display: inline;
    font-size: 0.8rem;
  }
  #ramadan-maghreb {
    display: inline;
    font-size: 0.8rem;
  }
}

/* Header onder banner */
.header {
  top: 38px;
  background: rgba(13, 31, 26, 0.95) !important;
}

/* Hero aanpassen */
.hero {
  padding-top: 120px !important;
}

/* Page header aanpassen */
.page-header {
  padding-top: 140px !important;
}

.page-hero {
  padding-top: 160px !important;
}

/* Hamburger groen */
.hamburger span {
  background: #2ecc71 !important;
}

/* Mobile menu */
.mobile-menu {
  top: 110px !important;
  background: #0d1f1a !important;
}

/* Sterren effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-image: 
    radial-gradient(2px 2px at 100px 50px, rgba(46,204,113,0.3), transparent),
    radial-gradient(1px 1px at 200px 150px, rgba(255,255,255,0.2), transparent),
    radial-gradient(2px 2px at 300px 80px, rgba(46,204,113,0.2), transparent),
    radial-gradient(1px 1px at 400px 200px, rgba(255,255,255,0.3), transparent),
    radial-gradient(2px 2px at 500px 120px, rgba(46,204,113,0.25), transparent),
    radial-gradient(1px 1px at 600px 300px, rgba(255,255,255,0.2), transparent),
    radial-gradient(2px 2px at 700px 60px, rgba(46,204,113,0.3), transparent),
    radial-gradient(1px 1px at 150px 250px, rgba(255,255,255,0.25), transparent),
    radial-gradient(2px 2px at 350px 350px, rgba(46,204,113,0.2), transparent),
    radial-gradient(1px 1px at 550px 180px, rgba(255,255,255,0.3), transparent);
  background-size: 800px 400px;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
}
  opacity: 0.6;
  animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0% { opacity: 0.4; }
  100% { opacity: 0.7; }
}

/* Fix horizontal scroll */
html, body {
  overflow-x: hidden;
}

/* Mobile */
@media (max-width: 768px) {
  .ramadan-banner {
    padding: 8px 12px;
  }
  
  .header {
    top: 58px;
  }
  
  .hero {
    padding-top: 130px !important;
  }

  .page-header {
    padding-top: 150px !important;
  }
  
  .mobile-menu {
    top: 118px !important;
  }

  .car-showcase {
    padding-top: 130px !important;
  }

  .page-hero {
    padding-top: 140px !important;
  }
}

@media (max-width: 400px) {
  .ramadan-banner p {
    font-size: 0.8rem;
  }
  
  #ramadan-info {
    font-size: 0.75rem;
  }

  .header {
    top: 55px;
  }
  
  .mobile-menu {
    top: 115px !important;
  }
}

/* ============================================
   RAMADAN KORTINGEN STYLING
   ============================================ */

/* Oude prijs met streep */
.price-old {
  text-decoration: line-through;
  color: #ff6b6b;
  font-size: 0.85em;
  margin-right: 8px;
  opacity: 0.8;
}

/* Ramadan Deal badge */
.car-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(46, 204, 113, 0.3);
}

.car-card__image {
  position: relative;
}

/* Mobile responsive prijzen */
@media (max-width: 768px) {
  .car-card__price {
    font-size: 1.1rem;
  }
  
  .price-old {
    display: block;
    margin-bottom: 4px;
    margin-right: 0;
  }
  
  .car-card__badge {
    padding: 4px 8px;
    font-size: 0.7rem;
  }
}

@media (max-width: 400px) {
  .price-old {
    font-size: 0.8em;
  }
}

/* Tablet fix */
@media (min-width: 769px) and (max-width: 1024px) {
  .header {
    top: 38px;
  }
}

/* Telefoon: 1 kolom */
@media (max-width: 600px) {
  .cars-grid,
  .cars-grid--full {
    grid-template-columns: 1fr !important;
  }
}
