@charset "UTF-8";
/* CSS Document */

/* ==========================================================================
   STYLE (MODERNE, NET & AGRESSIF EN ACTION)
   ========================================================================== */

:root {
    --primary-color: #0f172a;    /* Bleu ardoise très sombre / Pro */
    --secondary-color: #0284c7;  /* Bleu vif moderne pour les boutons principaux */
    --accent-color: #f59e0b;     /* Jaune/Orange pour les urgences et points clés */
    --text-dark: #334155;        /* Couleur de texte standard lisible */
    --text-light: #f8fafc;       /* Texte blanc cassé */
    --bg-light: #f1f5f9;         /* Arrière-plan alternatif clair */
    --transition-fast: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

p {
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   TOP BAR & HEADER NAVIGATION
   ========================================================================== */

.top-bar {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 0.8rem;
    padding: 8px 0;
    border-bottom: 1px solid #1e293b;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span {
    margin-right: 20px;
}

.top-info i {
    color: var(--accent-color);
    margin-right: 5px;
}

.top-cta a:hover {
    color: var(--accent-color);
}

.main-header {
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    flex-direction: column;
}

.brand-main {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.brand-sub {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-link {
    margin: 0 15px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.btn-nav-cta {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-left: 15px;
}

.btn-nav-cta:hover {
    background-color: var(--primary-color);
}

/* Burger Menu UI */
.burger-menu {
    display: none;
    cursor: pointer;
}

.burger-menu .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--primary-color);
    transition: var(--transition-fast);
}

/* Sticky Action Mobile */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.btn-mobile-call {
    display: block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    text-align: center;
    padding: 18px 10px;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0 120px 0;
    color: #fff;
    text-align: center;
}

.hero-content {
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(2, 132, 199, 0.2);
    border: 1px solid var(--secondary-color);
    color: #e0f2fe;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-badge i {
    color: var(--accent-color);
    margin-right: 5px;
}

.hero-section h1 {
    color: #ffffff;
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.hero-lead {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-main-call {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 16px 32px;
    font-weight: 700;
    border-radius: 4px;
    font-size: 1.05rem;
}

.btn-main-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-secondary-mail {
    background-color: transparent;
    color: #fff;
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #fff;
    font-size: 1.05rem;
}

.btn-secondary-mail:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #94a3b8;
}

.hero-features i {
    color: var(--secondary-color);
    margin-right: 8px;
}

/* ==========================================================================
   REASSURANCE ELEMENTS
   ========================================================================== */

.reassurance-bar {
    background-color: #fff;
    padding: 30px 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    margin-top: -40px;
    position: relative;
    z-index: 10;
    border-radius: 8px;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
}

.reassure-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.reassure-item h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.reassure-item p {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 0;
    font-weight: 500;
}

.reassure-item(:not(:last-child)) {
    border-right: 1px solid #e2e8f0;
}

/* ==========================================================================
   SECTIONS STYLES GENERAUX
   ========================================================================== */

.section-padding {
    padding: 90px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--primary-color);
}

.text-white {
    color: #fff !important;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    display: block;
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.header-line {
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.header-line.bg-accent {
    background-color: var(--accent-color);
}

.header-desc {
    color: #64748b;
}

/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    border-top: 4px solid var(--primary-color);
    transition: var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-top-color: var(--secondary-color);
}

.service-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Split Layout Section */
.split-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.expertise-list {
    margin-top: 30px;
}

.exp-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.exp-item i {
    color: #10b981;
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 4px;
}

.split-image-box {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 20px;
}

.info-card-dark {
    background-color: var(--primary-color);
    color: #fff;
    padding: 40px;
    border-radius: 6px;
    border-left: 5px solid var(--accent-color);
}

.info-card-dark h4 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.info-card-dark h4 i {
    color: var(--accent-color);
}

.info-card-dark p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.btn-card-call {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 4px;
    text-align: center;
    width: 100%;
}

.btn-card-call:hover {
    background-color: #fff;
    color: var(--primary-color);
}

/* Zone d'intervention UI Elements */
.large-p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #cbd5e1;
}

.cities-showcase {
    background-color: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 40px;
    border: 1px solid rgba(255,255,255,0.05);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.tag {
    background-color: #1e293b;
    color: #f1f5f9;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.cta-banner-box {
    background-image: linear-gradient(135deg, var(--secondary-color), #0369a1);
    padding: 40px;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
}

.cta-banner-box h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.cta-banner-box p {
    color: #e0f2fe;
    margin-bottom: 25px;
}

.btn-accent {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 4px;
}

.btn-accent:hover {
    transform: scale(1.02);
}

/* ==========================================================================
   FAQ ACCORDEON
   ========================================================================== */

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    margin-bottom: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    overflow: hidden;
}

.faq-question {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #ffffff;
    user-select: none;
}

.faq-question h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--secondary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 30px;
    background-color: #fafafa;
}

.faq-answer p {
    padding-bottom: 22px;
    padding-top: 5px;
    margin-bottom: 0;
    color: #475569;
}

/* Classes Trigger via JS */
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Valeur haute pour permettre l'animation */
    transition: max-height 0.3s ease-in;
}

/* ==========================================================================
   FOOTER STYLE
   ========================================================================== */

.main-footer {
    background-color: #0b0f19;
    color: #94a3b8;
    padding: 70px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 40px;
    padding-bottom: 5px;
}

.main-footer h4 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.main-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-contact p {
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 8px;
    width: 15px;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 25px 0;
    margin-top: 50px;
    font-size: 0.8rem;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Animation effet bounce */
@keyframes phoneBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.phone-bounce {
    animation: phoneBounce 2s infinite;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE INTEGRAL)
   ========================================================================== */

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .reassure-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .reassure-item(:not(:last-child)) {
        border-right: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none; /* Masqué sur mobile pour épurer l'affichage */
    }
    
    .main-header {
        padding: 10px 0;
    }

    .burger-menu {
        display: block;
    }

    .burger-menu.active .bar(:nth-child(2)) { opacity: 0; }
    .burger-menu.active .bar(:nth-child(1)) { transform: translateY(8px) rotate(45deg); }
    .burger-menu.active .bar(:nth-child(3)) { transform: translateY(-8px) rotate(-45deg); }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px; /* Hauteur ajustée du header */
        gap: 0;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        height: calc(100vh - 60px);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        padding-top: 30px;
    }

    .nav-menu.open {
        left: 0;
    }

    .nav-link {
        margin: 15px 0;
        font-size: 1.1rem;
        display: block;
        width: 100%;
    }

    .btn-nav-cta {
        margin: 20px 0 0 0;
        width: 80%;
    }

    .hero-section h1 {
        font-size: 1.9rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .text-center-mobile {
        text-align: center;
    }

    .bottom-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* Marge basse additionnelle pour compenser le bouton d'appel sticky sur mobile */
    body {
        padding-bottom: 60px;
    }

    .mobile-sticky-cta {
        display: block;
    }
}
iframe {
	display: block
}
.no-link {
    color: inherit !important;
    text-decoration: none !important;
    pointer-events: none;
}