﻿/* ============================================================
   Ã‰PAVISTE DU VAR â€” style.css v1.1
   Palette Camion : Bleu marine, Orange, et nuances de gris
   ============================================================ */

/* --- Variables CSS --- */
:root
{
    /* Palette Camion (Navy Blue & Orange) */
    --sea-blue: #1c3b6b;
    --sea-blue-dark: #11264a;
    --sky-blue: #2b5798;
    --sky-blue-light: #cddcf0;
    --sky-blue-pale: #eef2f8;
    --green-fresh: #e66c24; /* C'est désormais un Orange vif ! */
    --orange: #e66c24;
    --green-fresh-dark: #c45618;
    --green-light: #fae4d7;
    --white: #ffffff;
    --grey-light: #f4f8fb;
    --grey-medium: #dce6ed;
    --text-dark: #1c2e3d;
    --text-muted: #5d7a8c;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.13);
    --radius: 8px;
    --transition: all 0.3s ease;
}

/* --- Reset & Base --- */
*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html
{
    scroll-behavior: smooth;
}

body
{
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    background: var(--white);
    background-color: var(--sea-blue);
}

h1, h2, h3, h4
{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

a
{
    color: var(--sea-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover
{
    color: var(--green-fresh);
}

img
{
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- IcÃ´nes SVG inline --- */
.icon_svg
{
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    fill: currentColor;
}

.icon_svg_lg
{
    width: 2.5rem;
    height: 2.5rem;
}

.icon_svg_md
{
    width: 1.5rem;
    height: 1.5rem;
    vertical-align: -0.2em;
}

/* --- Dimensions contextuelles des SVGs --- */
.hero_badge .icon_svg { width: 1.25em; height: 1.25em; margin-right: 6px; vertical-align: -0.25em; }
.btn_primary .icon_svg, .btn_secondary .icon_svg, .contact_trigger_btn .icon_svg { width: 1.25em; height: 1.25em; margin-right: 8px; vertical-align: -0.2em; }
.nav_cta_phone .icon_svg, .mobile_cta_phone .icon_svg { margin-right: 6px; vertical-align: -0.15em; }
.service_card_icon .icon_svg, .vehicule_icon_svg .icon_svg, .success_icon .icon_svg, .faq_toggle_icon .icon_svg { width: 100%; height: 100%; }
.mobilhome_features li .icon_feature .icon_svg { width: 100%; height: 100%; vertical-align: top; }
.service_card_list li .icon_check .icon_svg { color: var(--green-fresh); }
.zone_villes_list li .icon_svg { width: 14px; height: 14px; flex-shrink: 0; }
.zone_villes_title .icon_svg { width: 1.2em; height: 1.2em; vertical-align: -0.15em; }
.document_link .icon_svg { width: 22px; height: 22px; flex-shrink: 0; }
.footer_col p .icon_svg { width: 1.1em; height: 1.1em; margin-right: 6px; vertical-align: -0.2em; }

/* --- Container utilitaire --- */
.site_container
{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site_nav
{
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #0d4f6bd1, #1c3b6bab);
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
}

.nav_inner
{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav_logo
{
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav_logo img
{
    height: 45px;
    display: block;
}

.nav_logo_text
{
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Menu desktop */
.nav_menu
{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav_menu li a
{
    color: var(--white);
    padding: 8px 14px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    transition: var(--transition);
    border-radius: var(--radius);
}

.nav_menu li a:hover
{
    background: rgba(255, 255, 255, 0.12);
    color: var(--sky-blue-light);
}

/* Ã‰lÃ©ment mentions lÃ©gales masquÃ© en desktop */
.nav_legal_item
{
    display: none !important;
}

/* CTA tÃ©lÃ©phone dans la nav */
.nav_cta_phone
{
    background: var(--green-fresh) !important;
    color: var(--white) !important;
    border-radius: var(--radius) !important;
    padding: 10px 20px !important;
    font-weight: 700 !important;
}

.nav_cta_phone:hover
{
    background: var(--green-fresh-dark) !important;
}

/* Burger menu */
.nav_burger
{
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    flex-direction: column;
    gap: 5px;
}

.nav_burger span
{
    display: block;
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* Menu mobile overlay */
.nav_mobile_overlay
{
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    height: calc(100vh - 70px);
    background: linear-gradient(180deg, #0d4f6b, var(--sea-blue-dark));
    z-index: 999;
    padding: 30px 20px 20px;
    overflow-y: auto;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(28, 59, 107, 0.92), rgba(17, 38, 74, 0.95)), url(../img/hero.png) center / cover no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.nav_mobile_overlay.active
{
    display: flex;
}

.nav_mobile_overlay ul
{
    list-style: none;
}

.nav_mobile_overlay ul li
{
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav_mobile_overlay ul li a
{
    color: var(--white);
    display: block;
    padding: 14px 0;
    font-size: 1.05rem;
    font-weight: 600;
}

.nav_mobile_overlay ul li a:hover
{
    color: var(--sky-blue-light);
}

/* CTA mobile */
.mobile_cta_container
{
    margin-top: 25px;
    text-align: center;
}

.mobile_cta_phone,
.mobile_cta_whatsapp
{
    display: block;
    padding: 14px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
    margin-bottom: 10px;
}

.mobile_cta_phone
{
    background: var(--green-fresh);
    color: var(--white);
}

.mobile_cta_whatsapp
{
    background: #25D366;
    color: var(--white);
}

/* Footer mobile (credits + mentions) */
.mobile_footer
{
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.mobile_legal_link
{
    display: inline-block;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    margin-bottom: 6px;
}

.mobile_credit
{
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
}

.mobile_credit a
{
    color: var(--sky-blue-light);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero_section
{
    position: relative;
    background: linear-gradient(135deg, rgba(28, 59, 107, 0.9), rgba(28, 59, 107, 0.78)), url('../img/hero.png') center/cover no-repeat;
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-position: center;
    background-attachment: fixed;
}

.hero_content
{
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero_badge
{
    display: inline-block;
    background: var(--green-fresh);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero_title
{
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero_title span
{
    color: var(--sky-blue-light);
}

.hero_subtitle
{
    font-size: 1.15rem;
    opacity: 0.92;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero_cta_container
{
    margin-top: 20px;
}

.btn_primary,
.btn_secondary
{
    display: inline-block;
    padding: 16px 35px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    margin: 8px;
    text-align: center;
}

.btn_primary
{
    background: var(--green-fresh);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.35);
}

.btn_primary:hover
{
    background: var(--green-fresh-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.45);
}

.btn_secondary
{
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn_secondary:hover
{
    background: var(--white);
    color: var(--sea-blue);
    transform: translateY(-2px);
}

/* Bandeau chiffres clÃ©s */
.hero_stats_bar
{
    margin-top: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.stat_item
{
    text-align: center;
    padding: 10px 20px;
}

.stat_number
{
    font-size: 2rem;
    font-weight: 800;
    color: var(--sky-blue-light);
    display: block;
    font-family: 'Montserrat', sans-serif;
}

.stat_label
{
    font-size: 0.8rem;
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   SECTIONS â€” GÃ©nÃ©riques
   ============================================================ */
.section_block
{
    padding: 80px 0;
    background-color: var(--white);
}

.section_block_alt
{
    padding: 80px 0;
    background: var(--grey-light);
}

.section_header
{
    text-align: center;
    margin-bottom: 60px;
}

.section_title
{
    font-size: 2.2rem;
    color: var(--sea-blue);
    margin-bottom: 15px;
}

.section_title span
{
    color: var(--green-fresh);
}

.section_subtitle
{
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services_grid
{
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.service_card
{
    flex: 1 1 300px;
    max-width: 370px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service_card:hover
{
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service_card_featured
{
    border: 2px solid var(--green-fresh);
    position: relative;
}

.service_card_featured_badge
{
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--green-fresh);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.service_card_img
{
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: bottom;
}

.service_card_body
{
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service_card_body .btn_primary
{
    margin-top: auto;
}

.service_card_icon
{
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    color: var(--sea-blue);
}

.service_card_title
{
    font-size: 1.25rem;
    color: var(--sea-blue);
    margin-bottom: 10px;
}

.service_card_text
{
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.service_card_list
{
    list-style: none;
    margin-bottom: 20px;
}

.service_card_list li
{
    padding: 4px 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service_card_list li .icon_check
{
    color: var(--green-fresh);
    flex-shrink: 0;
}

/* ============================================================
   VÃ‰HICULES (Grille types)
   ============================================================ */
.vehicules_grid
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 36em;
    margin: auto;
}

.vehicule_item
{
    width: 130px;
    text-align: center;
    padding: 18px 10px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.vehicule_item:hover
{
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--sky-blue);
}

.vehicule_icon_svg
{
    width: 42px;
    height: 42px;
    margin: 0 auto 8px;
    color: var(--sea-blue);
}

.vehicule_name
{
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================================
   MOBILHOME â€” Section spÃ©ciale
   ============================================================ */
/* Styles mutualisÃ©s Mobilehome & Zone d'intervention */
.mobilhome_section,
.zone_section
{
    padding: 80px 0;
    color: var(--white);
    background: linear-gradient(135deg, rgba(28, 59, 107, 0.92), rgba(17, 38, 74, 0.95)), url(../img/hero.png) center / cover no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.zone_section .section_title,
.zone_section .section_subtitle
{
    color: var(--white);
}

.zone_section .section_title span
{
    color: var(--green-fresh); /* Orange */
}

/* Zone d'intervention spÃ©cifique */
.zone_content
{
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.zone_map_wrapper
{
    flex: 1 1 55%;
    min-width: 300px;
}

.zone_villes_wrapper
{
    flex: 1 1 38%;
    min-width: 250px;
}

.zone_villes_title
{
    color: var(--green-fresh); /* Orange */
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
}

.zone_villes_list
{
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.zone_villes_list li
{
    color: var(--white);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
}

.zone_villes_list li .icon_svg
{
    width: 14px;
    height: 14px;
    fill: var(--green-fresh);
    flex-shrink: 0;
}

.zone_plus_city
{
    grid-column: 1 / -1;
    font-weight: 700;
    color: var(--green-fresh) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 15px;
    padding-top: 15px !important;
}

.mobilhome_inner
{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.mobilhome_text
{
    flex: 1 1 50%;
}

.mobilhome_img_wrapper
{
    flex: 1 1 45%;
}

.mobilhome_img_wrapper img
{
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.mobilhome_title
{
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.mobilhome_title span
{
    color: var(--sky-blue-light);
}

.mobilhome_description
{
    font-size: 1.05rem;
    opacity: 0.92;
    margin-bottom: 25px;
    line-height: 1.8;
}

.mobilhome_features
{
    list-style: none;
    margin-bottom: 25px;
}

.mobilhome_features li
{
    padding: 7px 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobilhome_features li .icon_feature
{
    color: var(--sky-blue-light);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

/* ============================================================
   PROCÃ‰DURE
   ============================================================ */
.procedure_steps
{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 950px;
    margin: 0 auto;
}

.procedure_step
{
    flex: 1 1 200px;
    max-width: 220px;
    text-align: center;
    padding: 25px 15px;
}

.step_number
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--green-fresh);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.step_title
{
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--sea-blue);
    margin-bottom: 8px;
}

.step_text
{
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Liens documents officiels */
.documents_links
{
    text-align: center;
    margin-top: 40px;
}

.documents_intro
{
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-style: italic;
}

.document_link
{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    margin: 5px;
    background: var(--sea-blue);
    color: var(--white);
    border-radius: var(--radius);
    transition: var(--transition);
    text-align: left;
}

.document_link:hover
{
    background: var(--green-fresh);
    color: var(--white);
    transform: translateY(-2px);
}

.doc_link_texts
{
    display: flex;
    flex-direction: column;
}

.doc_link_title
{
    font-weight: 700;
    font-size: 1rem;
}

.doc_link_desc
{
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.85;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq_list
{
    max-width: 800px;
    margin: 0 auto;
}

.faq_item
{
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq_question
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 22px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--sea-blue);
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    transition: var(--transition);
}

.faq_question:hover
{
    color: var(--green-fresh);
}

.faq_toggle_icon
{
    width: 20px;
    height: 20px;
    fill: var(--green-fresh);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq_item.active .faq_toggle_icon
{
    transform: rotate(45deg);
}

.faq_answer
{
    display: none;
    padding: 0 22px 18px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq_item.active .faq_answer
{
    display: block;
}

/* ============================================================
   CONTACT / FORMULAIRE
   ============================================================ */
.contact_section
{
    padding: 80px 0;
    background: linear-gradient(135deg, #0d4f6b, var(--sea-blue));
    color: var(--white);
    text-align: center;
    background: linear-gradient(135deg, rgba(28, 59, 107, 0.9), rgb(28 59 107 / 98%)), url(../img/hero.png) center / cover no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.contact_section .section_title
{
    color: var(--white);
}

.contact_section .section_subtitle
{
    color: rgba(255, 255, 255, 0.8);
}

/* Bouton dÃ©clencheur anti-bot */
.contact_trigger_wrapper
{
    margin-top: 30px;
    background: linear-gradient(135deg, rgba(28, 59, 107, 0.9), rgb(28 59 107 / 98%)), url(../img/hero.png) center / cover no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.contact_trigger_btn
{
    display: inline-block;
    padding: 20px 45px;
    background: var(--green-fresh);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1.15rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.35);
}

.contact_trigger_btn:hover
{
    background: var(--green-fresh-dark);
    transform: translateY(-2px);
}

/* Tabs formulaire */
.form_tabs
{
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.form_tab_btn
{
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Open Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form_tab_btn:hover
{
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
}

.form_tab_btn.active
{
    background: var(--green-fresh);
    color: var(--white);
    border-color: var(--green-fresh);
}

.form_tab_btn svg
{
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Container du formulaire injectÃ© */
.contact_form_container
{
    max-width: 650px;
    margin: 0 auto;
    text-align: left;
}

.contact_form_container label
{
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.88);
    margin-top: 16px;
}

.contact_form_container input[type='text'],
.contact_form_container input[type='tel'],
.contact_form_container input[type='email'],
.contact_form_container select,
.contact_form_container textarea
{
    width: 100%;
    padding: 13px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.98rem;
    transition: var(--transition);
}

.contact_form_container input.error_field,
.contact_form_container select.error_field,
.contact_form_container textarea.error_field,
.contact_form_container input:invalid:focus,
.contact_form_container textarea:invalid:focus
{
    border-color: #ff4d4d !important;
    border-width: 2px !important;
    background: rgba(255, 77, 77, 0.05) !important;
}

/* Fallback global pour tout champ explicitement marqué en erreur par le JS */
.error_field {
    border-color: #ff4d4d !important;
    border-width: 2px !important;
}

.contact_form_container input::placeholder,
.contact_form_container textarea::placeholder
{
    color: rgba(255, 255, 255, 0.45);
}

.contact_form_container input:focus,
.contact_form_container select:focus,
.contact_form_container textarea:focus
{
    outline: none;
    border-color: var(--sky-blue);
    background: rgba(255, 255, 255, 0.15);
}

.contact_form_container select option
{
    background: var(--sea-blue-dark);
    color: var(--white);
}

/* Champs conditionnels du formulaire */
.form_field_group
{
    display: none;
}

.form_field_group.active
{
    display: block;
}

/* Autocomplete Google */
.pac-container
{
    z-index: 10000 !important;
}

.contact_submit_btn
{
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--green-fresh);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    margin-top: 22px;
    transition: var(--transition);
}

.contact_submit_btn:hover
{
    background: var(--green-fresh-dark);
}

.contact_submit_btn:disabled
{
    opacity: 0.55;
    cursor: not-allowed;
}

/* Feedback succÃ¨s */
.contact_success_message
{
    text-align: center;
    padding: 40px;
}

.contact_success_message .success_icon
{
    width: 60px;
    height: 60px;
    color: var(--green-fresh);
    margin: 0 auto 15px;
}

.contact_success_message h3
{
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--white);
}

.contact_success_message p
{
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.contact_retry_btn
{
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
}

.contact_retry_btn:hover
{
    background: var(--white);
    color: var(--sea-blue);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site_footer
{
    background: #0a2e3d;
    color: rgba(255, 255, 255, 0.65);
    padding: 50px 0 20px;
}

.footer_inner
{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer_col
{
    flex: 1 1 250px;
    margin-bottom: 25px;
}

.footer_col_title
{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.footer_col p,
.footer_col a
{
    font-size: 0.88rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
}

.footer_col a:hover
{
    color: var(--sky-blue-light);
}

.footer_links
{
    list-style: none;
}

.footer_links li
{
    padding: 2px 0;
}

.footer_links li a
{
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
}

.footer_bottom
{
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
    margin-top: 15px;
    text-align: center;
    font-size: 0.82rem;
}

.footer_credit_link
{
    color: var(--sky-blue-light) !important;
    font-weight: 600;
}

/* ============================================================
   BOUTONS FLOTTANTS (Mobile)
   ============================================================ */
.floating_call_btn
{
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 998;
    width: 56px;
    height: 56px;
    background: var(--green-fresh);
    border-radius: 50%;
    text-align: center;
    line-height: 56px;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
    transition: var(--transition);
    text-decoration: none;
}

.floating_call_btn:hover
{
    transform: scale(1.1);
    color: var(--white);
}

.floating_call_btn svg
{
    width: 24px;
    height: 24px;
    fill: var(--white);
    vertical-align: middle;
}

.floating_whatsapp_btn
{
    display: none;
    position: fixed;
    bottom: 85px;
    right: 20px;
    z-index: 998;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    text-align: center;
    line-height: 56px;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
    text-decoration: none;
}

.floating_whatsapp_btn:hover
{
    transform: scale(1.1);
    color: var(--white);
}

.floating_whatsapp_btn svg
{
    width: 24px;
    height: 24px;
    fill: var(--white);
    vertical-align: middle;
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.consent_banner
{
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0a2e3d;
    color: var(--white);
    padding: 18px 20px;
    z-index: 9999;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
}

.consent_inner
{
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.consent_text
{
    font-size: 0.88rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.consent_btn_accept,
.consent_btn_refuse
{
    display: inline-block;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.88rem;
    margin: 0 4px;
    transition: var(--transition);
    font-family: 'Open Sans', sans-serif;
}

.consent_btn_accept
{
    background: var(--green-fresh);
    color: var(--white);
}

.consent_btn_refuse
{
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal_element
{
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal_element.revealed
{
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE â€” Tablette (< 1024px)
   ============================================================ */
@media (max-width: 1024px)
{
    .mobilhome_inner
    {
        flex-direction: column;
    }

    .zone_content
    {
        flex-direction: column;
        gap: 20px;
    }

    .zone_map_wrapper,
    .zone_villes_wrapper
    {
        width: 100%;
        flex: 1 1 100%;
    }

    .procedure_step
    {
        flex: 1 1 45%;
    }
}

/* ============================================================
   RESPONSIVE â€” Mobile (< 768px)
   ============================================================ */
@media (max-width: 768px)
{
    .nav_menu
    {
        display: none;
    }

    .nav_burger
    {
        display: flex;
    }

    .hero_title
    {
        font-size: 1.8rem;
    }

    .hero_subtitle
    {
        font-size: 0.98rem;
    }

    .hero_section
    {
        padding: 60px 0 45px;
        min-height: auto;
    }

    .stat_number
    {
        font-size: 1.5rem;
    }

    .section_title
    {
        font-size: 1.55rem;
    }

    .vehicule_item
    {
        width: 105px;
    }

    .procedure_step
    {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .zone_villes_list
    {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px;
    }

    .btn_primary,
    .btn_secondary
    {
        display: block;
        width: 100%;
        margin: 8px 0;
    }

    .floating_call_btn,
    .floating_whatsapp_btn
    {
        display: block;
    }

    .mobilhome_title
    {
        font-size: 1.45rem;
    }

    .section_block,
    .section_block_alt
    {
        padding: 50px 0;
    }

    .form_tabs
    {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ============================================================
   BOUTONS ACTIVITÃ‰ (Contact)
   ============================================================ */
.contact_trigger_wrapper
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.contact_activity_btn
{
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--white);
    border: 2px solid var(--sky-blue);
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--sea-blue);
    cursor: pointer;
    transition: var(--transition);
}

.contact_activity_btn:hover
{
    background: var(--sea-blue);
    color: var(--white);
    border-color: var(--sea-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.contact_activity_btn .icon_svg
{
    width: 20px;
    height: 20px;
}

/* Liens dans les villes */
.zone_villes_list a
{
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.zone_villes_list a:hover {
    color: white !important;
    text-decoration: underline;
}

.zone_villes_list a:hover
{
    color: var(--sea-blue);
}

/* ============================================================
   RESPONSIVE â€” 4K (>= 2560px)
   ============================================================ */
@media (min-width: 2560px)
{
    .site_container
    {
        max-width: 1600px;
    }

    html
    {
        font-size: 18px;
    }

    .hero_title
    {
        font-size: 3.5rem;
    }

    .hero_subtitle
    {
        font-size: 1.4rem;
    }

    .section_title
    {
        font-size: 2.4rem;
    }

    .vehicule_item
    {
        width: 160px;
        padding: 24px 14px;
    }

    .vehicule_icon_svg
    {
        width: 56px;
        height: 56px;
    }

    .procedure_step
    {
        padding: 35px;
    }

    .step_number
    {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    .btn_primary,
    .btn_secondary
    {
        padding: 16px 36px;
        font-size: 1.1rem;
    }

    #map_intervention
    {
        height: 550px !important;
    }
}

/* ============================================================
   MENTIONS LÉGALES
   ============================================================ */
.legal_body
{
    background-color: #f8fbfd;
}

.legal_content
{
    max-width: 900px;
    margin: -20px auto 60px;
    padding: 50px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.legal_content h1
{
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 30px;
    border-bottom: 3px solid var(--orange);
    padding-bottom: 10px;
    display: block;
}

.legal_content h2
{
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--orange) !important;
    margin-top: 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal_content p,
.legal_content li
{
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.legal_content a
{
    color: var(--sea-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.legal_content a:hover
{
    color: var(--orange);
}

.legal_back_link
{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    color: var(--sea-blue);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.legal_back_link:hover
{
    transform: translateX(-5px);
    color: var(--orange);
}

@media (max-width: 768px)
{
    .legal_content
    {
        padding: 30px 20px;
        margin-top: 100px;
        border-radius: 0;
    }

    .legal_content h1
    {
        font-size: 1.8rem;
    }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.consent_banner
{
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--sea-blue-dark);
    color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 9999;
    display: none; /* Piloté par JS */
}

.consent_inner
{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.consent_text
{
    font-size: 0.95rem;
    margin: 0;
}

.consent_text a
{
    color: var(--sky-blue-light);
    text-decoration: underline;
}

.consent_btn_accept
{
    background: var(--orange);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.consent_btn_refuse
{
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.consent_btn_accept:hover { background: var(--green-fresh-dark); }
.consent_btn_refuse:hover { background: rgba(255,255,255,0.1); }

@media (max-width: 768px)
{
    .consent_inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   UTILITIES & FOOTER TWEAKS
   ============================================================ */
.footer_contact_list { margin-top: 10px; }
.footer_dispo_title { margin-top: 18px; }
.procedure_cta_wrap { text-align: center; margin-top: 30px; }
.btn_centered { display: inline-flex; margin-top: 15px; }
.faq_highlight_link { color: var(--orange); font-weight: 700; text-decoration: underline; }
.faq_info_link { color: var(--sea-blue); font-weight: 700; text-decoration: underline; }

