@charset "utf-8";
/* CSS Document */


        :root {
            --primary-color: #2563eb;
            --secondary-color: #8b5cf6;
            --accent-color: #7c3aed;
            --light-color: #f8fafc;
            --dark-color: #1e293b;
            --success-color: #10b981;
            --text-color: #334155;
        }
       
        /* Style personnalisé */
        body {
            padding-top: 80px;
            font-family: 'Roboto', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
       
        /* Navigation */
        .navbar {
            box-shadow: 0 2px 15px rgba(0,0,0,.1);
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
            padding: 0.8rem 1rem;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 0.5rem 1rem;
        }
       
        .navbar-brand img {
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .navbar.scrolled .navbar-brand img {
            height: 40px;
            width: auto;
        }
       
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: all 0.3s;
            position: relative;
        }
       
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: white;
            transform: translateY(-2px);
        }

        .navbar-nav .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: white;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:hover:after,
        .navbar-nav .nav-link.active:after {
            width: 80%;
            left: 10%;
        }
       
        /* Styles pour les icônes de réseaux sociaux */
        .social-icons {
            display: flex;
            align-items: center;
        }
       
        .social-icons a {
            color: white !important;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
            margin-right: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
        }
       
        .social-icons a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        /* Menu déroulant de langue */
        .language-dropdown .dropdown-toggle {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 4px;
            font-size: 0.9rem;
            transition: all 0.3s;
        }

        .language-dropdown .dropdown-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
       
        .language-dropdown .dropdown-menu {
            min-width: auto;
            padding: 0;
            border: 1px solid rgba(0, 0, 0, 0.1);
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
            overflow: hidden;
        }
       
        .language-dropdown .dropdown-item {
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
            border: none;
        }
       
        .language-dropdown .dropdown-item:hover,
        .language-dropdown .dropdown-item.active {
            background-color: #f8f9fa;
            color: var(--primary-color);
        }
       
        .language-dropdown .dropdown-item:focus {
            background-color: #f8f9fa;
            outline: none;
        }
       
        /* Carousel */
        .carousel-item {
            height: 600px;
        }
       
        .carousel-image {
            object-fit: cover;
            width: 100%;
            height: 100%;
            filter: brightness(0.7);
        }
       
        .carousel-caption {
            background: rgba(0, 0, 0, 0.5);
            padding: 30px;
            border-radius: 12px;
            bottom: 80px;
            backdrop-filter: blur(5px);
            max-width: 700px;
            margin: 0 auto;
        }
       
        .carousel-caption h5 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .carousel-caption p {
            font-size: 1.2rem;
        }
       
        /* Sections générales */
        section {
            padding: 100px 0;
        }
       
        section h2 {
            font-weight: 700;
            margin-bottom: 50px;
            position: relative;
            padding-bottom: 15px;
            color: var(--dark-color);
        }
       
        section h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto 50px;
            text-align: center;
        }
       
        /* Cartes de services */
        .service-card {
            transition: all 0.4s;
            margin-bottom: 30px;
            border: none;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
        }
       
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
       
        .service-card .card-img-placeholder {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
        }
       
        .service-card .card-img-placeholder i {
            font-size: 3.5rem;
        }
       
        .service-card .card-body {
            padding: 25px;
        }
       
        .service-card .card-title {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
       
        .service-card .btn {
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            border: none;
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .service-card .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
        }
       
        /* Section Compteurs */
        .counter-section {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            padding: 120px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .counter-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,218.7C672,224,768,160,864,138.7C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
            background-size: cover;
            background-position: center;
        }
       
        .counter-number {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            background: linear-gradient(to right, #ff9a3c, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }
       
        .counter-section p {
            font-size: 1.2rem;
            font-weight: 500;
            position: relative;
        }

        .counter-item {
            position: relative;
            padding: 20px;
        }
       
        /* Formulaire de contact */
        .contact-section {
            background-color: #f8f9fa;
        }
       
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
        }

        .form-control {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #cbd5e1;
            transition: all 0.3s;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
        }
       
        .btn-primary {
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s;
            letter-spacing: 0.5px;
        }
       
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
            background: linear-gradient(to right, var(--accent-color), var(--primary-color));
        }
       
        /* Style pour reCAPTCHA */
        .g-recaptcha {
            margin: 20px 0;
            display: flex;
            justify-content: center;
        }
       
        .recaptcha-error {
            color: #dc3545;
            font-size: 0.875rem;
            margin-top: 5px;
            display: none;
        }
       
        /* Messages de confirmation/erreur */
        .alert {
            border-radius: 10px;
            padding: 15px;
            margin-top: 20px;
            border: none;
        }
       
        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--dark-color), #0f172a);
            color: white;
            padding: 80px 0 30px;
        }
       
        .footer-icon {
            font-size: 1.2rem;
            margin-right: 10px;
            color: var(--primary-color);
        }
       
        footer h5 {
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            color: white;
        }
       
        footer h5:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-color);
        }
       
        footer a {
            color: #cbd5e1;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }
       
        footer a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        footer p {
            color: #94a3b8;
            margin-bottom: 10px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            display: inline-block;
            transition: all 0.3s;
        }
       
        /* Boutons flottants */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 25px;
            right: 25px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
       
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
            background-color: #128C7E;
        }
       
        /* Style pour le bouton Back to Top */
        .back-to-top {
            position: fixed;
            width: 50px;
            height: 50px;
            bottom: 90px;
            right: 25px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            color: #FFF;
            border-radius: 50%;
            text-align: center;
            font-size: 20px;
            box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s;
        }
       
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
       
        .back-to-top:hover {
            transform: translateY(-5px);
            background: linear-gradient(to right, var(--accent-color), var(--primary-color));
        }
       
               /* Modales */
        .modal-content {
            border-radius: 15px;
            overflow: hidden;
            border: none;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
        }

        /* Produits Section */
        .product-showcase {
            background: linear-gradient(to bottom, #f1f5f9, #e2e8f0);
            padding: 100px 0;
        }

        .product-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            height: 100%;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .product-img {
            height: 200px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .product-img i {
            font-size: 4rem;
        }

        .product-body {
            padding: 25px;
        }

        .product-title {
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 15px;
        }

        .product-features {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }

        .product-features li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 25px;
        }

        .product-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success-color);
            font-weight: bold;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .carousel-item {
                height: 500px;
            }
           
            .navbar-collapse {
                background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
                padding: 15px;
                border-radius: 10px;
                margin-top: 10px;
            }
           
            .language-dropdown {
                margin-top: 15px;
                margin-left: 0 !important;
            }
           
            .language-dropdown .dropdown-menu {
                position: static !important;
                transform: none !important;
            }

            .carousel-caption {
                bottom: 40px;
                padding: 20px;
            }

            .carousel-caption h5 {
                font-size: 1.8rem;
            }
        }
       
        @media (max-width: 768px) {
            .carousel-item {
                height: 400px;
            }
           
            .carousel-caption h5 {
                font-size: 1.5rem;
            }

            .carousel-caption p {
                font-size: 1rem;
            }
           
            section {
                padding: 70px 0;
            }
           
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 24px;
            }
           
            .back-to-top {
                width: 40px;
                height: 40px;
                bottom: 80px;
                right: 20px;
                font-size: 16px;
            }
           
            .g-recaptcha {
                transform: scale(0.85);
                transform-origin: center;
            }

            .counter-number {
                font-size: 2.8rem;
            }
                        
        }
  

