/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f7fa;
}

/* ================= VARIABLES ================= */
:root {
    --main-color: #1F4E79;
    --cta-color: #ff7a00;
}

/* ================= FIX GLOBAL INPUT (🔥 IMPORTANT) ================= */
input,
textarea,
select {
    font-size: 16px; /* ✅ empêche zoom mobile */
}

/* ================= INTRO ================= */
.support-intro {
    display: flex;
    justify-content: center;
    padding: 40px 15px;
}

.support-box {
    background: #f3f4f6;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    max-width: 420px;
}

.support-box h1 {
    font-size: 22px;
    margin-bottom: 10px;
}

.support-box p {
    font-size: 14px;
    color: #6b7280;
}

/* ================= CONTACT ================= */
.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

.support-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.support-card:hover {
    transform: translateY(-5px);
}

/* ================= BOUTONS ================= */
.btn-support {
    display: inline-block;
    margin-top: 10px;
    background: var(--cta-color);
    color: white;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.btn-support:hover {
    background: #e56700;
}

.btn-support.secondary {
    background: #e5e7eb;
    color: #1a202c;
}

.btn-support.secondary:hover {
    background: #d1d5db;
}

/* ================= SECTION PROPOSITION ================= */
.submit-section {
    display: flex;
    justify-content: center;
    padding: 40px 15px;
}

.submit-box {
    background: white;
    max-width: 700px;
    width: 100%;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* TITRE */
.submit-box h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

/* TEXTE */
.submit-box p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

/* ================= TYPES ================= */
.submit-types {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.type-btn {
    padding: 8px 14px;
    border-radius: 20px;
    border: none;
    background: #e5e7eb;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s;
}

.type-btn.active {
    background: var(--cta-color);
    color: white;
}

/* ================= INPUT ================= */
.submit-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.submit-form input {
    width: 100%;
    padding: 16px 18px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 16px; /* ✅ corrigé */
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.submit-form input:focus {
    outline: none;
    border-color: var(--cta-color);
    box-shadow: 0 0 0 2px rgba(255, 122, 0, 0.2);
}

/* ================= BOUTON ENVOYER ================= */
.btn-submit {
    margin-top: 10px;
    background: var(--cta-color);
    color: white;
    padding: 12px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #e56700;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 480px) {
    .support-options {
        grid-template-columns: 1fr;
    }
}