/* ===== VILLE HERO ===== */
.ville-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a252f 50%, var(--primary-dark) 100%);
    color: #fff;
    padding: 70px 0 50px;
    position: relative;
    overflow: hidden;
}
.ville-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(192,57,43,0.2) 0%, transparent 70%);
    border-radius: 50%;
}
.ville-hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230,126,34,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.ville-hero .container { position: relative; z-index: 1; text-align: center; }

.ville-hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.ville-hero .ville-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.ville-infos {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.ville-info {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 15px 20px;
    text-align: center;
    min-width: 140px;
}
.ville-info .info-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}
.ville-info .info-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.ville-hero .hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ===== CONTENT TEXT ===== */
.content-section { padding: 60px 0; }
.content-section.alt-bg { background: var(--bg-white); }

.content-text {
    max-width: 900px;
    margin: 0 auto;
}
.content-text h2 {
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 20px;
}
.content-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}
.content-text ul {
    margin: 15px 0 20px;
}
.content-text ul li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: var(--text-light);
}
.content-text ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== VILLE SERVICES ===== */
.ville-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.ville-service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.ville-service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.ville-service-card .service-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.ville-service-card h3 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 8px;
}
.ville-service-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 10px;
}
.ville-service-card .price {
    display: inline-block;
    background: rgba(192,57,43,0.08);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
}

/* ===== AVANTAGES NUMEROTES ===== */
.avantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}
.avantage-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.avantage-number {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}
.avantage-content h3 {
    font-size: 1.05rem;
    color: var(--secondary);
    margin-bottom: 5px;
}
.avantage-content p {
    color: var(--text-light);
    font-size: 0.92rem;
}

/* ===== FAQ VILLE ===== */
.ville-faq { max-width: 800px; margin: 0 auto; }

/* ===== COMMUNES VOISINES ===== */
.communes-section { padding: 50px 0; }
.communes-section h2 {
    text-align: center;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 25px;
}
.communes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}
.communes-list a {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(192,57,43,0.06);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid rgba(192,57,43,0.15);
}
.communes-list a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(192,57,43,0.2);
}

/* ===== URGENCE VILLE ===== */
.urgence-ville {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 40px 0;
    text-align: center;
}
.urgence-ville h2 { font-size: 1.6rem; margin-bottom: 10px; }
.urgence-ville p { opacity: 0.9; margin-bottom: 20px; }

/* ===== RESPONSIVE VILLE ===== */
@media (max-width: 768px) {
    .ville-hero { padding: 50px 0 35px; }
    .ville-hero h1 { font-size: 1.7rem; }
    .ville-hero .ville-subtitle { font-size: 1rem; }

    .ville-infos { gap: 10px; }
    .ville-info { min-width: 100px; padding: 10px 14px; }
    .ville-info .info-value { font-size: 1.2rem; }

    .ville-services-grid { grid-template-columns: 1fr; }
    .avantages-grid { grid-template-columns: 1fr; }

    .communes-list a { font-size: 0.85rem; padding: 6px 14px; }

    .urgence-ville h2 { font-size: 1.3rem; }
}
