/* ===================================
   ZONES D'INTERVENTION - PREMIUM STYLE
   =================================== */

/* Section principale */
#zones-intervention {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f0fc 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

#zones-intervention::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

#zones-intervention .wrap {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

#zones-intervention h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0b2748;
    text-align: center;
    margin-bottom: 16px;
}

#zones-intervention .lead {
    font-size: 18px;
    line-height: 1.7;
    color: #64748b;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Badge Paris Focus */
.paris-focus {
    text-align: center;
    margin-bottom: 40px;
}

.paris-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Grille des zones - PREMIUM CARDS */
#zones-intervention .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Cartes zones avec effet premium */
.zone {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 32px;
    box-shadow:
        0 10px 40px rgba(11, 39, 72, 0.08),
        0 0 0 1px rgba(37, 99, 235, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Effet de carrés en arrière-plan */
.zone::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(45deg, rgba(37, 99, 235, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(37, 99, 235, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(37, 99, 235, 0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(37, 99, 235, 0.05) 75%);
    background-size: 30px 30px;
    background-position: 0 0, 0 15px, 15px -15px, -15px 0px;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.6s ease;
    pointer-events: none;
}

.zone:hover::before {
    opacity: 1;
    transform: rotate(10deg) scale(1.1);
}

.zone:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 60px rgba(37, 99, 235, 0.15),
        0 0 0 1px rgba(37, 99, 235, 0.2);
}

/* Header de la carte */
.zone-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.zone-icon {
    font-size: 36px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
    flex-shrink: 0;
}

.zone-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0b2748;
    margin: 0;
}

.zone p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 20px;
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #334155;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.tag:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    transform: translateY(-2px);
}

/* Strip de contact */
.strip {
    background: linear-gradient(135deg, #0b2748 0%, #1d4ed8 100%);
    color: white;
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(11, 39, 72, 0.3);
    position: relative;
    overflow: hidden;
}

.strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.strip strong {
    font-size: 20px;
    display: block;
    margin-bottom: 8px;
}

.strip .btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

.strip .btn-group a {
    padding: 14px 28px;
    background: white;
    color: #0b2748;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.strip .btn-group a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.strip .btn-group a.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.strip .btn-group a.secondary:hover {
    background: white;
    color: #0b2748;
}

/* Responsive */
@media (max-width: 768px) {
    #zones-intervention {
        padding: 60px 20px;
    }

    #zones-intervention h2 {
        font-size: 32px;
    }

    #zones-intervention .grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .zone {
        padding: 24px;
    }

    .strip {
        padding: 24px;
    }

    .strip .btn-group {
        flex-direction: column;
    }

    .strip .btn-group a {
        width: 100%;
    }
}