/* ===== STYLES PRINCIPAUX POUR LMP - PREMIUM EDITION ===== */

/* Variables CSS pour les couleurs et les polices */
:root {
    /* Palette de couleurs Premium */
    --primary-color: #2563eb;
    --primary-light: #60a5fa;
    --primary-dark: #1d4ed8;
    
    --secondary-color: #64748b;
    --accent-color: #f59e0b;
    
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    
    /* Typographie */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Ombres Premium */
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 15px rgba(37, 99, 235, 0.3);
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hide GTranslate Floating Widget globally */
.gtranslate_wrapper {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    position: absolute !important;
    z-index: -999 !important;
}


/* =========================================
   PREMIUM UTILITIES
   ========================================= */

/* Glassmorphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.glass-dark {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mesh Gradient Background */
.mesh-gradient-bg {
    background-color: #ffffff;
    background-image: 
        radial-gradient(at 0% 0%, hsla(253,16%,7%,1) 0, transparent 50%), 
        radial-gradient(at 50% 0%, hsla(225,39%,30%,1) 0, transparent 50%), 
        radial-gradient(at 100% 0%, hsla(339,49%,30%,1) 0, transparent 50%);
}

.mesh-gradient-light {
    background-color: #f8fafc;
    background-image: 
        radial-gradient(at 80% 0%, hsla(189,100%,96%,1) 0px, transparent 50%),
        radial-gradient(at 0% 50%, hsla(341,100%,96%,1) 0px, transparent 50%),
        radial-gradient(at 80% 50%, hsla(341,100%,96%,1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, hsla(269,100%,96%,1) 0px, transparent 50%);
}

/* Text Gradients */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: var(--shadow-glow);
}

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* =========================================
   COMPONENTS
   ========================================= */

/* Navbar Premium */
.navbar-premium {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
}

/* Hero Section Refined */
.hero-content {
    position: relative;
    z-index: 10;
}

.hero-visual {
    position: relative;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    filter: blur(20px);
}

/* Premium Service Cards - Dark Mode */
/* Premium Service Cards - Light Mode */
.service-card-premium {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #60a5fa;
}

.service-card-premium:hover::after {
    opacity: 1;
}

/* Service card text colors for light mode */
.service-card-premium h3 {
    color: #1f2937;
}

.service-card-premium p {
    color: #64748b;
}

.service-card-premium span {
    color: #1f2937;
}

/* Dark Mode - Service Cards */
.dark .service-card-premium {
    background: #1e293b;
    border-color: #334155;
}

.dark .service-card-premium:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    border-color: #60a5fa;
}

.dark .service-card-premium h3 {
    color: #f1f5f9;
}

.dark .service-card-premium p {
    color: #94a3b8;
}

.dark .service-card-premium span {
    color: #e2e8f0;
}

/* Buttons Premium */
.btn-premium {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-premium:hover::before {
    width: 100%;
}

/* Floating Elements Animation */
@keyframes float-y {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float-y 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float-y 8s ease-in-out infinite;
    animation-delay: 2s;
}

/* =========================================
   LEGACY COMPATIBILITY (Conservé pour sécurité)
   ========================================= */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}



