/* 
 * Coverage Area Section - Modern Premium Design
 */

.coverage-area-section {
    position: relative;
    padding: 6rem 0;
    background: #ffffff;
    overflow: hidden;
}

/* Background Decorations */
.coverage-bg-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    z-index: 0;
}

.coverage-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Content Side */
.coverage-content {
    padding-right: 2rem;
}

.coverage-header {
    margin-bottom: 3rem;
}

.coverage-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1f2937 0%, #4b5563 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coverage-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Location Grid */
.coverage-locations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.location-item:hover {
    background: #ffffff;
    border-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

.location-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.location-item:hover .location-icon {
    background: #2563eb;
    color: #ffffff;
}

.location-name {
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

/* CTA Box */
.coverage-cta-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cta-text p {
    margin: 0;
    font-weight: 600;
    color: #0369a1;
}

.cta-text span {
    display: block;
    font-size: 0.875rem;
    color: #0ea5e9;
    font-weight: 400;
    margin-top: 0.25rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 99px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    animation: pulse-green 2s infinite;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Visual Side (Map) */
.coverage-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #f3f4f6;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 8px solid #ffffff;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
    pointer-events: none;
}

/* Map Markers (Animated) */
.map-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #2563eb;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.4);
    animation: pulse-marker 2s infinite;
}

.marker-1 {
    top: 30%;
    left: 40%;
    animation-delay: 0s;
}

.marker-2 {
    top: 45%;
    left: 60%;
    animation-delay: 0.5s;
}

.marker-3 {
    top: 60%;
    left: 35%;
    animation-delay: 1s;
}

.marker-4 {
    top: 50%;
    left: 75%;
    animation-delay: 1.5s;
}

@keyframes pulse-marker {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
        transform: scale(1);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 99, 235, 0);
        transform: scale(1.1);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .coverage-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .coverage-content {
        padding-right: 0;
        text-align: center;
    }

    .coverage-title {
        font-size: 2rem;
    }

    .coverage-locations {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .location-item {
        justify-content: center;
    }

    .coverage-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .coverage-visual {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .coverage-locations {
        grid-template-columns: 1fr;
    }
}