 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #1a3a52;
            --accent-color: #d4a574;
            --dark: #0f1e29;
            --light: #f8f6f3;
            --white: #ffffff;
            --text-dark: #333333;
            --text-light: #666666;
            --navbar-height: 80px;
            --navbar-height-mobile: 70px;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--navbar-height);
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
            padding-top: var(--navbar-height);
        }

        /* ========== NAVIGATION ========== */
        .navbar {
            background: var(--white);
            padding: 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            height: var(--navbar-height);
            z-index: 9999;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            height: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo {
            font-family: 'Roboto Slab', serif;
            font-size: 24px;
            color: var(--primary-color);
            font-weight: 700;
            text-decoration: none;
            white-space: nowrap;
        }

        .logo span {
            color: var(--accent-color);
        }

        .nav-center {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .nav-menu {
            display: flex;
            gap: 35px;
            list-style: none;
            align-items: center;
        }

        .nav-menu a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--accent-color);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        /* Dropdown pour services */
        .services-dropdown {
            position: relative;
        }

        .services-dropdown-btn {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            cursor: pointer;
            transition: color 0.3s ease;
            position: relative;
            display: inline-block;
            padding: 0;
            border: none;
            background: transparent;
        }

        .services-dropdown-btn:hover {
            color: var(--accent-color);
        }

        .services-dropdown-btn::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }

        .services-dropdown-btn:hover::after {
            width: 100%;
        }

        .services-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            border-radius: 8px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.2);
            padding: 10px;
            min-width: 280px;
            display: none;
            margin-top: 15px;
            z-index: 10001;
        }

        .services-dropdown-menu.show {
            display: block;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from { 
                opacity: 0; 
                transform: translateX(-50%) translateY(-10px); 
            }
            to { 
                opacity: 1; 
                transform: translateX(-50%) translateY(0); 
            }
        }

        .services-dropdown-menu button {
            width: 100%;
            padding: 12px 16px;
            border: none;
            background: transparent;
            text-align: left;
            cursor: pointer;
            font-weight: 500;
            font-size: 14px;
            border-radius: 5px;
            transition: all 0.3s ease;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .services-dropdown-menu button:hover {
            background: var(--light);
            color: var(--accent-color);
        }

        .nav-phone {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 900;
            font-size: 25px;
            white-space: nowrap;
            transition: all 0.3s ease;
        }

        .nav-phone:hover {
            color: var(--primary-color);
            transform: scale(1.05);
        }

        .nav-phone-icon {
            font-size: 20px;
        }

        /* Menu burger */
        .burger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
            z-index: 10001;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: var(--primary-color);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .burger.active span:nth-child(2) {
            opacity: 0;
        }

        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* ========== HERO SECTION ========== */
        .hero {
            background: linear-gradient(135deg, rgba(26, 58, 82, 0.95), rgba(15, 30, 41, 0.95)), url('01.jpg') center/cover;
            min-height: calc(100vh - var(--navbar-height));
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
            opacity: 0.1;
            top: -200px;
            right: -200px;
            animation: float 20s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(50px, 50px) rotate(180deg); }
        }

        .hero-content {
            max-width: 900px;
            padding: 60px 20px;
            z-index: 1;
        }

        .hero h1 {
            font-family: 'Roboto Slab', serif;
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 25px;
            line-height: 1.2;
            animation: fadeInUp 1s ease;
        }

        .hero h1 span {
            color: var(--accent-color);
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 40px;
            line-height: 1.8;
            animation: fadeInUp 1.2s ease;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1.4s ease;
        }

        @keyframes fadeInUp {
            from { 
                opacity: 0; 
                transform: translateY(30px); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0); 
            }
        }

        .btn {
            padding: 15px 35px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-primary {
            background: var(--accent-color);
            color: var(--white);
        }

        .btn-primary:hover {
            background: var(--white);
            color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(212, 165, 116, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        /* ========== SECTIONS COMMUNES ========== */
        section {
            padding: 100px 0;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-family: 'Roboto Slab', serif;
            font-size: 42px;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .section-title p {
            font-size: 18px;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        /* ========== À PROPOS ========== */
        .about {
            background: var(--white);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h3 {
            font-family: 'Roboto Slab', serif;
            font-size: 32px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .about-text p {
            font-size: 16px;
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .feature-box {
            padding: 20px;
            background: var(--light);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .feature-box h4 {
            color: var(--accent-color);
            margin-bottom: 10px;
            font-size: 18px;
        }

        .feature-box p {
            color: var(--text-light);
            font-size: 14px;
            margin: 0;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }

        .about-badge {
            position: absolute;
            bottom: 30px;
            right: 30px;
            background: var(--accent-color);
            color: var(--white);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(212, 165, 116, 0.4);
        }

        .about-badge h4 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .about-badge p {
            font-size: 14px;
            margin: 0;
        }

        /* ========== SERVICES ========== */
        .services {
            background: var(--light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .service-image {
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .service-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5));
        }

        .service-content {
            padding: 30px;
        }

        .service-content h3 {
            font-family: 'Roboto Slab', serif;
            font-size: 24px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .service-content p {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .service-link {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s ease;
        }

        .service-link:hover {
            gap: 15px;
        }

        /* ========== STATS ========== */
        .stats {
            background: var(--primary-color);
            color: var(--white);
            padding: 80px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 56px;
            color: var(--accent-color);
            font-weight: 700;
            margin-bottom: 10px;
        }

        .stat-item p {
            font-size: 18px;
            color: var(--white);
        }

        /* ========== GALERIE ========== */
        .gallery {
            background: var(--white);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            height: 300px;
            overflow: hidden;
            border-radius: 10px;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent, rgba(26, 58, 82, 0.9));
            display: flex;
            align-items: flex-end;
            padding: 30px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay h4 {
            color: var(--white);
            font-size: 20px;
            margin-bottom: 5px;
        }

        .gallery-overlay p {
            color: var(--accent-color);
            font-size: 14px;
            margin: 0;
        }

        /* ========== TESTIMONIALS ========== */
        .testimonials {
            background: var(--light);
        }

        .testimonial-item {
            background: var(--white);
            padding: 50px;
            border-radius: 10px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.1);
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .stars {
            color: var(--accent-color);
            font-size: 24px;
            margin-bottom: 20px;
        }

        .testimonial-text {
            font-size: 18px;
            font-style: italic;
            color: var(--text-dark);
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--accent-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 24px;
            font-weight: 700;
        }

        .author-info h4 {
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .author-info p {
            color: var(--text-light);
            font-size: 14px;
            margin: 0;
        }

        /* ========== CONTACT ========== */
        .contact {
            background: var(--white);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info h3 {
            font-family: 'Roboto Slab', serif;
            font-size: 32px;
            color: var(--primary-color);
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 20px;
            flex-shrink: 0;
        }

        .contact-details h4 {
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .contact-details p {
            color: var(--text-light);
            margin: 0;
        }

        .contact-details a {
            color: var(--text-light);
            text-decoration: none;
        }

        .contact-details a:hover {
            color: var(--accent-color);
        }

        .contact-form {
            background: var(--light);
            padding: 40px;
            border-radius: 10px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            color: var(--text-dark);
            font-weight: 500;
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Roboto', sans-serif;
            font-size: 15px;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-color);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: var(--accent-color);
            color: var(--white);
            padding: 15px 40px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            background: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        /* ========== FOOTER ========== */
        .footer {
            background: var(--dark);
            color: var(--white);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 10px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-family: 'Roboto Slab', serif;
            color: var(--accent-color);
            margin-bottom: 20px;
        }

        .footer-section p {
            color: #aaa;
            line-height: 1.8;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-color);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 14px;
        }

        /* ========== COOKIE BANNER ========== */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--white);
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            padding: 20px;
            z-index: 9998;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cookie-text {
            flex: 1;
            min-width: 300px;
        }

        .cookie-text h4 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .cookie-text p {
            color: var(--text-light);
            font-size: 14px;
            margin: 0;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
        }

        .cookie-btn {
            padding: 10px 25px;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .cookie-accept {
            background: var(--accent-color);
            color: var(--white);
        }

        .cookie-accept:hover {
            background: var(--primary-color);
        }

        .cookie-decline {
            background: transparent;
            color: var(--text-dark);
            border: 2px solid var(--text-dark);
        }

        .cookie-decline:hover {
            background: var(--text-dark);
            color: var(--white);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            :root {
                --navbar-height: 70px;
            }

            body {
                padding-top: var(--navbar-height-mobile);
            }

            html {
                scroll-padding-top: var(--navbar-height-mobile);
            }

            .navbar {
                height: var(--navbar-height-mobile);
            }

            /* Navigation mobile : Logo - Burger - Phone */
            .nav-container {
                display: grid;
                grid-template-columns: auto 1fr auto;
                align-items: center;
                gap: 10px;
            }

            .logo-section {
                order: 1;
            }

            .logo {
                font-size: 18px;
            }

            .nav-center {
                order: 2;
                display: flex;
                justify-content: center;
            }

            .burger {
                display: flex;
                order: 2;
            }

            .nav-menu {
                position: fixed;
                top: var(--navbar-height-mobile);
                left: -100%;
                width: 280px;
                height: calc(100vh - var(--navbar-height-mobile));
                background: var(--white);
                flex-direction: column;
                align-items: flex-start;
                padding: 40px 20px;
                box-shadow: 5px 0 20px rgba(0,0,0,0.1);
                transition: left 0.3s ease;
                overflow-y: auto;
                gap: 20px;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-phone {
                order: 3;
                font-size: 20px;
            }

            .nav-phone-icon {
                font-size: 18px;
            }

            /* Services dropdown sur mobile */
            .services-dropdown {
                width: 100%;
            }

            .services-dropdown-btn {
                width: 100%;
                text-align: left;
                padding: 8px 0;
            }

            .services-dropdown-menu {
                position: static;
                transform: none;
                margin-top: 10px;
                width: 100%;
                box-shadow: none;
                background: var(--light);
            }

            .services-dropdown-menu.show {
                animation: none;
            }

            .hero {
                min-height: calc(100vh - var(--navbar-height-mobile));
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 16px;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .section-title h2 {
                font-size: 32px;
            }

            .services-grid,
            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .cookie-content {
                flex-direction: column;
                text-align: center;
            }

            .cookie-buttons {
                width: 100%;
                flex-direction: column;
            }

            .cookie-btn {
                width: 100%;
            }

            section {
                padding: 60px 0;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 20px;
            }

            .hero h1 {
                font-size: 28px;
            }

            .logo {
                font-size: 16px;
            }

            .nav-phone {
                font-size: 20px;
            }
        }

        /* ========== PAGES SYSTEM ========== */
        .page {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .page.active {
            display: block;
        }

        /* ========== SERVICE DETAIL PAGES ========== */
        .service-detail {
            padding: 60px 40px 100px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 25px;
            background: var(--accent-color);
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
            margin: 20px 0 20px;
            cursor: pointer;
            border: none;
            font-size: 15px;
        }

        .back-btn:hover {
            transform: translateX(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            background: var(--primary-color);
        }

        .service-detail-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .service-detail-header h1 {
            font-family: 'Roboto Slab', serif;
            font-size: 56px;
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 900;
        }

        .service-detail-header p {
            font-size: 20px;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ========== BEFORE AFTER SECTION ========== */
        .before-after-section {
            margin-top: 80px;
        }

        .before-after-title {
            font-family: 'Roboto Slab', serif;
            font-size: 30px;
            text-align: center;
            margin-bottom: 50px;
            color: var(--primary-color);
            font-weight: 900;
        }

        .before-after-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
        }

        .before-after-item {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.12);
            transition: all 0.3s ease;
        }

        .before-after-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.2);
        }

        .comparison-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2px;
            background: #e0e0e0;
        }

        .comparison-img {
            width: 100%;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: white;
            font-weight: 700;
            position: relative;
            overflow: hidden;
        }

        .comparison-img.before {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .comparison-img.after {
            background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
        }

        .comparison-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .comparison-label {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(0,0,0,0.7);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 1;
        }

        /* ============= LIGHTBOX / POPUP ZOOM ============= */
        
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 20000;
            cursor: zoom-out;
            animation: fadeIn 0.3s ease;
        }

        .lightbox.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90vh;
            animation: zoomIn 0.3s ease;
        }

        .lightbox-image {
            width: 100%;
            height: auto;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
        }

        
        /* Zoom/pan inside lightbox (wheel + pinch) */
        .lightbox-content { overflow: hidden; }
        .lightbox-image { user-select: none; -webkit-user-drag: none; }
.lightbox-close {
            position: fixed;
            top: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.9);
            color: #333;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 30px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 20001;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .lightbox-close:hover {
            background: white;
            transform: rotate(90deg) scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Curseur zoom sur les images */
        .comparison-img img {
            cursor: zoom-in;
            transition: transform 0.3s ease;
        }

        .comparison-img img:hover {
            transform: scale(1.02);
        }

        /* Responsive lightbox */
        @media (max-width: 768px) {
            .lightbox-content {
                max-width: 95%;
                max-height: 85vh;
            }

            .lightbox-close {
                top: 15px;
                right: 15px;
                width: 40px;
                height: 40px;
                font-size: 24px;
            }
        }
		/* Tablette (portrait/landscape léger) */
@media (max-width: 1024px) {
  .t1-nav-content { padding: 0 20px; }
  .t1-services, .t1-contact, .service-detail { padding-left: 20px; padding-right: 20px; }
  .t1-services, .t1-contact { padding-top: 70px; padding-bottom: 70px; }
  .t1-section-title, .t1-contact-title { font-size: 42px; }
}

/* Téléphone : empiler AVANT / APRES */
@media (max-width: 768px) {
  .comparison-container { grid-template-columns: 1fr; }
  .comparison-label { top: 10px; left: 10px; padding: 6px 12px; font-size: 12px; }
}

/* Améliorer la zone tactile des liens du menu */
.t1-nav-links .nav-link {
  padding: 10px 12px;
  display: inline-block;
}		
    
/* ========== HOME CARROUSEL (Swiper) ========== */
#carrousel { margin-top: 22px; }
.home-carousel-wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 10px;
}
.home-carousel{
  width: 100%;
  padding-bottom: 34px;
}
.home-carousel .swiper-slide{
  display:flex;
  justify-content:center;
  align-items:center;
  transition: transform .35s ease, opacity .35s ease;
}
.home-carousel .swiper-slide img{
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  cursor: zoom-in;
  user-select:none;
  -webkit-user-drag:none;
}
.home-carousel .swiper-slide:hover img{
  transform: scale(1.01);
}
.home-carousel .swiper-pagination-bullet{
  background: rgba(255,255,255,.35) !important;
  width: 10px !important;
  height: 10px !important;
  transition: all .25s ease;
}
.home-carousel .swiper-pagination-bullet-active{
  background: var(--accent-color) !important;
  width: 28px !important;
  border-radius: 6px !important;
}
.home-carousel .swiper-button-next,
.home-carousel .swiper-button-prev{
  color: var(--accent-color) !important;
  background: rgba(255,255,255,.12);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0,0,0,.20);
  transition: transform .25s ease, background .25s ease;
}
.home-carousel .swiper-button-next:hover,
.home-carousel .swiper-button-prev:hover{
  background: rgba(212,165,116,.25);
  transform: scale(1.04);
}
.home-carousel .swiper-button-next::after,
.home-carousel .swiper-button-prev::after{
  font-size: 16px !important;
  font-weight: 900;
}
.home-carousel .home-slide-badge{
  position:absolute;
  bottom: 14px;
  left: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.60);
  color: rgba(255,255,255,.92);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  backdrop-filter: blur(4px);
}
@media (max-width: 768px){
  .home-carousel .swiper-slide img{ height: 240px; }
  #carrousel { margin-top: 16px; }
}
