.test-drive-hero {
  background: none;
  background-color: #fff;
  min-height: unset;
  margin-bottom: 0;
  padding-top: 150px;
  padding-bottom: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  color: #111;
}

.hero-content h1 {
  font-size: 64px;
  margin-bottom: 18px;
  font-weight: 300;
  letter-spacing: 2px;
}

.hero-content p {
  font-size: 1.2em;
  opacity: 0.9;
}

.test-drive-container {
  margin-top: 0;
  padding-top: 0;
}

.test-drive-form {
  background: #fff;
  padding: 0 40px 40px 40px;
}

.section-description {
  color: #666;
  font-size: 1.1em;
  margin-bottom: 18px;
  text-align: center;
}

.model-selection {
  margin-top: 0;
  margin-bottom: 40px;
}

.model-selection h2,
.personal-details h2 {
  font-size: 2em;
  margin-bottom: 15px;
  color: #333;
  text-align: center;
  font-weight: 300;
}

.model-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.model-card {
  background: #f8f8f8;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.model-card:hover {
  transform: translateY(-5px);
}

.model-card.selected {
  border-color: #007bff;
  background: #f0f7ff;
}

.model-image {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
}

.model-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: #007bff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.model-card.selected .model-image::after {
  opacity: 1;
}

.model-card img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.model-card:hover img {
  transform: scale(1.05);
}

.model-info h3 {
  font-size: 1.6em;
  color: #333;
  margin: 0 0 10px;
  font-weight: 500;
}

.model-info p {
  color: #666;
  font-size: 1em;
  margin: 0;
}

.model-select-indicator {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  border: 2px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.model-card.selected .model-select-indicator {
  background: #007bff;
  border-color: #007bff;
}

.check-icon {
  color: white;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.model-card.selected .check-icon {
  opacity: 1;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-size: 0.9em;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  font-size: 1em;
  transition: all 0.3s ease;
  background: #f8f8f8;
  font-family: inherit;
}

.form-group.focused input,
.form-group.focused select,
.form-group.focused textarea {
  border-color: #007bff;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007bff;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-footer {
  margin-top: 50px;
  text-align: center;
}

.banner_btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 40px;
  background: transparent;
  color: #333;
  border: none;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.banner_btn .bt_mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #007bff;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.banner_btn .bt_t {
  position: relative;
  z-index: 1;
  color: #333;
  transition: color 0.3s ease;
}

.banner_btn:hover .bt_mask {
  transform: translateX(0);
}

.banner_btn:hover .bt_t {
  color: #fff;
}

.banner_btn .bol_1,
.banner_btn .bol_2 {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.banner_btn:hover .bol_2 {
  transform: translateX(5px);
}

.privacy-notice {
  margin-top: 20px;
  color: #666;
  font-size: 0.9em;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2em;
  }
  .model-selection {
    margin-bottom: 24px;
  }
  .test-drive-form {
    padding: 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .model-gallery {
    grid-template-columns: 1fr;
  }
  .submit-btn {
    width: 100%;
    justify-content: center;
  }
}

.explorer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 18px 48px;
  font-size: 1.3em;
  font-family: inherit;
  font-weight: 400;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  outline: none;
  gap: 18px;
}

.explorer-btn:hover,
.explorer-btn:focus {
  background: #222;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.explorer-btn .arrow {
  color: orange;
  font-size: 1.4em;
  margin-left: 10px;
  display: flex;
  align-items: center;
}

.personal-details {
  margin-top: 0;
}

header {
  background: #000 !important;
  color: #fff !important;
  margin-bottom: 35px;
}
header * {
  color: #fff !important;
}

.header {
  background: #000;
}
