/* LoveRoom66 - CSS personnalisé */

/* Configuration Tailwind */
@import 'tailwindcss/base';
@import 'tailwindcss/components';
@import 'tailwindcss/utilities';

/* Variables CSS personnalisées */
:root {
    --gradient-primary: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --shadow-neon: 0 0 10px rgba(236, 72, 153, 0.15);
    --shadow-neon-purple: 0 0 10px rgba(139, 92, 246, 0.15);
    --glow-pink: 0 0 20px rgba(244, 114, 182, 0.3), 0 0 40px rgba(244, 114, 182, 0.2), 0 0 60px rgba(244, 114, 182, 0.1);
    --glow-purple: 0 0 20px rgba(192, 132, 252, 0.3), 0 0 40px rgba(192, 132, 252, 0.2), 0 0 60px rgba(192, 132, 252, 0.1);
    --glow-blue: 0 0 20px rgba(96, 165, 250, 0.3), 0 0 40px rgba(96, 165, 250, 0.2), 0 0 60px rgba(96, 165, 250, 0.1);
}

/* Base styles */
* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a0d2e 50%, #2d1b69 100%);
    overflow-x: hidden;
    letter-spacing: 0.3px;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 1px;
}

h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(236, 72, 153, 0.15); }
    50% { box-shadow: 0 0 15px rgba(236, 72, 153, 0.25); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Navigation */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f472b6 0%, #c084fc 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.nav-link:hover {
    background: linear-gradient(135deg, #ec4899 0%, #a855f7 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: brightness(1.2);
    transform: translateY(-2px);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ec4899, #a855f7, #3b82f6);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-bg {
    background: 
        radial-gradient(circle at 20% 80%, rgba(236, 72, 153, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

/* Hero subtitle avec dégradé coloré */
.hero-subtitle-gradient {
    background: linear-gradient(135deg, #f472b6 0%, #c084fc 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

/* Hero avec image de fond */
#accueil {
    position: relative;
}

#accueil::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    animation: subtle-zoom 20s ease-in-out infinite alternate;
}

@keyframes subtle-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

/* Boutons */
.btn-primary {
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

/* Cartes de services */
.service-card {
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease-out;
    position: relative;
    padding: 20px;
}

/* Halo Ambilight ROUGE RÉDUIT pour cartes services - couche proche */
.service-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 80px);
    height: calc(100% + 80px);
    background: radial-gradient(ellipse, 
        rgba(200, 0, 0, 0.06) 0%, 
        rgba(220, 20, 20, 0.05) 20%,
        rgba(240, 30, 30, 0.04) 40%,
        rgba(255, 50, 50, 0.03) 60%,
        transparent 80%);
    border-radius: 20px;
    animation: serviceAmbilight 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    filter: blur(50px);
    opacity: 0.15;
}

/* Halo Ambilight ROUGE RÉDUIT pour cartes services - couche éloignée */
.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 160px);
    height: calc(100% + 160px);
    background: radial-gradient(ellipse, 
        transparent 0%,
        rgba(200, 0, 0, 0.05) 15%,
        rgba(220, 20, 20, 0.04) 30%,
        rgba(240, 30, 30, 0.03) 45%,
        rgba(255, 50, 50, 0.02) 60%,
        transparent 75%);
    border-radius: 25px;
    animation: serviceAmbilight 4s ease-in-out infinite 1.5s;
    pointer-events: none;
    z-index: 0;
    filter: blur(70px);
    opacity: 0.15;
}

@keyframes serviceAmbilight {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.15;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.2;
    }
}

.service-card:hover {
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.15),
                0 0 40px rgba(220, 20, 60, 0.1);
    transform: translateY(-5px) scale(1.02);
}

.service-card:hover::before {
    animation-duration: 2s;
    opacity: 0.25;
}

.service-card:hover::after {
    animation-duration: 2s;
    opacity: 0.25;
}

/* Assurer que le contenu de la carte est au-dessus des halos */
.service-card > * {
    position: relative;
    z-index: 1;
}

/* Exception pour la carte Climatisation - Halo BLEU au lieu de ROUGE */
.service-card-blue::before {
    background: radial-gradient(ellipse, 
        rgba(30, 58, 138, 0.15) 0%, 
        rgba(37, 99, 235, 0.135) 20%,
        rgba(59, 130, 246, 0.12) 40%,
        rgba(96, 165, 250, 0.09) 60%,
        transparent 80%) !important;
}

.service-card-blue::after {
    background: radial-gradient(ellipse, 
        transparent 0%,
        rgba(30, 58, 138, 0.135) 15%,
        rgba(37, 99, 235, 0.12) 30%,
        rgba(59, 130, 246, 0.105) 45%,
        rgba(96, 165, 250, 0.075) 60%,
        transparent 75%) !important;
}

/* Section Professionnelle - Effet Ambilight BLEU (60% d'intensité) */
.professional-card {
    position: relative;
    padding: 20px;
}

/* Halo Ambilight BLEU pour section professionnelle - couche proche */
.professional-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 80px);
    height: calc(100% + 80px);
    background: radial-gradient(ellipse, 
        rgba(30, 58, 138, 0.48) 0%, 
        rgba(37, 99, 235, 0.42) 20%,
        rgba(59, 130, 246, 0.36) 40%,
        rgba(96, 165, 250, 0.3) 60%,
        transparent 80%);
    border-radius: 20px;
    animation: professionalAmbilight 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    filter: blur(50px);
    opacity: 0.6;
}

/* Halo Ambilight BLEU pour section professionnelle - couche éloignée */
.professional-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 160px);
    height: calc(100% + 160px);
    background: radial-gradient(ellipse, 
        transparent 0%,
        rgba(30, 58, 138, 0.42) 15%,
        rgba(37, 99, 235, 0.36) 30%,
        rgba(59, 130, 246, 0.3) 45%,
        rgba(96, 165, 250, 0.24) 60%,
        transparent 75%);
    border-radius: 25px;
    animation: professionalAmbilight 4s ease-in-out infinite 1.5s;
    pointer-events: none;
    z-index: 0;
    filter: blur(70px);
    opacity: 0.6;
}

@keyframes professionalAmbilight {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.6;
    }
}

.professional-card:hover::before {
    animation-duration: 2s;
    opacity: 0.7;
}

.professional-card:hover::after {
    animation-duration: 2s;
    opacity: 0.7;
}

/* Assurer que le contenu de la carte professionnelle est au-dessus des halos */
.professional-card > * {
    position: relative;
    z-index: 1;
}

/* Effets de surbrillance pour les grandes icônes - Style Ambilight ULTRA */
.icon-glow-pink {
    color: rgba(244, 114, 182, 0.9) !important;
    filter: drop-shadow(0 0 30px rgba(244, 114, 182, 1)) 
            drop-shadow(0 0 60px rgba(244, 114, 182, 1)) 
            drop-shadow(0 0 90px rgba(244, 114, 182, 1))
            drop-shadow(0 0 120px rgba(244, 114, 182, 1))
            drop-shadow(0 0 150px rgba(244, 114, 182, 0.9))
            drop-shadow(0 0 200px rgba(244, 114, 182, 0.8))
            drop-shadow(0 0 250px rgba(244, 114, 182, 0.6))
            drop-shadow(0 0 300px rgba(244, 114, 182, 0.4));
    transition: all 0.3s ease;
    animation: iconAmbilightPink 3s ease-in-out infinite;
    position: relative;
}

.icon-glow-purple {
    color: rgba(192, 132, 252, 0.9) !important;
    filter: drop-shadow(0 0 30px rgba(192, 132, 252, 1)) 
            drop-shadow(0 0 60px rgba(192, 132, 252, 1)) 
            drop-shadow(0 0 90px rgba(192, 132, 252, 1))
            drop-shadow(0 0 120px rgba(192, 132, 252, 1))
            drop-shadow(0 0 150px rgba(192, 132, 252, 0.9))
            drop-shadow(0 0 200px rgba(192, 132, 252, 0.8))
            drop-shadow(0 0 250px rgba(192, 132, 252, 0.6))
            drop-shadow(0 0 300px rgba(192, 132, 252, 0.4));
    transition: all 0.3s ease;
    animation: iconAmbilightPurple 3s ease-in-out infinite;
    position: relative;
}

.icon-glow-blue {
    color: rgba(96, 165, 250, 0.9) !important;
    filter: drop-shadow(0 0 30px rgba(96, 165, 250, 1)) 
            drop-shadow(0 0 60px rgba(96, 165, 250, 1)) 
            drop-shadow(0 0 90px rgba(96, 165, 250, 1))
            drop-shadow(0 0 120px rgba(96, 165, 250, 1))
            drop-shadow(0 0 150px rgba(96, 165, 250, 0.9))
            drop-shadow(0 0 200px rgba(96, 165, 250, 0.8))
            drop-shadow(0 0 250px rgba(96, 165, 250, 0.6))
            drop-shadow(0 0 300px rgba(96, 165, 250, 0.4));
    transition: all 0.3s ease;
    animation: iconAmbilightBlue 3s ease-in-out infinite;
    position: relative;
}

/* Animations de pulsation pour les icônes */
@keyframes iconPulse {
    0%, 100% {
        filter: drop-shadow(0 0 30px currentColor) drop-shadow(0 0 60px currentColor);
    }
    50% {
        filter: drop-shadow(0 0 50px currentColor) drop-shadow(0 0 100px currentColor);
    }
}

@keyframes iconAmbilightPink {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(244, 114, 182, 1)) 
                drop-shadow(0 0 60px rgba(244, 114, 182, 1)) 
                drop-shadow(0 0 120px rgba(244, 114, 182, 1))
                drop-shadow(0 0 180px rgba(244, 114, 182, 0.9))
                drop-shadow(0 0 250px rgba(244, 114, 182, 0.7))
                drop-shadow(0 0 300px rgba(244, 114, 182, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(244, 114, 182, 1)) 
                drop-shadow(0 0 100px rgba(244, 114, 182, 1)) 
                drop-shadow(0 0 150px rgba(244, 114, 182, 1))
                drop-shadow(0 0 220px rgba(244, 114, 182, 1))
                drop-shadow(0 0 300px rgba(244, 114, 182, 0.9))
                drop-shadow(0 0 400px rgba(244, 114, 182, 0.7));
    }
}

@keyframes iconAmbilightPurple {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(192, 132, 252, 1)) 
                drop-shadow(0 0 60px rgba(192, 132, 252, 1)) 
                drop-shadow(0 0 120px rgba(192, 132, 252, 1))
                drop-shadow(0 0 180px rgba(192, 132, 252, 0.9))
                drop-shadow(0 0 250px rgba(192, 132, 252, 0.7))
                drop-shadow(0 0 300px rgba(192, 132, 252, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(192, 132, 252, 1)) 
                drop-shadow(0 0 100px rgba(192, 132, 252, 1)) 
                drop-shadow(0 0 150px rgba(192, 132, 252, 1))
                drop-shadow(0 0 220px rgba(192, 132, 252, 1))
                drop-shadow(0 0 300px rgba(192, 132, 252, 0.9))
                drop-shadow(0 0 400px rgba(192, 132, 252, 0.7));
    }
}

@keyframes iconAmbilightBlue {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(96, 165, 250, 1)) 
                drop-shadow(0 0 60px rgba(96, 165, 250, 1)) 
                drop-shadow(0 0 120px rgba(96, 165, 250, 1))
                drop-shadow(0 0 180px rgba(96, 165, 250, 0.9))
                drop-shadow(0 0 250px rgba(96, 165, 250, 0.7))
                drop-shadow(0 0 300px rgba(96, 165, 250, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(96, 165, 250, 1)) 
                drop-shadow(0 0 100px rgba(96, 165, 250, 1)) 
                drop-shadow(0 0 150px rgba(96, 165, 250, 1))
                drop-shadow(0 0 220px rgba(96, 165, 250, 1))
                drop-shadow(0 0 300px rgba(96, 165, 250, 0.9))
                drop-shadow(0 0 400px rgba(96, 165, 250, 0.7));
    }
}

/* Hover sur les cartes avec icônes */
.service-card:hover .icon-glow-pink,
.service-card:hover .icon-glow-purple,
.service-card:hover .icon-glow-blue {
    transform: scale(1.1);
    animation-duration: 2s;
}

/* Effet glow NORMAL pour les icônes de la page d'accueil (Hero) */
.features-icon {
    filter: drop-shadow(0 0 15px rgba(244, 114, 182, 0.5));
    transition: all 0.3s ease;
}

.features-icon:hover {
    filter: drop-shadow(0 0 25px rgba(244, 114, 182, 0.8));
    transform: scale(1.1) rotate(5deg);
}

/* Effet glow rouge pour l'icône non-fumeur - Style Ambilight ULTRA */
.icon-glow-red {
    color: rgba(248, 113, 113, 0.9) !important;
    filter: drop-shadow(0 0 30px rgba(248, 113, 113, 1)) 
            drop-shadow(0 0 60px rgba(248, 113, 113, 1)) 
            drop-shadow(0 0 90px rgba(248, 113, 113, 1))
            drop-shadow(0 0 120px rgba(248, 113, 113, 1))
            drop-shadow(0 0 150px rgba(248, 113, 113, 0.9))
            drop-shadow(0 0 200px rgba(248, 113, 113, 0.8))
            drop-shadow(0 0 250px rgba(248, 113, 113, 0.6))
            drop-shadow(0 0 300px rgba(248, 113, 113, 0.4));
    transition: all 0.3s ease;
    animation: iconAmbilightRed 3s ease-in-out infinite;
    position: relative;
}

@keyframes iconAmbilightRed {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(248, 113, 113, 1)) 
                drop-shadow(0 0 60px rgba(248, 113, 113, 1)) 
                drop-shadow(0 0 120px rgba(248, 113, 113, 1))
                drop-shadow(0 0 180px rgba(248, 113, 113, 0.9))
                drop-shadow(0 0 250px rgba(248, 113, 113, 0.7))
                drop-shadow(0 0 300px rgba(248, 113, 113, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(248, 113, 113, 1)) 
                drop-shadow(0 0 100px rgba(248, 113, 113, 1)) 
                drop-shadow(0 0 150px rgba(248, 113, 113, 1))
                drop-shadow(0 0 220px rgba(248, 113, 113, 1))
                drop-shadow(0 0 300px rgba(248, 113, 113, 0.9))
                drop-shadow(0 0 400px rgba(248, 113, 113, 0.7));
    }
}

.service-card:hover .icon-glow-red {
    transform: scale(1.1);
    animation-duration: 2s;
}

/* Effet Ambilight MEGA intensifié pour icônes standalone (contact, pro, etc.) */
.icon-glow-intense {
    color: rgba(244, 114, 182, 0.25) !important;
    filter: drop-shadow(0 0 40px rgba(244, 114, 182, 1)) 
            drop-shadow(0 0 80px rgba(244, 114, 182, 1)) 
            drop-shadow(0 0 120px rgba(244, 114, 182, 1))
            drop-shadow(0 0 160px rgba(244, 114, 182, 1))
            drop-shadow(0 0 200px rgba(244, 114, 182, 1))
            drop-shadow(0 0 250px rgba(244, 114, 182, 0.9))
            drop-shadow(0 0 300px rgba(244, 114, 182, 0.8))
            drop-shadow(0 0 350px rgba(244, 114, 182, 0.6))
            drop-shadow(0 0 400px rgba(244, 114, 182, 0.4));
    animation: iconAmbilightIntense 2.5s ease-in-out infinite;
    transition: all 0.3s ease;
    position: relative;
}

.icon-glow-intense.text-purple-400 {
    color: rgba(192, 132, 252, 0.25) !important;
    filter: drop-shadow(0 0 40px rgba(192, 132, 252, 1)) 
            drop-shadow(0 0 80px rgba(192, 132, 252, 1)) 
            drop-shadow(0 0 120px rgba(192, 132, 252, 1))
            drop-shadow(0 0 160px rgba(192, 132, 252, 1))
            drop-shadow(0 0 200px rgba(192, 132, 252, 1))
            drop-shadow(0 0 250px rgba(192, 132, 252, 0.9))
            drop-shadow(0 0 300px rgba(192, 132, 252, 0.8))
            drop-shadow(0 0 350px rgba(192, 132, 252, 0.6))
            drop-shadow(0 0 400px rgba(192, 132, 252, 0.4));
    animation: iconAmbilightIntensePurple 2.5s ease-in-out infinite;
}

.icon-glow-intense.text-blue-400 {
    color: rgba(96, 165, 250, 0.25) !important;
    filter: drop-shadow(0 0 40px rgba(96, 165, 250, 1)) 
            drop-shadow(0 0 80px rgba(96, 165, 250, 1)) 
            drop-shadow(0 0 120px rgba(96, 165, 250, 1))
            drop-shadow(0 0 160px rgba(96, 165, 250, 1))
            drop-shadow(0 0 200px rgba(96, 165, 250, 1))
            drop-shadow(0 0 250px rgba(96, 165, 250, 0.9))
            drop-shadow(0 0 300px rgba(96, 165, 250, 0.8))
            drop-shadow(0 0 350px rgba(96, 165, 250, 0.6))
            drop-shadow(0 0 400px rgba(96, 165, 250, 0.4));
    animation: iconAmbilightIntenseBlue 2.5s ease-in-out infinite;
}

@keyframes iconAmbilightIntense {
    0%, 100% {
        filter: drop-shadow(0 0 40px rgba(244, 114, 182, 1)) 
                drop-shadow(0 0 80px rgba(244, 114, 182, 1)) 
                drop-shadow(0 0 160px rgba(244, 114, 182, 1))
                drop-shadow(0 0 240px rgba(244, 114, 182, 1))
                drop-shadow(0 0 320px rgba(244, 114, 182, 0.8))
                drop-shadow(0 0 400px rgba(244, 114, 182, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 60px rgba(244, 114, 182, 1)) 
                drop-shadow(0 0 120px rgba(244, 114, 182, 1)) 
                drop-shadow(0 0 200px rgba(244, 114, 182, 1))
                drop-shadow(0 0 280px rgba(244, 114, 182, 1))
                drop-shadow(0 0 380px rgba(244, 114, 182, 1))
                drop-shadow(0 0 500px rgba(244, 114, 182, 0.8));
    }
}

@keyframes iconAmbilightIntensePurple {
    0%, 100% {
        filter: drop-shadow(0 0 40px rgba(192, 132, 252, 1)) 
                drop-shadow(0 0 80px rgba(192, 132, 252, 1)) 
                drop-shadow(0 0 160px rgba(192, 132, 252, 1))
                drop-shadow(0 0 240px rgba(192, 132, 252, 1))
                drop-shadow(0 0 320px rgba(192, 132, 252, 0.8))
                drop-shadow(0 0 400px rgba(192, 132, 252, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 60px rgba(192, 132, 252, 1)) 
                drop-shadow(0 0 120px rgba(192, 132, 252, 1)) 
                drop-shadow(0 0 200px rgba(192, 132, 252, 1))
                drop-shadow(0 0 280px rgba(192, 132, 252, 1))
                drop-shadow(0 0 380px rgba(192, 132, 252, 1))
                drop-shadow(0 0 500px rgba(192, 132, 252, 0.8));
    }
}

@keyframes iconAmbilightIntenseBlue {
    0%, 100% {
        filter: drop-shadow(0 0 40px rgba(96, 165, 250, 1)) 
                drop-shadow(0 0 80px rgba(96, 165, 250, 1)) 
                drop-shadow(0 0 160px rgba(96, 165, 250, 1))
                drop-shadow(0 0 240px rgba(96, 165, 250, 1))
                drop-shadow(0 0 320px rgba(96, 165, 250, 0.8))
                drop-shadow(0 0 400px rgba(96, 165, 250, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 60px rgba(96, 165, 250, 1)) 
                drop-shadow(0 0 120px rgba(96, 165, 250, 1)) 
                drop-shadow(0 0 200px rgba(96, 165, 250, 1))
                drop-shadow(0 0 280px rgba(96, 165, 250, 1))
                drop-shadow(0 0 380px rgba(96, 165, 250, 1))
                drop-shadow(0 0 500px rgba(96, 165, 250, 0.8));
    }
}

.icon-glow-intense:hover {
    transform: scale(1.1);
    animation-duration: 1.5s;
}

/* Wrapper pour effet Ambilight ULTRA autour des icônes */
.icon-flame-wrapper {
    position: relative;
    display: inline-block;
    padding: 30px;
}

/* Halo Ambilight principal - proche de l'icône */
.icon-flame-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250%;
    height: 250%;
    background: radial-gradient(circle, 
        rgba(244, 114, 182, 0.27) 0%, 
        rgba(236, 72, 153, 0.24) 15%,
        rgba(192, 132, 252, 0.21) 30%,
        rgba(139, 92, 246, 0.18) 45%,
        rgba(96, 165, 250, 0.12) 60%,
        transparent 75%);
    border-radius: 50%;
    animation: ambilightPulse 3s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
    filter: blur(40px);
}

/* Halo Ambilight secondaire - plus éloigné */
.icon-flame-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400%;
    height: 400%;
    background: radial-gradient(circle, 
        transparent 0%, 
        rgba(244, 114, 182, 0.21) 15%,
        rgba(236, 72, 153, 0.18) 25%,
        rgba(192, 132, 252, 0.15) 40%,
        rgba(139, 92, 246, 0.12) 55%,
        rgba(96, 165, 250, 0.09) 70%,
        transparent 85%);
    border-radius: 50%;
    animation: ambilightPulse 3s ease-in-out infinite 1.2s;
    pointer-events: none;
    z-index: -1;
    filter: blur(60px);
}

@keyframes ambilightPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.25);
        opacity: 0.3;
    }
}

/* Cartes de tarifs */
.pricing-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(236, 72, 153, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.pricing-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-neon-purple);
}

/* Galerie avec effet Ambilight */
.gallery-item {
    animation: fadeInScale 0.6s ease-out;
    position: relative;
    padding: 20px;
}

/* Halo Ambilight RÉDUIT pour images de galerie - couche proche */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 80px);
    height: calc(100% + 80px);
    background: radial-gradient(ellipse, 
        rgba(236, 72, 153, 0.25) 0%, 
        rgba(192, 132, 252, 0.2) 20%,
        rgba(139, 92, 246, 0.15) 40%,
        rgba(96, 165, 250, 0.1) 60%,
        transparent 80%);
    border-radius: 20px;
    animation: galleryAmbilight 4s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
    filter: blur(50px);
    opacity: 0.3;
}

/* Halo Ambilight RÉDUIT pour images de galerie - couche éloignée */
.gallery-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 160px);
    height: calc(100% + 160px);
    background: radial-gradient(ellipse, 
        transparent 0%,
        rgba(236, 72, 153, 0.2) 15%,
        rgba(192, 132, 252, 0.15) 30%,
        rgba(139, 92, 246, 0.1) 45%,
        rgba(96, 165, 250, 0.08) 60%,
        transparent 75%);
    border-radius: 25px;
    animation: galleryAmbilight 4s ease-in-out infinite 1.5s;
    pointer-events: none;
    z-index: -1;
    filter: blur(70px);
    opacity: 0.25;
}

@keyframes galleryAmbilight {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.4;
    }
}

.gallery-item img {
    transition: all 0.3s ease;
    filter: brightness(0.85) drop-shadow(0 0 10px rgba(236, 72, 153, 0.15));
    position: relative;
    z-index: 1;
}

.gallery-item:hover img {
    filter: brightness(1.1) 
            drop-shadow(0 0 15px rgba(236, 72, 153, 0.3))
            drop-shadow(0 0 30px rgba(192, 132, 252, 0.2));
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.25),
                0 0 40px rgba(192, 132, 252, 0.15);
}

.gallery-item:hover::before {
    animation-duration: 2s;
    opacity: 0.5;
}

.gallery-item:hover::after {
    animation-duration: 2s;
    opacity: 0.45;
}

/* Formulaires */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.5);
    transform: translateY(-2px);
}

/* Checkbox personnalisée */
input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ec4899;
    border-radius: 4px;
    background: transparent;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

input[type="checkbox"]:checked {
    background: var(--gradient-primary);
    border-color: #ec4899;
}

input[type="checkbox"]:checked::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 14px;
}

/* Effets de survol pour les sections */
section {
    transition: all 0.3s ease;
}

/* Responsive amélioré */
@media (max-width: 768px) {
    .hero-bg {
        animation-duration: 8s;
    }
    
    .service-card,
    .pricing-card {
        margin-bottom: 1.5rem;
    }
    
    .gallery-item {
        margin-bottom: 1rem;
    }
}

/* Effets de particules pour le background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(236, 72, 153, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(139, 92, 246, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(59, 130, 246, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(236, 72, 153, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(139, 92, 246, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    z-index: -1;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

/* Styles pour les éléments avec focus visible */
*:focus-visible {
    outline: 2px solid #ec4899;
    outline-offset: 2px;
}

/* Animation d'entrée pour les éléments */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Effets de lueur pour les titres */
h1, h2 {
    text-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
}

/* Style glamour pour le logo et titres principaux */
.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Boutons avec typographie élégante */
button, .btn, a[class*="btn"] {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Navigation avec style raffiné */
nav a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Logo navigation - taille originale conservée */
.logo-nav-large {
    height: 100px;
    width: auto;
    max-width: none;
    filter: drop-shadow(0 0 15px rgba(236, 72, 153, 0.5)) drop-shadow(0 0 30px rgba(139, 92, 246, 0.3));
    transition: all 0.3s ease;
}

.logo-nav-large:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(236, 72, 153, 0.7)) drop-shadow(0 0 40px rgba(139, 92, 246, 0.5));
}

@media (min-width: 768px) {
    .logo-nav-large {
        height: 120px;
    }
}

@media (min-width: 1024px) {
    .logo-nav-large {
        height: 130px;
    }
}

@media (min-width: 1280px) {
    .logo-nav-large {
        height: 140px;
    }
}

/* Labels de formulaire élégants */
label {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Amélioration des ombres */
.shadow-custom {
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(236, 72, 153, 0.1);
}

/* Loading animation */
@keyframes loading {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.loading {
    animation: loading 2s ease-in-out infinite;
}

/* Styles pour les tooltips */
[data-tooltip] {
    position: relative;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem;
    border-radius: 0.25rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Styles pour les notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    color: white;
    z-index: 1000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.notification.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.notification.info {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

/* Amélioration de l'accessibilité */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Styles pour impression */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* === UBER EATS PARTENARIAT === */

/* Badge Uber Eats avec animation de brillance */
.uber-eats-badge {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.uber-eats-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(6, 193, 103, 0.3) 50%,
        transparent 70%
    );
    animation: uberEatsShine 3s ease-in-out infinite;
}

@keyframes uberEatsShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.uber-eats-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(6, 193, 103, 0.3);
}

/* Code promo avec effet pulsant */
.uber-eats-code {
    animation: uberEatsPulse 2s ease-in-out infinite;
    position: relative;
}

@keyframes uberEatsPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(6, 193, 103, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(6, 193, 103, 0);
    }
}

.uber-eats-code::after {
    content: '✨';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: translateY(-50%) scale(0.8); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.2); }
}

/* Carte Uber Eats avec glow vert */
.uber-eats-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.uber-eats-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        45deg,
        rgba(6, 193, 103, 0.3),
        rgba(16, 185, 129, 0.3),
        rgba(5, 150, 105, 0.3)
    );
    border-radius: 0.75rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.uber-eats-card:hover::before {
    opacity: 1;
    animation: uberEatsGlow 2s ease-in-out infinite;
}

@keyframes uberEatsGlow {
    0%, 100% {
        filter: blur(15px);
    }
    50% {
        filter: blur(25px);
    }
}

/* Icônes Uber Eats avec glow vert */
.uber-eats-icon {
    color: #06C167;
    filter: drop-shadow(0 0 10px rgba(6, 193, 103, 0.5))
            drop-shadow(0 0 20px rgba(6, 193, 103, 0.3));
    transition: all 0.3s ease;
}

.uber-eats-icon:hover {
    filter: drop-shadow(0 0 15px rgba(6, 193, 103, 0.7))
            drop-shadow(0 0 30px rgba(6, 193, 103, 0.5))
            drop-shadow(0 0 45px rgba(6, 193, 103, 0.3));
    transform: scale(1.1);
}

/* Badge "Partenaire" */
.partner-badge {
    display: inline-block;
    background: linear-gradient(135deg, #06C167, #059669);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 10px rgba(6, 193, 103, 0.3);
    animation: partnerBadgePulse 3s ease-in-out infinite;
}

@keyframes partnerBadgePulse {
    0%, 100% {
        box-shadow: 0 2px 10px rgba(6, 193, 103, 0.3);
    }
    50% {
        box-shadow: 0 2px 20px rgba(6, 193, 103, 0.6);
    }
}

/* Responsive Uber Eats */
@media (max-width: 768px) {
    .uber-eats-badge {
        padding: 0.5rem !important;
    }
    
    .uber-eats-code {
        font-size: 0.875rem !important;
        padding: 0.5rem 1rem !important;
    }
    
    .uber-eats-card {
        flex-direction: column;
        text-align: center;
    }
}