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

/* ==========================================================================
   THEME.CSS - COUVREUR QUILLAN ET DEMOUSSAGE TOIT (PRO VERSION)
   Approx. 200 Class Rules & Utility Layouts - Fully Responsive
   ========================================================================== */

/* 1. Reset & Root Variables */
:root {
    --primary-color: #1b365d;
    --primary-light: #2c5282;
    --secondary-color: #d97706;
    --secondary-hover: #b45309;
    --dark-text: #1f2937;
    --light-bg: #f9fafb;
    --white: #ffffff;
    --grey-border: #e5e7eb;
    --accent-green: #059669;
    --font-main: 'Inter', sans-serif;
    --transition-fast: all 0.3s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--dark-text);
    background-color: var(--white);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden; /* Prévient les décalages horizontaux */
    width: 100%;
}

/* 2. Layout & Global Structures */
.site-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

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

.row {
    display: table;
    width: 100%;
    table-layout: fixed;
    margin-bottom: 20px;
}

.col-6 {
    display: table-cell;
    width: 50%;
    vertical-align: top;
    padding: 15px;
}

.col-12 {
    display: block;
    width: 100%;
    padding: 15px;
}

/* 3. Header & Navigation */
.main-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--grey-border);
    padding: 15px 0;
}

.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
    text-align: right;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
}

.logo-container {
    display: inline-block;
    vertical-align: middle;
}

.nav-container {
    display: inline-block;
    float: right;
    margin-top: 15px;
}

.main-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    display: inline-block;
    margin-left: 25px;
}

.main-nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.main-nav a:hover, .main-nav a.active {
    color: var(--secondary-color);
}

/* 4. Section-v1 Style Rules (Inspiré de section-v1.css) */
.about__section {
    position: relative;
    padding: 80px 0;
    background-color: var(--light-bg);
}

.about__section.alt-bg {
    background-color: var(--white);
}

.about_left__section {
    position: relative;
    padding-right: 30px;
}

.about__right__section {
    padding-left: 30px;
}

.sub__title h6 {
    color: var(--secondary-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 10px 0;
}

.main__title h2 {
    color: var(--primary-color);
    font-size: 32px;
    line-height: 1.3;
    margin: 0 0 20px 0;
}

.normal__text p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 25px;
}

.engineer__section .engineer__content {
    margin-bottom: 20px;
    padding: 15px;
    background: var(--white);
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.engineer__text h5 {
    margin: 0 0 5px 0;
    color: var(--primary-color);
    font-size: 18px;
}

.engineer__text p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

.img-box-style {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

/* 5. Essential Blocks Style Accordion (FAQ Section) */
.eb-accordion-wrapper {
    margin-bottom: 12px;
    border: 1px solid var(--grey-border);
    border-radius: 6px;
    background: var(--white);
    overflow: hidden;
}

.eb-accordion-title-wrapper {
    background-color: #f3f4f6;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    transition: var(--transition-fast);
}

.eb-accordion-title-wrapper:hover {
    background-color: #e5e7eb;
}

.eb-accordion-title {
    margin: 0;
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.eb-accordion-content-wrapper {
    padding: 20px;
    background: var(--white);
    border-top: 1px solid var(--grey-border);
}

/* 6. Prestations Blocks Grid (6 Offres Professionnelles) */
.prestations-grid {
    display: block;
    width: 100%;
}

.prestation-card {
    display: inline-block;
    width: 31%;
    margin: 1%;
    vertical-align: top;
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: var(--transition-fast);
}

.prestation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.prestation-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.prestation-content {
    padding: 20px;
}

.prestation-title {
    font-size: 18px;
    color: var(--primary-color);
    margin: 0 0 10px 0;
    font-weight: 700;
}

.prestation-desc {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 15px;
}

/* 7. Formulaire Interactif & ReCaptcha */
.form-box {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--grey-border);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--grey-border);
    border-radius: 4px;
    font-size: 15px;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: var(--transition-fast);
}

.btn-submit:hover {
    background-color: var(--secondary-hover);
}

/* 8. Footer Classes */
.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px 0 20px 0;
    font-size: 15px;
}

.footer-text {
    color: #cbd5e1;
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

/* 9. Utility Padding & Typography Classes */
.p-0 { padding: 0; } .m-0 { margin: 0; }
.text-center { text-align: center; } .text-right { text-align: right; }
.text-left { text-align: left; }
.fw-bold { font-weight: bold; } .fs-lg { font-size: 18px; }
.mt-10 { margin-top: 10px; } .mb-10 { margin-bottom: 10px; }
.mt-20 { margin-top: 20px; } .mb-20 { margin-bottom: 20px; }
.mt-30 { margin-top: 30px; } .mb-30 { margin-bottom: 30px; }
.pt-40 { padding-top: 40px; } .pb-40 { padding-bottom: 40px; }
.bg-light { background-color: var(--light-bg); }
.border-rounded { border-radius: 8px; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }

@media (max-width: 768px) {
    .col-6 {
        display: block;
        width: 100%;
        padding: 10px 0;
    }
    .about_left__section, .about__right__section {
        padding: 0;
    }
    .prestation-card {
        width: 100%;
        margin: 10px 0;
    }
    .nav-container {
        float: none;
        display: block;
        text-align: center;
        margin-top: 10px;
    }
    .main-nav li {
        margin: 5px 10px;
    }
}