:root {
  --primary-color: #f97316;
  --secondary-color: #1e293b;
  --bg-light: #f8fafc;
  --text-main: #0f172a;
  --text-muted: #64748b;
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.car-listing-page {
  font-family: system-ui, sans-serif;
  color: var(--text-main);
}

.lp-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.process-hero {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(rgba(30, 41, 59, 0.7), rgba(30, 41, 59, 0.7)), url('https://images.unsplash.com/photo-1550355291-bbee04a92027?auto=format&fit=crop&q=80&w=1600') center/cover no-repeat;
  color: white;
  margin-bottom: 0;
}

.timeline {
  padding: 80px 0;
  position: relative;
}

.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  flex-shrink: 0;
}

.timeline-content {
  flex: 1;
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .timeline {
    padding: 48px 0;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 32px;
  }

  .timeline-icon {
    width: 56px;
    height: 56px;
    font-size: 1.35rem;
  }

  .timeline-content {
    min-width: 0;
  }

  .timeline-content h3 {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 6px;
  }
}

@media (max-width: 380px) {
  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .timeline-content {
    width: 100%;
  }
}

/* Global Page Loader */ .page-loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid var(--bg-light);
  border-top: 5px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader-text {
  margin-top: 20px;
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 500;
}
