.booking {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.booking-header {
    text-align: center;
    margin-bottom: 50px;
}

.booking-header h1 {
    color: #0A4B6B;
    margin-bottom: 15px;
    font-size: var(--fs-h1);
}

.booking-header p {
    color: #666;
    line-height: 1.9;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.booking-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: .3s;
}

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

.booking-logo {
    width: 130px;
    height: 80px;
    object-fit: contain;
    object-position: center;
    margin-bottom: 20px;
}

.booking-card p {
    margin: 20px 0 25px;
    font-size: var(--fs-body);
    font-weight: 600;
    color: #0A4B6B;
    line-height: 1.9;
}

.booking-btn {
    margin-top: auto;
    width: 100%;
    max-width: 220px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    background: #38BDF8;
    color: white;
    padding: 12px 26px;
    border-radius: 30px;
    transition: background .3s ease,
    transform .3s ease;
}

.booking-btn:hover {
    background: #0EA5E9;
    transform: translateY(-2px);
}


@media (max-width:768px){

    .booking{
        padding:40px 0;
    }

    .booking-header{
        margin-bottom:35px;
    }

    .booking-card{
        padding:24px;
    }

    .booking-logo{
        width:110px;
        height:60px;
    }

}