*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f5f7fb;
    color:#222;
}

/* Header */

header{
    background:#fff;
    padding:18px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    font-size:30px;
    font-weight:700;
    color:#2F5BEA;
}

.home-btn{
    text-decoration:none;
    color:#2F5BEA;
    font-weight:600;
    padding:10px 18px;
    border-radius:8px;
    transition:.3s;
}

.home-btn:hover{
    background:#2F5BEA;
    color:#fff;
}

/* Booking */

.booking{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:60px 20px;
}

.booking-card{

    width:100%;
    max-width:750px;

    background:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.booking-card h1{

    text-align:center;

    margin-bottom:10px;

    color:#2F5BEA;

}

.booking-card p{

    text-align:center;

    margin-bottom:30px;

    color:#666;

}

/* Inputs */

.input-group{

    display:flex;

    flex-direction:column;

    margin-bottom:20px;

}

.input-group label{

    font-weight:600;

    margin-bottom:8px;

}

.input-group input,
.input-group select,
.input-group textarea{

    width:100%;

    padding:15px;

    border:1px solid #ddd;

    border-radius:10px;

    font-size:15px;

    transition:.3s;

}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus{

    border-color:#2F5BEA;

    outline:none;

    box-shadow:0 0 0 3px rgba(47,91,234,.15);

}

/* Gender */

.gender-group{

    display:flex;

    gap:25px;

    flex-wrap:wrap;

    margin-top:5px;

}

.gender-group label{

    display:flex;

    align-items:center;

    gap:8px;

    font-weight:500;

    cursor:pointer;

}

/* Two Column */

.row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

/* Small Text */

small{

    margin-top:6px;

    color:#666;

    font-size:13px;

}

/* Fare Card */

.fare-card{

    margin:30px 0;

    padding:25px;

    background:#f8fbff;

    border:2px solid #2F5BEA;

    border-radius:16px;

    text-align:center;

}

.fare-card h3{

    color:#2F5BEA;

    margin-bottom:10px;

}

.fare-card h2{

    font-size:42px;

    color:#1b8f3d;

    margin-bottom:15px;

}

.fare-card p{

    margin:8px 0;

    color:#555;

}

/* Button */

button{

    width:100%;

    background:#2F5BEA;

    color:white;

    border:none;

    padding:18px;

    border-radius:12px;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

button:hover{

    background:#2147c5;

    transform:translateY(-2px);

}

button:disabled{

    background:#9aa9e8;

    cursor:not-allowed;

    transform:none;

}

/* Mobile */

@media(max-width:768px){

header{

padding:15px 20px;

}

.logo{

font-size:24px;

}

.booking{

padding:25px 15px;

}

.booking-card{

padding:25px;

}

.row{

grid-template-columns:1fr;

}

.gender-group{

flex-direction:column;

gap:12px;

}

.fare-card h2{

font-size:34px;

}

button{

font-size:16px;

}

}
.policy-box{

margin-top:30px;

padding:20px;

background:#F8FAFC;

border:1px solid #E5E7EB;

border-radius:12px;

}

.policy-box h3{

margin-bottom:15px;

color:#2563EB;

font-size:18px;

}

.policy-box ul{

padding-left:20px;

}

.policy-box li{

margin-bottom:10px;

line-height:24px;

color:#4B5563;

}