/* =========================================
   CONTACT.CSS - STYLE "PRIVATE CONCIERGE"
   ========================================= */

/* Fond Général */
.contact-body {
    background-color: #050505;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow-x: hidden;
}

#neuro-network {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0; pointer-events: none;
}

.navbar { z-index: 100; }

/* Conteneur */
.contact-container {
    width: 100%;
    max-width: 500px; /* Plus fin, plus élégant */
    z-index: 10;
    margin-top: 80px;
    padding: 20px;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* LA CARTE MINIMALISTE LUXE */
.minimal-glass-card {
    background: rgba(12, 12, 12, 0.85); /* Fond très sombre et uni */
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.05); /* Bordure quasi invisible */
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.9);
}

/* En-tête */
.card-header { text-align: center; margin-bottom: 30px; }
.card-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; color: #d4af37; letter-spacing: 3px;
    margin-bottom: 5px;
}
.card-header p { color: #666; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

/* FORMULAIRE - EMPILÉ */
.input-stack { margin-bottom: 25px; }

.input-stack label {
    display: block;
    font-size: 0.65rem; color: #d4af37; font-weight: 700;
    letter-spacing: 1px; margin-bottom: 10px; text-transform: uppercase;
}

/* Les Champs (Input / Select / Textarea) */
.minimal-glass-card input,
.minimal-glass-card select,
.minimal-glass-card textarea {
    width: 100%;
    background: transparent; /* Fond transparent pour la légèreté */
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Juste une ligne en bas */
    border-radius: 0; /* Pas d'arrondi sur les inputs, style "Ligne" */
    padding: 10px 0;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: 0.3s;
    outline: none;
}

/* Effet Focus (La ligne devient Or) */
.minimal-glass-card input:focus,
.minimal-glass-card select:focus,
.minimal-glass-card textarea:focus {
    border-bottom-color: #d4af37;
    background: rgba(212, 175, 55, 0.05); /* Légère teinte or */
    padding-left: 10px; /* Petit décalage élégant */
}

/* Selecteur (Dropdown) */
.minimal-glass-card select {
    color: #aaa; /* Gris par défaut */
}
.minimal-glass-card select option {
    background: #000; color: #fff; padding: 10px;
}
.minimal-glass-card select:focus { color: #fff; }

/* Textarea */
.minimal-glass-card textarea { resize: none; min-height: 80px; }

/* BOUTON MINIMALISTE */
.btn-minimal {
    width: 100%;
    padding: 18px;
    background: #fff; /* Blanc pour le contraste fort (très mode) */
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: 800; font-size: 0.8rem; letter-spacing: 1px;
    cursor: pointer; transition: 0.3s;
    margin-top: 10px;
}

.btn-minimal:hover {
    background: #d4af37; /* Devient Or au survol */
    color: #000;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

/* États Bouton */
.btn-minimal.loading { background: #333; color: #fff; cursor: wait; }
.btn-minimal.success { background: #00ff41; color: #000; }

/* Feedback */
#feedback { margin-top: 20px; text-align: center; font-size: 0.8rem; min-height: 20px; }
.success-msg { color: #00ff41; }
.error-msg { color: #ff4444; }

/* Mobile */
@media (max-width: 600px) {
    .minimal-glass-card { padding: 30px 20px; }
}

/* =========================================
   FOOTER "PILULE CENTRALE" (ANTI-CONFLIT)
   ========================================= */

.legal-pill {
    position: fixed;
    bottom: 30px;
    left: 50%; /* On place le début au milieu */
    transform: translateX(-50%); /* On le recule de 50% pour le centrer parfaitement */
    
    display: flex;
    align-items: center;
    gap: 15px;
    
    background: rgba(0, 0, 0, 0.8); /* Fond sombre */
    backdrop-filter: blur(10px); /* Effet verre */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px; /* Forme de pilule très arrondie */
    padding: 10px 25px;
    
    z-index: 99; /* Au dessus du reste */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    white-space: nowrap; /* Empêche le texte de passer à la ligne */
}

/* Les Liens */
.legal-pill a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    color: #999;
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 600;
    transition: 0.3s;
}

.legal-pill a:hover {
    color: #d4af37;
}

/* Les points de séparation */
.legal-pill .dot {
    color: #444;
    font-size: 0.6rem;
}

/* Le petit copyright à la fin */
.legal-pill .copyright-pill {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    color: #555;
    margin-left: 10px;
    padding-left: 15px;
    border-left: 1px solid #333; /* Séparation fine */
}

/* MOBILE */
@media (max-width: 600px) {
    .legal-pill {
        width: 80%; /* Plus large sur mobile */
        justify-content: center;
        bottom: 20px;
        padding: 10px 15px;
        gap: 10px;
    }
    .copyright-pill { display: none; } /* On cache le copyright sur petit écran */
}