* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #ff6b35;
    --jaune-color: #e98600;
    --light-gray: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --white: #ffffff;
    --gradient-dark: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
    --gradient-dark-2: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Sur-Header - Ultra moderne */
.top-header {
    background: var(--gradient-dark-2);
    color: var(--white);
    padding: 5px 0;
    font-size: 0.8rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.top-header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-header-info {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.top-header-info span {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.85;
    transition: all 0.3s ease;
    color: var(--white);
    font-weight: 500;
}

.top-header-info span:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.top-header-info i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* Bouton Appeler - Caché par défaut */
.call-button {
    display: none;
}

.top-header-social a {
    color: var(--white);
    font-size: 1.5rem;
    margin-left: 20px;
    transition: all 0.3s ease;
    opacity: 0.75;
}

.top-header-social a:hover {
    color: var(--accent-color);
    opacity: 1;
    transform: translateY(-2px);
}

/* Header Principal - Design épuré moderne */
.main-header {
    background: rgba(255, 255, 255, 0.98);
    padding: 10px 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 44px;
    width: 100%;
    z-index: 1001;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 40px;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateX(3px);
}

.logo img {
    height: 75px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.3));
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.logo-text .subtitle {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
}

.logo-text .subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.main-nav {
    display: flex;
    gap: 45px;
    align-items: center;
}

.main-nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), #ff8c5a);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav a:hover::before {
    width: 100%;
}

.main-nav a:hover {
    color: var(--accent-color);
}

/* Menu Hamburger - Changement simple 3 traits / croix */
.hamburger {
    display: none;
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1003;
}

.hamburger span {
    position: absolute;
    width: 28px;
    height: 2px;
    background-color: var(--primary-color);
    left: 50%;
    transform: translateX(-50%);
}

/* État 3 traits */
.hamburger span:nth-child(1) {
    top: 8px;
}

.hamburger span:nth-child(2) {
    top: 14px;
}

.hamburger span:nth-child(3) {
    top: 20px;
}

/* État croix - pas d'animation */
.hamburger.active span:nth-child(1) {
    top: 14px;
    transform: translateX(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    display: none;
}

.hamburger.active span:nth-child(3) {
    top: 14px;
    transform: translateX(-50%) rotate(-45deg);
}

/* Menu mobile */
.main-nav.mobile-open {
    display: flex;
}

/* Hero Section - Carrousel */
.hero-carousel {
    margin-top: 100px;
    height: 80vh;
    position: relative;
    overflow: hidden;
    touch-action: pan-y; /* Permet le swipe horizontal */
    user-select: none;
}

/* Mobile (jusqu'à 768px de large) */
@media (max-width: 768px) {
    .hero-carousel {
        height: 50vh;
    }
}


.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center center;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
    width: 90%;
    max-width: 1000px;
}

.carousel-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-content p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: var(--accent-color);
}

/* Boutons de navigation du carrousel */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 15;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0.7;
}

.carousel-nav:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.98);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

/* Section Présentation */
.presentation-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.presentation-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.presentation-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    height: 600px;
}

.presentation-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.presentation-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.presentation-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: justify;
}

/* Animation automatique pour le titre */
.auto-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.auto-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* SECTION SERVICES */
.services-section {
    padding: 80px 20px 100px 20px;
    background-color: var(--light-gray);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */
.service-card {
    position: relative;
    height: 340px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 30%,
            /* bas bien sombre pour le texte */
            rgba(0, 0, 0, 0.55) 40%,
            /* point intermédiaire adoucissant */
            rgba(0, 0, 0, 0.25) 60%,
            /* haut plus clair mais encore visible */
            rgba(0, 0, 0, 0.0) 80%
            /* totalement transparent tout en haut */
        );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px 20px;
    color: var(--white);
    text-align: center;
    box-sizing: border-box;
}

/* ALIGNEMENT TITRE + TEXTE PARFAIT */
.service-overlay h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
    min-height: 3.2em;
    /* espace réservé = hauteur uniforme */
    display: flex;
    align-items: center;
    /* centre verticalement le texte dans la zone */
    justify-content: center;
    /* centre horizontalement */
    text-align: center;
}

.service-overlay p {
    font-size: 0.95rem;
    line-height: 1.6;
    min-height: 6em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Section Clientèle - Ultra Moderne et Minimaliste */
.clientele-section {
    padding: 80px 20px;
    background: var(--white);
    position: relative;
}

.clientele-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.clientele-container {
    max-width: 1200px;
    margin: 0 auto;
}

.clientele-intro {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 80px;
}

.clientele-intro h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: -1px;
}

.clientele-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.clientele-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #e8e8e8;
    margin-top: 60px;
}

.clientele-item {
    position: relative;
    padding: 50px 40px;
    background: var(--white);
    text-align: left;
    transition: all 0.3s ease;
    overflow: hidden;
}

.clientele-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--accent-color);
    transition: height 0.3s ease;
}

.clientele-item:hover::before {
    height: 100%;
}

.clientele-item:hover {
    background: #fafafa;
}

.clientele-item i {
    font-size: 1.5rem;
    color: var(--jaune-color);
    margin-bottom: 30px;
    opacity: 0.7;
    display: block;
}

.clientele-item h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.clientele-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Section Galerie - Scroll Horizontal avec Thème Sombre */
.gallery-section {
    padding: 100px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.gallery-container {
    max-width: 100%;
    margin: 0 auto;
}

.gallery-intro {
    text-align: center;
    margin-bottom: 20px;
    padding: 0 20px;
}

.gallery-intro h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.gallery-intro h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.gallery-intro p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.gallery-scroll-wrapper {
    position: relative;
    overflow-x: hidden;
    cursor: grab;
}

.gallery-scroll-wrapper:active {
    cursor: grabbing;
}

.gallery-scroll {
    display: flex;
    gap: 25px;
    padding: 0 40px 40px 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.gallery-scroll::-webkit-scrollbar {
    height: 8px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

.gallery-scroll::-webkit-scrollbar-thumb:hover {
    background: #ff8c5a;
}

.gallery-item-horizontal {
    flex: 0 0 auto;
    width: 450px;
    height: 350px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.gallery-item-horizontal:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.3);
}

.gallery-item-horizontal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-horizontal:hover img {
    transform: scale(1.08);
}

.gallery-hint {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-top: 30px;
    padding: 0 20px;
}

.gallery-hint i {
    color: var(--accent-color);
    margin-right: 8px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-image {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 5px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

/* Footer Moderne et Professionnel */
.footer {
    background: var(--gradient-dark);
    color: var(--white);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding: 50px 0 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-tagline {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    max-width: 350px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column ul li i {
    color: var(--accent-color);
    font-size: 0.9rem;
    width: 16px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column ul li:hover,
.footer-column ul li a:hover {
    color: var(--accent-color);
    transform: translateX(3px);
}

.footer-cta {
    margin-top: 25px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.cta-button:hover {
    background: transparent;
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.cta-button i {
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-small {
    height: 35px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.6;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-color);
}

/* FAQ styles */
.faq-section { background: var(--white); color: var(--primary-color); }
.faq-inner .section-title { margin-bottom:28px; font-size:2rem; font-weight:800; color:var(--primary-color); }
.faq-list { display:block; gap:18px; }
.faq-item { margin-bottom:14px; }
.faq-question {
    width:100%;
    background: #f3f3f3;
    border: none;
    padding:20px 22px;
    border-radius:999px;
    text-align:left;
    display:flex;
    align-items:center;
    justify-content:space-between;
    font-weight:700;
    color:var(--primary-color);
    cursor:pointer;
    box-shadow: none;
}
.faq-question:focus { outline:3px solid rgba(233,134,0,0.15); outline-offset:3px; }
.faq-icon { width:20px; height:20px; color:var(--primary-color); flex:0 0 28px; }
.faq-answer {
    padding:18px 28px;
    margin-top:10px;
    color:var(--text-light);
    line-height:1.7;
    border-left:4px solid rgba(233,134,0,0.12);
    border-radius:8px;
    background:transparent;
    max-width: 100%;
}
.faq-answer p { margin:0; }

/* open state */
.faq-item.open .faq-question { background: var(--jaune-color, #e98600); color:#fff; }
.faq-item.open .faq-icon { color:#fff; }
.faq-item.open .faq-answer { display:block; }

/* responsive */
@media (max-width:800px) {
    .faq-question { padding:16px; }
    .faq-answer { padding:14px 16px; }
}

/* Responsive */
@media (max-width: 768px) {
    .main-header {
        top: 48px;
    }

    .top-header-info {
        justify-content: center;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .top-header-content {
        justify-content: center;
        align-items: center;
        padding: 0 15px;
    }

    .top-header-info {
        justify-content: center;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .top-header-info .flex {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        justify-content: center;
    }

    .parent-call-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    /* Afficher le bouton Appeler sur mobile - style sobre et pro */
    .call-button {
        display: flex !important;
        align-items: center;
        gap: 8px;
        padding: 4px 16px;
        background: transparent;
        color: var(--white) !important;
        text-decoration: none;
        border: 1.5px solid rgba(255, 255, 255, 0.3);
        border-radius: 6px;
        font-weight: 500;
        font-size: 0.85rem;
        transition: all 0.3s ease;
        opacity: 0.9 !important;
        letter-spacing: 0.3px;
        white-space: nowrap;
        margin: 4px 0;
    }

    .call-button:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--accent-color);
    }

    .call-button i {
        color: var(--accent-color) !important;
        font-size: 0.85rem;
    }

    /* Numéro à côté du bouton - style épuré */
    .top-header-info .flex small {
        display: inline-flex;
        align-items: center;
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.75rem;
        font-weight: 500;
        white-space: nowrap;
        letter-spacing: 0.3px;
    }

    /* Cacher tous les autres spans (numéro desktop, email, localisation) */
    .top-header-info span:not(:first-child) {
        display: none;
    }

    .top-header-social {
        display: none;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
        padding: 0 20px;
        position: relative;
    }

    .logo {
        gap: 18px;
    }

    .logo img {
        height: 60px;
    }

    .logo-text .subtitle {
        display: block;
        font-size: 9px;
        letter-spacing: 1.2px;
        padding-bottom: 4px;
    }

    /* Afficher le hamburger sur mobile */
    .hamburger {
        display: flex;
    }

    /* Menu mobile simple dropdown */
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        right: 20px;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        border-radius: 0;
        min-width: 180px;
        margin-top: 10px;
        z-index: 1000;
    }

    .main-nav.mobile-open {
        display: flex;
    }

    .main-nav a {
        padding: 15px 25px;
        font-size: 13px;
        letter-spacing: 1px;
        transition: all 0.2s ease;
        border-bottom: 1px solid #e0e0e0;
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    .main-nav a:hover {
        background: var(--light-gray);
        color: var(--accent-color);
    }

    .carousel-content h1 {
        font-size: 2rem;
    }

    .carousel-content p {
        font-size: 1rem;
    }

    .carousel-nav {
        width: 30px;
        height: 30px;
        font-size: 0.90rem;
    }

    .carousel-prev {
        left: 15px;
    }

    .carousel-next {
        right: 15px;
    }

    .presentation-content {
        grid-template-columns: 1fr;
        gap: 40px;
        display: flex;
        flex-direction: column-reverse;
    }

    .presentation-image {
        height: 300px;
    }

    .presentation-text h2,
    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Section Présentation */
    .presentation-section {
        padding: 50px 20px;
    }

    /* Section Clientèle - Responsive */
    .clientele-section {
        padding: 60px 20px;
    }

    .clientele-intro {
        margin: 0 auto 40px;
    }

    .clientele-intro h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .clientele-intro p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .clientele-grid {
        grid-template-columns: 1fr;
        gap: 2px;
        margin-top: 30px;
    }

    .clientele-item {
        padding: 30px 25px;
    }

    .clientele-item i {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .clientele-item h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .clientele-item p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Galerie Responsive */
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-intro h2 {
        font-size: 1.8rem;
    }

    .gallery-intro p {
        font-size: 0.95rem;
    }

    .gallery-scroll {
        padding: 0 20px 30px 20px;
        gap: 15px;
    }

    .gallery-item-horizontal {
        width: 320px;
        height: 280px;
    }

    .gallery-hint {
        font-size: 0.85rem;
        margin-top: 20px;
    }

    .lightbox-image {
        max-width: 95%;
        max-height: 80vh;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 2.5rem;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-counter {
        bottom: 15px;
        font-size: 0.95rem;
        padding: 8px 16px;
    }

    .gallery-scroll::-webkit-scrollbar {
        height: 4px;
    }

    /* Footer Responsive */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 35px 0 25px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-tagline {
        font-size: 0.95rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 35px;
        max-width: 280px;
        margin: 0 auto;
    }

    .footer-column h4 {
        text-align: left;
        font-size: 1.05rem;
        margin-bottom: 18px;
    }

    .footer-column h4::after {
        left: 0;
        transform: none;
        width: 35px;
    }

    .footer-column ul {
        align-items: flex-start;
        gap: 10px;
    }

    .footer-column ul li {
        text-align: left;
        font-size: 0.9rem;
    }

    .footer-column ul li i {
        font-size: 0.85rem;
        width: 14px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-bottom-left {
        flex-direction: column;
        gap: 8px;
    }

    .footer-logo-small {
        height: 30px;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    .footer-legal {
        justify-content: center;
    }

    .footer-legal a {
        font-size: 0.85rem;
    }
}

/* Animations au scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

#why-choose {
    padding: 80px 20px;
    background: var(--white);
    color: var(--primary-color);
    text-align: center;
}
.why-subtitle {
    color: var(--jaune-color);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: .6px;
}
.why-title {
    font-size: 2.6rem;
    margin: 0 0 12px;
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}
.why-title::after {
    content: '';
    display: block;
    height: 4px;
    width: 100%;
    margin: 10px auto 0;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}
.why-lead {
    color: var(--text-light);
    margin-bottom: 36px;
    font-size: 1.05rem;
}

/* Features grid */
.features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.feature-item {
    flex: 1 1 300px;
    max-width: 33%;
    text-align: center;
    padding: 10px 20px;
    box-sizing: border-box;
}
.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, rgba(0,0,0,0.06), rgba(0,0,0,0.02));
    border: 2px solid rgba(0,0,0,0.06);
    font-size: 28px;
}
.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}
.feature-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.98rem;
    margin: 0 auto;
    max-width: 300px;
}

/* Small decorative light dots (subtle, like the image) */
.feature-item::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 142, 255, 0.08);
    margin: -10px auto 10px;
    pointer-events: none;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 900px) {
    .feature-item { max-width: 48%; }
}
@media (max-width: 600px) {
    .why-title { font-size: 1.6rem; }
    .features-grid { gap: 18px; }
    .feature-item { max-width: 100%; padding: 14px 8px; }
    .feature-icon { width:60px; height:60px; font-size:22px; }
}

.feather { color: var(--jaune-color, #e98600); }

/* Présentation — style pour les <strong> */
.presentation-text strong {
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.2em; /* plus grand que le texte normal */
    display: inline-block;
    line-height: 1.1;
    margin-right: 4px;
}

/* Ajustement mobile */
@media (max-width: 600px) {
    .presentation-text strong {
        font-size: 1.05em;
    }
}

.zones-section {
    padding: 60px 20px;
    background: #f8f8f8;
    text-align: center;
}
.zones-container { max-width: 900px; margin: 0 auto; }
.zones-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    font-weight: bold;
}