﻿.coverage-section {
    background: rgb(248, 249, 250);
}

    .coverage-section .section-title {
        max-width: 760px;
        margin: auto;
        padding-bottom: 1rem !important;
    }

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 32px;
}

.coverage-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
    transition: .35s;
}

    .coverage-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 55px rgba(0,0,0,.15);
    }

.coverage-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 13px 22px;
}

    .coverage-header h3 {
        margin: 0;
        font-size: 1.25rem;
        font-weight: 700;
        color: #1F2937;
    }

.coverage-icon {
    width: 33px;
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #D7261E;
    font-size: 24px;
    transition: .3s;
}

.coverage-card:hover .coverage-icon {
    color: white;
}

.coverage-image {
    overflow: hidden;
    padding: 0px 20px;
    border-radius: var(--bs-border-radius-xl) !important;
}

    .coverage-image img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        opacity: .55;
        transform: scale(1);
        transition: opacity .45s, transform .6s;
        border-radius: var(--bs-border-radius-xl) !important;
    }

.coverage-card:hover .coverage-image img {
    opacity: 1;
    transform: scale(1.08);
}

.coverage-card p {
    padding: 8px 22px;
    margin: 0;
    color: #666;
    line-height: 1.5;
}

.coverage-footer {
    display: flex;
    justify-content: center;
}

    .coverage-footer > h5 {
        padding-top: 0.6rem !important;
        font-size: 1.05rem;
    }

.coverage-footer-icon {
    font-size: 25px;
}

.coverage-button {
    display: flex !important;
    justify-content: center;
    padding-bottom: 1.5rem !important;
}

.coverage-footer-btn-phone {
    padding: 4px 5px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
    width: 155px;
    text-align: center;
}

.coverage-footer-btn-phone {
    background: #D7261E;
    color: white;
}

    .coverage-footer-btn-phone:hover {
        background: #b91c1c;
    }
