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

@media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }

:root {
            --primary: #1B4965;
            --primary-dark: #132f42;
            --primary-light: #2a6a94;
            --secondary: #D4A03C;
            --secondary-light: #e6bb5e;
            --bg-light: #f8f6f1;
            --bg-sand: #f0ebe0;
            --text-dark: #1a1a1a;
            --text-body: #3d3d3d;
            --text-muted: #6b6b6b;
            --white: #ffffff;
            --shadow-sm: 0 2px 8px rgba(27, 73, 101, 0.08);
            --shadow-md: 0 4px 20px rgba(27, 73, 101, 0.12);
            --shadow-lg: 0 8px 32px rgba(27, 73, 101, 0.16);
            --radius: 12px;
            --radius-sm: 8px;
        }

html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-body);
            line-height: 1.7;
            background: var(--white);
            overflow-x: hidden;
        }

h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-dark);
            line-height: 1.3;
        }

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

.header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            transition: box-shadow 0.3s ease;
        }

.header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 12px;
            padding-bottom: 12px;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

.logo-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

.logo-wrapper img {
            height: 42px;
            width: auto;
            object-fit: contain;
        }

.logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--primary);
            letter-spacing: -0.5px;
        }

.logo-text span {
            color: var(--secondary);
        }

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

.nav a {
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--text-dark);
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            transition: color 0.3s ease, background 0.3s ease;
        }

.nav a:hover {
            color: var(--primary);
            background: rgba(27, 73, 101, 0.06);
        }

.nav .btn-cta-nav {
            background: var(--secondary);
            color: var(--white);
            padding: 10px 22px;
            border-radius: 50px;
            font-size: 0.85rem;
            white-space: nowrap;
        }

.nav .btn-cta-nav:hover {
            background: var(--secondary-light);
            color: var(--white);
        }

.menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
            padding: 8px;
        }

.hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(27, 73, 101, 0.88) 0%, rgba(19, 47, 66, 0.75) 100%),
                        url('https://webflash.pro/storage/generated/296/hero_1776265677_69dfa9cd99f68.webp') center/cover no-repeat;
            padding-top: 120px;
            padding-bottom: 80px;
        }

.hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(to top, var(--white), transparent);
        }

.hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

.hero-content h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 16px;
            line-height: 1.15;
        }

.hero-content h1 span {
            color: var(--secondary);
        }

.hero-subtitle {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.85);
            margin-bottom: 28px;
            line-height: 1.6;
        }

.hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 28px;
        }

.hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255,255,255,0.18);
            color: var(--white);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.88rem;
            font-weight: 500;
        }

.hero-badge i {
            color: var(--secondary);
        }

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

.btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--secondary);
            color: var(--white);
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            padding: 16px 32px;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
            box-shadow: 0 4px 16px rgba(212, 160, 60, 0.35);
        }

.btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(212, 160, 60, 0.45);
            background: var(--secondary-light);
        }

.btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: var(--white);
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            padding: 16px 32px;
            border: 2px solid rgba(255,255,255,0.4);
            border-radius: 50px;
            text-decoration: none;
            transition: background 0.3s ease, border-color 0.3s ease;
        }

.btn-secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--white);
        }

.devis-card-hero {
            background: var(--white);
            border-radius: var(--radius);
            padding: 36px 32px;
            box-shadow: var(--shadow-lg);
        }

.devis-card-hero .devis-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.35rem;
            color: var(--primary);
            margin-bottom: 6px;
        }

.devis-card-hero .devis-sub {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 22px;
        }

.devis-card-hero .form-group {
            margin-bottom: 14px;
        }

.devis-card-hero label {
            display: block;
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

.devis-card-hero input,
        .devis-card-hero textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid #ddd;
            border-radius: var(--radius-sm);
            font-family: 'Open Sans', sans-serif;
            font-size: 0.92rem;
            color: var(--text-dark);
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            background: var(--bg-light);
        }

.devis-card-hero input:focus,
        .devis-card-hero textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(27, 73, 101, 0.1);
        }

.devis-card-hero textarea {
            resize: vertical;
            min-height: 80px;
        }

.devis-card-hero .btn-submit {
            width: 100%;
            padding: 14px;
            background: var(--primary);
            color: var(--white);
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.3s ease;
        }

.devis-card-hero .btn-submit:hover {
            background: var(--primary-light);
            transform: translateY(-1px);
        }

.section {
            padding-top: 80px;
            padding-bottom: 80px;
        }

.section-header {
            text-align: center;
            margin-bottom: 50px;
        }

.section-header .section-tag {
            display: inline-block;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--secondary);
            margin-bottom: 10px;
        }

.section-header h2 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 14px;
        }

.section-header h2 span {
            color: var(--primary);
        }

.section-divider {
            width: 60px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
            margin: 0 auto 14px;
        }

.section-header p {
            color: var(--text-muted);
            font-size: 1.05rem;
            max-width: 600px;
            margin: 0 auto;
        }

.stats-band {
            background: var(--primary);
            padding-top: 50px;
            padding-bottom: 50px;
            position: relative;
        }

.stats-band::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

.stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
            z-index: 1;
        }

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

.stat-number {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 2.8rem;
            color: var(--secondary);
            line-height: 1;
            margin-bottom: 8px;
        }

.stat-label {
            color: rgba(255,255,255,0.85);
            font-size: 0.95rem;
            font-weight: 500;
        }

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

.services-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 28px;
        }

.service-card {
            width: calc(33.333% - 19px);
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-bottom: 3px solid transparent;
        }

.service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
            border-bottom-color: var(--secondary);
        }

.service-card-img {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

.service-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

.service-card:hover .service-card-img img {
            transform: scale(1.05);
        }

.service-card-body {
            padding: 24px;
        }

.service-card-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            font-size: 1.1rem;
            margin-bottom: 14px;
        }

.service-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

.service-card p {
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.6;
        }

.engagements-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }

.engagement-card {
            text-align: center;
            padding: 36px 24px;
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

.engagement-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

.engagement-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: var(--white);
            border-radius: 50%;
            font-size: 1.4rem;
        }

.engagement-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

.engagement-card p {
            color: var(--text-muted);
            font-size: 0.88rem;
            line-height: 1.6;
        }

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

.about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

.about-image {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            position: relative;
        }

.about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

.about-image-badge {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: var(--secondary);
            color: var(--white);
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            padding: 12px 22px;
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
        }

.about-text h2 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 18px;
        }

.about-text h2 span {
            color: var(--primary);
        }

.about-text p {
            margin-bottom: 16px;
            color: var(--text-body);
            font-size: 1rem;
            line-height: 1.7;
        }

.about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-top: 22px;
        }

.about-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            font-size: 0.92rem;
            color: var(--text-dark);
        }

.about-feature i {
            color: var(--secondary);
            font-size: 1rem;
        }

.section-zones {
            background: var(--primary);
            color: var(--white);
            position: relative;
        }

.section-zones .section-tag {
            color: var(--secondary);
        }

.section-zones h2 {
            color: var(--white);
        }

.section-zones .section-header p {
            color: rgba(255,255,255,0.7);
        }

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

.zone-card {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: var(--radius-sm);
            padding: 24px;
            transition: background 0.3s ease, transform 0.3s ease;
        }

.zone-card:hover {
            background: rgba(255,255,255,0.12);
            transform: translateY(-3px);
        }

.zone-card-dept {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--secondary);
            margin-bottom: 8px;
        }

.zone-card-cities {
            color: rgba(255,255,255,0.75);
            font-size: 0.88rem;
            line-height: 1.6;
        }

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

.gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

.gallery-item {
            border-radius: var(--radius);
            overflow: hidden;
            position: relative;
            aspect-ratio: 4/3;
            cursor: pointer;
        }

.gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

.gallery-item:hover img {
            transform: scale(1.06);
        }

.gallery-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(27, 73, 101, 0.4), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

.gallery-item:hover::after {
            opacity: 1;
        }

.faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

.faq-item {
            background: var(--white);
            border-radius: var(--radius-sm);
            margin-bottom: 12px;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
        }

.faq-question {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 20px 24px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 14px;
            transition: color 0.3s ease;
        }

.faq-question:hover {
            color: var(--primary);
        }

.faq-question i {
            color: var(--secondary);
            font-size: 0.85rem;
            transition: transform 0.3s ease;
        }

.faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

.faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

.faq-answer-inner {
            padding: 0 24px 20px;
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
        }

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

.horaires-card {
            max-width: 560px;
            margin: 0 auto;
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow-md);
            overflow: hidden;
        }

.horaires-header {
            background: var(--primary);
            padding: 22px 32px;
            display: flex;
            align-items: center;
            gap: 14px;
        }

.horaires-header i {
            color: var(--secondary);
            font-size: 1.3rem;
        }

.horaires-header-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--white);
        }

.horaires-body {
            padding: 8px 0;
        }

.horaire-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 32px;
        }

.horaire-row:nth-child(odd) {
            background: var(--bg-light);
        }

.horaire-day {
            font-weight: 600;
            color: var(--text-dark);
            font-size: 0.95rem;
        }

.horaire-time {
            font-size: 0.92rem;
            color: var(--text-body);
        }

.horaire-row.closed .horaire-day {
            color: var(--text-muted);
        }

.horaire-row.closed .horaire-time {
            color: #c0392b;
            font-weight: 600;
        }

.section-contact {
            background: var(--white);
        }

.contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

.contact-form-card {
            background: var(--bg-light);
            padding: 36px;
            border-radius: var(--radius);
        }

.contact-form-card .form-group {
            margin-bottom: 16px;
        }

.contact-form-card label {
            display: block;
            font-weight: 600;
            font-size: 0.88rem;
            color: var(--text-dark);
            margin-bottom: 6px;
        }

.contact-form-card input,
        .contact-form-card textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid #ddd;
            border-radius: var(--radius-sm);
            font-family: 'Open Sans', sans-serif;
            font-size: 0.92rem;
            color: var(--text-dark);
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            background: var(--white);
        }

.contact-form-card input:focus,
        .contact-form-card textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(27, 73, 101, 0.1);
        }

.contact-form-card textarea {
            resize: vertical;
        }

.contact-form-card .btn-submit {
            width: 100%;
            padding: 14px;
            background: var(--primary);
            color: var(--white);
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

.contact-form-card .btn-submit:hover {
            background: var(--primary-light);
        }

.contact-info-side {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

.contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 20px;
            background: var(--bg-light);
            border-radius: var(--radius-sm);
        }

.contact-info-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            font-size: 1rem;
        }

.contact-info-label {
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

.contact-info-value {
            color: var(--text-body);
            font-size: 0.92rem;
            line-height: 1.5;
        }

.contact-info-value a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }

.contact-info-value a:hover {
            text-decoration: underline;
        }

.contact-map {
            margin-top: 10px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

.contact-map iframe {
            display: block;
        }

.footer {
            background: var(--primary-dark);
            color: rgba(255,255,255,0.7);
            padding-top: 50px;
            padding-bottom: 0;
        }

.footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
        }

.footer-brand .logo-wrapper {
            margin-bottom: 14px;
        }

.footer-brand .logo-wrapper .logo-text {
            color: var(--white);
        }

.footer-brand p {
            font-size: 0.9rem;
            line-height: 1.7;
            color: rgba(255,255,255,0.6);
        }

.footer-col-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            color: var(--white);
            margin-bottom: 18px;
        }

.footer-links {
            list-style: none;
        }

.footer-links li {
            margin-bottom: 10px;
        }

.footer-links a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

.footer-links a:hover {
            color: var(--secondary);
        }

.footer-contact-line {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 0.9rem;
        }

.footer-contact-line i {
            color: var(--secondary);
            width: 18px;
            text-align: center;
        }

.footer-contact-line a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
        }

.footer-contact-line a:hover {
            color: var(--secondary);
        }

.footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            padding-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 0.85rem;
        }

.footer-bottom a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }

.footer-bottom a:hover {
            color: var(--secondary);
        }

.footer-legal {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

.modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.6);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

.modal-overlay.active {
            display: flex;
        }

.modal-content {
            background: var(--white);
            border-radius: var(--radius);
            max-width: 600px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            padding: 40px;
            position: relative;
        }

.modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: none;
            border: none;
            font-size: 1.3rem;
            color: var(--text-muted);
            cursor: pointer;
            padding: 8px;
            transition: color 0.3s ease;
        }

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

.modal-content .modal-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.4rem;
            margin-bottom: 24px;
            color: var(--primary);
        }

.modal-content p {
            margin-bottom: 10px;
            font-size: 0.92rem;
            color: var(--text-body);
            line-height: 1.7;
        }

.modal-content strong {
            color: var(--text-dark);
        }

.scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 48px;
            height: 48px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 50%;
            font-size: 1.1rem;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
            transition: background 0.3s ease, transform 0.3s ease;
            z-index: 900;
        }

.scroll-top:hover {
            background: var(--primary-light);
            transform: translateY(-3px);
        }

.scroll-top.visible {
            display: flex;
        }

.fade-in {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

.fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

@media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            .service-card {
                width: calc(50% - 14px);
            }

            .engagements-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-grid {
                grid-template-columns: 1fr;
            }

            .zones-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

@media (max-width: 768px) {
            .nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 16px 20px;
                box-shadow: var(--shadow-md);
                gap: 4px;
            }

            .nav.open {
                display: flex;
            }

            .nav a {
                width: 100%;
                padding: 12px 16px;
            }

            .nav .btn-cta-nav {
                text-align: center;
                margin-top: 8px;
            }

            .menu-toggle {
                display: block;
            }

            .hero {
                padding-top: 110px;
                padding-bottom: 60px;
            }

            .hero-content h1 {
                font-size: 1.85rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .hero-cta-group {
                flex-direction: column;
            }

            .hero-cta-group .btn-primary,
            .hero-cta-group .btn-secondary {
                justify-content: center;
            }

            .devis-card-hero {
                padding: 28px 22px;
            }

            .section {
                padding-top: 60px;
                padding-bottom: 60px;
            }

            .section-header h2 {
                font-size: 1.6rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .stat-number {
                font-size: 2.2rem;
            }

            .service-card {
                width: 100%;
            }

            .engagements-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .zones-grid {
                grid-template-columns: 1fr;
            }

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

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-legal {
                justify-content: center;
            }

            .horaire-row {
                padding-left: 20px;
                padding-right: 20px;
            }

            .contact-form-card {
                padding: 28px 22px;
            }
        }

@media (max-width: 640px) {
            .hero-content h1 {
                font-size: 1.55rem;
            }

            .hero-badges {
                flex-direction: column;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .stat-number {
                font-size: 1.9rem;
            }
        }

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-body); background: var(--white);
    line-height: 1.7; -webkit-font-smoothing: antialiased;
}

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

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

a { color: var(--primary); text-decoration: none; transition: color 200ms ease; }

a:hover { color: var(--secondary); }

.header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px); box-shadow: var(--shadow-sm);
}

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

.logo-wrapper { display: flex; align-items: center; gap: 10px; cursor: pointer; }

.logo-text { font-weight: 800; font-size: 1.2rem; color: var(--primary); letter-spacing: -0.5px; }

.logo-text span { color: var(--secondary); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 28px; }

.nav a { color: var(--text-dark); font-weight: 600; font-size: 0.95rem; transition: color 200ms ease; }

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

.btn-cta-nav {
    background: var(--secondary); color: var(--white) !important;
    padding: 10px 20px; border-radius: var(--radius-sm);
    font-weight: 700; transition: all 250ms ease; cursor: pointer;
}

.btn-cta-nav:hover { background: var(--secondary-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--primary); cursor: pointer; }

.hero {
    position: relative; min-height: 70vh;
    background: linear-gradient(135deg, rgba(19, 47, 66, 0.85), rgba(27, 73, 101, 0.75)), url('/storage/generated/296/service_5_1776265787_69dfaa3be0f3c.webp') center/cover no-repeat;
    color: var(--white); display: flex; align-items: center; padding: 80px 20px;
}

.hero-content { max-width: 900px; margin: 0 auto; text-align: center; }

.hero-breadcrumb { font-size: 0.9rem; opacity: 0.9; margin-bottom: 20px; }

.hero-breadcrumb a { color: var(--secondary-light); }

.hero h1 {
    font-size: clamp(1.9rem, 4.5vw, 3.2rem);
    font-weight: 800; line-height: 1.2;
    margin-bottom: 20px; letter-spacing: -0.5px;
}

.hero h1 span { color: var(--secondary-light); }

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    opacity: 0.95; max-width: 720px; margin: 0 auto 35px; line-height: 1.6;
}

.hero-cta { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; border-radius: var(--radius-sm);
    font-weight: 700; font-size: 1rem;
    transition: all 250ms ease; cursor: pointer; border: 2px solid transparent;
}

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

.btn-primary:hover { background: var(--secondary-light); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }

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

section { padding: 80px 0; }

.section-header { text-align: center; max-width: 800px; margin: 0 auto 50px; }

.section-tag {
    display: inline-block; padding: 6px 16px;
    background: var(--bg-sand); color: var(--primary);
    border-radius: 50px; font-size: 0.85rem; font-weight: 600;
    margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px;
}

h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--primary); font-weight: 800; margin-bottom: 15px; line-height: 1.3; }

h3 { font-size: 1.25rem; color: var(--primary-dark); font-weight: 700; margin-bottom: 12px; }

.section-intro { color: var(--text-muted); font-size: 1.05rem; }

.presentation { background: var(--bg-light); }

.presentation-content { max-width: 900px; margin: 0 auto; font-size: 1.05rem; line-height: 1.8; }

.presentation-content p { margin-bottom: 20px; color: var(--text-body); }

.presentation-content strong { color: var(--primary); }

.prestations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }

.prestation-card {
    background: var(--white); padding: 30px 25px;
    border-radius: var(--radius); box-shadow: var(--shadow-sm);
    transition: all 300ms ease; border: 1px solid rgba(27,73,101,0.06);
}

.prestation-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--secondary); }

.prestation-icon {
    width: 60px; height: 60px;
    background: var(--bg-sand); color: var(--primary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 18px;
}

.methodologie { background: var(--bg-sand); }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; margin-top: 40px; }

.step {
    background: var(--white); padding: 30px 25px;
    border-radius: var(--radius); box-shadow: var(--shadow-sm);
    position: relative; text-align: center;
}

.step-number {
    width: 50px; height: 50px;
    background: var(--primary); color: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.3rem; margin: 0 auto 18px;
}

.step h3 { color: var(--primary); }

.avantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 25px; }

.avantage-card {
    background: var(--white); border-left: 4px solid var(--secondary);
    padding: 28px 25px; border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm); transition: all 250ms ease;
}

.avantage-card:hover { transform: translateX(5px); box-shadow: var(--shadow-md); }

.avantage-icon { color: var(--secondary); font-size: 2rem; margin-bottom: 12px; }

.faq { background: var(--bg-light); }

.faq-item {
    background: var(--white); border-radius: var(--radius-sm);
    margin-bottom: 15px; box-shadow: var(--shadow-sm); overflow: hidden;
}

.faq-question {
    padding: 20px 25px; font-weight: 700; color: var(--primary);
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    transition: background 200ms ease; font-size: 1.05rem;
}

.faq-question:hover { background: var(--bg-light); }

.faq-question i { transition: transform 250ms ease; color: var(--secondary); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 300ms ease, padding 300ms ease; padding: 0 25px; }

.faq-item.active .faq-answer { max-height: 500px; padding: 0 25px 22px; }

.zone-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

.zone-text p { margin-bottom: 18px; }

.zone-villes { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

.ville-tag { background: var(--bg-sand); color: var(--primary); padding: 8px 16px; border-radius: 50px; font-size: 0.9rem; font-weight: 600; }

.zone-map { background: var(--bg-sand); border-radius: var(--radius); padding: 50px 30px; text-align: center; }

.zone-map i { font-size: 5rem; color: var(--primary); margin-bottom: 15px; }

.zone-map p { color: var(--primary-dark); font-weight: 600; font-size: 1.1rem; }

.autres-services { background: var(--bg-sand); }

.services-list-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }

.service-link-card {
    background: var(--white); padding: 25px;
    border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
    transition: all 250ms ease;
    display: flex; align-items: center; gap: 15px;
    color: var(--text-dark); cursor: pointer;
}

.service-link-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); background: var(--primary); color: var(--white); }

.service-link-card:hover .service-link-icon { background: var(--secondary); color: var(--white); }

.service-link-card:hover h3 { color: var(--white); }

.service-link-icon {
    width: 50px; height: 50px;
    background: var(--bg-sand); color: var(--primary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; transition: all 250ms ease; flex-shrink: 0;
}

.service-link-card h3 { margin: 0; font-size: 1rem; transition: color 250ms ease; }

.cta-final { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); text-align: center; }

.cta-final h2 { color: var(--white); margin-bottom: 20px; }

.cta-final p { font-size: 1.1rem; opacity: 0.95; max-width: 700px; margin: 0 auto 35px; }

.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

.footer { background: var(--primary-dark); color: var(--white); padding: 60px 0 30px; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }

.footer-brand .logo-wrapper { margin-bottom: 18px; }

.footer-brand .logo-text { color: var(--white); }

.footer-brand .logo-text span { color: var(--secondary); }

.footer-brand p { opacity: 0.85; line-height: 1.7; max-width: 380px; }

.footer-col-title { font-weight: 700; font-size: 1.05rem; margin-bottom: 18px; color: var(--secondary); }

.footer-links a { color: var(--white); opacity: 0.85; transition: opacity 200ms ease; }

.footer-links a:hover { opacity: 1; color: var(--secondary-light); }

.footer-contact-line { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; opacity: 0.9; }

.footer-contact-line i { color: var(--secondary); width: 18px; }

.footer-contact-line a { color: var(--white); }

.footer-contact-line a:hover { color: var(--secondary-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 25px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 15px; font-size: 0.9rem; opacity: 0.85;
}

.footer-legal a { color: var(--secondary-light); }

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .zone-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav {
        display: none; position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--white); flex-direction: column; gap: 0;
        padding: 20px; box-shadow: var(--shadow-md);
    }
    .nav.active { display: flex; }
    .nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--bg-sand); }
    .menu-toggle { display: block; }
    section { padding: 60px 0; }
    .hero { min-height: 60vh; padding: 60px 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
    .hero-cta { flex-direction: column; align-items: stretch; }
    .btn { justify-content: center; }
    .cta-buttons { flex-direction: column; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.hero {
    position: relative; min-height: 70vh;
    background: linear-gradient(135deg, rgba(19, 47, 66, 0.85), rgba(27, 73, 101, 0.75)), url('/storage/generated/296/service_3_1776265742_69dfaa0e62453.webp') center/cover no-repeat;
    color: var(--white); display: flex; align-items: center; padding: 80px 20px;
}

.hero {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(135deg, rgba(19, 47, 66, 0.85), rgba(27, 73, 101, 0.75)), url('/storage/generated/296/service_1_1776265699_69dfa9e3ae170.webp') center/cover no-repeat;
    color: var(--white);
    display: flex; align-items: center;
    padding: 80px 20px;
}

.hero {
    position: relative; min-height: 70vh;
    background: linear-gradient(135deg, rgba(19, 47, 66, 0.85), rgba(27, 73, 101, 0.75)), url('/storage/generated/296/service_2_1776265719_69dfa9f7ed22c.webp') center/cover no-repeat;
    color: var(--white); display: flex; align-items: center; padding: 80px 20px;
}

.hero {
    position: relative; min-height: 70vh;
    background: linear-gradient(135deg, rgba(19, 47, 66, 0.85), rgba(27, 73, 101, 0.75)), url('/storage/generated/296/service_4_1776265765_69dfaa25136b7.webp') center/cover no-repeat;
    color: var(--white); display: flex; align-items: center; padding: 80px 20px;
}

.page-hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, rgba(27, 73, 101, 0.92) 0%, rgba(19, 47, 66, 0.85) 100%),
                url('https://webflash.pro/storage/generated/296/hero_1776265677_69dfa9cd99f68.webp') center/cover no-repeat;
    text-align: center;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--bg-light), transparent);
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.page-hero .breadcrumb a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-hero .breadcrumb a:hover {
    color: var(--secondary-light);
}

.page-hero .breadcrumb i {
    font-size: 0.7rem;
}

.page-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.15;
}

.page-hero h1 span {
    color: var(--secondary);
}

.page-hero .hero-divider {
    width: 70px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
    margin: 0 auto 18px;
}

.page-hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.88);
    max-width: 620px;
    margin: 0 auto;
}

.sitemap-section {
    background: var(--bg-light);
    padding-top: 70px;
    padding-bottom: 90px;
}

.sitemap-block {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 36px 32px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
    border-left: 4px solid var(--secondary);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.sitemap-block:hover {
    box-shadow: var(--shadow-md);
}

.sitemap-block-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 6px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(27, 73, 101, 0.08);
    margin-bottom: 22px;
}

.sitemap-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.sitemap-block-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-dark);
}

.sitemap-block-title span {
    color: var(--primary);
}

.sitemap-block-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 2px;
    font-weight: 500;
}

.chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: var(--bg-light);
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 10px 18px;
    border-radius: 50px;
    border: 1.5px solid transparent;
    transition: all 0.3s ease;
}

.chip i {
    color: var(--secondary);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.chip:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.chip:hover i {
    color: var(--secondary);
    transform: translateX(3px);
}

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

.chip.chip-primary i {
    color: var(--secondary);
}

.chip.chip-primary:hover {
    background: var(--primary-dark);
}

.service-subgroup {
    margin-bottom: 24px;
    padding: 20px 22px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
}

.service-subgroup:last-child {
    margin-bottom: 0;
}

.service-subgroup-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 14px;
}

.service-subgroup-title i {
    color: var(--secondary);
    font-size: 0.9rem;
}

.service-subgroup .chip {
    background: var(--white);
    font-size: 0.85rem;
    padding: 8px 16px;
}

.service-subgroup .chip:hover {
    background: var(--primary);
    color: var(--white);
}

.sitemap-intro {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 36px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 20px;
}

.sitemap-intro-icon {
    width: 56px;
    height: 56px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.sitemap-intro-text strong {
    color: var(--primary);
    font-weight: 700;
}

.sitemap-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius);
    padding: 44px 36px;
    text-align: center;
    color: var(--white);
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.sitemap-cta::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: rgba(212, 160, 60, 0.15);
    border-radius: 50%;
}

.sitemap-cta h3 {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
}

.sitemap-cta p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 22px;
    position: relative;
}

.sitemap-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 160, 60, 0.35);
    position: relative;
}

.sitemap-cta .btn-primary:hover {
    transform: translateY(-2px);
    background: var(--secondary-light);
    box-shadow: 0 6px 24px rgba(212, 160, 60, 0.5);
}

.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    padding-top: 60px;
    padding-bottom: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .logo-wrapper {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
}

.footer-col-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.footer-contact-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.8);
}

.footer-contact-line a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 22px;
    padding-bottom: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.footer-legal {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-legal a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--secondary);
}

@media (max-width: 900px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav.open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        padding: 18px 20px;
        box-shadow: var(--shadow-md);
        gap: 4px;
    }

    .nav.open a {
        width: 100%;
    }

    .page-hero {
        padding-top: 130px;
        padding-bottom: 60px;
    }

    .page-hero h1 {
        font-size: 2.1rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .sitemap-block {
        padding: 26px 22px;
    }

    .sitemap-block-title {
        font-size: 1.2rem;
    }

    .sitemap-intro {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

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

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .sitemap-cta {
        padding: 34px 22px;
    }

    .sitemap-cta h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 560px) {
    .page-hero h1 {
        font-size: 1.7rem;
    }

    .sitemap-block-head {
        flex-wrap: wrap;
    }

    .chip {
        font-size: 0.82rem;
        padding: 9px 14px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-subgroup {
        padding: 18px 16px;
    }
}

/* ========================================================================
   PATCH SEO v2 — aliases classes drifted par Sonnet (v2 — layout fix)
   ======================================================================== */

/* === FOOTER drifted === */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    padding: 60px 0 0;
}
.site-footer .footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 0 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.site-footer .footer-col { font-size: 0.92rem; }
.site-footer .footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 14px;
    display: block;
    text-decoration: none;
}
.site-footer .footer-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}
.site-footer .footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 16px;
}
.site-footer .footer-nav,
.site-footer .footer-contact { list-style: none; padding: 0; margin: 0; }
.site-footer .footer-nav li,
.site-footer .footer-contact li { margin-bottom: 10px; }
.site-footer .footer-nav a,
.site-footer .footer-contact a,
.site-footer .footer-contact span {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.3s ease;
}
.site-footer .footer-nav a:hover,
.site-footer .footer-contact a:hover { color: var(--secondary); }
.site-footer .footer-contact i { color: var(--secondary); width: 18px; margin-right: 8px; }
.site-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 20px;
    padding: 20px;
    text-align: center;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
}
@media (max-width: 1024px) {
    .site-footer .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .site-footer .footer-inner { grid-template-columns: 1fr; }
}

/* === SECTION TITLES drifted === */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.3;
    text-align: center;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 680px;
    margin: 0 auto 40px;
    text-align: center;
    line-height: 1.6;
}

/* === HERO drifted === */
.hero-eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 14px;
}
.hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    line-height: 1.6;
}
.hero-actions,
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
    justify-content: center;
}

/* === STATS BAND drifted — fix colonnes trop étroites === */
.stats-band-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}
/* Force stat-number + stat-label à empiler (override au cas où inline) */
.stats-band-inner .stat-item { text-align: center; }
.stats-band-inner .stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.4rem, 2.6vw, 2.2rem);
    color: var(--secondary);
    line-height: 1.15;
    margin-bottom: 6px;
    word-break: normal;
    hyphens: auto;
}
.stats-band-inner .stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.78);
    font-weight: 500;
    line-height: 1.4;
}
@media (max-width: 900px) {
    .stats-band-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 480px) {
    .stats-band-inner { grid-template-columns: 1fr; }
}

/* === CTA BAND drifted === */
.cta-band {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 20px;
    text-align: center;
    color: var(--white);
    margin: 60px 0 0;
}
.cta-band-inner { max-width: 1000px; margin: 0 auto; }
.cta-band-text {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    line-height: 1.6;
}
.cta-band-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-band h2, .cta-band h3 { color: var(--white); margin-bottom: 14px; }

/* === BOUTONS drifted === */
.btn-lg {
    padding: 16px 32px !important;
    font-size: 1.05rem;
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary) !important;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 250ms ease;
}
.btn-outline:hover {
    background: var(--secondary);
    color: var(--white) !important;
}

/* === BREADCRUMB <ol> drifted (hors .page-hero) === */
.hero-content .breadcrumb ol,
.breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    align-items: center;
    font-size: 0.9rem;
}
.breadcrumb ol li { display: inline-flex; align-items: center; }
.breadcrumb ol li + li::before {
    content: '›';
    margin-right: 10px;
    color: rgba(255,255,255,0.6);
}
.breadcrumb ol li a {
    color: var(--secondary-light);
    text-decoration: none;
}
.breadcrumb ol li a:hover { color: var(--secondary); }
.breadcrumb ol li[aria-current="page"] { color: rgba(255,255,255,0.9); font-weight: 600; }

/* === FAQ drifted items (si utilisés) === */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 18px 22px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    padding: 0 22px 20px;
    color: var(--text-body);
    line-height: 1.65;
}
/* Fin patch */
