/* =====================================================================
   Onex Shop — contact.css
   ===================================================================== */

.onex-contact-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2.5rem;
    padding-block: 2.5rem 4rem;
    align-items: start;
}

/* ---------------------------------------------------------------------
   Formulaire
   --------------------------------------------------------------------- */
.onex-contact-form-wrapper {
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.onex-contact-form__submit { width: 100%; margin-top: 0.6rem; }

.onex-contact-success {
    text-align: center;
    padding-block: 3rem;
}

.onex-contact-success i { font-size: 2.6rem; color: var(--turquoise); margin-bottom: 1.1rem; }
.onex-contact-success h2 { margin-bottom: 0.6rem; }
.onex-contact-success p { color: var(--ink-soft); text-transform: none; }

/* ---------------------------------------------------------------------
   Informations de contact
   --------------------------------------------------------------------- */
.onex-contact-info {
    background: var(--ink);
    color: var(--paper);
    border-radius: var(--radius-md);
    padding: 1.8rem;
}

.onex-contact-info h3 { color: var(--paper); margin-bottom: 1.3rem; font-size: 1.1rem; }

.onex-contact-info__list {
    list-style: none;
    margin: 0 0 1.6rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.onex-contact-info__list li { display: flex; align-items: flex-start; gap: 0.9rem; }

.onex-contact-info__list i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 0.95rem;
}

.onex-contact-info__list strong { display: block; font-size: 0.92rem; }
.onex-contact-info__list span { font-size: 0.78rem; color: rgba(255, 255, 255, 0.6); text-transform: none; }

.onex-contact-map {
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    margin-bottom: 1.4rem;
}

.onex-contact-map img { width: 100%; height: 100%; object-fit: cover; }

.onex-contact-socials { display: flex; gap: 0.7rem; }

.onex-contact-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.onex-contact-socials a:hover { background: var(--turquoise); border-color: var(--turquoise); }

/* ---------------------------------------------------------------------
   Responsive
   --------------------------------------------------------------------- */
@media (max-width: 992px) {
    .onex-contact-layout { grid-template-columns: 1fr; }
}