/* ===== STYLES GÉNÉRAUX ===== */

/* Compensation pour la navbar fixe */
body {
    padding-top: 80px;
}

/* ===== NAVBAR FUTURISTE ===== */

/* Animation de brillance pour la navbar - DÉSACTIVÉE */
@keyframes shine {
    0% {
        transform: translateX(-100%) skewX(-12deg);
        opacity: 0;
    }
    100% {
        transform: translateX(200%) skewX(-12deg);
        opacity: 0;
    }
}

.animate-shine {
    animation: none; /* Désactivée */
}

/* Navbar principale */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all 0.5s ease;
    min-height: 80px;
}

/* Fond de base pour la navbar avec dégradé amélioré */
.navbar-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        #f8fafc 0%, 
        #e0e7ff 25%, 
        #dbeafe 50%, 
        #e0e7ff 75%, 
        #f8fafc 100%);
    opacity: 0.95;
    backdrop-filter: blur(20px);
}

.navbar.scrolled {
    /* Effet de scroll supprimé - navbar simple et propre */
}

/* Logo avec effet futuriste */
.logo-container {
    position: relative;
    padding: 8px;
}

.logo-glow {
    transition: all 0.5s ease;
}

/* Liens de navigation futuristes */
.nav-link-futuristic {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 16px;
    margin: 0 4px;
    color: #475569;
    text-decoration: none;
    border-radius: 12px;
    background: transparent;
    backdrop-filter: none;
    border: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-link-futuristic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-link-futuristic:hover::before {
    left: 100%;
}

.nav-link-futuristic:hover {
    background: transparent;
    border-color: transparent;
    color: #2563eb;
    transform: translateY(-2px);
    box-shadow: none;
}

/* Conteneur d'icône */
.nav-icon-container {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 50%, #e0e7ff 100%);
    margin-bottom: 6px;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.nav-link-futuristic:hover .nav-icon-container {
    background: linear-gradient(135deg, #dbeafe 0%, #c7d2fe 50%, #dbeafe 100%);
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(59, 130, 246, 0.2);
}

/* Icônes */
.nav-icon {
    font-size: 16px;
    color: #64748b;
    transition: all 0.3s ease;
}

.nav-link-futuristic:hover .nav-icon {
    color: #2563eb;
    transform: scale(1.2);
}

/* Texte de navigation */
.nav-text {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* Soulignement animé */
.nav-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link-futuristic:hover .nav-underline {
    width: 80%;
}

/* Bouton hamburger futuriste */
.mobile-menu-btn-futuristic {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Cacher le bouton sur desktop */
@media (min-width: 768px) {
    .mobile-menu-btn-futuristic {
        display: none !important;
    }
}

.mobile-menu-btn-futuristic:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: scale(1.05);
}

.hamburger-container {
    width: 20px;
    height: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #64748b, #475569);
    border-radius: 1px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn-futuristic:hover .hamburger-line {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
}

/* Animation du hamburger */
.mobile-menu-btn-futuristic.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn-futuristic.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn-futuristic.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Menu mobile futuriste */
#mobile-menu {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

#mobile-menu.hidden {
    display: none;
}

.mobile-nav-link-futuristic {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    margin: 8px 0;
    color: #475569;
    text-decoration: none;
    border-radius: 12px;
    background: transparent;
    backdrop-filter: none;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link-futuristic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-link-futuristic:hover::before {
    left: 100%;
}

.mobile-nav-link-futuristic:hover {
    background: transparent;
    border-color: transparent;
    color: #2563eb;
    transform: translateX(10px);
}

/* Conteneur d'icône mobile */
.mobile-nav-icon-container {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 50%, #e0e7ff 100%);
    margin-right: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.mobile-nav-link-futuristic:hover .mobile-nav-icon-container {
    background: linear-gradient(135deg, #dbeafe 0%, #c7d2fe 50%, #dbeafe 100%);
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(59, 130, 246, 0.2);
}

/* Icônes mobile */
.mobile-nav-icon {
    font-size: 16px;
    color: #64748b;
    transition: all 0.3s ease;
}

.mobile-nav-link-futuristic:hover .mobile-nav-icon {
    color: #2563eb;
    transform: scale(1.2);
}

/* Texte mobile */
.mobile-nav-text {
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Animation d'apparition pour les liens */
.nav-link-futuristic {
    animation: fadeInDown 0.6s ease-out both;
}

.nav-link-futuristic:nth-child(1) { animation-delay: 0.1s; }
.nav-link-futuristic:nth-child(2) { animation-delay: 0.2s; }
.nav-link-futuristic:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-200px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-link-futuristic {
        padding: 8px 12px;
        margin: 0 2px;
    }
    
    .nav-icon-container {
        width: 32px;
        height: 32px;
    }
    
    .nav-icon {
        font-size: 14px;
    }
    
    .nav-text {
        font-size: 10px;
    }
    
    .logo-container img {
        height: 48px !important;
    }
}

/* ===== HERO SECTION ===== */

/* Gradient du hero */
.hero-gradient {
    background: transparent;
    opacity: 1;
}

/* Animation du hero */
.hero-content {
    opacity: 0;
    transform: translateY(-200px);
    transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

.hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Badge du hero */
.hero-badge {
    /* Animation supprimée pour éviter les conflits */
}

/* Titre du hero */
.hero-title {
    /* Animation supprimée pour éviter les conflits */
}

/* Statistiques du hero */
.stats-grid {
    /* Animation supprimée pour éviter les conflits */
}

/* Boutons du hero */
.hero-content .flex {
    /* Animation supprimée pour éviter les conflits */
}

/* ===== ANIMATIONS ===== */

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

/* ===== SECTIONS ===== */

/* Animations des sections */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-out;
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== BOUTONS ===== */

/* Bouton primaire */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    color: white;
}

/* Bouton secondaire */
.btn-secondary {
    background: transparent;
    color: #3b82f6;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: 2px solid #3b82f6;
}

.btn-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

/* ===== SERVICES ===== */

.service-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

/* ===== FORMULAIRE ===== */

.contact-form {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* ===== TÉLÉPHONE 3D ===== */

#phone-3d-container {
    height: 600px;
    position: relative;
}

#phone-3d-container canvas {
    border-radius: 0;
    box-shadow: none;
}

/* ===== INDICATEUR DE SCROLL ===== */

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #2563eb;
    font-size: 0.875rem;
    font-weight: 600;
    animation: fadeInUp 1s ease-out 2s both;
    z-index: 10;
}

.scroll-indicator .mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #2563eb;
    border-radius: 15px;
    margin-bottom: 0.5rem;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #2563eb;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(20px); opacity: 0; }
}

/* Effet de particules subtiles sur la navbar */
.navbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* ===== SECTION SERVICES - DESIGN MODERNE CLAIR ===== */

/* Motif de fond subtil */
.grid-pattern-light {
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    width: 100%;
    height: 100%;
}

/* Particules flottantes légères */
.floating-particle-light {
    position: absolute;
    background: linear-gradient(45deg, #3b82f6, #06b6d4);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-light 8s ease-in-out infinite;
}

.floating-particle-light.particle-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-particle-light.particle-2 {
    width: 12px;
    height: 12px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-particle-light.particle-3 {
    width: 6px;
    height: 6px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.floating-particle-light.particle-4 {
    width: 10px;
    height: 10px;
    top: 40%;
    left: 80%;
    animation-delay: 6s;
}

.floating-particle-light.particle-5 {
    width: 8px;
    height: 8px;
    bottom: 20%;
    right: 25%;
    animation-delay: 1s;
}

@keyframes float-light {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Cartes de services modernes */
.service-card-modern {
    position: relative;
    height: 100%;
    border-radius: 2rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.service-card-modern:hover {
    transform: translateY(-10px);
}

.service-card-bg-light {
    transition: all 0.4s ease;
}

.service-card-modern:hover .service-card-bg-light {
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.25) !important;
}

/* Conteneur d'icône moderne */
.service-icon-container-light {
    position: relative;
    display: inline-block;
}

.icon-bg-light {
    transition: all 0.3s ease;
}

.service-card-modern:hover .icon-bg-light {
    transform: scale(1.1);
    box-shadow: 0 20px 40px -12px rgba(59, 130, 246, 0.4) !important;
}

/* Bouton moderne */
.service-btn-modern {
    position: relative;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.service-btn-modern:hover {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.btn-text-light {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.btn-icon-light {
    position: relative;
    z-index: 2;
    margin-left: 8px;
    transition: all 0.3s ease;
}

.service-btn-modern:hover .btn-icon-light {
    transform: translateX(4px);
}

/* Call-to-action moderne */
.cta-container-light {
    position: relative;
}

.cta-btn-modern {
    position: relative;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-content-light {
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.4), 0 4px 6px -2px rgba(59, 130, 246, 0.2);
}

.cta-btn-modern:hover .cta-content-light {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -12px rgba(59, 130, 246, 0.6) !important;
}

/* Animation d'apparition des cartes */
.service-card-modern {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.service-card-modern:nth-child(1) { animation-delay: 0.1s; }
.service-card-modern:nth-child(2) { animation-delay: 0.2s; }
.service-card-modern:nth-child(3) { animation-delay: 0.3s; }
.service-card-modern:nth-child(4) { animation-delay: 0.4s; }
.service-card-modern:nth-child(5) { animation-delay: 0.5s; }
.service-card-modern:nth-child(6) { animation-delay: 0.6s; }

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

/* Responsive */
@media (max-width: 768px) {
    .service-card-modern {
        height: auto;
        min-height: 350px;
    }
    
    .service-card-modern:hover {
        transform: translateY(-5px) scale(1.01);
    }
}

/* ===== SECTION À PROPOS FUTURISTE ===== */

/* Animation de brillance futuriste - DÉSACTIVÉE */
@keyframes shine-futuristic {
    0% {
        transform: translateX(-100%) skewX(-12deg);
        opacity: 0;
    }
    100% {
        transform: translateX(200%) skewX(-12deg);
        opacity: 0;
    }
}

.animate-shine-futuristic {
    animation: none; /* Désactivée */
}

/* Motif de grille futuriste */
.grid-pattern-futuristic {
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.2) 1px, transparent 1px);
    background-size: 50px 50px;
    width: 100%;
    height: 100%;
}

/* Particules flottantes futuristes */
.futuristic-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(45deg, #3b82f6, #06b6d4);
    border-radius: 50%;
    animation: float-futuristic 8s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.8);
}

.futuristic-particle.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.futuristic-particle.particle-2 {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 12s;
}

.futuristic-particle.particle-3 {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 9s;
}

.futuristic-particle.particle-4 {
    top: 30%;
    left: 70%;
    animation-delay: 6s;
    animation-duration: 11s;
}

.futuristic-particle.particle-5 {
    top: 70%;
    left: 40%;
    animation-delay: 8s;
    animation-duration: 13s;
}

.futuristic-particle.particle-6 {
    top: 40%;
    left: 90%;
    animation-delay: 10s;
    animation-duration: 8s;
}

@keyframes float-futuristic {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.9;
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) translateX(-15px) scale(0.8);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-30px) translateX(5px) scale(1.1);
        opacity: 1;
    }
}

/* Contenu principal */
.about-content-futuristic {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Badge d'expérience */
.experience-badge-futuristic {
    animation: pulse-glow 3s ease-in-out infinite;
}

.experience-badge-futuristic > div {
    background: linear-gradient(135deg, #2563eb, #0891b2) !important;
    border: 2px solid #60a5fa !important;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
    backdrop-filter: none !important;
    opacity: 1 !important;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
    }
    50% {
        box-shadow: 0 0 60px rgba(59, 130, 246, 0.8);
    }
}

.experience-icon-container {
    animation: rotate-slow 10s linear infinite;
}

.experience-icon-container > div {
    background: linear-gradient(135deg, #1d4ed8, #0e7490) !important;
    border: 2px solid #93c5fd !important;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    opacity: 1 !important;
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Image futuriste */
.about-image-futuristic {
    animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-container-futuristic {
    position: relative;
    transition: all 0.7s ease;
}

.image-container-futuristic:hover {
    transform: scale(1.02);
}

.image-glow {
    animation: pulse-glow 4s ease-in-out infinite;
}

.image-main {
    transition: all 0.7s ease;
}

.image-main:hover {
    transform: scale(1.05);
}

/* Icônes flottantes */
.floating-icons {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float-icon 6s ease-in-out infinite;
    border: 2px solid rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.floating-icon.icon-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.floating-icon.icon-3 {
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float-icon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-5px) rotate(-5deg);
        opacity: 0.9;
    }
    75% {
        transform: translateY(-20px) rotate(3deg);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .about-content-futuristic {
        order: 2;
    }
    
    .about-image-futuristic {
        order: 1;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .about-futuristic {
        padding: 3rem 0;
    }
    
    .about-futuristic h2 {
        font-size: 3rem;
    }
    
    .floating-icon {
        display: none;
    }
}

/* Particules flottantes pour la section contact (fond clair) */
.floating-particle-contact-light {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    animation: float-contact-light var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
    opacity: 0.7;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

.floating-particle-contact-light::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    opacity: 0.4;
    animation: pulse-contact-light 2s ease-in-out infinite;
}

@keyframes float-contact-light {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-40px) translateX(-5px) rotate(180deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-20px) translateX(-15px) rotate(270deg);
        opacity: 0.9;
    }
}

@keyframes pulse-contact-light {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.2;
    }
}

/* Effets de brillance pour les cartes de contact (fond clair) */
.contact-card-glow-light {
    position: relative;
    overflow: hidden;
}

.contact-card-glow-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    transition: left 0.5s;
}

.contact-card-glow-light:hover::before {
    left: 100%;
}

/* Animations d'entrée pour la section contact (fond clair) */
.contact-fade-in-light {
    animation: contactFadeInLight 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes contactFadeInLight {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Effets de focus améliorés pour les inputs (fond clair) */
.contact-input-light:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
    border-color: #3b82f6;
}

/* Animation pour le bouton d'envoi (fond clair) */
.contact-submit-btn-light {
    position: relative;
    overflow: hidden;
}

.contact-submit-btn-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.contact-submit-btn-light:hover::before {
    left: 100%;
}

/* Effets de hover pour les cartes d'information (fond clair) */
.contact-info-card-light {
    transition: all 0.3s ease;
}

.contact-info-card-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

/* Animation pour les icônes des horaires (fond clair) */
.hours-indicator-light {
    animation: hoursPulseLight 2s ease-in-out infinite;
}

@keyframes hoursPulseLight {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Effet de glassmorphism pour les cartes (fond clair) */
.glass-effect-light {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Animation pour le titre principal (fond clair) */
.contact-title-glow-light {
    background: linear-gradient(45deg, #1f2937, #3b82f6, #8b5cf6, #1f2937);
    background-size: 300% 300%;
    animation: titleGlowLight 3s ease-in-out infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes titleGlowLight {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Responsive pour la section contact (fond clair) */
@media (max-width: 768px) {
    .floating-particle-contact-light {
        display: none;
    }
    
    .contact-title-glow-light {
        font-size: 2.5rem;
    }
}

/* ===== GALERIE FUTURISTE ===== */

/* Section galerie principale */
.gallery-futuristic {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 25%, #dbeafe 50%, #e0e7ff 75%, #f8fafc 100%);
}

/* Particules flottantes de la galerie */
.gallery-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #06b6d4);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-gallery var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
    filter: blur(1px);
}

.gallery-particle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-gallery 3s ease-in-out infinite;
}

.gallery-particle.particle-1 { animation-duration: 25s; }
.gallery-particle.particle-2 { animation-duration: 30s; }
.gallery-particle.particle-3 { animation-duration: 20s; }
.gallery-particle.particle-4 { animation-duration: 35s; }
.gallery-particle.particle-5 { animation-duration: 28s; }
.gallery-particle.particle-6 { animation-duration: 22s; }

@keyframes float-gallery {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) translateX(-15px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) translateX(5px) rotate(270deg);
        opacity: 0.7;
    }
}

@keyframes pulse-gallery {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.2;
    }
}

/* Titre de la galerie avec animation */
.gallery-title {
    /* Dégradé supprimé - titre simple */
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Sous-titre avec effet de fade */
.gallery-subtitle {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

/* Grille de galerie avec animation d'apparition */
.gallery-grid {
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

/* Items de galerie futuristes */
.gallery-item-futuristic {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.gallery-item-futuristic:nth-child(1) { animation-delay: 1.2s; }
.gallery-item-futuristic:nth-child(2) { animation-delay: 1.3s; }
.gallery-item-futuristic:nth-child(3) { animation-delay: 1.4s; }
.gallery-item-futuristic:nth-child(4) { animation-delay: 1.5s; }
.gallery-item-futuristic:nth-child(5) { animation-delay: 1.6s; }
.gallery-item-futuristic:nth-child(6) { animation-delay: 1.7s; }

/* Effet de survol sur les items */
.gallery-item-futuristic:hover {
    transform: translateY(-16px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(59, 130, 246, 0.25),
        0 0 0 1px rgba(59, 130, 246, 0.1),
        0 0 40px rgba(139, 92, 246, 0.1);
}

/* Effet de brillance au survol */
.gallery-item-futuristic::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.8s ease;
    z-index: 2;
}

.gallery-item-futuristic:hover::before {
    left: 100%;
}

/* Image avec effets */
.gallery-item-futuristic img {
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.gallery-item-futuristic:hover img {
    filter: brightness(1.1) contrast(1.2) saturate(1.1);
    transform: scale(1.1) rotate(1deg);
}

/* Overlay avec informations */
.gallery-item-futuristic .absolute.inset-0 {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(0, 0, 0, 0.4) 50%, 
        transparent 100%);
}

/* Titre avec effet de brillance */
.gallery-item-futuristic h3 span {
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #ffffff 100%);
    background-size: 200% 200%;
    animation: text-shine 3s ease-in-out infinite;
}

@keyframes text-shine {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Badge de catégorie futuriste */
.gallery-item-futuristic .inline-flex {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.8) 0%, 
        rgba(139, 92, 246, 0.8) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Icône de zoom futuriste */
.gallery-item-futuristic .absolute.top-6.right-6 {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery-item-futuristic:hover .absolute.top-6.right-6 {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Indicateur de qualité */
.gallery-item-futuristic .absolute.top-6.left-6 .w-2 {
    background: linear-gradient(45deg, #10b981, #34d399);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

/* Bouton "Voir plus" futuriste */
.gallery-btn-futuristic {
    position: relative;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
    background-size: 200% 200%;
    animation: gradient-shift 3s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(59, 130, 246, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.gallery-btn-futuristic:hover {
    background-size: 150% 150%;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 12px 40px rgba(59, 130, 246, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 60px rgba(139, 92, 246, 0.2);
}

/* Effet de brillance sur le bouton */
.gallery-btn-futuristic .absolute.inset-0 {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
}

/* Responsive pour la galerie */
@media (max-width: 768px) {
    .gallery-futuristic {
        padding: 3rem 0;
    }
    
    .gallery-title {
        font-size: 2.5rem;
    }
    
    .gallery-subtitle {
        font-size: 1.1rem;
    }
    
    .gallery-item-futuristic {
        margin-bottom: 1.5rem;
    }
    
    .gallery-item-futuristic:hover {
        transform: translateY(-8px) scale(1.02);
    }
    
    .gallery-particle {
        display: none;
    }
}

/* Animation d'apparition pour les éléments */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Effet de texte shadow pour les titres */
.text-shadow-lg {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Optimisation des performances */
.gallery-item-futuristic {
    will-change: transform, opacity;
}

.gallery-particle {
    will-change: transform;
}

/* Support pour les navigateurs qui ne supportent pas backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
    .gallery-item-futuristic,
    .gallery-btn-futuristic,
    .gallery-item-futuristic .inline-flex,
    .gallery-item-futuristic .absolute.top-6.right-6 {
        background: rgba(255, 255, 255, 0.9);
    }
}

/* Icône d'écran cassé */
.fas.fa-mobile-alt {
    position: relative;
}

.fas.fa-mobile-alt::before {
    content: "\f3cd"; /* Code de l'icône mobile */
}

.fas.fa-mobile-alt::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 0, 0, 0.3) 45%, transparent 50%);
    pointer-events: none;
    animation: crack 2s ease-in-out infinite;
}

@keyframes crack {
    0%, 100% {
        opacity: 0.3;
        transform: rotate(0deg);
    }
    50% {
        opacity: 0.7;
        transform: rotate(1deg);
    }
}

/* Support pour les navigateurs qui ne supportent pas les animations */
@media (prefers-reduced-motion: reduce) {
    .fas.fa-mobile-alt::after {
        animation: none;
    }
}

/* ===== CARDS SERVICES FUTURISTES ===== */
.service-card-futuristic {
    position: relative;
    background: transparent;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(.4,2,.3,1);
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.service-card-futuristic:hover {
    box-shadow: 0 12px 48px 0 rgba(34,211,238,0.18), 0 0 0 4px #06b6d4cc;
    border-color: #06b6d4;
    z-index: 2;
}
/* Glow animé sur le fond */
@keyframes shine-futuristic {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.animate-shine-futuristic {
    background: linear-gradient(90deg,rgba(59,130,246,0.08) 0%,rgba(34,211,238,0.12) 50%,rgba(168,85,247,0.08) 100%);
    background-size: 200% 100%;
    animation: shine-futuristic 4s linear infinite;
}
/* Badge icône circulaire avec halo et pulse */
.icon-badge-futuristic {
    box-shadow: 0 0 32px 0 rgba(34,211,238,0.25), 0 2px 8px 0 rgba(59,130,246,0.10);
    position: relative;
    animation: pulse-glow-futuristic 2.5s infinite alternate;
}
@keyframes pulse-glow-futuristic {
    0% { box-shadow: 0 0 32px 0 rgba(34,211,238,0.18), 0 2px 8px 0 rgba(59,130,246,0.10); }
    100% { box-shadow: 0 0 48px 8px rgba(34,211,238,0.28), 0 4px 16px 0 rgba(59,130,246,0.18); }
}
/* Titre dégradé */
.service-card-futuristic h3 {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
/* Animation lente sur l'icône clock */
@keyframes spin-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.animate-spin-slow {
    animation: spin-slow 4s linear infinite;
}
/* Bouton futuriste gradient néon */
.service-btn-futuristic {
    position: relative;
    overflow: hidden;
    border-radius: 9999px;
    box-shadow: 0 2px 16px 0 rgba(34,211,238,0.10);
    transition: all 0.3s cubic-bezier(.4,2,.3,1);
    z-index: 1;
}
.service-btn-futuristic:hover {
    box-shadow: 0 4px 32px 0 rgba(34,211,238,0.18), 0 0 0 2px #06b6d4cc;
    background-position: right center;
}
/* Animation flèche bouton */
@keyframes arrow-move {
    0% { transform: translateX(0); }
    50% { transform: translateX(6px); }
    100% { transform: translateX(0); }
}
.btn-icon-futuristic {
    animation: arrow-move 1.2s infinite;
}
/* Responsive */
@media (max-width: 768px) {
    .service-card-futuristic {
        min-height: 340px;
        padding: 1.5rem 0.5rem;
    }
    .icon-badge-futuristic {
        padding: 1.2rem;
    }
}

/* Correction visibilité titre galerie */
.gallery-item-futuristic h3 {
    position: relative;
    z-index: 20;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.gallery-item-futuristic h3 span {
    position: relative;
    z-index: 21;
    background-clip: text;
    -webkit-background-clip: text;
    color: white !important;
    -webkit-text-fill-color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

/* Suppression de tout élément blanc qui pourrait masquer le titre */
.gallery-item-futuristic .absolute.inset-0:not(.bg-gradient-to-t) {
    background: none !important;
}

/* Amélioration de la visibilité de l'overlay */
.gallery-item-futuristic .absolute.inset-0.bg-gradient-to-t {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%) !important;
}

/* S'assurer que le contenu du titre est visible */
.gallery-item-futuristic .absolute.bottom-0 {
    z-index: 15;
}

.gallery-item-futuristic .absolute.bottom-0 h3 {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

/* Suppression de tout effet de texte transparent qui pourrait causer des problèmes */
.gallery-item-futuristic h3 span.bg-gradient-to-r {
    background: none !important;
    color: white !important;
    -webkit-text-fill-color: white !important;
}

/* ===== HERO FUTURISTE ===== */

/* Fond principal du hero */
.hero-futuristic {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 25%, #7c3aed 50%, #1e40af 75%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

/* Grille futuriste animée */
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Dégradé radial animé */
.bg-radial-gradient {
    background: radial-gradient(circle at 50% 50%, 
        rgba(34, 211, 238, 0.3) 0%, 
        rgba(59, 130, 246, 0.2) 25%, 
        rgba(168, 85, 247, 0.1) 50%, 
        transparent 100%);
}

/* Animation de brillance pour le hero */
@keyframes shine-hero {
    0% {
        transform: translateX(-100%) skewX(-12deg);
        opacity: 0;
    }
    100% {
        transform: translateX(200%) skewX(-12deg);
        opacity: 0;
    }
}

.animate-shine-hero {
    animation: none; /* Désactivée */
}

/* Particules 3D futuristes - OPACITÉ AUGMENTÉE */
.hero-particle-3d {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.8) 0%, rgba(0, 212, 255, 0.5) 50%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    animation: float-3d var(--duration, 20s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    opacity: 0.6;
    filter: blur(0.3px);
}

@keyframes float-3d {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-40px) translateX(-5px) rotate(180deg);
        opacity: 0.9;
    }
    75% {
        transform: translateY(-20px) translateX(-15px) rotate(270deg);
        opacity: 0.7;
    }
}

/* Effet de néon au centre */
.hero-neon-glow {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, 
        rgba(6, 182, 212, 0.2) 0%, 
        rgba(59, 130, 246, 0.1) 30%, 
        transparent 70%);
    border-radius: 50%;
    animation: neon-pulse 4s ease-in-out infinite;
    filter: blur(20px);
}

@keyframes neon-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

/* Lignes de connexion futuristes */
.hero-connection-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.connection-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.6), transparent);
    height: 1px;
    animation: connection-flow 6s linear infinite;
}

.connection-line.line-1 {
    top: 20%;
    left: 0;
    width: 100%;
    animation-delay: 0s;
}

.connection-line.line-2 {
    top: 60%;
    left: 0;
    width: 100%;
    animation-delay: 2s;
}

.connection-line.line-3 {
    top: 0;
    left: 30%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.6), transparent);
    animation-delay: 1s;
}

.connection-line.line-4 {
    top: 0;
    left: 70%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.6), transparent);
    animation-delay: 3s;
}

@keyframes connection-flow {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Titre futuriste */
.hero-title-futuristic {
    text-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
}

/* Animation de texte brillant */
@keyframes text-shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.animate-text-shimmer {
    background-size: 200% auto;
    animation: text-shimmer 3s ease-in-out infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: none;
    filter: none;
}

/* Sous-titre futuriste */
.hero-subtitle-futuristic {
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

/* Stats futuristes */
.stats-grid-futuristic {
    backdrop-filter: blur(10px);
}

.stat-item-futuristic {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(6, 182, 212, 0.3);
    transition: all 0.3s ease;
}

.stat-item-futuristic:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
    border-color: rgba(6, 182, 212, 0.6);
}

/* Animation de comptage */
@keyframes count-up {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-count-up {
    animation: count-up 1s ease-out;
}

/* Boutons futuristes */
.btn-primary-futuristic {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    border: 2px solid rgba(6, 182, 212, 0.5);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-futuristic::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;
}

.btn-primary-futuristic:hover::before {
    left: 100%;
}

.btn-primary-futuristic:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.5);
    border-color: rgba(6, 182, 212, 0.8);
}

.btn-secondary-futuristic {
    background: transparent;
    border: 2px solid rgba(6, 182, 212, 0.5);
    color: #06b6d4;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary-futuristic:hover {
    background: rgba(6, 182, 212, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.3);
    border-color: rgba(6, 182, 212, 0.8);
}

/* Indicateur de scroll futuriste */
.scroll-indicator-futuristic {
    text-align: center;
    color: #06b6d4;
}

.mouse-futuristic {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(6, 182, 212, 0.6);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
    animation: scroll-futuristic 2s infinite;
}

.mouse-futuristic::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: #06b6d4;
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scroll-dot-futuristic 2s infinite;
}

@keyframes scroll-futuristic {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    50% {
        transform: translateY(10px);
        opacity: 1;
    }
}

@keyframes scroll-dot-futuristic {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}

/* Animation de pulse lente */
@keyframes pulse-slow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.animate-pulse-slow {
    animation: pulse-slow 4s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-grid-pattern {
        background-size: 30px 30px;
    }
    
    .hero-neon-glow {
        width: 200px;
        height: 200px;
    }
    
    .connection-line {
        opacity: 0.2;
    }
}

/* Style spécifique pour le mot "smartphones" */
.hero-content h1 .highlight {
    background: linear-gradient(45deg, #00d4ff, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3, #54a0ff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    animation: text-shimmer 4s ease-in-out infinite;
} 