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

/* Déclaration des variables de couleurs souhaitées (Thème Premium) */
:root {
    --jkit-txt-color: #575A5F;
    --jkit-txt-h-color: #181D23;
    --jkit-txt-a-color: #0058E6;
    --jkit-txt-m-color: #96989B;
    --jkit-txt-alt-color: #ffffff;
    --jkit-form-border-color: #D5D5D7;
    --jkit-form-bg-color: transparent;
    --jkit-form-txt-color: #181D23;
    --jkit-btn-txt-color: #ffffff;
    --jkit-btn-bg-color: #0058E6;
    --danger-color: #E63946;
    --dark-section-bg: #11151A;
    --shadow-light: 0 10px 30px rgba(24, 29, 35, 0.06);
    --shadow-hover: 0 15px 40px rgba(0, 88, 230, 0.12);
}

/* Base et réinitialisation de style */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--jkit-txt-color);
    background-color: #fafbfc;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Animations graphiques */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.animate-pulse {
    animation: pulse 2s infinite ease-in-out;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.animate-flash {
    animation: flash 1.5s infinite ease-in-out;
}

/* Bandeau d'urgence supérieur (Topbar) */
.top-bar {
    background-color: var(--jkit-txt-h-color);
    color: var(--jkit-txt-alt-color);
    padding: 10px 5%;
    font-size: 0.85rem;
    font-weight: 400;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.emergency-phone {
    color: #fff;
    text-decoration: none;
    background-color: var(--danger-color);
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.emergency-phone:hover {
    background-color: #b71c1c;
}

/* En-tête du site principal (Header & Navigation) */
.site-header {
    background-color: var(--jkit-txt-alt-color);
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 5%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--jkit-txt-h-color);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.logo-icon {
    color: var(--jkit-txt-a-color);
    margin-right: 8px;
    font-size: 1.6rem;
}

.highlight {
    color: var(--jkit-txt-a-color);
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-anchor {
    text-decoration: none;
    color: var(--jkit-txt-h-color);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 6px 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-anchor::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--jkit-txt-a-color);
    transition: width 0.3s ease;
}

.nav-anchor:hover {
    color: var(--jkit-txt-a-color);
}

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

.text-alert {
    color: var(--danger-color);
    font-weight: 700;
}

.nav-cta-btn {
    text-decoration: none;
    background-color: var(--jkit-btn-bg-color);
    color: var(--jkit-btn-txt-color);
    padding: 10px 22px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.nav-cta-btn:hover {
    background-color: #0046b8;
    transform: translateY(-2px);
}

/* Gestion du bouton Burger Mobile */
.burger-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 19px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.burger-bar {
    width: 100%;
    height: 3px;
    background-color: var(--jkit-txt-h-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Styles de la section Hero (Bannière Principale) */
.hero-banner {
    position: relative;
    background: url('images/couvreur-habas.webp') no-repeat center center/cover;
    padding: 130px 5%;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(24, 29, 35, 0.92) 0%, rgba(24, 29, 35, 0.8) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-subtitle {
    color: var(--jkit-txt-alt-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(0, 88, 230, 0.2);
    padding: 6px 16px;
    border-left: 3px solid var(--jkit-txt-a-color);
    display: inline-block;
    margin-bottom: 25px;
}

.hero-banner h1 {
    color: var(--jkit-txt-alt-color);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-banner p {
    color: var(--jkit-txt-m-color);
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-action, .btn-secondary-action {
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-action {
    background-color: var(--jkit-btn-bg-color);
    color: var(--jkit-btn-txt-color);
}

.btn-primary-action:hover {
    background-color: #0046b8;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 88, 230, 0.2);
}

.btn-secondary-action {
    background-color: transparent;
    color: var(--jkit-txt-alt-color);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary-action:hover {
    background-color: var(--jkit-txt-alt-color);
    color: var(--jkit-txt-h-color);
    border-color: var(--jkit-txt-alt-color);
    transform: translateY(-3px);
}

/* Sections dynamiques codées en Flexbox */
.dynamic-section {
    padding: 90px 5%;
    display: block;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.flex-layout {
    /* Utilisation explicite de flex sur le conteneur intérieur */
}

.alternate-row .section-container {
    flex-direction: row-reverse;
}

.bg-light-tint {
    background-color: #f4f6f9;
}

.text-content-block {
    flex: 1;
    min-width: 300px;
}

.image-content-block {
    flex: 1;
    min-width: 300px;
}

.image-content-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    display: block;
    transition: transform 0.4s ease;
}

.image-content-block img:hover {
    transform: scale(1.02);
}

.pre-title {
    color: var(--jkit-txt-a-color);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 10px;
}

.text-content-block h2 {
    color: var(--jkit-txt-h-color);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.text-content-block p {
    margin-bottom: 15px;
    font-size: 1rem;
}

/* Listes d'avantages sémantiques */
.benefit-bullet-list {
    list-style: none;
    margin: 25px 0 35px 0;
}

.benefit-bullet-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 500;
    color: var(--jkit-txt-h-color);
}

.benefit-bullet-list li i {
    color: var(--jkit-txt-a-color);
    font-size: 1.1rem;
    margin-top: 3px;
}

.section-link-btn {
    text-decoration: none;
    color: var(--jkit-txt-a-color);
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.section-link-btn:hover {
    gap: 14px;
}

/* Style de la section d'urgence (SOS Fuites) */
.emergency-banner-section {
    background-color: var(--dark-section-bg);
}

.emergency-badge {
    background-color: var(--danger-color);
    color: var(--jkit-txt-alt-color);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
}

.text-white h2 {
    color: var(--jkit-txt-alt-color) !important;
}

.text-white p {
    color: var(--jkit-txt-m-color);
}

.light-bullets li {
    color: var(--jkit-txt-alt-color) !important;
}

.light-bullets li i {
    color: var(--danger-color) !important;
}

.direct-call-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--danger-color);
    padding: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 25px 0;
}

.call-icon-large {
    font-size: 2.2rem;
    color: var(--danger-color);
}

.call-details span {
    display: block;
    font-size: 0.85rem;
    color: var(--jkit-txt-m-color);
    text-transform: uppercase;
}

.call-number-link {
    color: var(--jkit-txt-alt-color);
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
}

/* Bannière d'appel à l'action finale (CTA Footer) */
.footer-cta-banner {
    background-color: var(--jkit-txt-a-color);
    color: var(--jkit-txt-alt-color);
    padding: 70px 5%;
    text-align: center;
}

.cta-container {
    max-width: 850px;
    margin: 0 auto;
}

.footer-cta-banner h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
}

.cta-flex-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-main {
    text-decoration: none;
    background-color: var(--jkit-txt-h-color);
    color: var(--jkit-txt-alt-color);
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cta-main:hover {
    background-color: #000000;
    transform: translateY(-2px);
}

.btn-cta-phone {
    text-decoration: none;
    background-color: var(--jkit-txt-alt-color);
    color: var(--jkit-txt-a-color);
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cta-phone:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Pied de page du site (Footer) */
.site-footer {
    background-color: var(--jkit-txt-h-color);
    color: var(--jkit-txt-m-color);
    padding: 40px 5%;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.copyright-text {
    color: var(--jkit-txt-alt-color);
    margin-bottom: 8px;
}

.footer-info {
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.footer-contact-links a {
    color: var(--jkit-txt-alt-color);
    text-decoration: none;
    font-weight: 600;
}

.footer-contact-links a:hover {
    color: var(--jkit-txt-a-color);
}

.separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   Responsive Design & Version Menu Burger
   ========================================================================== */

@media (max-width: 992px) {
    .section-container {
        flex-direction: column;
        gap: 40px;
    }
    .alternate-row .section-container {
        flex-direction: column;
    }
    .image-content-block, .text-content-block {
        width: 100%;
        min-width: 100%;
    }
    .hero-banner h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none; /* Cache la top-bar pour gagner de l'espace sur mobile */
    }

    .burger-menu-btn {
        display: flex; /* Affiche le burger icon */
    }

    /* Transformation responsive du menu de navigation */
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--jkit-txt-alt-color);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 30px 0;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out, padding 0.4s ease;
        opacity: 0;
        pointer-events: none;
    }

    /* Classe dynamique injectée en JS lors de l'ouverture */
    .main-navigation.is-open {
        max-height: 500px;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-anchor {
        width: 100%;
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
        font-size: 1.1rem;
    }

    .nav-anchor::after {
        display: none;
    }

    .nav-cta-btn {
        margin-top: 20px;
        width: 80%;
        text-align: center;
    }

    /* Animation du burger bouton vers l'état de croix "X" */
    .burger-menu-btn.is-active .burger-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger-menu-btn.is-active .burger-bar:nth-child(2) {
        opacity: 0;
    }
    .burger-menu-btn.is-active .burger-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .dynamic-section {
        padding: 60px 5%;
    }
    .text-content-block h2 {
        font-size: 1.8rem;
    }
}
iframe {
	display: block
}
.no-link {
    color: inherit !important;
    text-decoration: none !important;
    pointer-events: none;
}