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

:root {
    --bg-dark: #0a0a0a;
    --text-light: #f5f5f7;
    --accent: #c01a1a;
    --accent-hover: #991515;
    --gray-dark: #1a1a1a;
    --gray-light: #888;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, .logo span {
    font-family: 'Cinzel', serif;
}

/* ==============================
   NAVBAR
============================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    z-index: 100;
    transition: var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 5%;
}
.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-light);
}
.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}
.nav-links a:hover {
    color: var(--accent);
}
.btn-primary {
    border: 1px solid var(--accent);
    padding: 0.5rem 1.5rem;
    border-radius: 0;
}
.btn-primary:hover {
    background: var(--accent);
    color: var(--bg-dark) !important;
}

/* RIGHT SIDE NAVBAR */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* LANGUAGE SWITCHER */
.lang-switcher {
    display: flex;
    gap: 4px;
}
.lang-btn {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 4px 10px;
    cursor: pointer;
    font-size: 0.7rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border-radius: 0;
}
.lang-btn.active,
.lang-btn:hover {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
}

/* MOBILE MENU BUTTON */
.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    color: var(--accent);
    cursor: pointer;
    z-index: 1001;
}

/* ==============================
   HERO SECTION
============================== */
.hero {
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    position: relative;
}
.hero-overlay {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.68);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    width: 100%;
}
.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}
.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.8;
    text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

/* ==============================
   BUTTONS
============================== */
.btn-luxe {
    background: var(--accent);
    color: var(--bg-dark);
    text-decoration: none;
    padding: 0.75rem 1.8rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: var(--transition);
}
.btn-luxe:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
}
.btn-outline-luxe {
    border: 1px solid var(--text-light);
    color: var(--text-light);
    text-decoration: none;
    padding: 0.75rem 1.8rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-left: 1rem;
    transition: var(--transition);
}
.btn-outline-luxe:hover {
    background: var(--text-light);
    color: var(--bg-dark);
}

/* Hero boutons centrés */
.hero-action {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ==============================
   STATS BAR
============================== */
.stats-bar {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
    justify-content: center;
}
.stat span {
    display: block;
    font-size: 2.5rem;
    font-family: 'Cinzel', serif;
    color: var(--accent);
    text-shadow: 0 2px 10px rgba(0,0,0,0.85);
}
.stat {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.75);
}

/* ==============================
   SERVICES
============================== */
.services {
    padding: 8rem 5%;
    background: var(--bg-dark);
}
.section-header {
    text-align: center;
    margin-bottom: 6rem;
}
.section-header h2 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}
.divider {
    height: 2px;
    width: 60px;
    background: var(--accent);
    margin: 0 auto;
}
.service-block {
    display: flex;
    align-items: center;
    margin-bottom: 8rem;
    gap: 5%;
}
.service-block.reverse {
    flex-direction: row-reverse;
}
.service-img {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    filter: grayscale(20%);
    transition: var(--transition);
}
.service-block:hover .service-img {
    filter: grayscale(0%);
    transform: scale(1.02);
}
.service-text {
    flex: 1;
}
.service-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}
.service-text p {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.8;
}

/* ==============================
   TRUST BANNER
============================== */
.trust-banner {
    padding: 6rem 5%;
    background: var(--gray-dark);
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-banner h2 {
    font-size: 2.5rem;
    color: var(--accent);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

/* ==============================
   CONTACT
============================== */
.contact-section {
    padding: 8rem 5%;
}
.contact-container {
    display: flex;
    gap: 5%;
    max-width: 1200px;
    margin: 0 auto;
}
.contact-info { flex: 1; }
.contact-info h2 { font-size: 3rem; margin-bottom: 1.5rem; }
.contact-info p { color: var(--gray-light); margin-bottom: 3rem; font-size: 1.1rem; }
.contact-list { list-style: none; }
.contact-list li { margin-bottom: 1.5rem; font-size: 1.1rem; display: flex; align-items: center; gap: 1rem; }
.contact-list i { color: var(--accent); font-size: 1.3rem; }

.contact-form-wrapper {
    flex: 1;
    background: var(--gray-dark);
    padding: 3rem;
}
.input-group { margin-bottom: 1.5rem; }
.luxe-form input, .luxe-form select, .luxe-form textarea {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-light);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}
.luxe-form input:focus, .luxe-form select:focus, .luxe-form textarea:focus {
    outline: none;
    border-bottom-color: var(--accent);
}
.luxe-form select option {
    background: var(--gray-dark);
    color: var(--text-light);
}
.btn-submit-luxe {
    background: var(--accent);
    color: var(--bg-dark);
    border: none;
    padding: 1rem 2rem;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}
.btn-submit-luxe:hover {
    background: var(--text-light);
}

/* ==============================
   FOOTER
============================== */
footer {
    text-align: center;
    padding: 3rem 5%;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-logo-img {
    max-width: 200px;
    height: auto;
    margin: 0 auto 1.5rem auto;
    display: block;
}
footer p {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* ==============================
   WHATSAPP FLOTTANT
============================== */
.wa-menu-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}
.wa-options {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
.wa-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.wa-option {
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: background 0.3s;
}
.wa-option:hover { background: #128c7e; }
.wa-float {
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.wa-float:hover { transform: scale(1.1); }

/* ==============================
   ANIMATIONS REVEAL
============================== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal-text.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-text.delay-1 { transition-delay: 0.2s; }
.reveal-text.delay-2 { transition-delay: 0.4s; }
.reveal-text.delay-3 { transition-delay: 0.6s; }

/* ==============================
   RTL (ARABE)
============================== */
[dir="rtl"] .hero-overlay {
    background: linear-gradient(to left, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);
}
[dir="rtl"] .hero-content {
    text-align: right;
}
[dir="rtl"] .nav-links a {
    margin-left: 0;
    margin-right: 2rem;
}
[dir="rtl"] .btn-outline-luxe {
    margin-left: 0;
    margin-right: 1rem;
}
[dir="rtl"] .lang-switcher {
    order: -1;
}
[dir="rtl"] .service-block {
    flex-direction: row-reverse;
}
[dir="rtl"] .service-block.reverse {
    flex-direction: row;
}
[dir="rtl"] .contact-list li {
    flex-direction: row-reverse;
    text-align: right;
}
[dir="rtl"] .stats-bar {
    direction: rtl;
}
[dir="rtl"] .wa-menu-container {
    right: auto;
    left: 30px;
}
[dir="rtl"] .wa-options {
    right: auto;
    left: 0;
}

/* ==============================
   ANTI-BUG GLOBAL
============================== */
html, body {
    overflow-x: hidden !important;
    width: 100vw;
    position: relative;
}
img, video {
    max-width: 100%;
    height: auto;
}

/* ==============================
   RESPONSIVE MOBILE
============================== */
@media (max-width: 768px) {

    /* NAVBAR — fond sombre permanent sur mobile */
    .navbar {
        background: rgba(10, 10, 10, 0.95) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 0.9rem 4%;
    }
    .logo span {
        font-size: 1rem;
        letter-spacing: 1px;
        white-space: nowrap;
    }
    .mobile-menu-btn { display: block; }
    .lang-btn {
        padding: 3px 6px;
        font-size: 0.6rem;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10,10,10,0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
        z-index: 1000;
        display: flex;
    }
    .nav-links.active { right: 0; }
    .nav-links a {
        margin: 1.5rem 0;
        font-size: 1.2rem;
    }

    /* HERO — espace pour la navbar fixe */
    .hero {
        background-attachment: scroll;
        padding-top: 90px;
        align-items: flex-start;
        padding-left: 5%;
        padding-right: 5%;
    }
    .hero-content {
        width: 100%;
        text-align: center;
    }
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    /* BOUTONS — taille adaptée, pas pleine largeur */
    .hero-action {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    .btn-luxe, .btn-outline-luxe {
        width: auto;
        display: inline-block;
        padding: 0.65rem 1.5rem;
        font-size: 0.78rem;
        margin-left: 0;
        white-space: nowrap;
    }

    /* STATS — chiffres réduits */
    .stats-bar {
        flex-direction: row;
        gap: 2rem;
        justify-content: center;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    .stat span {
        font-size: 1.6rem;
    }
    .stat {
        font-size: 0.7rem;
        text-align: center;
    }

    /* SERVICES */
    .service-block,
    .service-block.reverse {
        flex-direction: column !important;
        gap: 20px;
        margin-bottom: 4rem;
        padding: 0 15px;
    }
    .service-img {
        flex: none !important;
        width: 100% !important;
        height: 220px !important;
        min-height: 220px;
        background-size: cover;
        background-position: center;
    }

    /* CONTACT */
    .contact-container { flex-direction: column; }
    .contact-form-wrapper { padding: 1.5rem; margin-top: 3rem; }

    /* WHATSAPP */
    .wa-menu-container { bottom: 20px; right: 20px; }
    .wa-options { right: 0; bottom: 70px; }
    .wa-option { font-size: 0.8rem; padding: 10px 15px; }

    /* RTL mobile */
    [dir="rtl"] .nav-links {
        right: auto;
        left: -100%;
    }
    [dir="rtl"] .nav-links.active {
        left: 0;
        right: auto;
    }
    [dir="rtl"] .wa-menu-container {
        right: auto;
        left: 20px;
    }
    [dir="rtl"] .wa-options {
        right: auto;
        left: 0;
    }
}

/* ==============================
   NAVIGATION ACTIVE
============================== */
.nav-links a.nav-item.nav-active {
    color: var(--accent);
}

/* ==============================
   PAGE HERO (pages internes)
============================== */
.page-hero {
    height: 55vh;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
}
.page-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.65);
}
.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 5%;
}
.page-hero-content .breadcrumb {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: block;
}
.page-hero-content h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    line-height: 1.2;
}

/* ==============================
   POURQUOI NOUS CHOISIR
============================== */
.why-section {
    padding: 8rem 5%;
    background: var(--gray-dark);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.why-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}
.why-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}
.why-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: block;
}
.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}
.why-card p {
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ==============================
   TÉMOIGNAGES
============================== */
.testimonials-section {
    padding: 8rem 5%;
    background: var(--bg-dark);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.testimonial-card {
    background: var(--gray-dark);
    padding: 2.5rem;
    border-left: 3px solid var(--accent);
    transition: var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-5px);
}
.testimonial-stars {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}
.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.testimonial-name {
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==============================
   ZONE D'INTERVENTION
============================== */
.zone-section {
    padding: 6rem 5%;
    background: var(--gray-dark);
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.zone-desc {
    color: var(--gray-light);
    font-size: 1.05rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.zone-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}
.zone-city {
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 0.6rem 1.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    cursor: default;
}
.zone-city:hover {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
}

/* ==============================
   FOOTER HORAIRES
============================== */
.footer-hours {
    margin: 1rem 0;
}
.footer-hours p {
    color: var(--gray-light);
    font-size: 0.9rem;
}
.footer-hours i {
    color: var(--accent);
    margin-right: 0.5rem;
}

/* ==============================
   PAGE SERVICES — CARDS
============================== */
.services-page {
    padding: 8rem 5%;
    background: var(--bg-dark);
}
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}
.service-card {
    background: var(--gray-dark);
    overflow: hidden;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-8px);
}
.service-card-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    filter: grayscale(20%);
    transition: var(--transition);
}
.service-card:hover .service-card-img {
    filter: grayscale(0%);
}
.service-card-body {
    padding: 2rem;
}
.service-card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}
.service-card-body > p {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.service-card-list {
    list-style: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
}
.service-card-list li {
    color: var(--text-light);
    padding: 0.35rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.service-card-list li::before {
    content: '—';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

/* ==============================
   CTA SECTION (partagée)
============================== */
.cta-section {
    padding: 7rem 5%;
    background: var(--gray-dark);
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.cta-section p {
    color: var(--gray-light);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

/* ==============================
   PAGE À PROPOS
============================== */
.about-story-section {
    padding: 8rem 5%;
    background: var(--bg-dark);
}
.about-story-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6%;
    align-items: center;
}
.about-story-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}
.about-story-text p {
    color: var(--gray-light);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}
.about-story-img {
    height: 450px;
    background-size: cover;
    background-position: center;
    filter: grayscale(15%);
    transition: var(--transition);
}
.about-story-img:hover {
    filter: grayscale(0%);
}
.values-section {
    padding: 8rem 5%;
    background: var(--gray-dark);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}
.value-card {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}
.value-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}
.value-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: block;
}
.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.value-card p {
    color: var(--gray-light);
    line-height: 1.7;
    font-size: 0.95rem;
}
.stats-about-section {
    padding: 8rem 5%;
    background: var(--bg-dark);
    text-align: center;
}
.stats-about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 4rem auto 0;
}
.stat-about-card {
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}
.stat-about-card:hover {
    border-color: var(--accent);
}
.stat-about-number {
    font-size: 4rem;
    font-family: 'Cinzel', serif;
    color: var(--accent);
    display: block;
    line-height: 1;
}
.stat-about-label {
    color: var(--gray-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.8rem;
    display: block;
}

/* ==============================
   PAGE CONTACT
============================== */
.contact-page-section {
    padding: 8rem 5%;
    background: var(--bg-dark);
}
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5%;
    max-width: 1200px;
    margin: 0 auto;
}
.contact-page-info h2 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}
.contact-page-info > p {
    color: var(--gray-light);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}
.contact-hours-box {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: var(--gray-dark);
    border-left: 3px solid var(--accent);
}
.contact-hours-box h4 {
    color: var(--accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    font-family: 'Cinzel', serif;
}
.contact-hours-box p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}
.contact-map-section {
    padding: 0 5% 8rem;
    max-width: 1200px;
    margin: 0 auto;
}
.contact-map-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}
.contact-map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(70%);
    display: block;
    transition: filter 0.5s ease;
}
.contact-map-section iframe:hover {
    filter: grayscale(0%);
}

/* ==============================
   RESPONSIVE — NOUVELLES SECTIONS
============================== */
@media (max-width: 768px) {
    .page-hero {
        background-attachment: scroll;
    }
    .page-hero-content h1 {
        font-size: 2.2rem;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .services-page-grid {
        grid-template-columns: 1fr;
    }
    .about-story-inner {
        grid-template-columns: 1fr;
    }
    .about-story-img {
        height: 280px;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .stats-about-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .stat-about-number {
        font-size: 2.5rem;
    }
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
    .contact-map-section {
        padding: 0 5% 5rem;
    }
}
@media (max-width: 480px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
    .stats-about-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================
   MADE BY TAG
============================== */
.made-by {
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.made-by a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    opacity: 0.5;
}
.made-by a:hover {
    color: var(--accent);
    opacity: 1;
}
.made-by strong {
    color: var(--accent);
    opacity: 1;
}
