/* ============================================ */
/* GLASSMORPHISM CARDS - VERSION CORRIGÉE */
/* ============================================ */

/* Glass Card de base */
.glass-card {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(10, 14, 39, 0.7);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.1);
}

/* Service Card spécifique */
.service-card {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(10, 14, 39, 0.7);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15);
    transform: translateY(-4px);
}

/* Service Icon */
.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.3);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

/* Glass Input */
.glass-input {
    background: rgba(10, 14, 39, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.glass-input:focus {
    background: rgba(10, 14, 39, 0.6);
    border-color: rgba(0, 212, 255, 0.5);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Glass Nav */
.glass-nav {
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Effet glow pour les cards importantes */
.glass-card-glow {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

/* Cards clients avec logos */
.client-card {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.client-card:hover {
    background: rgba(10, 14, 39, 0.75);
    border-color: rgba(0, 212, 255, 0.3);
    transform: scale(1.02);
}

/* Logo container */
.logo-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.client-card:hover .logo-container {
    background: rgba(255, 255, 255, 0.1);
}
