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

    body {
      background: #f4f4f4;
      color: #222;
      font-size: 14px;
      line-height: 1.5;
    }

    .page {
      max-width: 1200px;
      margin: 0 auto;
      padding: 24px 16px 60px;
    }

    /* Hero Banner */
    .hero-banner {
      width: 100%;
      height: 220px;
      border-radius: 10px;
      margin-bottom: 28px;
      overflow: hidden;
      background: #1a1a2e;
    }
    .hero-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Two-column layout */
    .layout {
      display: grid;
      grid-template-columns: 1fr 310px;
      gap: 22px;
      align-items: start;
    }

    /* Card */
    .card {
      background: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 10px;
      padding: 22px 24px;
      margin-bottom: 18px;
    }
    .card:last-child { margin-bottom: 0; }

    /* Section title */
    .section-title {
      font-size: 13px;
      font-weight: 600;
      color: #222;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      border-bottom: 2px solid #c0392b;
      padding-bottom: 10px;
      margin-bottom: 18px;
    }

    /* Form grid */
    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .form-grid .full { grid-column: 1 / -1; }

    /* Fields */
    .field { display: flex; flex-direction: column; gap: 5px; }
    .field label {
      font-size: 11px;
      font-weight: 600;
      color: #666;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .field input,
    .field select {
      height: 38px;
      padding: 0 10px;
      font-size: 14px;
      border: 1px solid #ccc;
      border-radius: 6px;
      background: #fff;
      color: #222;
      width: 100%;
      appearance: auto;
      transition: border-color 0.15s, box-shadow 0.15s;
    }
    .field input:focus,
    .field select:focus {
      outline: none;
      border-color: #c0392b;
      box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
    }

    /* Radio rows */
    .radio-row {
      display: flex;
      gap: 20px;
      padding-top: 6px;
      flex-wrap: wrap;
    }
    .radio-row label {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 14px;
      color: #222;
      font-weight: 400;
      text-transform: none;
      letter-spacing: 0;
      cursor: pointer;
    }
    .radio-row input[type="radio"] {
      width: 16px;
      height: 16px;
      accent-color: #c0392b;
      cursor: pointer;
    }

    /* Optional note */
    .optional-note {
      font-size: 12px;
      color: #555;
      background: #fdf5f5;
      border-left: 3px solid #c0392b;
      padding: 9px 12px;
      border-radius: 0 6px 6px 0;
      margin-bottom: 16px;
      line-height: 1.6;
    }

    /* Quick links */
    .quick-links { display: flex; flex-direction: column; gap: 8px; }
    .quick-link-btn {
      display: block;
      width: 100%;
      padding: 10px 14px;
      font-size: 13px;
      font-weight: 500;
      color: #333;
      background: #f5f5f5;
      border: 1px solid #ddd;
      border-radius: 6px;
      text-align: center;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.12s;
    }
    .quick-link-btn:hover { background: #eee; }

    /* Disclaimer */
    .disclaimer {
      font-size: 12px;
      color: #888;
      text-align: center;
      margin-top: 10px;
      line-height: 1.6;
    }

    /* Submit button */
    .submit-btn {
      display: block;
      width: 100%;
      height: 50px;
      background: #c0392b;
      color: #fff;
      border: none;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-top: 16px;
      transition: background 0.15s;
    }
    .submit-btn:hover { background: #a93226; }
    .submit-btn:active { background: #922b21; transform: scale(0.99); }
.car-item {
  position: relative;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 15px;
  background: #fff;
  transition: 0.3s;
}

/* hide radio */
.car-item input {
  display: none;
}

/* hover */
.car-item:hover {
  transform: translateY(-5px);
}
.car-item img {
  width: 105px;
  gap: 2px;
}
/* selected state */
.car-item input:checked + img {
  filter: brightness(0.9);
}

.car-item input:checked ~ p {
  color: #c0392b;
  font-weight: 700;
}

.car-item input:checked {
}

/* border when selected */
.car-item input:checked ~ .checkmark,
.car-item input:checked ~ p,
.car-item input:checked ~ img {
}

.car-item input:checked ~ .checkmark {
  display: flex;
}

/* highlight card */
.car-item input:checked ~ * {
}

.car-item:has(input:checked) {
  border: 2px solid #c0392b;
  background: #fff5f5;
}

/* checkmark */
.checkmark {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 25px;
  height: 25px;
  background: #c0392b;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}
.car-grid {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: nowrap;   /* 🔥 prevents wrapping */
  overflow-x: auto;    /* ✅ allows scroll on small screens */
  padding-bottom: 10px;
}

/* keep equal width */
.car-item {
  min-width: 150px;   /* 🔥 prevents shrinking */
  flex: 1;
}

/* optional: hide scrollbar (clean UI) */
.car-grid::-webkit-scrollbar {
  height: 6px;
}
.car-grid::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

    /* Responsive */
    @media (max-width: 820px) {
      .layout { grid-template-columns: 1fr; }
      .sidebar { order: -1; }
    }
    @media (max-width: 520px) {
      .form-grid { grid-template-columns: 1fr; }
      .form-grid .full { grid-column: 1; }
      .hero-banner { height: 140px; }
    }


    /* Driver's Licence Upload */
.upload-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.upload-label-text {
  font-size: 12.5px;
  font-weight: 600;
  color: #555;
  margin-bottom: 8px;
  display: block;
}

.upload-zone {
  border: 2px dashed #c0392b;
  border-radius: 14px;
  background: #fff5f5;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  position: relative;
}
.upload-zone:hover { background: #ffecec; border-color: #a93226; }
.upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.upload-icon { font-size: 36px; margin-bottom: 10px; }
.upload-title { font-size: 15px; font-weight: 700; color: #c0392b; margin-bottom: 4px; }
.upload-sub { font-size: 12.5px; color: #888; }

.upload-preview {
  display: none;
  margin-top: 12px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #2ecc71;
  font-weight: 600;
}
.upload-preview.visible { display: flex; }

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