.container {
    width: min(94%, 1360px);
    margin: 0 auto;
}

section{

    padding:90px 0;

}

.booking-container{

    max-width:900px;

}

.booking-header{

    text-align:center;
    margin-bottom:40px;

}

.booking-header p{

    color:var(--primary);
    font-weight:900;
    text-transform:uppercase;

}

.booking-header h1{

    font-size:42px;
    margin-bottom:12px;

}

.booking-header span{

    color:#cbd5e1;

}

/* Service Area Coverage Map */

.coverage-map-section {
    background: #101827;
    padding: 80px 0;
}

.coverage-map-section .section-heading {
    max-width: 900px;
    margin: 0 auto 36px;
    text-align: center;
}

.coverage-map-section .section-heading p {
    color: #a3ff00;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.coverage-map-section .section-heading h2 {
    color: #ffffff;
    margin-bottom: 16px;
}

.coverage-map-section .section-heading span {
    color: #cbd5e1;
    line-height: 1.7;
}

.coverage-map {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.coverage-map iframe {
    display: block;
    width: 100%;
    height: 520px;
    border: 0;
}

/* Coverage Highlights */

.coverage-highlights {
    background: #101827;
    padding: 0 0 80px;
}

.coverage-card {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    color: #ffffff;
    text-align: center;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
}

.coverage-card h3 {
    margin: 0 0 28px;
    color: #ffffff;
    font-size: 28px;
}

.coverage-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.coverage-features div {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .coverage-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .coverage-map iframe {
        height: 430px;
    }
}

@media (max-width: 600px) {
    .coverage-map-section {
        padding: 60px 0;
    }

    .coverage-map iframe {
        height: 360px;
    }

    .coverage-card {
        padding: 28px 20px;
    }

    .coverage-features {
        grid-template-columns: 1fr;
    }
}