/* =====================================================
   Coverage Page - Specific Styles
   ===================================================== */

/* Hero Section - Coverage */
.coverage-hero {
    position: relative;
    height: 950px;
    max-height: 950px;
    display: flex;
    align-items: center;
    background-image: url('../images/coverage.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.coverage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0) 100%);
}

.coverage-hero .hero-content {
    position: relative;
    z-index: 1;
    margin-left: 10%;
}

.coverage-hero h1 {
    font-size: 64px;
    font-weight: 500;
    color: #ffffff;
    line-height: 68px;
    max-width: 600px;
}

/* White Card Section */
.coverage-white-card {
    background-color: #ffffff;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: -80px;
    position: relative;
    z-index: 10;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.08);
}

.coverage-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 0;
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.coverage-image {
    position: relative;
    overflow: hidden;
}

.coverage-image img {
    width: 100%;
    height: auto;
    display: block;
}

.coverage-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 20px;
}

.coverage-content p:last-of-type {
    margin-bottom: 0;
}

.coverage-heading {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: 33px;
}

.coverage-heading.centered {
    text-align: center;
}

/* Map Section */
.coverage-map-section {
    background-color: #000000;
    padding: 80px 0;
    text-align: center;
}

.coverage-map-container {
    width: 100%;
    max-width: 970px;
    margin: 0 auto;
    padding: 0 20px;
}

.coverage-map {
    width: 100%;
    height: auto;
    display: block;
}

/* States Section */
.coverage-states-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.states-list {
    column-count: 4;
    column-gap: 40px;
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
    font-size: 16px;
    color: #000000;
}

.states-list li {
    break-inside: avoid;
    margin-bottom: 8px;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .coverage-hero {
        height: 650px;
        max-height: 650px;
    }
    
    .coverage-hero h1 {
        font-size: 52px;
        line-height: 1.15;
    }
    
    .coverage-hero .hero-content {
        margin-left: 8%;
        margin-right: 8%;
    }
    
    .coverage-white-card {
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
        box-shadow: none;
    }

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

@media (max-width: 768px) {
    .coverage-hero {
        height: 550px;
        max-height: 550px;
    }

    .coverage-hero .hero-content {
        margin-left: 6%;
        margin-right: 6%;
    }

    .coverage-hero h1 {
        font-size: 42px;
        line-height: 1.2;
    }

    .coverage-white-card {
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
        box-shadow: none;
    }

    .coverage-container {
        padding: 0;
    }
    
    .coverage-content {
        padding: 40px 20px;
    }
    
    .coverage-states-section .coverage-container {
        padding: 0 20px;
    }

    .states-list {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .coverage-hero {
        height: 500px;
        max-height: 500px;
    }
    
    .coverage-hero .hero-content {
        margin-left: 5%;
        margin-right: 5%;
    }
    
    .coverage-hero h1 {
        font-size: 34px;
        line-height: 1.25;
    }
}
