.transfers-hero {
    /* background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('./../images/banners/limousine.jpeg') center/cover no-repeat; */
    color: var(--primary-white);
    padding: 100px 0;
    text-align: center;
}

/*form steps*/
.form-step {
    display: none; /* Hide all steps by default */
}

    .form-step.active {
        display: block; /* Show only the active step */
    }

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}



.banner-container {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust as needed */
    overflow: hidden;
}


.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    /*position: absolute;*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    color: var(--primary-white);
    text-align: center;
}

.banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner-content > .container {
    
    margin-bottom: -100px;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.transfers-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.transfer-options h2, .booking-form h2 {
    color: var(--primary-black);
    font-weight: 700;
    margin-bottom: 30px;
}

.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}



/*price*/
.price {
    color: var(--primary-black);
    font-weight: 700;
    float:right;
}