

.contact-wrapper {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    margin-bottom: 50px;
}

/* --- Card Design --- */
.contact-card, .info-sidebar {
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
}

.section-title {
    color: var(--color-site-2);
    font-weight: 700;
    margin-bottom: 10px;
}

/* --- Form Elements --- */
.custom-label {
    font-weight: 600;
    font-size: 16px;
    color: #444;
    margin-bottom: 8px;
    display: block;
}

.custom-label span {
    color: #e74c3c;
}

.contact-card .form-control {
   border: 1px solid #d9ccc0;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;

}

.contact-card .form-control:focus{
    border-color: var(--color-site-1);
    box-shadow: 0 0 0 3px rgba(238, 123, 42, 0.1);
    outline: none;
}

/* --- Button --- */
.btn-submit {
    background-color: var(--color-site-1);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: transform 0.2s, background-color 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background-color: var(--color-site-2);
    color: white;
    transform: translateY(-2px);
}

/* --- Sidebar Info --- */
.info-sidebar {
    background-color: var(--color-site-2);
    color: white;
    padding: 0;
    overflow: hidden;
}

.info-content {
    padding: 30px;
}





/* Container des infos de contact */
.info-content {
    padding: 30px;
    background-color: var(--color-site-2); /* Fond bleu foncé */
    color: #ffffff;
}

.info-content h3 {
    color: var(--color-site-1); /* Titre en orange */
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;

}

/* Liste de contact */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    margin-bottom: 20px;
}

/* Style des liens */
.contact-item {
    display: flex;
    align-items: flex-start; /* Aligne l'icône avec la première ligne de texte */
    gap: 15px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;

}


.contact-item i,
.contact-item svg {
    color: var(--color-site-1);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 3px;
}


.contact-item:hover {
    color: var(--color-site-1);
    transform: translateX(5px);

}



.hidden { display: none; }

@media (max-width: 768px) {
    .contact-wrapper {
        margin-top: 20px;
    }
    .contact-card {
        padding: 20px;
    }
}


