/* --- DESIGN PAGE CONTACT ARTIFACT --- */

@keyframes slideInUpContact {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.contact-page-outer-wrapper {
    background-color: #ffffff; /* Fond extérieur sombre */
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    min-height: 80vh;
}

.contact-card-container {
    display: flex;
    width: 100%;
    max-width: 1100px;
    background-color: #fff;
    border-radius: 40px; /* Coins très arrondis */
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    animation: slideInUpContact 0.8s ease-out forwards;
}

/* --- GAUCHE : FORMULAIRE (BLANC) --- */
.contact-form-section {
    flex: 1.2;
    padding: 70px;
    background: #ffffff;
}

.contact-main-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #000;
}

.highlight-gold {
    color: #b8860b; /* Votre couleur OR */
}

.spartan-input-group {
    margin-bottom: 30px;
}

.spartan-input-group input, 
.spartan-input-group textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #000; /* Style "ligne" */
    padding: 10px 0;
    font-size: 16px;
    background: transparent;
    outline: none;
    color: #333;
    transition: all 0.3s ease;
}

.spartan-input-group input:focus, 
.spartan-input-group textarea:focus {
    border-color: #b8860b;
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.05);
    padding-left: 10px; /* Petit effet de texte qui se décale */
}

.newsletter-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 30px 0;
    font-size: 14px;
    color: #555;
}

.contact-submit-btn {
    background-color: #b8860b;
    color: #fff;
    border: none;
    padding: 14px 45px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

.contact-submit-btn:hover {
    background-color: #8c6606;
    transform: scale(1.05);
}

/* --- DROITE : INFOS (NOIR) --- */
.contact-info-section {
    flex: 1;
    background-color: #222222; /* Fond noir interne */
    color: #ffffff;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
}

.contact-intro-text {
    font-size: 14px;
    line-height: 1.6;
    color: #bbb;
    margin-bottom: 40px;
}

/* Map Iframe Style */
.spartan-map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

.map-artifact-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffffff;
    color: #000000;
    padding: 10px 15px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 8px;
    line-height: 1.4;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.label-brand {
    color: #ff4500; /* Rouge Artifact sur Map */
    display: block;
}

/* Icônes de Contact */
.contact-details-list {
    margin-bottom: 40px;
}

.contact-detail-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 15px;
}

.contact-detail-row i {
    font-size: 18px;
    width: 25px; /* Largeur fixe pour alignement vertical parfait */
    text-align: center;
    color: #ffffff;
}

/* Icônes Réseaux Sociaux */
.contact-social-icons {
    display: flex;
    gap: 25px;
    margin-top: auto;
}

.contact-social-icons a {
    color: #ffffff;
    font-size: 20px;
    transition: color 0.3s;
}

.contact-social-icons a:hover {
    color: #b8860b;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-card-container {
        flex-direction: column;
        border-radius: 25px;
    }
    .contact-form-section, .contact-info-section {
        padding: 50px 30px;
    }
}