/* ================= HERO ================= */

.hero-tile {
    background: url("../images/GET_Hero.webp") no-repeat center center/cover;
    min-height: 80vh;
    color: #fff;
    padding: 150px 20px;
    /* display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; */
}

.hero-eyebrow {
    letter-spacing: 3px;
    font-size: 28px;
    color: #fbbf24;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
}

.hero-title span {
    color: #fbbf24;
}

.hero-text {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 30px;
    color: #ddd;
}

/* .hero-text {
    font-size: 18px;
    max-width: 700px;
    margin: 15px auto;
} */
.hero-btn {
    padding: 12px 28px;
    font-weight: 600;
}

/* ================= BOOKING ================= */

.form-tile {
    background: #f2f7ff;
}

.booking-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

/* ================= WIZARD ================= */
.is-invalid {
    border: 2px solid #dc3545 !important;
    background-color: #fff5f5;
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.wizard-step {
    flex: 1;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #777;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wizard-step:hover {
    background: #f5f5f5;
    color: #000;
}

.wizard-step.active {
    color: #000;
    border-bottom: 3px solid black;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

/* ================= FORM ================= */

.form-group label {
    font-weight: 500;
}

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

.form-row .form-group {
    flex: 1;
    min-width: 220px;
}

.form-check {
    pointer-events: auto;
}

/* ================= LOCATION SEARCH ================= */

.location-wrapper {
    position: relative;
}

.location-results {
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid #ddd;
    z-index: 999;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    border-radius: 0 0 6px 6px;
}

.result-item {
    padding: 10px;
    cursor: pointer;
}

.result-item:hover {
    background: #f5f5f5;
}

.result-item:active {
    background: #ddd;
}

.flight-check-input {
    max-width: 50%;
}

.flight-check-btn {
    max-width: 40%;
}

/* ================= VALIDATION ================= */

.is-invalid {
    border: 1px solid red;
}

/* ================= VEHICLES ================= */

.vehicle-card-modern {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: 0.3s;
}

.vehicle-card-modern:hover {
    transform: translateY(-6px);
}

.vehicle-img-modern {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.vehicle-info {
    padding: 15px;
}

/* ================= FEATURES ================= */

.feature-card-modern {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
    transition: 0.3s;
}

.feature-card-modern:hover {
    transform: translateY(-6px);
}

/* ================= REVIEWS ================= */

.review-track {
    display: flex;
    gap: 15px;
}

.review-card-modern {
    min-width: 280px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}