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

/* ==========================================================================
   RESET GENERAL & DESIGN SYSTEM (Inspiré des thèmes Premium)
   ========================================================================== */
:root {
    --primary-color: #ff6a00;       /* Orange dynamique style FixRoof */
    --primary-hover: #e05d00;
    --secondary-color: #1e2736;     /* Bleu nuit profond */
    --dark-neutral: #111622;        /* Ardoise sombre pour les textes et fonds */
    --light-neutral: #f8f9fc;       /* Fond clair pour alterner les sections */
    --white: #ffffff;
    --text-muted: #6b778d;
    --alert-color: #dc3545;         /* Couleur d'urgence */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius-main: 8px;
    --box-shadow-subtle: 0 4px 20px rgba(0,0,0,0.05);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--secondary-color);
    background-color: var(--white);
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-neutral);
}

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

ul {
    list-style: none;
}

/* Alignement global */
.max-width-layout {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding-standard {
    padding: 80px 0;
}

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

/* ==========================================================================
   TOPBAR UTILS
   ========================================================================== */
.topbar-container {
    background-color: var(--dark-neutral);
    color: var(--white);
    font-size: 0.85rem;
    border-bottom: 2px solid var(--primary-color);
}

.topbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    min-height: 45px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.topbar-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-icon {
    color: var(--primary-color);
}

.topbar-phone-highlight {
    font-weight: 700;
    font-size: 1rem;
}

.topbar-phone-highlight a {
    color: var(--primary-color);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.pulse-effect {
    animation: pulse 2s infinite;
}

/* ==========================================================================
   HEADER & RESPONSIVE BURGER MENU (PURE CSS)
   ========================================================================== */
.main-header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.header-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.brand-logo-block {
    display: flex;
    flex-direction: column;
}

.logo-main-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--dark-neutral);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.logo-sub-text {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

/* Cache l'input checkbox servant au trigger du menu */
.burger-checkbox-input {
    display: none;
}

.nav-links-list {
    display: flex;
    gap: 25px;
}

.nav-anchor-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary-color);
    position: relative;
    padding: 10px 0;
}

.nav-anchor-link:hover {
    color: var(--primary-color);
}

/* Effet soulignement moderne au hover */
.nav-anchor-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

.nav-anchor-link:hover::after {
    width: 100%;
}

/* ==========================================================================
   HERO BANNER
   ========================================================================== */
.hero-premium-section {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1632759114352-71f0088cb3f3?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 140px 0;
    color: var(--white);
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 22, 34, 0.95) 0%, rgba(30, 39, 54, 0.75) 100%);
    z-index: 1;
}

.hero-content-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-main-title {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-description-paragraph {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-action-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Boutons */
.btn-primary-style, .btn-secondary-style {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--border-radius-main);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-primary-style {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary-style:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-secondary-style {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary-style:hover {
    background-color: var(--white);
    color: var(--dark-neutral);
    transform: translateY(-2px);
}

/* ==========================================================================
   SECTIONS DE CONTENU (STRUCTURE FLEX/GRID DYNAMIQUE)
   ========================================================================== */
.service-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-subtitle-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.subtitle-icon {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.subtitle-text {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.section-title-heading {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-text-description {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.service-features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 500;
}

.checklist-icon {
    color: var(--primary-color);
    margin-top: 5px;
}

.responsive-fluid-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    box-shadow: var(--box-shadow-subtle);
}

.border-radius-premium {
    border-radius: var(--border-radius-main);
}

/* Inversion alternée pour le rythme visuel style Themeforest */
.reverse-row-desktop .service-content-column {
    grid-column: 2;
}
.reverse-row-desktop .service-image-column {
    grid-column: 1;
    grid-row: 1;
}

/* ==========================================================================
   SECTION ALERT SOS FUITES DÉDIÉE
   ========================================================================== */
.alert-urgency-theme {
    background-color: var(--alert-color);
}

.text-white { color: var(--white) !important; }
.text-white-opacity { color: rgba(255,255,255,0.85) !important; }
.text-white-mute { color: rgba(255,255,255,0.6) !important; }
.text-amber { color: #ffca28 !important; }
.font-weight-bold { font-weight: 700; }

.urgency-callout-box {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 25px;
    border-left: 5px solid #ffca28;
    border-radius: 4px;
    margin-top: 25px;
}

.callout-main-message {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 20px;
}

.btn-urgency-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    color: var(--alert-color);
    padding: 14px 28px;
    border-radius: var(--border-radius-main);
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.95rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-urgency-phone:hover {
    background-color: #f1f1f1;
    transform: scale(1.02);
}

.box-shadow-heavy {
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* ==========================================================================
   FOOTER CORPORATE
   ========================================================================== */
.main-corporate-footer {
    background-color: var(--dark-neutral);
    color: rgba(255,255,255,0.7);
    padding-top: 80px;
    font-size: 0.95rem;
    border-top: 5px solid var(--primary-color);
}

.footer-widgets-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 5px;
    margin-bottom: 50px;
}

.footer-brand-title {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 20px;
}

.footer-brand-pitch {
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-certifications-badges {
    display: flex;
    gap: 15px;
}

.badge-item-footer {
    background-color: rgba(255,255,255,0.05);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255,255,255,0.1);
}

.widget-column-title {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.widget-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-quick-links display, .footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-quick-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-quick-links i {
    font-size: 0.75rem;
    color: var(--primary-color);
    margin-right: 5px;
}

.list-contact-icon {
    color: var(--primary-color);
    width: 25px;
}

.highlight-phone-footer {
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-copyright-subbar {
    background-color: rgba(0,0,0,0.2);
    padding: 25px 0;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.subbar-flex-layout {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE SYSTEM DE QUALITÉ PROFESSIONNELLE)
   ========================================================================== */

/* Version Mobile & Tablette */
@media (max-width: 991px) {
    .service-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .reverse-row-desktop .service-content-column,
    .reverse-row-desktop .service-image-column {
        grid-column: unset;
        grid-row: unset;
    }

    .footer-widgets-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .responsive-fluid-image {
        height: 350px;
    }

    /* Activation du Menu Burger Responsive Pure CSS */
    .burger-menu-label-button {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1001;
    }

    .burger-bar-line {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--dark-neutral);
        border-radius: 10px;
        transition: var(--transition-smooth);
    }

    .navigation-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
        padding: 120px 40px 40px 40px;
        transition: var(--transition-smooth);
    }

    .nav-links-list {
        flex-direction: column;
        gap: 20px;
    }

    .nav-anchor-link {
        font-size: 1.15rem;
        display: block;
    }

    /* Logique de bascule CSS si la checkbox est cochée */
    .burger-checkbox-input:checked ~ .navigation-menu-wrapper {
        right: 0;
    }

    /* Transformation graphique du bouton burger en croix 'X' */
    .burger-checkbox-input:checked ~ .burger-menu-label-button .burger-bar-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .burger-checkbox-input:checked ~ .burger-menu-label-button .burger-bar-line:nth-child(2) {
        opacity: 0;
    }

    .burger-checkbox-input:checked ~ .burger-menu-label-button .burger-bar-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (max-width: 767px) {
    .topbar-wrapper {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 10px 20px;
    }

    .hero-main-title {
        font-size: 2.2rem;
    }

    .section-title-heading {
        font-size: 1.75rem;
    }

    .section-padding-standard {
        padding: 50px 0;
    }
}
iframe {
	display: block
}
.no-link {
    color: inherit !important;
    text-decoration: none !important;
    pointer-events: none;
}