@charset "utf-8";
/* ==========================================================================
   AXEO SERVICES AVIGNON - CHARTE GRAPHIQUE ET STYLES GLOBAUX
   ========================================================================== */

/* --- 1. VARIABLES (Couleurs Officielles) --- */
:root { 
    --primary: #002e5d;      /* Bleu Foncé AXEO */
    --orange: #f39200;       /* Orange AXEO */
    --blue-light: #009ee2;   /* Bleu Clair (Vitres / Auto) */
    --green: #7cbf46;        /* Vert (Jardinage) */
    --pink: #d60b52;         /* Rose (Garde d'enfants) */
    --brown: #8d6e63;        /* Marron (Bricolage) */
    --grey-pro: #58595b;     /* Gris (Maintenance Pro) */
    --dark-pro: #222222;     /* Noir Footer */
    --text: #333333;         /* Texte standard */
    --light-bg: #fdfdfd;     /* Fond très clair */
    --white: #ffffff; 
}

/* --- 2. BASES ET RÉINITIALISATION --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; color: var(--text); line-height: 1.6; background-color: var(--light-bg); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* --- 3. TYPOGRAPHIE GLOBALE --- */
h1, h2, h3 { color: var(--primary); font-weight: bold; }
h1 { font-size: clamp(2rem, 5vw, 4rem); margin-bottom: 20px; line-height: 1.2; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 15px; text-transform: uppercase; }
h3 { font-size: 1.5rem; margin-bottom: 10px; }
p { margin-bottom: 15px; color: #555; }

/* =========================================
   BLOC MAILLAGE INTERNE (CROSS-SELLING)
   ========================================= */
.cross-selling-section { padding: 60px 0; background-color: var(--light-bg); text-align: center; border-top: 1px solid #eee; }
.cross-selling-title { font-size: 1.8rem; color: var(--primary); margin-bottom: 30px; font-weight: 800; text-transform: uppercase; }

.cs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; max-width: 1000px; margin: 0 auto; }
.cs-card { background: white; padding: 25px; border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: 0.3s; text-decoration: none; color: inherit; display: flex; flex-direction: column; align-items: center; border: 2px solid transparent; }
.cs-card:hover { transform: translateY(-5px); border-color: var(--orange); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }

.cs-icon { font-size: 2.5rem; color: var(--orange); margin-bottom: 15px; }
.cs-card h4 { font-size: 1.2rem; margin-bottom: 10px; color: var(--primary); }
.cs-card p { font-size: 0.9rem; color: #666; margin: 0; }

/* ==========================================================================
   BOUCLIER COULEURS ABSOLU : Protège TOUS les textes sur fonds sombres 
   ========================================================================== */
.hero h1, .hero-service h1, .hero-content h1, .hero-hub h1, .agency-hero h1, .hero-contact h1,
.hero p, .hero-service p, .hero-content p, .hero-hub p, .agency-hero p, .hero-contact p,
.hero span, .hero-service span, .hero-content span, .hero-hub span { 
    color: #ffffff !important; 
    text-shadow: 0 2px 15px rgba(0,0,0,0.7) !important; 
}
.hero .btn, .hero-service .btn, .hero-content .btn, .hero-hub .btn { text-shadow: none !important; }
.choice-card h2, .choice-card p { color: var(--white) !important; text-shadow: none !important; }

/* --- 4. STRUCTURE GLOBALE --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }
.text-center { text-align: center; }
.section-padding { padding: 80px 0; }

/* --- 5. BOUTONS GLOBAUX --- */
.btn { display: inline-block; padding: 12px 30px; border-radius: 50px; font-weight: bold; text-transform: uppercase; font-size: 0.9rem; cursor: pointer; transition: all 0.3s; border: none; text-align: center; }
.btn-orange { background: var(--orange); color: var(--white); box-shadow: 0 4px 15px rgba(243, 146, 0, 0.3); }
.btn-orange:hover { background: #d68100; transform: translateY(-2px); color: white !important; }
.btn-outline { border: 2px solid var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--primary) !important; }

/* --- 6. FIX ANTI-CHEVAUCHEMENT --- */
.hero-content { display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: center !important; gap: 20px !important; padding: 40px 20px !important; }
.hero-content h1, .hero-content p { margin: 0 !important; }
.hero-content .hero-btns, .hero-content .btn { margin-top: 10px !important; position: relative !important; z-index: 10; }

/* --- 7. EN-TÊTE ET MENU DÉROULANT --- */
header#mainHeader { position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(255, 255, 255, 0.98); box-shadow: 0 2px 15px rgba(0,0,0,0.1); padding: 0; transition: all 0.3s ease; }
.header-wrap { display: flex; justify-content: space-between; align-items: center; padding: 10px 20px; }
.logo img { height: 55px; transition: filter 0.3s; }
.nav-links { display: flex; gap: 5px; align-items: center; }
.nav-item { position: relative; padding: 15px 10px; }
.nav-item > a, .desktop-link { font-weight: 700; text-transform: uppercase; font-size: 0.9rem; color: var(--text); display: flex; align-items: center; gap: 5px; cursor: pointer; }
.nav-item:hover > a { color: var(--orange); }

.dropdown { position: absolute; top: 100%; left: 0; background: white; min-width: 240px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-top: 3px solid var(--orange); opacity: 0; visibility: hidden; transform: translateY(10px); transition: 0.3s; display: flex; flex-direction: column; padding: 10px 0; border-radius: 0 0 5px 5px; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { padding: 12px 20px; font-size: 0.9rem; color: #555; border-bottom: 1px solid #f5f5f5; font-weight: normal; text-transform: none; }
.dropdown a:hover { background: #f9f9f9; color: var(--orange); padding-left: 25px; }

.arrow-down { border: solid #999; border-width: 0 2px 2px 0; display: inline-block; padding: 3px; transform: rotate(45deg); margin-bottom: 2px; transition: 0.3s; }
.nav-item:hover .arrow-down { border-color: var(--orange); transform: rotate(225deg); margin-bottom: -2px; }

.btn-call { background: var(--primary); color: white !important; padding: 10px 25px; border-radius: 30px; margin-left: 15px; font-weight: bold; }
.btn-call:hover { background: var(--orange); }

.hamburger { display: none; cursor: pointer; }
.hamburger span { display: block; width: 30px; height: 3px; background: var(--primary); margin: 6px 0; transition: 0.4s; }
.mobile-only-link, .mobile-link { display: none !important; }

/* --- 8. PIED DE PAGE ET ANIMATIONS --- */
footer { background: #222; color: #aaa; padding: 40px 0; text-align: center; font-size: 0.9rem; position: relative; z-index: 2; }
.legal-block { margin-top: 40px; padding-top: 20px; border-top: 1px solid #444; text-align: left; font-size: 0.8rem; line-height: 1.5; color: #888; }
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- 9. BOUTON D'APPEL FLOTTANT --- */
.floating-call { display: none; position: fixed; bottom: 20px; right: 20px; background: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(0,0,0,0.3); z-index: 1500; font-size: 1.5rem; animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

/* ==========================================================================
   10. RESPONSIVE DESIGN (MOBILES ET TABLETTES)
   ========================================================================== */
@media (max-width: 1100px) {
    p { font-size: 0.95rem; }
    header#mainHeader.transparent-top { background: transparent; box-shadow: none; padding-top: 15px; }
    header#mainHeader.transparent-top .hamburger span { background: white; box-shadow: 0 1px 3px rgba(0,0,0,0.5); }
    header#mainHeader.transparent-top .logo img { filter: drop-shadow(0px 2px 5px rgba(0,0,0,0.5)); }
    .hamburger { display: block; z-index: 1001; }
    .desktop-link { display: none !important; }
    .mobile-link { display: flex !important; }
    .mobile-only-link { display: block !important; border-bottom: 2px solid var(--orange) !important; color: var(--primary) !important; font-weight: bold; }
    .nav-links { position: fixed; top: 0; right: -120%; width: 280px; height: 100vh; background: white; flex-direction: column; align-items: flex-start; padding: 90px 20px 20px; box-shadow: -5px 0 20px rgba(0,0,0,0.2); transition: right 0.4s ease; overflow-y: auto; display: flex; }
    .nav-links.active { right: 0; }
    .nav-item { width: 100%; padding: 0; }
    .nav-item > a, .nav-item > .mobile-link { padding: 15px 20px; width: 100%; justify-content: space-between; border-bottom: 1px solid #eee; color: var(--text) !important; font-weight: bold; font-size: 1rem; text-shadow: none !important; }
    .nav-item.open > .mobile-link { color: var(--orange) !important; }
    .nav-item.open .arrow-down { border-color: var(--orange); transform: rotate(225deg); margin-bottom: -2px; }
    .dropdown { position: static; box-shadow: none; border-top: none; display: none; background: #f9f9f9; width: 100%; opacity: 1; visibility: visible; transform: none; padding: 0; margin-bottom: 10px; }
    .nav-item.open .dropdown { display: flex; }
    .dropdown a { color: #555 !important; padding: 12px 20px; border-bottom: 1px solid #eee; }
    .btn-call { margin: 20px; width: calc(100% - 40px); text-align: center; justify-content: center; }
    .floating-call { display: flex; }
} 

/* ========================================= */
/* SECTION F.A.Q (Design Premium)            */
/* ========================================= */
.faq-section { padding: 80px 0; background: var(--white); }
.faq-container { max-width: 850px; margin: 0 auto; text-align: left !important; }
.faq-item { border-bottom: 1px solid #ddd; transition: all 0.3s ease; }
.faq-item:first-child { border-top: 1px solid #ddd; }
.faq-item details { width: 100%; }

.faq-item summary {
    list-style: none; 
    padding: 25px 20px;
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--primary); 
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    background: transparent;
    user-select: none;
}

details summary { list-style-type: none; position: relative; cursor: pointer; padding-right: 40px; }
details summary::-webkit-details-marker { display: none; }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { background: rgba(243, 146, 0, 0.03); color: var(--orange); }

.faq-item summary::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--orange);
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(243, 146, 0, 0.1);
    transition: transform 0.3s ease, background 0.3s;
    line-height: 1;
    flex-shrink: 0;
    margin-left: 20px;
    position: static;
    transform: none;
}

.faq-item details[open] summary { color: var(--orange); padding-bottom: 15px; }
.faq-item details[open] summary::after { content: '−'; transform: rotate(180deg); background: var(--orange); color: white; }

.faq-answer { padding: 0 20px 30px 20px; color: #444; line-height: 1.8; font-size: 1rem; text-align: left; animation: slideDownFAQ 0.4s ease-out forwards; margin-top:0; border-top:none; }
@keyframes slideDownFAQ { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 768px) {
    .faq-item summary { font-size: 1.05rem; padding: 20px 10px; }
    .faq-item summary::after { width: 35px; height: 35px; font-size: 1.5rem; }
    .faq-answer { padding: 0 10px 25px 10px; font-size: 0.95rem; }
}

/* --- BLOC AVANTAGES AXEO --- */
.advantages-section { padding: 80px 0; background: var(--white); }
.advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.adv-card { background: var(--light-bg); padding: 30px 20px; border-radius: 10px; text-align: center; border-bottom: 4px solid var(--orange); transition: 0.3s; }
.adv-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.adv-icon { font-size: 2.5rem; margin-bottom: 15px; display: block; }
.adv-card h4 { color: var(--primary); margin-bottom: 10px; font-size: 1.1rem; }
.adv-card p { font-size: 0.9rem; color: #666; margin: 0; }

.guarantee-banner { background: var(--primary); color: white; border-radius: 15px; padding: 30px; display: flex; align-items: center; justify-content: space-between; margin-top: 60px; box-shadow: 0 10px 30px rgba(0,46,93,0.2); }
.guarantee-banner h3 { color: var(--orange); font-size: 1.8rem; margin-bottom: 10px; }
.guarantee-banner p { color: white; margin: 0; font-size: 1.1rem; }

@media (max-width: 900px) { 
    .guarantee-banner { flex-direction: column; text-align: center; gap: 20px; } 
}

/* =========================================
   FIL D'ARIANE (BREADCRUMB) FIXE ET ALIGNÉ GAUCHE
   ========================================= */
.breadcrumb { 
    position: fixed !important; 
    top: 75px !important; 
    left: 0 !important; 
    right: 0 !important;
    background: rgba(0, 46, 93, 0.95) !important; 
    backdrop-filter: blur(5px) !important; 
    -webkit-backdrop-filter: blur(5px) !important;
    z-index: 9998 !important; 
    font-size: 0.9rem !important; 
    color: rgba(255,255,255,0.8) !important; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
    box-sizing: border-box !important;
    
    /* Flexbox force l'alignement à gauche de façon absolue */
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important; 

    /* Calcul mathématique exact pour s'aligner sur le "A" de Axeo (1200px/2 - 40px de marges) */
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    padding-left: calc(50% - 560px) !important;
    padding-right: 20px !important;
}

.breadcrumb a { color: white !important; text-decoration: none !important; transition: 0.2s !important; text-shadow: none !important; }
.breadcrumb a:hover { color: var(--orange) !important; }
.breadcrumb span { color: var(--orange) !important; font-weight: bold !important; text-shadow: none !important; }

/* Raccords pour les écrans moyens (Tablettes / Portables) */
@media (max-width: 1200px) {
    .breadcrumb { padding-left: 40px !important; }
}

/* Ajustement pour les Mobiles */
@media (max-width: 1100px) { 
    .breadcrumb { 
        font-size: 0.8rem !important; 
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        padding-left: 20px !important;
        white-space: nowrap !important; 
        overflow-x: auto !important; 
        -webkit-overflow-scrolling: touch !important;
    } 
} /* <--- C'EST CETTE ACCOLADE QUI MANQUAIT ET QUI CASSAIT TOUT ! */

/* =========================================
   ZONES D'INTERVENTION (DESIGN DYNAMIQUE)
   ========================================= */
.dynamic-zones-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
}

/* La partie Carte (Gauche) */
.zone-map-container {
    flex: 1;
    position: sticky;
    top: 100px; 
    background: white;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 500px;
    overflow: hidden;
    border: 2px solid var(--orange);
}
.zone-map-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* L'Accordéon du texte SEO (Droite) */
.zone-accordion-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.zone-acc-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    overflow: hidden;
    border-left: 5px solid var(--primary);
    transition: 0.3s;
}
.zone-acc-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.zone-acc-item summary {
    padding: 20px;
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}
.zone-acc-item summary::-webkit-details-marker { display: none; }
.zone-acc-item summary i { color: var(--orange); font-size: 1.3rem; transition: 0.3s; }

.zone-acc-item details[open] summary i { transform: rotate(180deg); }
.zone-acc-item details[open] summary { border-bottom: 1px solid #eee; }

.zone-acc-content { padding: 20px; background: var(--light-bg); }
.zone-acc-content .city-badge {
    display: inline-block;
    background: white;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #555;
    margin: 5px;
    transition: 0.2s;
}
.zone-acc-content .city-badge:hover {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
}

/* Sur mobile, on empile les deux */
@media (max-width: 900px) {
    .dynamic-zones-wrapper { flex-direction: column; }
    .zone-map-container { position: relative; top: 0; width: 100%; height: 350px; }
}

/* =========================================
   MUR DE COOKIES (BLOCAGE DE NAVIGATION)
   ========================================= */
#cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 46, 93, 0.95); 
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999999; 
    display: none; 
    align-items: center;
    justify-content: center;
}

.cookie-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    color: var(--text);
}

.cookie-box h3 { color: var(--primary); margin-top: 0; font-size: 1.5rem; }

.cookie-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-accept { background: var(--orange); color: white; border: none; padding: 15px 30px; border-radius: 5px; cursor: pointer; font-weight: bold; font-size: 1.1rem; transition: 0.3s; }
.btn-accept:hover { background: #d67d00; }

.btn-refuse { background: var(--grey-pro); color: white; border: none; padding: 15px 30px; border-radius: 5px; cursor: pointer; font-weight: bold; font-size: 1.1rem; transition: 0.3s; }
.btn-refuse:hover { background: #444; }
/* =========================================
   COLONNE DE DEVIS FIXE AU SCROLL
   ========================================= */
.seo-grid aside {
    position: sticky;
    top: 110px;  
    height: fit-content; /* Indispensable pour que le bloc puisse glisser */
    z-index: 10;
}
//* =========================================
   NOUVEAU DESIGN ACCUEIL
   ========================================= */
.home-presentation { padding: 80px 0; background: var(--light-bg); }
.presentation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.main-title { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; line-height: 1.2; text-transform: uppercase; font-weight: 800; }
.main-title .highlight { color: var(--orange); }
.lead-text { font-size: 1.2rem; color: #444; margin-bottom: 20px; font-weight: 500; border-left: 4px solid var(--orange); padding-left: 15px; }
.presentation-text p { font-size: 1.05rem; line-height: 1.7; color: #666; }

.presentation-cards { display: flex; flex-direction: column; gap: 20px; }
.p-card { background: white; padding: 20px; border-radius: 12px; display: flex; align-items: center; gap: 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: 0.3s; border: 1px solid #f0f0f0; }
.p-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); border-color: #e0e0e0; }
.p-card-icon { width: 65px; height: 65px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.8rem; flex-shrink: 0; }
.p-card-content h4 { color: var(--primary); font-size: 1.15rem; margin-bottom: 5px; font-weight: bold; }
.p-card-content p { margin: 0; font-size: 0.95rem; color: #666; line-height: 1.4; }

.home-zones { padding: 0 0 80px 0; background: var(--light-bg); }
.zones-wrapper { background: linear-gradient(135deg, var(--primary), #001a35); border-radius: 20px; padding: 50px; text-align: center; color: white; box-shadow: 0 15px 40px rgba(0, 46, 93, 0.2); position: relative; overflow: hidden; }
.zones-header h3 { color: var(--orange); font-size: 2rem; margin-bottom: 15px; text-transform: uppercase; }
.zones-header p { font-size: 1.1rem; color: #ffffff; opacity: 0.9; margin-bottom: 30px; }

.zones-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 40px; }
.z-badge { background: rgba(255,255,255,0.1); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.2); padding: 10px 20px; border-radius: 50px; font-size: 1rem; font-weight: 500; transition: 0.3s; cursor: default; }
.z-badge:hover { background: var(--orange); border-color: var(--orange); transform: scale(1.05); }

.btn-zone { display: inline-block; background: white; color: var(--primary); padding: 15px 35px; border-radius: 50px; font-weight: bold; text-transform: uppercase; transition: 0.3s; }
.btn-zone:hover { background: var(--orange); color: white; }

@media (max-width: 900px) {
    .presentation-grid { grid-template-columns: 1fr; gap: 40px; }
    .main-title { font-size: 2rem; }
    .zones-wrapper { padding: 30px 20px; }
}