/* =========================
   STEP 3 BOOKING DESIGN (FIXED)
========================= */

.s3-booking-section {
    background: #dff3f3;
    padding: 70px 20px;
    font-family:  'Times New Roman', Times, serif; 
}


/* TITLE */

.s3-main-title {
    text-align: center;
    font-size: 60px;
    font-weight: 700;
    color: #011a6e;
    margin-bottom: 60px;
}


/* MAIN WRAPPER */

.s3-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    gap: 30px;

}


/* LEFT */

.s3-form-container {
    flex: 1;
}


/* STEP HEADER */

.s3-step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.s3-step-header i {
    font-size: 26px;
    /* icon size */
    cursor: pointer;
    color: #011a6e;
    width: 44px;
    /* clickable area */
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s ease;
}


/* hover effect */

.s3-step-header i:hover {
    background: rgba(1, 26, 110, 0.1);
    transform: scale(1.1);
}

.s3-step-header span {
    font-size: 3.6rem;
    color: #011a6e;
    font-weight: 700;
}


/* INPUT ROWS */

.s3-input-row {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}


/* INPUT GROUP */

.s3-input-group {
    position: relative;
    flex: 1;
    /* ALL SAME WIDTH */
}


/* ICON */

.s3-input-group i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1.6rem;
}


/* INPUTS */

.s3-input-group input,
.s3-input-group textarea {
    width: 100%;
    height: 50px;
    border: 1px solid #d4d4d4;
    background: #fff;
    border-radius: 4px;
    padding: 12px 15px 12px 44px;
    font-size: 1.6rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.s3-input-group input:focus,
.s3-input-group textarea:focus {
    border-color: #011a6e;
}


/* NOTE TEXTAREA */

.s3-textarea-group textarea {
    height: 110px;
    resize: none;
}


/* =========================
   RIGHT SIDE CARD FIX
========================= */

/* =========================
   RIGHT SIDE CONTAINER (CLEAN FIX)
========================= */

.s3-vehicle-card-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    min-height: auto;
    justify-content: center;
}

/* =========================
   VEHICLE CARD
========================= */

.s3-vehicle-card {
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 5px;
    border-radius: 12px;
    width: 100%;
    max-width: 340px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

/* TITLE */

.s3-vehicle-card h3 {
    color: #011a6e;
    font-size: 30px;
    font-weight: 700;
    margin-top: 10;
    text-align: center;
}

/* IMAGE */

.s3-vehicle-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #fff;
    /* padding: 6px; */
    margin: 0;
}

/* VEHICLE NAME */

.s3-vehicle-type {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 8;
    color: #111;
    align-self: center;
}

/* FARE BOX */

.s3-fare-box {
    margin-top: 4px;
    padding: 6px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    border-top: 1px solid #eee;
    color: #111;
}

#s3Fare {
    color: #000c3a;
    font-size: 22px;
    font-weight: 800;
}

/* BUTTON (same line feel with image card) */

.s3-book-now-btn {
    background: #011a6e;
    color: #fff;
    border: none;
    padding: 12px;
    width: 55%;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 14px;
}

.s3-book-now-btn:hover {
    transform: translateY(-2px);
    background: #000c3a;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .s3-main-title {
        font-size: 3.4rem;
    }
    .s3-step-header span {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .s3-booking-section {
        padding: 40px 16px;
    }
    .s3-main-title {
        font-size: 3rem;
        margin-bottom: 30px;
    }
    .s3-container {
        flex-direction: column;
        gap: 24px;
    }
    .s3-input-row {
        flex-direction: column;
    }
    .s3-vehicle-card-container {
        width: 100%;
        min-height: auto;
        align-items: center;
    }
    .s3-vehicle-card {
        max-width: 100%;
        min-height: auto;
    }
    .s3-book-now-btn {
        width: 100%;
    }
    .s3-main-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .s3-main-title {
        font-size: 2.6rem;
    }
    .s3-step-header span {
        font-size: 2.4rem;
    }
    .s3-input-group input {
        font-size: 1.4rem;
    }
    .s3-vehicle-card h3 {
        font-size: 1.9rem;
    }
    .s3-vehicle-type {
        font-size: 1.6rem;
    }
    .s3-book-now-btn {
        font-size: 1.4rem;
    }
}

.s3-fare-box{
    margin-top: 5px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #111;
    padding: 10px;
    border-top: 1px solid #eee;
}

#s3Fare{
    color: #000c3a;
    font-size: 25px;
    font-weight: 800;
}

