:root {
    --bg-dark: #0a0a0a;
    --accent: #00d4ff;
    --text-dim: #888;
}

/* Barre de navigation fixe en bas */
.mobile-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    height: 70px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(15px); /* Effet flou de verre */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
    z-index: 100009999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-item {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
}

.icon-wrapper {
    margin-bottom: 4px;
    transition: transform 0.3s ease;
}

.nav-item svg {
    width: 22px;
    height: 22px;
}

.nav-item span {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* État Actif / Hover */
.nav-item:hover, .nav-item.active {
    color: var(--accent);
}

.nav-item.active .icon-wrapper {
    transform: translateY(-5px); /* Petit saut élégant */
}

.nav-item.active svg {
    filter: drop-shadow(0 0 8px var(--accent));
}




/* Style spécifique pour l'icône de compte */
.account-icon {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item.active .account-icon {
    border-color: var(--accent);
    background: rgba(0, 212, 255, 0.1);
}

/* Optimisation pour les petits écrans */
@media screen and (max-width: 768px) {
    .nav-item span {
        display: ; /*  display: none; Cache le texte sur les très petits téléphones pour garder l'élégance */
        
    }
    .nav-item svg {
        width: 26px;
        height: 26px;
    }
}






/* Reset de base pour coller en haut */
body {
    background: #000;
    margin: 0;
    padding-top: 110px; /* Espace pour le header fixe */
    padding-bottom: 200px; /* Pour éviter que le contenu de la page soit caché par le menu */
}




.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
}

/* SECTION 1 : Top Bar grise foncée/noire douce */
.top-bar {
    background: #0f0f0f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
    display: flex;
    justify-content: center;
}

.social-icons {
    display: flex;
    gap: 12px; /* Espace généreux entre les réseaux */
    align-items: center;
}

.social-icons a {
    text-decoration: none;
    line-height: 0;
}

.social-icons svg {
    width: 15px;
    height: 15px;
    color: #666; /* Couleur sobre par défaut */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Effet de couleur spécifique au survol */
.social-icons a:hover svg {
    color: #00d4ff;
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.5));
}

.nav-bar {
    background: #000000;
    padding: 20px 0;
}

/* ... (conserve le reste du CSS précédent) ... */

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.brand-name {
    color: #fff;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brand-name .accent {
    color: #00d4ff;
}

.nav-links {
    display: flex;
    gap: 10px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
    color: #00d4ff;
}



.orderYourCard{
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-top: 9px;
    text-transform: uppercase;
    font-size: 12px;
}.contacts-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #000;
}

.section-title {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    border-left: 3px solid #00d4ff;
    padding-left: 15px;
}

.contact-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #00d4ff;
    background: #0f0f0f;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.05);
}

.contact-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-name {
    color: #fff;
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.contact-job {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

.accent {
    color: #00d4ff;
    font-weight: 600;
}

.contact-actions {
    display: flex;
    gap: 12px;
}

.icon-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #111;
    color: #fff;
    transition: all 0.2s ease;
    border: 1px solid #222;
}

.icon-btn:hover {
    background: #00d4ff;
    color: #000;
    transform: scale(1.1);
}

.icon-btn svg {
    width: 18px;
    height: 18px;
}

.contact-footer {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid #1a1a1a;
    font-size: 11px;
    color: #444;
}

.empty-state {
    color: #555;
    text-align: center;
    margin-top: 100px;
    font-style: italic;
}


.search-wrapper {
    position: relative;
    margin-bottom: 25px;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    color: #555;
    pointer-events: none;
}

#contactSearch {
    width: 100%; /* Prend toute la largeur disponible */
    box-sizing: border-box; /* EMPECHE LE DEBORDEMENT : inclut padding et border dans les 100% */
    
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 10px;
    padding: 12px 15px 12px 45px; /* Le padding gauche laisse de la place pour l'icône */
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    
    /* Sécurité supplémentaire pour mobile */
    max-width: 100%; 
    display: block;
}

#contactSearch:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.1);
}


.btn-install {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    background: #00a884; /* Ta couleur accent */
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-install:active {
    transform: translateX(-50%) scale(0.95);
}
