/*body {
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #000;
}
*/
.hidden {
    display: none;
}

#booking-form, #city-tour-booking {
    margin: 60px auto;
    background: #1f1f1f;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

#booking-form:hover {
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.08);
}

h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 28px;
    font-weight: 700;
    color: #c09b2f;
}

label {
    display: block;
    margin: 18px 0 8px;
    color: #8f8f8f;
    font-weight: 600;
}

select,
input[type="text"],
input[type="date"],
input[type="time"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
    margin-bottom: 10px;
    border-radius: 6px;
}

select:focus,
input:focus,
textarea:focus {
    border-color: #8f8f8f;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
    outline: none;
}

button, button[type="submit"] {
    padding: 14px 28px;
    background-color: #333;
    color: #fff;
    border: none;
    display: block;
    margin: 32px auto 0;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

button:hover,
button:focus {
    background-color: #c09b2f;
    transform: translateY(-1px);
}

#priceDisplayStep1,
#priceDisplayStep2,
#priceDisplayStep3 {
    text-align: center;
    margin-top: 28px;
    font-weight: 600;
    color: #c09b2f;
    font-size: 1.1rem;
}

.vehicle-options {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 24px 0;
}

.vehicle-options img {
    height: 140px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all 0.2s ease;
    background: #f7f7f7;
    padding: 8px;
}

.vehicle-options img.selected {
    border-color: #c09b2f;
    background: #eaeaea;
}

#vehicleLegend {
    text-align: center;
    color: #8f8f8f;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

figcaption {
    color: #8f8f8f;
    font-size: 0.95rem;
    text-align: center;
    margin-top: 6px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.form-group.half {
    flex: 1 1 48%;
}

.button-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

@media (max-width: 768px) {
    #booking-form {
        padding: 18px;
        margin: 24px;
    }

    h1 {
        font-size: 1.4rem;
    }

    .form-group.half,
    .button-row {
        flex-direction: column;
        gap: 14px;
    }

    .vehicle-options img {
        height: 90px;
        width: auto;
    }
}

#infoBoxForOtherLocation {
    margin-top: 50px;
    text-align: center;
    font-size: 1.2rem;
}

/* Progress Bar (updated to match neutral style) */
.progress-bar {
    width: 100%;
    height: 6px;
    background: #8f8f8f;
    border-radius: 4px;
    margin-bottom: 16px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: #c09b2f;
    width: 0;
    transition: width 0.4s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #8f8f8f;
}

.progress-step {
    text-align: center;
}

.step-badge {
    width: 30px;
    height: 30px;
    line-height: 23px;
    border-radius: 50%;
    background: #8f8f8f;
    color: #fff;
    margin: 0 auto 6px;
    font-weight: bold;
    font-size: 20px;
}

.progress-step.active .step-badge,
.progress-step.completed .step-badge {
    background: #c09b2f;
}

.progress-step.active .step-title,
.progress-step.completed .step-title {
    color: #c09b2f;
}

/* Loading Spinner */
.loading::after {
  content: "";
  margin-left: 8px;
  border: 2px solid #fff;
  border-top: 2px solid #000;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: inline-block;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/** City tour booking form  **/
#city-tour-booking form {
display: flex;
flex-direction: column;
gap: 16px;
}

#city-tour-booking .form-row {
display: flex;
gap: 20px;
flex-wrap: wrap;
}

#city-tour-booking .form-group {
flex: 1;
display: flex;
flex-direction: column;
min-width: 240px;
}

#city-tour-booking .form-group.full-width {
flex: 100%;
}
