/* ===== BASE ===== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800;900&display=swap');
:root {
    --primary: #00BFFF;
    --primary-dark: #0099CC;
    --primary-glow: rgba(0, 191, 255, 0.3);
    --dark: #080A0D;
    --dark-card: #0F141A;
    --dark-card-hover: #1A212A;
    --text: #F0F4F8;
    --text-muted: #8899AA;
    --radius: 20px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}


/* ===== SCROLLBAR ===== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}


/* ===== UTILITIES ===== */

.gradient-text {
    background: linear-gradient(135deg, #00BFFF, #7B68EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ===== HEADER ===== */

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

#header.scrolled {
    background: rgba(8, 10, 13, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
}
css
css
/* ==============================
   CATALOGUE WHATSAPP DYNAMIQUE
============================== */

.catalogue-whatsapp {
    text-align: center;
    margin: 35px auto;
}

.catalogue-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

/* Bouton */
.whatsapp-catalogue-btn {
    display: inline-block;
    padding: 14px 28px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 10px;
    position: relative;
    background: transparent;
    z-index: 1;
    transition: 0.3s ease;
}

/* Contour bleu dégradé */
.whatsapp-catalogue-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 10px;

    background: linear-gradient(
        90deg,
        #0066ff,
        #00c6ff,
        #0066ff,
        #00c6ff
    );

    background-size: 300% 100%;

    -webkitmask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    z-index: -1;

    animation: borderMove 3s linear infinite;
}
css
/* ================================
   QR CODE - SCAN MOI
================================ */

.scan-qr {
    text-align: center;
    display: inline-block;
}

/* TEXTE SCAN MOI */

.scan-moi {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 2px;

    animation: scanTextZoom 1.5s ease-in-out infinite;
}

/* Animation du texte */

@keyframes scanTextZoom {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.18);
    }
}


/* CONTENEUR DU QR */

.qr-zoom {
    position: relative;
    display: inline-block;

    padding: 8px;
    border-radius: 15px;

    animation: qrZoom 2.2s ease-in-out infinite;
}


/* ZOOM DU QR */

@keyframes qrZoom {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}


/* IMAGE */

.qr-zoom img {
    display: block;
    max-width: 180px;
    height: auto;

    border-radius: 12px;

    transition: 0.4s ease;

    box-shadow:
        0 0 0 2px #0066ff,
        0 0 15px rgba(0, 102, 255, 0.6);
}


/* LUEUR AU SURVOL */

.qr-zoom:hover img {
    transform: scale(1.15);

    box-shadow:
        0 0 0 3px #00b7ff,
        0 0 30px rgba(0, 183, 255, 0.9);
}


/* PETIT EFFET SUR LES MAINS */

.scan-moi {
    display: inline-block;
}

.scan-moi::first-letter {
    animation: handMove 0.8s ease-in-out infinite;
}

@keyframes handMove {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}


/* MOBILE */

@media (max-width: 600px) {

    .scan-moi {
        font-size: 18px;
    }

    .qr-zoom img {
        max-width: 140px;
    }
}

/* Animation du contour */
@keyframes borderMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

/* Main animée */
.hand-indicator {
    font-size: 30px;
    display: inline-block;
    animation: handMove 1s ease-in-out infinite;
}

/* Mouvement de la main */
@keyframes handMove {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* Effet au survol */
.whatsapp-catalogue-btn:hover {
    transform: scale(1.06);
    text-shadow: 0 0 10px #00c6ff;
}

.whatsapp-catalogue-btn:hover::before {
    filter: drop-shadow(0 0 8px #0066ff);
}

/* Animation du bouton */
.whatsapp-catalogue-btn {
    animation: buttonPulse 2.5s ease-in-out infinite;
}

@keyframes buttonPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

/* Adaptation téléphone */
@media (max-width: 600px) {

    .catalogue-action {
        gap: 8px;
    }

    .hand-indicator {
        font-size: 24px;
    }

    .whatsapp-catalogue-btn {
        padding: 12px 18px;
        font-size: 14px;
    }
}






.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 52px;
    width: auto;
    border-radius: 12px;
    object-fit: contain;
}

.brand-text {
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.5px;
    color: white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.btn-nav {
    background: var(--primary);
    color: #000 !important;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 12px;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: scale(1.03);
    box-shadow: 0 0 30px var(--primary-glow);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 28px;
    height: 2.5px;
    background: white;
    border-radius: 4px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ===== HERO AVEC DIAPORAMA ===== */

.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 191, 255, 0.15);
    border: 1px solid rgba(0, 191, 255, 0.2);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}


/* ===== TITRE 3D MODERNE ===== */

.hero-title {
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
    color: white;
    perspective: 800px;
}

.title-3d {
    display: inline-block;
    animation: title3D 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.title-line {
    display: block;
    transform-style: preserve-3d;
    text-shadow: 0 0 30px rgba(0, 191, 255, 0.3), 0 0 60px rgba(0, 191, 255, 0.1);
}

.title-line:first-child {
    animation: float3D 4s ease-in-out infinite;
}

.title-line:last-child {
    animation: float3D 4s ease-in-out infinite 0.5s;
}

@keyframes title3D {
    0%,
    100% {
        transform: perspective(800px) rotateX(0deg) rotateY(0deg) scale(1);
    }
    25% {
        transform: perspective(800px) rotateX(2deg) rotateY(4deg) scale(1.02);
    }
    50% {
        transform: perspective(800px) rotateX(-1deg) rotateY(-3deg) scale(0.98);
    }
    75% {
        transform: perspective(800px) rotateX(3deg) rotateY(-2deg) scale(1.01);
    }
}

@keyframes float3D {
    0%,
    100% {
        transform: translateZ(0px) translateY(0px);
        text-shadow: 0 0 30px rgba(0, 191, 255, 0.3), 0 0 60px rgba(0, 191, 255, 0.1);
    }
    25% {
        transform: translateZ(20px) translateY(-5px);
        text-shadow: 0 0 40px rgba(0, 191, 255, 0.5), 0 0 80px rgba(0, 191, 255, 0.2);
    }
    50% {
        transform: translateZ(-10px) translateY(5px);
        text-shadow: 0 0 20px rgba(0, 191, 255, 0.2), 0 0 40px rgba(0, 191, 255, 0.05);
    }
    75% {
        transform: translateZ(15px) translateY(-3px);
        text-shadow: 0 0 35px rgba(0, 191, 255, 0.4), 0 0 70px rgba(0, 191, 255, 0.15);
    }
}

.hero-title .gradient-text {
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%,
    100% {
        background: linear-gradient(135deg, #00BFFF, #7B68EE);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    50% {
        background: linear-gradient(135deg, #7B68EE, #FF6B6B);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

.title-3d::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
    animation: shine 8s ease-in-out infinite;
}

@keyframes shine {
    0%,
    100% {
        opacity: 0.3;
        transform: translateX(-20%) translateY(-20%);
    }
    50% {
        opacity: 0.8;
        transform: translateX(20%) translateY(20%);
    }
}

.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #000;
    padding: 14px 34px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--primary-glow);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 14px 34px;
    border-radius: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(0, 191, 255, 0.1);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.stat-item {
    text-align: center;
}

.stat-item span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.stat-item label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
}


/* ===== SECTIONS ===== */

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: rgba(0, 191, 255, 0.1);
    padding: 4px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 12px auto 0;
}


/* ===== GALERIE ===== */

.gallery-section {
    background: linear-gradient(180deg, #0A0F14 0%, var(--dark) 100%);
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    transform: translateY(30px);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--primary);
    color: #000;
    padding: 2px 12px;
    border-radius: 50px;
    margin-bottom: 6px;
}

.gallery-overlay h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}


/* ===== SERVICES ===== */

.services-section {
    background: linear-gradient(180deg, var(--dark) 0%, #0A0F14 100%);
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--dark-card);
    border-radius: var(--radius);
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(0, 191, 255, 0.15);
    box-shadow: var(--shadow);
}

.service-card.reverse {
    direction: rtl;
}

.service-card.reverse .service-card-content,
.service-card.reverse .service-gallery {
    direction: ltr;
}

.service-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 191, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-desc {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text);
}

.service-list li i {
    color: var(--primary);
    font-size: 1rem;
}


/* ===== SERVICE GALLERY - IMAGES GRANDES ET CLAIRES ===== */

.service-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-content: center;
}

.service-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-gallery img:hover {
    transform: scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(0, 191, 255, 0.2);
}


/* ===== MAPS ===== */

.maps-section {
    background: var(--dark);
}

.maps-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.maps-container iframe {
    display: block;
    width: 100%;
    height: 400px;
}


/* ===== FOOTER ===== */

.footer {
    background: #050708;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 80px;
    width: auto;
    border-radius: 12px;
    margin-bottom: 16px;
}

.footer-desc {
    color: var(--text-muted);
    max-width: 400px;
    font-size: 0.95rem;
}

.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.contact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-card:hover {
    transform: translateY(-3px);
}

.contact-card.phone {
    background: rgba(0, 191, 255, 0.1);
    color: var(--primary);
    border-color: rgba(0, 191, 255, 0.15);
}

.contact-card.phone:hover {
    background: rgba(0, 191, 255, 0.2);
    border-color: var(--primary);
}

.contact-card.whatsapp {
    background: #25D366;
    color: #000;
    border: none;
}

.contact-card.whatsapp:hover {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.footer-address {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-address i {
    color: var(--primary);
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}


/* ===== ANIMATIONS ===== */

.animate-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}


/* ===== RESPONSIVE ===== */


/* GALERIE RESPONSIVE */

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .gallery-overlay h4 {
        font-size: 0.85rem;
    }
    .gallery-overlay {
        padding: 12px;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: var(--dark-card);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        gap: 8px;
        transition: var(--transition);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }
    .nav-links.open {
        right: 0;
    }
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }
    .hero-title .gradient-text {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }
    @keyframes title3D {
        0%,
        100% {
            transform: perspective(500px) rotateX(0deg) rotateY(0deg) scale(1);
        }
        25% {
            transform: perspective(500px) rotateX(1deg) rotateY(2deg) scale(1.01);
        }
        50% {
            transform: perspective(500px) rotateX(-0.5deg) rotateY(-1.5deg) scale(0.99);
        }
        75% {
            transform: perspective(500px) rotateX(1.5deg) rotateY(-1deg) scale(1.005);
        }
    }
    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }
    .stat-item span {
        font-size: 1.6rem;
    }
    .service-list {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-cards {
        flex-direction: column;
    }
    .maps-container iframe {
        height: 280px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn-primary,
    .btn-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    .section {
        padding: 60px 0;
    }
    .slider-dots {
        margin-top: 30px;
    }
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 100px 16px 60px;
    }
    .slide-img {
        object-fit: cover;
        object-position: center center;
        width: 100%;
        height: 100%;
    }
    .slider-container {
        width: 100%;
        height: 100%;
    }
    .slide {
        width: 100%;
        height: 100%;
    }
    /* ===== CORRECTION : IMAGES PLUS GRANDES SUR MOBILE ===== */
    .service-card {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
    }
    .service-card.reverse {
        direction: ltr;
    }
    .service-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .service-gallery img {
        height: 180px;
        width: 100%;
        object-fit: cover;
        border-radius: 12px;
    }
    .service-card h3 {
        font-size: 1.5rem;
    }
    .service-icon {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .service-card {
        padding: 18px;
        gap: 18px;
    }
    .service-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .service-gallery img {
        height: 150px;
        width: 100%;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    }
    .hero {
        padding: 80px 16px 40px;
        min-height: 100vh;
        min-height: 100dvh;
    }
    .slide-img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    object-position: center center;
    display: block;
    margin: auto;
    }
    .slider-container {
        width: 100%;
        height: 100%;
    }
    .slide {
        width: 100%;
        height: 100%;
    }
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    .hero-title .gradient-text {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    .hero-sub {
        font-size: 0.9rem;
    }
    .hero-stats {
        gap: 16px;
    }
    .stat-item span {
        font-size: 1.3rem;
    }
    .stat-item label {
        font-size: 0.7rem;
    }
    .hero-badge {
        font-size: 0.65rem;
        padding: 4px 14px;
    }
    .btn-primary,
    .btn-outline {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    .service-card h3 {
        font-size: 1.3rem;
    }
    .service-desc {
        font-size: 0.9rem;
    }
    .service-list li {
        font-size: 0.85rem;
    }
    .service-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}


/* ===== POUR LES TRÈS PETITS ÉCRANS (< 380px) ===== */

@media (max-width: 380px) {
    .service-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .service-gallery img {
        height: 120px;
        border-radius: 8px;
    }
    .service-card {
        padding: 14px;
        gap: 14px;
    }
    .service-card h3 {
        font-size: 1.1rem;
    }
    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    .hero-title .gradient-text {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
}