/* --- CONFIGURATION DES COULEURS & VARIABLES --- */
:root {
    --deep-blue: #060b13;          
    --surface-bg: rgba(255, 255, 255, 0.03); 
    --neon-blue: #2176BC;          
    --neon-purple: #7B3E96;        
    --neon-cyan: #00d4ff;          /* Pour les liens ultra-visibles */
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: 'Inter', sans-serif; 
    background-color: var(--deep-blue);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(33, 118, 188, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(123, 62, 150, 0.05) 0%, transparent 40%);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }

/* --- HEADER "CYBER GLASS" --- */
header { 
    background: rgba(6, 11, 19, 0.9); 
    backdrop-filter: blur(20px); 
    padding: 10px 0; 
    position: sticky; 
    top: 0; 
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
nav { display: flex; justify-content: space-between; align-items: center; }

.logo img {
    height: 55px;
    background: #fff;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

nav ul { display: flex; list-style: none; gap: 35px; align-items: center; }
nav a { 
    text-decoration: none; 
    color: var(--text-main); 
    font-size: 14px; 
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition); 
}
nav a:hover { color: var(--neon-blue); text-shadow: 0 0 10px var(--neon-blue); }

.btn-nav { 
    background: linear-gradient(45deg, var(--neon-purple), #9b59b6);
    padding: 12px 25px; 
    border-radius: 8px; 
    color: white !important;
    box-shadow: 0 4px 15px rgba(123, 62, 150, 0.3);
}

/* --- HERO --- */
.hero { padding: 120px 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero h1 { font-size: 56px; line-height: 1.1; margin-bottom: 25px; font-weight: 900; }
.hero h1 span { 
    background: linear-gradient(to right, #4facfe 0%, #a29bfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(79, 172, 254, 0.3));
}
.hero p { font-size: 19px; color: var(--text-dim); margin-bottom: 40px; }

/* Boutons Hero */
.hero-btns { display: flex; gap: 20px; align-items: center; }
.btn-primary { 
    background: var(--neon-blue);
    color: white; 
    padding: 18px 35px; 
    border-radius: 8px; 
    text-decoration: none; 
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(33, 118, 188, 0.3);
    transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-5px); box-shadow: 0 0 30px var(--neon-blue); }

.btn-secondary {
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    background: transparent;
    color: var(--neon-purple);
    border: 2px solid var(--neon-purple);
    transition: var(--transition);
}
.btn-secondary:hover { 
    background: rgba(123, 62, 150, 0.1); 
    color: #fff; 
    box-shadow: 0 0 20px rgba(123, 62, 150, 0.4);
    transform: translateY(-5px);
}

.hero-image img { 
    width: 100%; 
    border-radius: 24px; 
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(33, 118, 188, 0.2);
}

/* --- SECTIONS --- */
.section-title { text-align: center; font-size: 38px; margin-bottom: 60px; font-weight: 800; text-transform: uppercase; }
.section-title span { color: var(--neon-blue); }
.section-subtitle { text-align: center; color: var(--text-dim); margin-top: -40px; margin-bottom: 50px; }

/* --- REASSURANCE & BOUTIQUE CARDS --- */
.reassurance-grid, .product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.reassurance-item, .product-card, .contact-box { 
    background: var(--surface-bg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: var(--transition);
}
.product-card { padding: 25px; text-align: left; }
.reassurance-item:hover, .product-card:hover { 
    border-color: var(--neon-blue);
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
}

/* --- BOUTIQUE SPECIFICS --- */
.product-img-container {
    background: #0f172a;
    height: 160px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 50px;
    margin-bottom: 20px;
}
.category-tag { color: var(--neon-blue); font-size: 11px; font-weight: bold; text-transform: uppercase; }
.product-info h4 { margin: 10px 0; font-size: 20px; }
.product-info p { font-size: 14px; color: var(--text-dim); margin-bottom: 20px; }
.product-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 15px; }
.price { font-size: 22px; font-weight: 900; }
.btn-buy-now { background: var(--neon-blue); color: white; border: none; padding: 10px 20px; border-radius: 6px; font-weight: bold; cursor: pointer; }

/* --- CONTACT & LIENS LUMINEUX --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 80px; }
.contact-box a { 
    display: inline-block;
    margin-top: 20px;
    color: var(--neon-cyan); /* Bleu Cyan ultra visible */
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
    transition: var(--transition);
}
.contact-box a:hover { 
    color: #fff; 
    text-shadow: 0 0 15px var(--neon-cyan), 0 0 30px var(--neon-cyan);
    transform: scale(1.05);
}
.contact-box.highlight { border-color: var(--neon-purple); }
.contact-box.highlight a { color: #a29bfe; text-shadow: 0 0 10px rgba(162, 155, 254, 0.4); }

/* --- EFFET LIGHT POUR LE CONTACT GÉNÉRAL (CYAN) --- */
.contact-box a {
    display: inline-block;
    margin-top: 15px;
    color: #00d4ff; 
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    /* L'effet de lueur que tu as déjà */
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8), 0 0 20px rgba(0, 212, 255, 0.4);
    transition: var(--transition);
}

/* --- EFFET LIGHT POUR LES DEMANDES (VIOLET) --- */
.contact-box.highlight a {
    color: #bf5af2; /* Un violet néon plus vif */
    /* On applique ici la lueur violette */
    text-shadow: 0 0 10px rgba(191, 90, 242, 0.8), 0 0 20px rgba(191, 90, 242, 0.4);
}

/* Effets au survol pour les deux */
.contact-box a:hover, .contact-box.highlight a:hover {
    color: #ffffff;
    text-shadow: 0 0 20px #fff, 0 0 30px currentColor;
    transform: translateY(-2px);
}

/* --- FOOTER --- */
footer { padding: 60px; text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.05); color: var(--text-dim); font-size: 14px; }

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 38px; }
    .hero-btns { justify-content: center; }
    nav ul { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
}

/* --- FORCE LE STYLE PURPLE SUR L'ADMIN --- */
.admin-dashboard {
    background-color: #08050a !important; /* Noir profond violet */
    min-height: 100vh;
    padding: 80px 0;
}

.admin-dashboard .section-title span {
    color: #7B3E96 !important; /* Violet ELYZIUM */
    text-shadow: 0 0 15px rgba(123, 62, 150, 0.6) !important;
}

.admin-dashboard .admin-card {
    background: rgba(123, 62, 150, 0.05) !important;
    border: 1px solid rgba(123, 62, 150, 0.3) !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5) !important;
}

.admin-dashboard .btn-primary {
    background: linear-gradient(45deg, #7B3E96, #9b59b6) !important;
    box-shadow: 0 0 20px rgba(123, 62, 150, 0.5) !important;
}

.admin-dashboard input, 
.admin-dashboard textarea, 
.admin-dashboard select {
    border: 1px solid rgba(123, 62, 150, 0.4) !important;
    background: rgba(0,0,0,0.4) !important;
}
/* --- FORMATIONS --- */
.training-card {
    border: 1px solid rgba(255,255,255,0.08);
    padding: 24px;
    border-radius: 18px;
    transition: 0.3s;
}
.training-card:hover {
    transform: translateY(-5px);
}
