/*
Theme Name: Astra Child - Tous Nuisibles
Theme URI: https://tous-nuisibles.fr
Description: Thème enfant d'Astra pour le site tous-nuisibles.fr
Author: Clément
Author URI: https://tous-nuisibles.fr
Template: astra
Version: 1.0.0
Text Domain: astra-child
*/

/* ============================================
   STYLES PERSONNALISÉS POUR TOUS-NUISIBLES.FR
   Couleur principale : #FD5A2B (Orange)
   Couleur secondaire : #F9F3EB (Beige clair)
   ============================================ */

/* PAGE DÉPARTEMENT - Layout */
.departement-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #F9F3EB;
}

.departement-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 3px solid #FD5A2B;
}

.departement-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.departement-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* SECTION TOP 5 */
.top-5-section {
    background: linear-gradient(135deg, #FD5A2B 0%, #ff7a50 100%);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(253, 90, 43, 0.3);
}

.top-5-section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.top-5-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.top-ville-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.top-ville-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(253, 90, 43, 0.3);
    border-color: #FD5A2B;
}

.top-ville-card .rank {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FD5A2B;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(253, 90, 43, 0.4);
}

.top-ville-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin: 15px 0 10px 0;
}

.top-ville-card .population {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.top-ville-card .btn-ville {
    display: inline-block;
    background: #FD5A2B;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.top-ville-card .btn-ville:hover {
    background: #e54923;
    transform: scale(1.05);
}

/* SECTION TOUTES LES VILLES */
.all-villes-section {
    margin-top: 50px;
    background: white;
    padding: 40px;
    border-radius: 15px;
}

.all-villes-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
    border-left: 5px solid #FD5A2B;
    padding-left: 20px;
}

.villes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.ville-card {
    background: #F9F3EB;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #FD5A2B;
    transition: all 0.3s ease;
}

.ville-card:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(253, 90, 43, 0.2);
    border-left-color: #ff7a50;
    transform: translateX(5px);
}

.ville-card h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.ville-card .ville-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.ville-card .ville-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ville-card .ville-meta span::before {
    content: "📍";
}

.ville-card a {
    display: inline-block;
    color: #FD5A2B;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.ville-card a:hover {
    color: #e54923;
}

.ville-card a::after {
    content: " →";
    transition: transform 0.3s ease;
    display: inline-block;
}

.ville-card:hover a::after {
    transform: translateX(5px);
}

/* STATS BAR */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #FD5A2B 0%, #ff7a50 100%);
    border-radius: 15px;
    flex-wrap: wrap;
    box-shadow: 0 8px 25px rgba(253, 90, 43, 0.3);
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-item .number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.stat-item .label {
    font-size: 0.9rem;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* MESSAGE SI AUCUNE VILLE */
.no-villes {
    text-align: center;
    padding: 60px 20px;
    background: #F9F3EB;
    border-radius: 10px;
    border: 2px dashed #FD5A2B;
}

.no-villes p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .departement-header h1 {
        font-size: 2rem;
    }
    
    .departement-description {
        font-size: 1rem;
    }
    
    .top-5-section {
        padding: 30px 20px;
    }
    
    .top-5-section h2,
    .all-villes-section h2 {
        font-size: 1.5rem;
    }
    
    .top-5-grid {
        grid-template-columns: 1fr;
    }
    
    .villes-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-bar {
        gap: 20px;
    }
    
    .stat-item .number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .departement-page {
        padding: 20px 15px;
    }
    
    .departement-header h1 {
        font-size: 1.7rem;
    }
    
    .stats-bar {
        padding: 20px;
    }
}

/* ============================================
   PAGE LISTE DES DÉPARTEMENTS
   ============================================ */

.liste-departements-page {
    background: white;
    min-height: 100vh;
}

/* HEADER */
.departements-header {
    background: linear-gradient(135deg, #FD5A2B 0%, #ff7a50 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.departements-header .header-content {
    max-width: 900px;
    margin: 0 auto;
}

.departements-header h1 {
    font-size: 3rem;
    margin: 0 0 20px 0;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.departements-header .header-description {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
    margin: 0;
}

/* STATS OVERVIEW */
.stats-overview {
    max-width: 1200px;
    margin: -50px auto 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 2px solid #F9F3EB;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #FD5A2B;
    box-shadow: 0 15px 50px rgba(253, 90, 43, 0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FD5A2B;
    margin-bottom: 10px;
}

.stat-label {
    color: #7f8c8d;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* RECHERCHE */
.search-departement {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

.search-box {
    background: #F9F3EB;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.search-box h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin: 0 0 25px 0;
}

.search-input {
    width: 100%;
    max-width: 600px;
    padding: 18px 25px;
    font-size: 1.1rem;
    border: 3px solid #FD5A2B;
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    box-shadow: 0 0 0 4px rgba(253, 90, 43, 0.2);
    transform: scale(1.02);
}

/* CONTENU */
.departements-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px 20px;
}

/* SECTIONS PAR RÉGION */
.region-section {
    margin-bottom: 60px;
}

.region-title {
    color: #2c3e50;
    font-size: 2rem;
    margin: 0 0 30px 0;
    padding: 20px 0;
    border-bottom: 3px solid #FD5A2B;
    display: flex;
    align-items: center;
    gap: 15px;
}

.region-icon {
    font-size: 2.5rem;
}

.region-count {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 400;
}

/* GRID DES DÉPARTEMENTS */
.departements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.dept-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #F9F3EB;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.dept-card:hover {
    border-color: #FD5A2B;
    box-shadow: 0 8px 30px rgba(253, 90, 43, 0.15);
    transform: translateX(5px);
}

.dept-numero {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FD5A2B 0%, #ff7a50 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(253, 90, 43, 0.3);
}

.dept-content {
    flex: 1;
}

.dept-name {
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.dept-meta {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.villes-count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.villes-count::before {
    content: "🏙️";
}

.dept-arrow {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: #FD5A2B;
    transition: transform 0.3s ease;
}

.dept-card:hover .dept-arrow {
    transform: translateX(5px);
}

/* NO RESULTS */
.no-results-box {
    background: #F9F3EB;
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
}

.no-results-box p {
    font-size: 1.3rem;
    color: #7f8c8d;
    margin: 0 0 25px 0;
}

.btn-reset {
    background: #FD5A2B;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reset:hover {
    background: #e54923;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(253, 90, 43, 0.3);
}

/* CTA FINAL */
.cta-final {
    background: linear-gradient(135deg, #FD5A2B 0%, #ff7a50 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin-top: 60px;
}

.cta-final h2 {
    font-size: 2.5rem;
    margin: 0 0 20px 0;
    color: white;
}

.cta-final p {
    font-size: 1.2rem;
    margin: 0 0 30px 0;
    opacity: 0.95;
}

.btn-cta-final {
    display: inline-block;
    background: white;
    color: #FD5A2B;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.btn-cta-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .departements-header h1 {
        font-size: 2.3rem;
    }
    
    .stats-overview {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .departements-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .departements-header {
        padding: 60px 20px;
    }
    
    .departements-header h1 {
        font-size: 2rem;
    }
    
    .departements-header .header-description {
        font-size: 1rem;
    }
    
    .stats-overview {
        margin-top: -30px;
    }
    
    .search-box {
        padding: 30px 20px;
    }
    
    .region-title {
        font-size: 1.5rem;
        flex-wrap: wrap;
    }
    
    .departements-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-final h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .departements-header h1 {
        font-size: 1.7rem;
    }
    
    .stats-overview {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .search-input {
        font-size: 1rem;
        padding: 15px 20px;
    }
    
    .dept-card {
        padding: 20px;
    }
    
    .dept-numero {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .dept-name {
        font-size: 1.1rem;
    }
}

/* ============================================
   PAGES DE VILLE (SINGLE)
   ============================================ */

body.single-ville .ville-page {
    background: white !important;
    min-height: 100vh;
}

.site-content .ville-page {
    background: white !important;
}

/* BREADCRUMB */
.ville-page .ville-breadcrumb {
    background: #F9F3EB !important;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.9rem;
}

.ville-page .ville-breadcrumb a {
    color: #FD5A2B !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ville-page .ville-breadcrumb a:hover {
    color: #e54923 !important;
    text-decoration: underline;
}

.ville-page .ville-breadcrumb .separator {
    margin: 0 10px;
    color: #7f8c8d;
}

.ville-page .ville-breadcrumb .current {
    color: #2c3e50;
    font-weight: 600;
}

/* HEADER VILLE */
.ville-page .ville-header {
    background: linear-gradient(135deg, #FD5A2B 0%, #ff7a50 100%) !important;
    color: white !important;
    padding: 60px 20px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(253, 90, 43, 0.2);
}

.ville-page .ville-header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.ville-page .ville-header h1 {
    font-size: 2.8rem !important;
    margin: 0 0 30px 0 !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    color: white !important;
}

.ville-meta-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.ville-meta-info .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.ville-meta-info .icon {
    font-size: 1.2rem;
}

.ville-meta-info .label {
    font-weight: 600;
}

.ville-meta-info .value {
    opacity: 0.95;
}

/* CTA PRINCIPAL */
.ville-cta-primary {
    max-width: 1200px;
    margin: -60px auto 60px auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.cta-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
    border: 3px solid #FD5A2B;
}

.cta-content h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin: 0 0 15px 0;
}

.cta-content p {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin: 0 0 25px 0;
}

.btn-cta {
    display: inline-block;
    background: #FD5A2B;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(253, 90, 43, 0.3);
}

.btn-cta:hover {
    background: #e54923;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(253, 90, 43, 0.4);
}

/* CONTENU PRINCIPAL */
.ville-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

/* COLONNE PRINCIPALE */
.main-content {
    background: white;
}

.ville-intro {
    background: #F9F3EB;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #FD5A2B;
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
}

.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #FD5A2B;
}

.section-content {
    line-height: 1.8;
    color: #555;
}

.problem-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.problem-list li {
    padding: 15px;
    margin: 10px 0;
    background: #F9F3EB;
    border-left: 4px solid #FD5A2B;
    border-radius: 5px;
}

.problem-list li strong {
    color: #FD5A2B;
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #F9F3EB;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #FD5A2B;
    box-shadow: 0 8px 25px rgba(253, 90, 43, 0.15);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.service-card h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin: 15px 0 10px 0;
}

.service-card p {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* PROCESSUS TIMELINE */
.process-timeline {
    margin-top: 30px;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 24px;
    top: 60px;
    width: 2px;
    height: calc(100% + 10px);
    background: #F9F3EB;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #FD5A2B;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(253, 90, 43, 0.3);
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    padding-top: 5px;
}

.step-content h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 0 0 10px 0;
}

.step-content p {
    color: #7f8c8d;
    margin: 0;
    line-height: 1.6;
}

/* SIDEBAR */
.ville-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.sidebar-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 2px solid #F9F3EB;
}

.sidebar-box h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #FD5A2B;
}

.cta-box {
    background: linear-gradient(135deg, #FD5A2B 0%, #ff7a50 100%);
    color: white;
    border: none;
    box-shadow: 0 5px 20px rgba(253, 90, 43, 0.3);
}

.cta-box h3 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.cta-box p {
    color: white;
    opacity: 0.95;
    margin-bottom: 20px;
}

.btn-call,
.btn-form {
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.btn-call {
    background: white;
    color: #FD5A2B;
    font-size: 1.3rem;
}

.btn-call:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-form {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}

.btn-form:hover {
    background: white;
    color: #FD5A2B;
}

.horaires-list,
.avantages-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.horaires-list li,
.avantages-list li {
    padding: 10px 0;
    border-bottom: 1px solid #F9F3EB;
    color: #555;
}

.horaires-list li:last-child,
.avantages-list li:last-child {
    border-bottom: none;
}

.horaires-list strong {
    color: #2c3e50;
}

/* VILLES VOISINES */
.villes-voisines-section {
    background: #F9F3EB;
    padding: 60px 20px;
    margin-top: 60px;
}

.villes-voisines-section h2 {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    color: #2c3e50;
    font-size: 2rem;
    text-align: center;
}

.villes-voisines-grid {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.ville-voisine-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.ville-voisine-card:hover {
    border-color: #FD5A2B;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(253, 90, 43, 0.2);
}

.ville-voisine-card h3 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin: 0 0 10px 0;
}

.ville-voisine-card .cp {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.voir-toutes {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.btn-voir-toutes {
    display: inline-block;
    background: #FD5A2B;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-voir-toutes:hover {
    background: #e54923;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(253, 90, 43, 0.3);
}

/* RESPONSIVE VILLE PAGE */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .ville-sidebar {
        position: static;
    }
    
    .ville-header h1 {
        font-size: 2rem;
    }
    
    .ville-meta-info {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .ville-header {
        padding: 40px 20px;
    }
    
    .ville-header h1 {
        font-size: 1.8rem;
    }
    
    .cta-content {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .villes-voisines-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .ville-header h1 {
        font-size: 1.5rem;
    }
    
    .ville-meta-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .ville-meta-info .meta-item {
        width: 100%;
        justify-content: center;
    }
    
    .cta-content h2 {
        font-size: 1.3rem;
    }
    
    .btn-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .villes-voisines-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PAGES ENTREPRISE
   ============================================ */

.entreprise-page {
    background: white;
    min-height: 100vh;
}

/* HEADER ENTREPRISE */
.entreprise-header {
    background: linear-gradient(135deg, #FD5A2B 0%, #ff7a50 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.entreprise-header .header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.entreprise-logo {
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 50%;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.entreprise-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.entreprise-title h1 {
    font-size: 3rem;
    margin: 0 0 15px 0;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.entreprise-baseline {
    font-size: 1.3rem;
    opacity: 0.95;
    margin: 0;
}

/* INFOS RAPIDES */
.entreprise-quick-info {
    max-width: 1200px;
    margin: -50px auto 60px auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 2px solid #F9F3EB;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #FD5A2B;
    box-shadow: 0 15px 50px rgba(253, 90, 43, 0.2);
}

.info-card .icon {
    font-size: 3rem;
}

.info-card .label {
    font-size: 0.9rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card .value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
}

.phone-card .value {
    color: #FD5A2B;
}

/* CONTENU */
.entreprise-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
}

.entreprise-content .content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.entreprise-content .content-section {
    margin-bottom: 50px;
}

.entreprise-content .content-section h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #FD5A2B;
}

.presentation-content {
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

/* DÉPARTEMENTS GRID */
.departements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.dept-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #F9F3EB;
    border-radius: 10px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.dept-badge:hover {
    border-color: #FD5A2B;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(253, 90, 43, 0.15);
}

.dept-numero {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: #FD5A2B;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.dept-nom {
    flex: 1;
    color: #2c3e50;
    font-weight: 600;
}

/* SERVICES GRID */
.entreprise-content .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.entreprise-content .service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #F9F3EB;
    transition: all 0.3s ease;
}

.entreprise-content .service-card:hover {
    border-color: #FD5A2B;
    box-shadow: 0 8px 25px rgba(253, 90, 43, 0.15);
    transform: translateY(-5px);
}

.entreprise-content .service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.entreprise-content .service-card h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin: 15px 0 10px 0;
}

.entreprise-content .service-card p {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* SIDEBAR */
.entreprise-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.entreprise-sidebar .sidebar-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 2px solid #F9F3EB;
}

.entreprise-sidebar .sidebar-box h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #FD5A2B;
}

.contact-box {
    background: linear-gradient(135deg, #FD5A2B 0%, #ff7a50 100%);
    color: white;
    border: none;
}

.contact-box h3 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.contact-item {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-size: 0.85rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
}

.contact-value.phone {
    font-size: 1.4rem;
}

.btn-devis {
    display: block;
    text-align: center;
    background: white;
    color: #FD5A2B;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-devis:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.horaires-content {
    color: #555;
    line-height: 1.8;
}

.horaires-content p {
    margin: 5px 0;
}

.garanties-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.garanties-list li {
    padding: 10px 0;
    border-bottom: 1px solid #F9F3EB;
    color: #555;
}

.garanties-list li:last-child {
    border-bottom: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .entreprise-content .content-grid {
        grid-template-columns: 1fr;
    }
    
    .entreprise-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .entreprise-title h1 {
        font-size: 2rem;
    }
    
    .quick-info-grid {
        grid-template-columns: 1fr;
    }
    
    .departements-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ENCART EXPERT LOCAL (Département & Ville)
   ============================================ */

.expert-local-section {
    background: white;
    margin: 60px 0;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.expert-local-header {
    text-align: center;
    margin-bottom: 40px;
}

.expert-local-header h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin: 0 0 10px 0;
}

.expert-local-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin: 0;
}

.expert-local-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.expert-logo {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    background: #F9F3EB;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expert-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.expert-info {
    flex: 1;
}

.expert-nom {
    color: #2c3e50;
    font-size: 1.8rem;
    margin: 0 0 15px 0;
}

.expert-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.expert-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.expert-tel,
.expert-email,
.expert-adresse {
    color: #555;
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.expert-tel {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FD5A2B;
}

.expert-tel:hover {
    color: #e54923;
}

.expert-email:hover {
    color: #FD5A2B;
}

.expert-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-expert-devis {
    background: #FD5A2B;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(253, 90, 43, 0.3);
}

.btn-expert-devis:hover {
    background: #e54923;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(253, 90, 43, 0.4);
}

.btn-expert-info {
    background: white;
    color: #FD5A2B;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #FD5A2B;
    transition: all 0.3s ease;
}

.btn-expert-info:hover {
    background: #FD5A2B;
    color: white;
    transform: translateY(-3px);
}

/* RESPONSIVE EXPERT LOCAL */
@media (max-width: 768px) {
    .expert-local-section {
        padding: 30px 20px;
    }
    
    .expert-local-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .expert-logo {
        width: 120px;
        height: 120px;
    }
    
    .expert-contact {
        align-items: center;
    }
    
    .expert-actions {
        justify-content: center;
    }
    
    .expert-nom {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .expert-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-expert-devis,
    .btn-expert-info {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   CONTENU SEO DÉPARTEMENT
   ============================================ */

.departement-content-seo {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.departement-content-seo .content-section {
    background: white;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.departement-content-seo .content-section h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin: 0 0 25px 0;
    padding-bottom: 20px;
    border-bottom: 3px solid #FD5A2B;
}

.departement-content-seo .content-section h3 {
    color: #2c3e50;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
}

.departement-content-seo .content-section h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin: 10px 0;
}

.departement-content-seo .content-section p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.departement-content-seo .content-section p strong {
    color: #FD5A2B;
    font-weight: 600;
}

/* Grille avantages */
.avantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.avantage-item {
    background: #F9F3EB;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.avantage-item:hover {
    transform: translateY(-5px);
    border-color: #FD5A2B;
    box-shadow: 0 8px 25px rgba(253, 90, 43, 0.15);
}

.avantage-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.avantage-item h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin: 10px 0;
}

.avantage-item p {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin: 0;
}

/* Villes principales */
.villes-principales-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.ville-principale-card {
    background: linear-gradient(135deg, #FD5A2B 0%, #ff7a50 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.ville-principale-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(253, 90, 43, 0.3);
}

.ville-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.ville-principale-card h4 {
    color: white;
    font-size: 1.2rem;
    margin: 10px 0 5px 0;
}

.ville-principale-card p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin: 0;
}

/* Grille tarifs */
.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.tarif-card {
    background: white;
    border: 2px solid #F9F3EB;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.tarif-card:hover {
    border-color: #FD5A2B;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(253, 90, 43, 0.15);
}

.tarif-card.featured {
    background: linear-gradient(135deg, #FD5A2B 0%, #ff7a50 100%);
    border-color: #FD5A2B;
}

.tarif-card.featured .tarif-type,
.tarif-card.featured .tarif-surface,
.tarif-card.featured .tarif-prix {
    color: white;
}

.tarif-type {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.tarif-surface {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.tarif-card.featured .tarif-surface {
    border-bottom-color: rgba(255,255,255,0.3);
}

.tarif-prix {
    font-size: 2rem;
    font-weight: 700;
    color: #FD5A2B;
}

.tarif-card.featured .tarif-prix {
    color: white;
}

.tarif-note {
    background: #F9F3EB;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #FD5A2B;
    margin-top: 30px;
    font-size: 1.05rem;
}

/* Section spécifiques */
.intro-section {
    background: linear-gradient(135deg, rgba(253, 90, 43, 0.05) 0%, rgba(249, 243, 235, 0.5) 100%);
    border-left: 5px solid #FD5A2B;
}

.pourquoi-section {
    background: white;
}

.villes-touchees-section {
    background: #F9F3EB;
}

.tarifs-section {
    background: white;
}

/* Responsive */
@media (max-width: 768px) {
    .departement-content-seo .content-section {
        padding: 25px 20px;
    }
    
    .departement-content-seo .content-section h2 {
        font-size: 1.6rem;
    }
    
    .departement-content-seo .content-section h3 {
        font-size: 1.3rem;
    }
    
    .avantages-grid,
    .villes-principales-grid,
    .tarifs-grid {
        grid-template-columns: 1fr;
    }
    
    .tarif-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .departement-content-seo {
        margin: 40px auto;
    }
    
    .departement-content-seo .content-section {
        margin-bottom: 25px;
    }
}
