.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}
/* Style du formulaire */
.form-container {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #eef2f6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--primary); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}
.form-group input.error, .form-group select.error, .form-group textarea.error {
    border-color: #e53e3e;
    background-color: #fff5f5;
}
.btn-submit {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s;
    font-size: 1rem;
}
.btn-submit:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-submit:disabled { background: #ccc; cursor: not-allowed; }

/* Bandeaux de notification */
.form-alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 0.95rem;
    display: none;
}
.form-alert.success {
    background-color: #f0fff4;
    color: #276749;
    border: 1px solid #c6f6d5;
    display: block;
}
.form-alert.error {
    background-color: #fff5f5;
    color: #9b2c2c;
    border: 1px solid #fed7d7;
    display: block;
}

/* Carte & Infos */
.map-wrapper {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
    border: 1px solid #eee;
    position: relative;
    z-index: 1;
}
.info-card {
    background: var(--bg-surface);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}
.info-card h4 { color: var(--primary); margin-bottom: 10px; border-bottom: 2px solid #fff; padding-bottom: 5px; }

.links-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.captcha-box {
    background: #f0f4f8;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #dce4ec;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.standard-banner {
    display: flex;
    align-items: center;
    background-color: #dbefe6;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
}
.standard-banner .banner-icon {
    background-color: var(--primary);
    color: white;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.standard-banner .banner-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}
.standard-banner .banner-text {
    padding: 12px 20px;
    color: #1a365d;
    font-size: 1rem;
}
.standard-banner .banner-text a {
    color: #1a365d;
    font-weight: 700;
    text-decoration: none;
}
.standard-banner .banner-text a:hover {
    text-decoration: underline;
}
.drop-zone {
    border: 1.5px dashed #cbd5e1;
    border-radius: 10px;
    padding: 22px 18px;
    text-align: center;
    cursor: pointer;
    background: #f8fafc;
    transition: background 0.15s, border-color 0.15s;
}
.drop-zone:hover, .drop-zone.drag-over {
    background: #eff6ff;
    border-color: #93c5fd;
}
.drop-zone input[type="file"] { display: none; }
.drop-zone-label {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    font-size: 14px; color: #64748b; cursor: pointer; font-weight: 400;
}
.drop-zone-hint { font-size: 11px; color: #94a3b8; }
#fileList { margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.file-item {
    display: flex; align-items: center; gap: 10px;
    background: #f1f5f9; border: 1px solid #e2e8f0;
    border-radius: 8px; padding: 8px 12px;
}
.file-name { flex: 1; font-size: 13px; color: #1e293b; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-size { font-size: 11px; color: #94a3b8; flex-shrink: 0; }
.file-remove {
    background: none; border: none; cursor: pointer;
    color: #94a3b8; font-size: 18px; line-height: 1; padding: 2px 4px;
    border-radius: 4px;
}
.file-remove:hover { color: #e53e3e; background: #fff5f5; }
