/* Styles CSS Dessoucheur v0.3.0 — IDF Premium HT/TTC Matrix, Single Heading Rule & Sticky Centered Sidebar */

:root {
    --forest-green: #1b4332;
    --forest-hover: #2d6a4f;
    --oak-gold: #fbbc04; /* Bright Review Star Yellow */

    --cream-bg: #fcfbf7;
    --card-bg: #ffffff;
    --dark-slate: #1a252c;
    --border-light: #cbd5e1;
    --border-subtle: #f1f5f9;
    --text-dark: #1f2937;
    --text-muted: #64748b;
    --badge-bg: #e8f5e9;
    --badge-text: #1b4332;
    --icon-green: #1b4332;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border-radius: 0 !important; /* Force sharp 90° angles */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--cream-bg);
    line-height: 1.7;
    overflow-x: clip;
}

/* CONTAINER WITH PERFECT BOUNDS (MAX 1140px) */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* STATIC TOP ANNOUNCEMENT BAR (OPERATING HOURS & REGIONAL BADGE) */
.top-announcement-bar {
    background: #1b4332;
    color: #ffffff;
    font-size: 12px;
    padding: 7px 0;
    border-bottom: 1px solid #2d6a4f;
}

.top-announcement-bar .hours-text {
    font-weight: 500;
    color: #e2e8f0;
}

.top-announcement-bar .badge-idf {
    color: #fbbc04;
    font-weight: 700;
    font-size: 11.5px;
}

@media (max-width: 768px) {
    .top-announcement-bar .badge-idf {
        display: none;
    }
    .top-announcement-bar {
        text-align: center;
    }
}

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

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

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

/* HEADER / NAVBAR */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-slate);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span { color: var(--forest-green); }

.nav-links a {
    margin-left: 28px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14.5px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--forest-green);
}

.btn-call {
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%) !important;
    color: #ffffff !important;
    border: 1px solid #143628 !important;
    padding: 10px 20px;
    border-radius: 4px !important;
    box-shadow: 0 4px 14px rgba(27, 67, 50, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    font-size: 14px;
    transition: all 0.22s ease !important;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.btn-call:hover {
    background: linear-gradient(135deg, #2d6a4f 0%, #1b4332 100%) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 6px 20px rgba(27, 67, 50, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

/* 100% FULL-WIDTH SCREEN-WIDE HERO BANNER WITH ZOOMED BACKGROUND PHOTO & OVERLAY TEXT */
.hero-overlay-full {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 40px;
    background: #0f172a;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-slides-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* CAROUSEL NAV ARROWS */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(15, 23, 42, 0.65);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.4);
    width: 44px;
    height: 54px;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}

.carousel-arrow:hover {
    background: rgba(27, 67, 50, 0.9);
    border-color: #ffffff;
}

.prev-arrow { left: 15px; }
.next-arrow { right: 15px; }

/* HERO CAROUSEL SELECTION CONTROL BAR */
.hero-selection-bar {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    backdrop-filter: blur(8px);
}

.slide-indicator-label {
    font-size: 13.5px;
    color: #f1f5f9;
    font-weight: 600;
}

.hero-toggle-btns {
    display: flex;
    gap: 10px;
}

.btn-hero-toggle {
    padding: 8px 16px;
    font-size: 12.5px;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-hero-toggle.keep-active {
    background: #10b981 !important;
    color: #ffffff !important;
    border-color: #059669 !important;
}

.btn-hero-toggle.discard-active {
    background: #ef4444 !important;
    color: #ffffff !important;
    border-color: #dc2626 !important;
}

.hero-dark-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.55) 0%, rgba(27, 67, 50, 0.50) 100%);
    z-index: 2;
}

.hero-content-container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-overlay-inner {
    max-width: 850px;
    color: #ffffff;
    padding: 50px 0;
}

.hero-overlay-inner h1 {
    color: #ffffff;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    animation: fadeInFast 0.3s ease-in-out;
}

.hero-subtext-overlay {
    font-size: 17px;
    color: #f1f5f9;
    margin-bottom: 26px;
    font-weight: 500;
    line-height: 1.6;
    max-width: 820px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.hero-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-cta-green {
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%) !important;
    color: #ffffff !important;
    border: 1px solid #143628 !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    padding: 13px 26px !important;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(27, 67, 50, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    display: inline-block;
    text-decoration: none !important;
    border-radius: 4px !important;
    transition: all 0.22s ease !important;
    text-align: center;
}

.btn-cta-green:hover {
    background: linear-gradient(135deg, #2d6a4f 0%, #1b4332 100%) !important;
    border-color: #0f291e !important;
    color: #ffffff !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 6px 20px rgba(27, 67, 50, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    text-decoration: none !important;
}


.phone-icon-white {
    color: #ffffff !important;
    margin-right: 6px;
    display: inline-block;
}

.btn-cta-white .phone-icon-white {
    background: var(--forest-green);
    color: #ffffff !important;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-right: 6px;
    vertical-align: middle;
}

a[href^="tel:"],
a[href^="tel:"]:hover,
a[href^="tel:"]:focus,
a[href^="tel:"]:active,
a[href^="tel:"]:visited,
.btn-cta-green,
.btn-cta-green:hover,
.btn-cta-green:focus,
.btn-cta-green:active,
.btn-cta-white,
.btn-cta-white:hover,
.btn-cta-white:focus,
.btn-cta-white:active,
.btn-side-call,
.btn-side-call:hover,
.btn-side-call:focus,
.btn-side-call:active,
.btn-call,
.btn-call:hover,
.btn-call:focus,
.btn-call:active {
    text-decoration: none !important;
}


/* PREMIUM MODERN GLOSSY GOLD GRADIENT DEVIS CTA BUTTONS */
.btn-open-modal-primary,
.btn-cta-gold,
.btn-side-quote,
.btn-upsell {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbc04 100%) !important;
    color: #0f172a !important;
    border: 1px solid #d97706 !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    padding: 13px 26px !important;
    cursor: pointer;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
    display: inline-block;
    text-decoration: none !important;
    border-radius: 4px !important;
    transition: all 0.22s ease !important;
    text-align: center;
}

.btn-open-modal-primary:hover,
.btn-cta-gold:hover,
.btn-side-quote:hover,
.btn-upsell:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
    color: #020617 !important;
    border-color: #b45309 !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}



/* UNIFIED DESIGN FOR ALL INPUTS, SELECTS, AND DROPDOWNS */
.light-input,
select.light-input,
input[type="text"].light-input,
input[type="tel"].light-input,
input[type="email"].light-input {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    border: 1px solid var(--border-light);
    font-size: 14px;
    font-weight: 500;
    background-color: #ffffff;
    color: var(--text-dark);
    outline: none;
    appearance: none; /* Uniform browser rendering */
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

/* Custom arrow icon for all selects to ensure 100% unified look */
select.light-input {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%201b4332' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
}

.light-input:focus,
select.light-input:focus,
input.light-input:focus {
    border-color: var(--forest-green);
    box-shadow: 0 0 0 1px var(--forest-green);
}

/* BULLETPROOF MODAL OVERLAY & POPUP CONTAINER CSS */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(5px);
    z-index: 99999 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.modal-container-centered {
    background: #ffffff;
    width: 100%;
    max-width: 580px;
    border: 1px solid var(--border-light);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    position: relative;
    padding: 32px;
    transform: translateY(20px);
    transition: transform 0.25s ease;
}

.modal-overlay.active .modal-container-centered {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
}

.modal-close-btn:hover {
    color: var(--dark-slate);
}

.modal-header h3 {
    color: var(--forest-green);
    font-size: 20px;
    margin-bottom: 6px;
}

.modal-header p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.modal-form-grid {
    display: grid;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.photo-drop-zone {
    border: 2px dashed #cbd5e1;
    background: #f8fafc;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-slate);
    transition: border-color 0.2s, background 0.2s;
}

.photo-drop-zone:hover {
    border-color: var(--forest-green);
    background: #f0fdf4;
}

.btn-modal-submit {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbc04 100%);
    color: #0f172a;
    border: 1px solid #d97706;
    height: 52px;
    padding: 0 28px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    max-width: 420px;
    width: 100%;
    margin: 14px auto 0 auto;
    display: block;
    border-radius: 4px !important;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.22s ease;
    text-align: center;
}


.btn-modal-submit:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #020617;
    border-color: #b45309;
    transform: translateY(-2px);
}

/* MAIN LAYOUT (DESKTOP GRID: MAIN CONTENT 70% + STICKY FLOATING SIDEBAR 30%) */
.main-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
    margin-top: 30px;
    margin-bottom: 60px;
    align-items: start;
}

.content-column-aligned {
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
}

/* STICKY FLOATING SIDEBAR COLUMN (VERTICALLY CENTERED ON VIEWPORT WHILE SCROLLING UNTIL MAP) */
.sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    position: -webkit-sticky;
    position: sticky;
    top: max(85px, calc(50vh - 240px));
    align-self: start;
    z-index: 90;
}

.sidebar-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 12px 14px;
    border-radius: 8px;
}

.badge-pill {
    background: var(--badge-bg);
    color: var(--badge-text);
    font-size: 11px;
    font-weight: 800;
    padding: 3px 6px;
}

.rating-title {
    font-weight: 800;
    font-size: 15.5px;
    color: var(--dark-slate);
    margin: 4px 0;
}

.rating-sub {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
}

.checklist-list {
    list-style: none;
    text-align: left;
    margin: 8px 0;
}

.checklist-list li {
    font-size: 12px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.checklist-list li .check {
    color: var(--forest-green);
    font-weight: 800;
    margin-right: 4px;
}

.btn-side-call {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 50%, #1b4332 100%) !important;
    color: #ffffff !important;
    text-align: center;
    padding: 12px 16px;
    font-weight: 800;
    font-size: 15px;
    border: 1px solid #143628 !important;
    margin-bottom: 8px;
    cursor: pointer;
    border-radius: 4px !important;
    box-shadow: 0 4px 14px rgba(27, 67, 50, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) !important;
    transition: all 0.22s ease !important;
    text-decoration: none !important;
}

.btn-side-call:hover {
    background: linear-gradient(135deg, #2d6a4f 0%, #40916c 50%, #2d6a4f 100%) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 6px 20px rgba(27, 67, 50, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

.btn-side-quote {
    display: block !important;
    width: 100% !important;
    margin-top: 6px;
}


.sidebar-card h4 {
    color: var(--dark-slate);
    font-size: 14.5px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 8px;
}

.cities-list { list-style: none; }
.cities-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 13px;
}

.dist-tag {
    background: #f1f5f9;
    padding: 2px 6px;
    font-size: 11px;
    color: var(--text-muted);
    font-family: monospace;
}

/* RECURRING CTA BANNER CONTAINER */
.recurring-cta-banner {
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
    color: #ffffff;
    padding: 28px;
    margin: 45px 0;
    border: 1px solid var(--forest-green);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.recurring-cta-text h3 {
    font-size: 19px;
    color: #ffffff;
    margin-bottom: 4px;
}

.recurring-cta-text p {
    font-size: 14px;
    color: #e2e8f0;
}

.recurring-cta-btns {
    display: flex;
    gap: 12px;
}

.btn-cta-gold {
    background: var(--oak-gold);
    color: #111827;
    border: none;
    padding: 12px 24px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
}

.btn-cta-white {
    background: #ffffff !important;
    color: var(--forest-green) !important;
    border: 1px solid #cbd5e1 !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    padding: 13px 26px !important;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08) !important;
    display: inline-block;
    text-decoration: none !important;
    border-radius: 4px !important;
    transition: all 0.22s ease !important;
    text-align: center;
}

.btn-cta-white:hover {
    background: #f8fafc !important;
    color: var(--forest-hover) !important;
    border-color: #94a3b8 !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12) !important;
    text-decoration: none !important;
}


.section-block {
    margin-bottom: 24px;
    padding-bottom: 0;
}

#devis-section {
    background: #ffffff;
    border: 2px solid var(--forest-green) !important;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}


/* NO COLONS IN TITLES RULE & CRISP SECTION HEADINGS */
.section-block h2 {
    font-size: 21px;
    color: var(--dark-slate);
    margin-bottom: 14px;
    font-weight: 800;
    border-bottom: none !important;
    padding-bottom: 0;
    display: inline-block;
}

/* CLEAN BODY TEXT & PARAGRAPH FORMATTING */
p {
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

/* ORIGINAL CONSTRAINED CONTENT PHOTO DIMENSIONS */
.content-image-wrapper {
    margin: 20px auto 25px auto;
    position: relative;
    max-width: 720px;
    width: 100%;
}

.body-content-img {
    width: 100%;
    max-width: 720px;
    height: auto;
    display: block;
    margin: 0 auto;
    border: 1px solid var(--border-light);
    object-fit: cover;
}

/* ELEGANT PROCESS DESCRIPTIVE TEXT BOX UNDERNEATH IMAGES */
.image-descriptive-box {
    background: #f8fafc;
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--forest-green);
    padding: 16px 20px;
    margin-top: 12px;
    font-size: 13.5px;
    color: var(--dark-slate);
    line-height: 1.6;
}

/* VIBRANT FOREST GREEN ICON BADGES SYSTEM */
.icon-badge-green {
    width: 42px;
    height: 42px;
    background: #e8f5e9;
    color: var(--forest-green) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
    border: 1px solid #c8e6c9;
}

/* ELEGANT SERVICE CARDS GRID */
.prestation-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin-bottom: 35px;
}

.prestation-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 22px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.prestation-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    border-color: #bbf7d0;
}

.prestation-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.prestation-card-header h4 {
    font-size: 16px;
    color: var(--dark-slate);
    font-weight: 700;
}

.prestation-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* TRUST ITEMS & CHECKMARKS */
.trust-reasons-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 20px;
    margin-bottom: 24px;
}

.trust-reasons-card h2 {
    color: var(--forest-green);
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 20px;
}

.trust-grid {
    display: grid;
    gap: 14px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f8fafc;
    padding: 18px;
    border: 1px solid var(--border-light);
}

.trust-item h4 {
    font-size: 15.5px;
    color: var(--dark-slate);
    margin-bottom: 4px;
}

.trust-item p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.check, .faq-icon, .list-icon {
    color: var(--forest-green) !important;
    font-weight: 800;
}

.stars {
    color: var(--oak-gold) !important;
    font-size: 18px;
    margin: 8px 0 4px 0;
}


/* QUICK ANSWER BLOCK */
.aeo-block {
    background: #f8fafc;
    padding: 22px;
    margin-bottom: 45px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
}


.aeo-block h3 {
    color: var(--forest-green);
    margin-bottom: 10px;
    font-size: 18px;
}

/* SECTION 12 (ZONE D'INTERVENTION ALIGNÉE AVEC LE RESTE DE LA PAGE) */
.section-zone-fullwidth {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 30px;
    margin-top: 35px;
    margin-bottom: 35px;
}

/* GOOGLE MAPS SPLIT SECTION (PERFECT ALIGNMENT) */
.map-reviews-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 20px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 16px;
    margin-top: 15px;
    align-items: stretch;
}

.map-container-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.map-container-box {
    height: 100%;
    min-height: 320px;
    width: 100%;
    border: 1px solid var(--border-light);
}

.google-reviews-card {
    background: #f8fafc;
    border: 1px solid var(--border-light);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.g-badge-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
}

.g-logo {
    font-weight: 900;
    font-size: 18px;
    color: #4285f4;
}

.g-review-item {
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 12px;
    margin-bottom: 10px;
    font-size: 12.5px;
}

.g-author {
    font-weight: 700;
    color: var(--dark-slate);
}

/* SERVICE UPSELL CARD */
.service-upsell-card {
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
    color: #ffffff;
    padding: 28px;
    margin-bottom: 45px;
}

.service-upsell-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffffff;
}

.service-upsell-card p {
    font-size: 14px;
    color: #e2e8f0;
    margin-bottom: 18px;
}

.btn-upsell {
    display: inline-block;
    background: var(--oak-gold);
    color: #111827;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13.5px;
    cursor: pointer;
    border: none;
}

.table-responsive {
    overflow-x: auto;
    width: 100%;
    margin-top: 15px;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.compare-table th, .compare-table td {
    border: 1px solid var(--border-light);
    padding: 12px 14px;
    text-align: left;
    font-size: 13.5px;
}

.compare-table th {
    background: var(--forest-green);
    color: #ffffff;
    font-weight: 700;
}

.compare-table tr:nth-child(even) {
    background: #f8fafc;
}

.risks-list {
    list-style: none;
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 10px 20px;
    margin-top: 15px;
}

.risks-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
}

.risks-list li:last-child {
    border-bottom: none;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.faq-question {
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-slate);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-icon {
    font-size: 16px;
    font-weight: 800;
    color: var(--forest-green) !important;
}

.faq-answer {
    display: none;
    padding: 0 20px 18px 20px;
    color: var(--text-dark);
    font-size: 14px;
    border-top: 1px dashed var(--border-light);
    background: #fafafa;
    padding-top: 12px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question {
    background: #f8fafc;
    border-bottom: 1px solid var(--border-light);
}

.site-footer {
    background: var(--dark-slate);
    color: #94a3b8;
    padding: 45px 0 25px 0;
    border-top: 3px solid var(--forest-green);
    margin-top: 35px;
}




.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 35px;
}

.footer-grid h4 {
    color: #ffffff;
    margin-bottom: 14px;
    font-size: 15.5px;
}

.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 6px; }
.footer-grid a { color: #cbd5e1; text-decoration: none; font-size: 13px; }
.footer-grid a:hover { color: #ffffff; }
.footer-copy { border-top: 1px solid #334155; padding-top: 20px; font-size: 12.5px; }

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .main-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-header-banner-full {
        height: 260px;
    }
    
    .hero-overlay-full h1 {
        font-size: 22px;
    }
    
    .nav-links {
        display: none;
    }

    .sidebar-column {
        position: static;
        width: 100%;
    }

    .map-reviews-grid, .recurring-cta-banner, .prestation-cards-grid, .form-row {
        grid-template-columns: 1fr;
    }
}

/* 3-TIER PRICE MATRIX & SERVICE ADD-ONS COMPONENT */
.price-matrix-wrapper {
    margin: 28px 0;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    overflow-x: auto;
}

.price-matrix-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

.price-matrix-table th {
    background: var(--forest-green);
    color: #ffffff;
    padding: 14px 18px;
    font-size: 14.5px;
    font-weight: 800;
}

.price-matrix-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

.price-matrix-table tr:nth-child(even) {
    background: #f8fafc;
}

.price-matrix-addons {
    padding: 14px 18px;
    background: #f1f5f9;
    border-top: 1px solid var(--border-light);
    font-size: 13px;
    color: var(--dark-slate);
    line-height: 1.6;
}

/* RICH PROSE HYBRID CONTENT HIERARCHY */
.rich-prose-block {
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 18px 22px;
    margin: 22px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}


.rich-prose-block h3 {
    color: var(--dark-slate);
    font-size: 17.5px;
    margin-bottom: 10px;
    font-weight: 700;
}

.rich-prose-block p {
    font-size: 13.5px;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 10px;
}

.rich-prose-block p:last-child {
    margin-bottom: 0;
}

/* ZONES DIRECTORY & CITY CARDS GRID STYLES */
.zones-search-wrapper {
    max-width: 650px;
    margin: 0 auto;
}

.zones-search-input {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    border: 2px solid var(--forest-green);
    border-radius: 50px;
    outline: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.zone-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.zone-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.zone-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.zone-card-header h3 {
    font-size: 18px;
    color: var(--forest-green);
    margin: 0;
}

.badge-zip {
    background: #e2e8f0;
    color: var(--dark-slate);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.badge-dept {
    background: #dcfce7;
    color: #166534;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
}

.zone-card-pop {
    font-size: 12.5px;
    color: #64748b;
    margin-bottom: 10px;
    font-weight: 600;
}

.zone-card-desc {
    font-size: 13px;
    color: #334155;
    line-height: 1.5;
    margin-bottom: 16px;
}

.zone-card-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-zone-link {
    flex: 1;
    display: inline-block;
    text-align: center;
    background: var(--forest-green);
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12.5px;
}

.btn-zone-phone {
    display: inline-block;
    background: #16a34a;
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12.5px;
}
