:root {
    --accent: #00B4FF;
    --dark-bg: #030a16;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
}

body.services-page {
    background-color: var(--dark-bg);
    color: white;
    font-family: 'Inter', sans-serif;
}

/* HERO PREMIUM */
.hero-premium {
    height: 60vh;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072') center/cover;
    display: flex; align-items: center; justify-content: center;
    position: relative; text-align: center;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(3,10,22,0.7), var(--dark-bg));
}

.text-gradient {
    background: linear-gradient(90deg, #00B4FF, #0047FF);
    -webkit-background-clip: text; /* Pour Chrome, Safari, Edge */
    background-clip: text;         /* Propriété standard (la ligne manquante) */
    -webkit-text-fill-color: transparent;
}

/* SECTION HEADERS */
.section-wrapper { padding: 80px 0; }
.section-header { position: relative; margin-bottom: 50px; }
.p-num { font-size: 5rem; font-weight: 900; opacity: 0.05; position: absolute; top: -40px; left: -20px; }
.section-header h2 { font-family: 'Montserrat'; font-size: 2.5rem; position: relative; z-index: 1; }
.line-accent { width: 80px; height: 4px; background: var(--accent); margin-top: 10px; }

/* GRID & CARDS GLASSMORPHISM */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card-glass {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative; overflow: hidden;
}

.card-glass:hover {
    transform: translateY(-15px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 180, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 25px;
}

.card-glass h3 { font-family: 'Montserrat'; font-size: 1.5rem; margin-bottom: 15px; }
.card-glass p { font-size: 0.95rem; opacity: 0.7; margin-bottom: 20px; }

.card-list { list-style: none; padding: 0; margin-bottom: 30px; }
.card-list li { font-size: 0.85rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.card-list i { color: var(--accent); font-size: 0.8rem; }

/* BOUTON GLASS */
.btn-glass {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}
.btn-glass:hover {
    background: var(--accent);
    color: white;
    box-shadow: 0 0 20px rgba(0, 180, 255, 0.4);
}

/* MODAL MODERNISÉ */
.modal-window {
    background: #0d1626;
    border: 1px solid var(--accent);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}
.diag-form input, .diag-form textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: white;
    padding: 15px;
    margin-bottom: 15px;
    width: 100%;
    border-radius: 10px;
}

.btn-submit {
    background: var(--accent);
    color: white;
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
}

/* Éclat lumineux derrière les cartes surlignées */
.card-glass.highlight::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(0,180,255,0.1) 0%, transparent 70%);
    z-index: -1;
}
/* --- APPROCHE TECHNIQUE --- */
.tech-approach {
    padding: 100px 0;
    background: #0a0a0a;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.approach-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s;
}

.approach-card:hover {
    background: rgba(0, 180, 255, 0.05);
    border-color: #00b4ff;
    transform: translateY(-10px);
}

.step-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0056b3, #00b4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 900;
    font-family: 'Montserrat';
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 180, 255, 0.3);
}

.approach-card h4 {
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Montserrat';
}

.approach-card p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- CTA SECTION --- */
.service-cta {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('votre-image-fond.jpg');
    background-size: cover;
    text-align: center;
}

.service-cta h2 {
    font-family: 'Montserrat';
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.service-cta p {
    color: #00b4ff;
    font-weight: 600;
    margin-bottom: 40px;
}

.text-center { text-align: center; }
/* --- STYLE DU BURGER POUR LA PAGE SERVICE --- */
.menu-toggle {
    display: none; /* Masqué sur ordi */
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10000;
}

.menu-toggle .bar {
    width: 28px;
    height: 3px;
    background: var(--accent);
    border-radius: 10px;
    transition: 0.3s;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex; /* Apparaît sur téléphone */
    }

    .nav-list {
        position: fixed;
        right: -100%;
        top: 0;
        width: 100%;
        height: 100vh;
        background: #030a16; /* Même fond que ta page service */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease;
        z-index: 9999;
    }

    .nav-list.active {
        right: 0;
    }
    
    /* Animation du X quand activé */
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}
/* Supprime le soulignement de tous les boutons de type lien */
.btn-glass, .btn-main, .btn-nav-amb {
    text-decoration: none !important;
}