.elementor-31438 .elementor-element.elementor-element-5815a54{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-31438 .elementor-element.elementor-element-3d4530f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-31438 .elementor-element.elementor-element-3eea603{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-31438 .elementor-element.elementor-element-a0bb65b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-31438 .elementor-element.elementor-element-1467b3b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}@media(min-width:768px){.elementor-31438 .elementor-element.elementor-element-5815a54{--content-width:100%;}.elementor-31438 .elementor-element.elementor-element-3d4530f{--content-width:100%;}.elementor-31438 .elementor-element.elementor-element-3eea603{--content-width:100%;}.elementor-31438 .elementor-element.elementor-element-a0bb65b{--content-width:100%;}.elementor-31438 .elementor-element.elementor-element-1467b3b{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-714859b */@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

        .entreprise .hero-section {
            position: relative;
            height: 120vh;
            min-height: 600px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Poppins', sans-serif;
        }

        /* ===== SLIDER BACKGROUND ===== */
        .entreprise .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .entreprise .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 2s ease-in-out;
        }

        .entreprise .slide.active {
            opacity: 1;
        }

        .entreprise .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        /* ===== OVERLAY GRADIENT ===== */
        .entreprise .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                135deg,
                rgba(0, 0, 0, 0.7) 0%,
                rgba(0, 0, 0, 0.4) 40%,
                rgba(0, 0, 0, 0.6) 100%
            );
            z-index: 2;
        }

        /* Grain texture overlay pour effet film */
        .entreprise .hero-overlay::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.02) 0%, transparent 25%),
                radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.01) 0%, transparent 25%);
            opacity: 0.5;
            z-index: 1;
        }

        /* ===== CONTENU PRINCIPAL ===== */
        .entreprise .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: #fff;
            max-width: 900px;
            padding: 0 20px;
            animation: fadeInUp 1.2s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Badge spécialisé */
        .entreprise .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 171, 7, 0.9);
            border: 1px solid rgba(255, 171, 7, 0.3);
            backdrop-filter: blur(15px);
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 30px;
            animation: fadeInUp 1.2s ease-out 0.2s both;
        }

        .entreprise .hero-badge .badge-icon {
            font-size: 1.1em;
        }

        /* Titre principal */
        .entreprise .hero-title {
            font-size: clamp(3.5rem, 8vw, 7rem);
            font-weight: 800;
            color: #fff;
            margin-bottom: 30px;
            text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            letter-spacing: -2px;
            line-height: 0.9;
            animation: fadeInUp 1.2s ease-out 0.4s both;
            transition: all 0.6s ease;
        }

        /* Sous-titre */
        .entreprise .hero-subtitle {
            font-size: 1.3rem;
            font-weight: 300;
            margin-bottom: 30px;
            color: #e8e8e8;
            letter-spacing: 0.5px;
            animation: fadeInUp 1.2s ease-out 0.6s both;
        }

        /* Features/Services */
        .entreprise .hero-features {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 40px;
            flex-wrap: wrap;
            animation: fadeInUp 1.2s ease-out 0.8s both;
        }

        .entreprise .feature-item {
            display: flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.25) 0%,
                rgba(255, 255, 255, 0.1) 100%
            );
            backdrop-filter: blur(15px) saturate(180%);
            padding: 12px 20px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .entreprise .feature-item:hover {
            background: linear-gradient(
                135deg,
                rgba(255, 171, 7, 0.3) 0%,
                rgba(255, 171, 7, 0.15) 100%
            );
            border-color: rgba(255, 171, 7, 0.6);
            transform: translateY(-3px);
            box-shadow: 
                0 12px 40px rgba(255, 171, 7, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
        }

        .entreprise .feature-icon {
            color: rgba(255, 171, 7, 1);
            font-size: 1.2em;
        }

        /* CTA Container */
        .entreprise .hero-cta-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            animation: fadeInUp 1.2s ease-out 1s both;
        }

        /* CTA principal */
        .entreprise .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, rgba(255, 171, 7, 1) 0%, rgba(255, 149, 0, 1) 100%);
            color: #000;
            padding: 18px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(255, 171, 7, 0.3);
            position: relative;
            overflow: hidden;
        }

        .entreprise .hero-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .entreprise .hero-cta:hover::before {
            left: 100%;
        }

        .entreprise .hero-cta:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 20px 40px rgba(255, 171, 7, 0.4);
        }

        /* CTA secondaire */
        .entreprise .hero-cta-secondary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            padding: 18px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(15px);
            transition: all 0.4s ease;
        }

        .entreprise .hero-cta-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 171, 7, 0.6);
            transform: translateY(-3px);
        }

        .entreprise .cta-arrow {
            transition: transform 0.3s ease;
        }

        .entreprise .hero-cta:hover .cta-arrow,
        .entreprise .hero-cta-secondary:hover .cta-arrow {
            transform: translateX(5px);
        }

        /* ===== NAVIGATION SLIDER ===== */
        .entreprise .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 4;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #fff;
            font-size: 1.2rem;
        }

        .entreprise .slider-nav:hover {
            background: rgba(255, 171, 7, 0.2);
            border-color: rgba(255, 171, 7, 0.4);
        }

        .entreprise .slider-nav.prev {
            left: 30px;
        }

        .entreprise .slider-nav.next {
            right: 30px;
        }

        /* ===== INDICATEURS SLIDER ===== */
        .entreprise .slider-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 4;
        }

        .entreprise .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .entreprise .indicator.active {
            background: rgba(255, 171, 7, 1);
            transform: scale(1.2);
        }

        /* ===== RESPONSIVE OPTIMISÉ ===== */
        @media (max-width: 1024px) {
            .entreprise .hero-section {
                height: 85vh;
                min-height: 650px;
            }
            
            .entreprise .hero-content {
                max-width: 800px;
                padding: 0 30px;
            }
            
            .entreprise .hero-title {
                font-size: 3.5rem;
                margin-bottom: 35px;
            }
            
            .entreprise .hero-features {
                gap: 25px;
                margin-bottom: 45px;
            }
            
            .entreprise .feature-item {
                padding: 14px 22px;
                font-size: 1.05rem;
            }
        }

        @media (max-width: 768px) {
            .entreprise .hero-section {
                height: 100vh;
                min-height: 700px;
                padding: 40px 0;
            }
            
            .entreprise .hero-content {
                max-width: 600px;
                padding: 0 25px;
            }
            
            .entreprise .hero-badge {
                margin-bottom: 35px;
                padding: 14px 26px;
                font-size: 0.95rem;
            }

            .entreprise .hero-title {
                font-size: 3rem;
                margin-bottom: 40px;
                line-height: 1;
            }

            .entreprise .hero-subtitle {
                font-size: 1.25rem;
                margin-bottom: 40px;
                line-height: 1.5;
                padding: 0 10px;
            }

            .entreprise .hero-features {
                flex-direction: column;
                align-items: center;
                gap: 18px;
                margin-bottom: 50px;
                width: 100%;
            }
            
            .entreprise .feature-item {
                font-size: 1rem;
                padding: 14px 24px;
                min-width: 200px;
                justify-content: center;
            }

            .entreprise .hero-cta-container {
                flex-direction: column;
                align-items: center;
                gap: 20px;
                width: 100%;
            }

            .entreprise .hero-cta,
            .entreprise .hero-cta-secondary {
                padding: 18px 40px;
                font-size: 1.1rem;
                min-width: 250px;
                justify-content: center;
            }

            .entreprise .slider-nav {
                display: none;
            }
            
            .entreprise .slider-indicators {
                bottom: 25px;
                gap: 15px;
            }
            
            .entreprise .indicator {
                width: 14px;
                height: 14px;
            }
        }

        @media (max-width: 640px) {
            .entreprise .hero-section {
                height: 100vh;
                min-height: 650px;
            }
            
            .entreprise .hero-content {
                padding: 0 20px;
            }
            
            .entreprise .hero-title {
                font-size: 2.5rem;
                margin-bottom: 35px;
            }
            
            .entreprise .hero-subtitle {
                font-size: 1.15rem;
                margin-bottom: 35px;
            }
            
            .entreprise .hero-features {
                gap: 15px;
                margin-bottom: 45px;
            }
        }

        @media (max-width: 480px) {
            .entreprise .hero-section {
                height: 150vh;
                min-height: 700px;
                padding: 30px 0;
            }
            
            .entreprise .hero-content {
                padding: 0 15px;
            }

            .entreprise .hero-badge {
                padding: 12px 22px;
                font-size: 0.85rem;
                margin-bottom: 30px;
            }

            .entreprise .hero-title {
                font-size: 2.2rem;
                margin-bottom: 35px;
                letter-spacing: -1px;
            }

            .entreprise .hero-subtitle {
                font-size: 1.1rem;
                margin-bottom: 40px;
                line-height: 1.6;
                padding: 0 5px;
            }
            
            .entreprise .hero-features {
                gap: 12px;
                margin-bottom: 45px;
            }

            .entreprise .feature-item {
                font-size: 0.95rem;
                padding: 12px 20px;
                min-width: 180px;
            }
            
            .entreprise .hero-cta-container {
                gap: 15px;
            }

            .entreprise .hero-cta,
            .entreprise .hero-cta-secondary {
                padding: 16px 35px;
                font-size: 1rem;
                min-width: 220px;
            }
            
            .entreprise .slider-indicators {
                bottom: 20px;
                gap: 12px;
            }
        }

        @media (max-width: 360px) {
            .entreprise .hero-section {
                min-height: 650px;
                padding: 25px 0;
            }
            
            .entreprise .hero-content {
                padding: 0 12px;
            }
            
            .entreprise .hero-title {
                font-size: 1.9rem;
                margin-bottom: 30px;
            }
            
            .entreprise .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 35px;
            }
            
            .entreprise .feature-item {
                font-size: 0.9rem;
                padding: 10px 18px;
                min-width: 160px;
            }
            
            .entreprise .hero-cta,
            .entreprise .hero-cta-secondary {
                padding: 14px 30px;
                font-size: 0.95rem;
                min-width: 200px;
            }
        }

        @media (max-height: 500px) and (orientation: landscape) {
            .entreprise .hero-section {
                height: auto;
                min-height: 450px;
                padding: 20px 0;
            }
            
            .entreprise .hero-content {
                padding: 0 20px;
            }
            
            .entreprise .hero-badge {
                margin-bottom: 15px;
            }
            
            .entreprise .hero-title {
                font-size: 2rem;
                margin-bottom: 20px;
            }
            
            .entreprise .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 25px;
            }
            
            .entreprise .hero-features {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 10px;
                margin-bottom: 25px;
            }
            
            .entreprise .feature-item {
                font-size: 0.85rem;
                padding: 8px 16px;
                min-width: auto;
            }
            
            .entreprise .hero-cta-container {
                flex-direction: row;
                gap: 15px;
            }
            
            .entreprise .hero-cta,
            .entreprise .hero-cta-secondary {
                padding: 12px 25px;
                font-size: 0.9rem;
                min-width: auto;
            }
        }/* End custom CSS */