/* Modern Automotive Landing Page - Dark Theme */
:root {
  --primary-color: #0a0a0a;
  --secondary-color: #1a1a1a;
  --accent-color: #ff6b35;
  --text-light: #f0f0f0;
  --text-dark: #333;
  --border-color: #333;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--primary-color);
  color: var(--text-light);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styles */
.site-header {
  background-color: var(--secondary-color);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.top-bar {
  background-color: #ff6b35;
  padding: 8px 0;
}

.trust-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  gap: 20px;
  font-size: 14px;
  font-weight: 500;
}

.trust-list li::before {
  content: "✓";
  margin-right: 5px;
  color: white;
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo-img {
  height: 60px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 4px;
  border: 2px solid var(--accent-color);
  transition: all 0.3s ease;
}

/* hover = gevuld */
.nav-links a:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}


/* External link styling */
.extern a{
  color: #fff;
}

.extern:hover {
  background-color: #e55a2a;
  box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

/* Hero Section */
.hero {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  border-bottom: 1px solid var(--border-color);
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* License Plate Input */
.license-plate-input {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.eu-strip {
  background-color: #ff6b35;
  color: white;
  padding: 15px 20px;
  font-weight: bold;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#license_plate {
  flex: 1;
  padding: 15px 20px;
  border: none;
  background-color: var(--secondary-color);
  color: var(--text-light);
  font-size: 1.1rem;
  outline: none;
}

#license_plate::placeholder {
  color: #888;
}

.btn {
  padding: 15px 30px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background-color: var(--accent-color);
  color: white;
  border-radius: 50px;
}

.btn-primary:hover {
  background-color: #e55a2a;
  transform: translateY(-2px);
}

.trust-line {
  margin-top: 30px;
  font-size: 1rem;
  opacity: 0.8;
}

/* Benefits Section */
.benefits-section {
  padding: 60px 0;
  background-color: var(--secondary-color);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  margin: 15px auto;
  border-radius: 2px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-card {
  background-color: var(--primary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--border-color);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.benefit-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.benefit-card p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.benefit-card ul {
  list-style: none;
  text-align: left;
  margin-top: 20px;
}

.benefit-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
}

.benefit-card li::before {
  content: "✓";
  color: var(--accent-color);
  font-weight: bold;
  margin-right: 10px;
}

/* Vehicle Info */
.vehicle-info {
  padding: 40px 0;
  background-color: var(--primary-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.vehicle-details {
  width: 100%;
  margin: 20px 0;
  background-color: var(--secondary-color);
  border-radius: 8px;
  overflow: hidden;
}

.vehicle-details tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.05);
}

.vehicle-details th,
.vehicle-details td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.vehicle-details th {
  background-color: rgba(255, 107, 53, 0.1);
  color: var(--accent-color);
  font-weight: 600;
}

/* Lead Form */
.lead-form {
  padding: 60px 0;
  background-color: var(--secondary-color);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background-color: var(--primary-color);
  color: var(--text-light);
  font-size: 1rem;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-color);
}

.btn-success {
  background-color: #28a745;
  color: white;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 1.1rem;
}

.btn-success:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

/* Process Section */
.process-section {
  padding: 60px 0;
  background-color: var(--primary-color);
}

.process-steps {
  margin-top: 40px;
}

.process-step {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.process-step h3 {
  color: var(--accent-color);
  margin-bottom: 15px;
}

.process-step ul {
  list-style: none;
  padding-left: 20px;
}

.process-step li {
  margin-bottom: 10px;
  position: relative;
}

.process-step li::before {
  content: "•";
  color: var(--accent-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-right: 10px;
}

/* Footer */
.site-footer {
  background-color: #0a0a0a;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 2rem;
  }

  .trust-list {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .site-nav {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 1.8rem;
  }

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

  .license-plate-input {
    flex-direction: column;
    border-radius: 10px;
  }

  .eu-strip {
    padding: 12px;
    font-size: 1rem;
  }

  #license_plate {
    padding: 12px;
    font-size: 1rem;
  }

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

  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .nav-links {
    gap: 10px;
    font-size: 0.9rem;
  }

  .hero {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 1.5rem;
  }

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

  .process-step {
    padding: 20px 15px;
  }
}

