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

/* ==========================================================================
   THEME CSS - TRAVAUX COUVERTURE PLOUËR
   Inspiré du style https://toituremolenbeeksolins.top/
   Full Flexbox - Anti-overflow - 100% Responsive
   ========================================================================== */

/* RESET & BASE STYLES */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #10223a;
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease-in-out;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* CONTAINER FLEX UNIVERSEL */
.container {
    width: min(1180px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

/* TOPBAR */
.topbar {
    background-color: #08233d;
    color: #ffffff;
    font-size: 0.88rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

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

.topbar-item i {
    color: #ff6700;
}

/* HEADER SUR 2 NIVEAUX (FLEXBOX) */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-flex-wrapper {
    display: flex;
    flex-direction: column;
}

/* LIGNE 1 HEADER : BRANDING A GAUCHE, DEVIS A DROITE */
.header-top-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #edf2f7;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    font-size: 2.2rem;
    color: #ff6700;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #08233d;
    text-transform: uppercase;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.82rem;
    color: #ff6700;
    font-weight: 700;
}

/* LIGNE 2 HEADER : NAVIGATION */
.main-navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    width: 100%;
    padding: 10px 0;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 700;
    color: #08233d;
    padding: 8px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link i {
    color: #ff6700;
    font-size: 0.88rem;
}

.nav-link:hover {
    color: #ff6700;
    background-color: #f4f7fa;
}

.nav-btn-mobile {
    display: none;
}

/* BURGER TOGGLE */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #08233d;
    cursor: pointer;
    padding: 10px 0;
}

/* BOUTONS GENERAUX & VARIANTES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid transparent;
}

.btn-quote {
    background-color: #08233d;
    color: #ffffff;
    border-color: #08233d;
}

.btn-quote:hover {
    background-color: #ff6700;
    border-color: #ff6700;
    color: #ffffff;
}

.btn-primary {
    background-color: #ff6700;
    color: #ffffff;
    border-color: #ff6700;
}

.btn-primary:hover {
    background-color: #e05a00;
    box-shadow: 0 6px 18px rgba(255, 103, 0, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: #08233d;
}

.btn.small {
    padding: 9px 16px;
    font-size: 0.88rem;
}

/* BOUTON TELEPHONE ROUGE EXCLUSIF SOUS H1 ET PARTOUT */
.btn-phone-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #d90429;
    color: #ffffff !important;
    font-weight: 900;
    font-size: 1.15rem;
    padding: 14px 26px;
    border-radius: 8px;
    border: 2px solid #d90429;
    box-shadow: 0 6px 20px rgba(217, 4, 41, 0.35);
    transition: all 0.25s ease-in-out;
    text-transform: uppercase;
}

.btn-phone-red:hover {
    background-color: #b8001f;
    border-color: #b8001f;
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(217, 4, 41, 0.5);
}

.btn-phone-red.small {
    padding: 10px 18px;
    font-size: 0.95rem;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    background: url('images/couverture.jpg') center/cover no-repeat;
    color: #ffffff;
    padding: 60px 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 24, 43, 0.95) 0%, rgba(4, 24, 43, 0.82) 55%, rgba(4, 24, 43, 0.4) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.eyebrow {
    color: #ff6700;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(2.1rem, 4.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff;
}

.hero-phone-wrapper {
    margin: 6px 0 10px 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e2e8f0;
}

.hero-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 10px;
}

.hero-badges {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-item {
    font-size: 0.88rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ff6700;
}

/* SECTIONS COMMMUNES ET EN-TÊTES */
.section-block {
    padding: 80px 0;
}

.bg-light {
    background-color: #f4f7fa;
}

.bg-dark {
    background-color: #08233d;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 45px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-subtitle {
    color: #ff6700;
    font-weight: 800;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.section-subtitle.gold {
    color: #ffb703;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #08233d;
    line-height: 1.25;
}

.section-header.text-white h2 {
    color: #ffffff;
}

.title-line {
    width: 70px;
    height: 4px;
    background-color: #ff6700;
    margin-top: 12px;
    border-radius: 2px;
}

.gold-line {
    background-color: #ffb703;
}

/* BLOCS FLEXIBLES DE CONTENU (LIGNES ET REVERSE) */
.flex-row-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
}

.flex-reverse {
    flex-direction: row-reverse;
}

.flex-col-text {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.flex-col-text.text-white {
    color: #ffffff;
}

.flex-col-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #08233d;
    line-height: 1.3;
}

.flex-col-text.text-white h3 {
    color: #ffffff;
}

.flex-col-text p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.65;
}

.flex-col-text.text-white p {
    color: #cbd5e1;
}

.flex-col-image {
    flex: 0.8;
    width: 100%;
}

.image-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(8, 35, 61, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.image-wrapper:hover img {
    transform: scale(1.04);
}

.image-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background-color: #08233d;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.82rem;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.image-badge.badge-red {
    background-color: #d90429;
}

/* LISTES DE CARACTÉRISTIQUES DANS LES SECTIONS */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 8px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 600;
    font-size: 0.98rem;
    color: #2d3748;
}

.feature-list li i {
    color: #ff6700;
    margin-top: 4px;
}

.cta-box-inline {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
}

/* CARDS SECONDAIRES DANS LES SECTIONS (FLEXBOX) */
.cards-flex-container {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 10px;
}

.mini-card {
    flex: 1;
    background-color: #ffffff;
    padding: 18px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mini-card i {
    font-size: 1.6rem;
    color: #ff6700;
}

.mini-card h4 {
    font-size: 1.05rem;
    color: #08233d;
    font-weight: 800;
}

.mini-card p {
    font-size: 0.88rem;
    color: #64748b;
    margin: 0;
}

/* FEATURES GRID SANS GRID (FLEXBOX) */
.features-flex-grid {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 10px;
}

.feature-card-item {
    flex: 1;
    background-color: #ffffff;
    padding: 18px;
    border-radius: 10px;
    border-left: 4px solid #ff6700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feature-card-item i {
    font-size: 1.5rem;
    color: #ff6700;
}

.feature-card-item strong {
    color: #08233d;
    font-size: 1rem;
}

.feature-card-item span {
    font-size: 0.88rem;
    color: #64748b;
}

/* BANNIERE URGENCE EN FLEXBOX */
.urgency-banner {
    background-color: rgba(255, 255, 255, 0.08);
    border: 2px solid #d90429;
    border-radius: 12px;
    padding: 22px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

.urgency-icon {
    font-size: 2.5rem;
    color: #d90429;
}

.urgency-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.phone-link-large {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffb703 !important;
    line-height: 1.1;
}

/* WHY US SECTION EN FLEXBOX */
.why-us-flex {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-bottom: 50px;
}

.why-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.why-card i {
    font-size: 2.2rem;
    color: #ffb703;
}

.why-card h3 {
    font-size: 1.2rem;
    color: #ffffff;
}

.why-card p {
    font-size: 0.92rem;
    color: #94a3b8;
}

.contact-cta-banner {
    background-color: #04182b;
    border-radius: 14px;
    padding: 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border: 1px solid #ff6700;
}

.contact-cta-banner h3 {
    font-size: 1.6rem;
    color: #ffffff;
}

.contact-cta-banner p {
    color: #cbd5e1;
    max-width: 600px;
}

.banner-buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* FOOTER FLEXBOX */
.site-footer {
    background-color: #041424;
    color: #ffffff;
    padding: 60px 0 20px 0;
    border-top: 3px solid #ff6700;
}

.footer-flex-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 36px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-about {
    flex: 1.3;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
}

.footer-brand i {
    color: #ff6700;
}

.footer-col h4 {
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 800;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: #ff6700;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.75rem;
    color: #ff6700;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #94a3b8;
    font-size: 0.92rem;
}

.footer-contact-info i {
    color: #ff6700;
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-link-highlight {
    color: #ffffff;
    font-weight: 700;
}

.footer-link-highlight:hover {
    color: #ff6700;
}

.footer-bottom {
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLETS & PHONES) - FLEXBOX PUR SANS OVERFLOW
   ========================================================================== */

@media (max-width: 992px) {
    .flex-row-block,
    .flex-reverse {
        flex-direction: column;
        gap: 30px;
    }

    .why-us-flex {
        flex-direction: column;
    }

    .cards-flex-container,
    .features-flex-grid {
        flex-direction: column;
    }

    .footer-flex-container {
        flex-direction: column;
        gap: 30px;
    }

    .hero-content {
        max-width: 100%;
    }
}

@media (max-width: 850px) {
    .topbar-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }

    .header-top-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        padding: 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        border-top: 3px solid #ff6700;
        gap: 8px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 12px 16px;
        background-color: #f8fafc;
        border-radius: 6px;
        font-size: 1rem;
    }

    .nav-btn-mobile {
        display: flex;
        background-color: #08233d;
        color: #ffffff;
    }

    .urgency-banner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        width: calc(100% - 24px);
    }

    .header-top-row {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .brand-link {
        flex-direction: column;
        gap: 6px;
    }

    .brand-title {
        font-size: 1.1rem;
    }

    .hero-section {
        min-height: auto;
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .btn-phone-red {
        font-size: 1rem;
        padding: 12px 18px;
        width: 100%;
    }

    .hero-phone-wrapper {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .phone-link-large {
        font-size: 1.4rem;
    }

    .section-block {
        padding: 50px 0;
    }

    .banner-buttons {
        flex-direction: column;
        width: 100%;
    }

    .banner-buttons a {
        width: 100%;
    }
}

.no-link {
    color: inherit !important;
    text-decoration: none !important;
    pointer-events: none;
}