/* --- CONFIGURATION LAYOUT CONTACT --- */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin-top: 20px;
}

.form-subtitle {
    font-size: 1.2rem;
    font-weight: 900;
    margin-top: 0;
    margin-bottom: 25px;
    color: var(--tech-brown);
}

/* --- LE FORMULAIRE --- */
.tech-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-family: monospace;
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--tech-brown);
    letter-spacing: 1px;
}

/* Inputs & Textarea */
.tech-form input[type="text"],
.tech-form input[type="email"],
.tech-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--tech-brown);
    background-color: #fafafa;
    font-family: var(--tech-font), sans-serif;
    font-size: 1rem;
    color: #333;
    box-sizing: border-box;
    border-radius: 0; /* Design angulaire brutaliste */
    transition: all 0.2s ease;
}

.tech-form input:focus,
.tech-form textarea:focus {
    outline: none;
    border-color: var(--neon-purple);
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(180, 167, 214, 0.4);
}

/* Bouton submit ajusté */
.submit-btn {
    align-self: flex-start;
    cursor: pointer;
    margin-top: 10px;
}

/* --- ASIDE & INFOS --- */
.info-aside-contact {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-box-contact h3 {
    margin-top: 0;
    font-size: 1.1rem;
    border-bottom: 1px dashed var(--tech-brown);
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.contact-direct-links {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: monospace;
    font-size: 0.85rem;
}

.contact-direct-links li {
    margin-bottom: 10px;
}

.neon-text {
    color: var(--neon-purple);
    text-decoration: none;
    font-weight: bold;
}

.neon-text:hover {
    text-shadow: 0 0 5px var(--neon-purple);
}

.white-text {
    color: #333;
    font-weight: bold;
}

/* Réseaux */
.network-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.network-link {
    display: block;
    padding: 10px;
    border: 1px solid var(--tech-brown);
    text-align: center;
    text-decoration: none;
    color: var(--tech-brown);
    font-weight: 900;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    background: #fff;
}

.network-link:hover {
    background: var(--tech-brown);
    color: white;
    transform: translateX(4px);
}

/* Code Série Déco */
.tech-spec-footer {
    padding: 15px !important;
    background: #fafafa;
}

.serial-code {
    margin: 0;
    font-family: monospace;
    font-size: 0.7rem;
    color: #aaa;
    text-align: center;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-row-half {
        grid-template-columns: 1fr;
    }
}