/* ============================================================
 * EasierLife - Section contact (reproduction maquette)
 * Thème clair : carte gris-bleu pâle, accents cyan (#22d3ee / #00cfff)
 * ============================================================ */

.ezl-contact-section {
    --ezl-bg:           #f4f7fb;
    --ezl-card:         #eef2f7;
    --ezl-white:        #ffffff;
    --ezl-cyan:         #00d2f5;
    --ezl-cyan-dark:    #00b8d9;
    --ezl-cyan-soft:    #e3f8fd;
    --ezl-cyan-border:  #67e3f9;
    --ezl-text:         #1f2937;
    --ezl-text-soft:    #475569;
    --ezl-text-muted:   #94a3b8;
    --ezl-label:        #64748b;
    --ezl-border:       #dde3ec;
    --ezl-radius:       12px;

    background: var(--ezl-bg);
    padding: 60px 20px;
    color: var(--ezl-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    box-sizing: border-box;
}

.ezl-contact-section *,
.ezl-contact-section *::before,
.ezl-contact-section *::after,
.ezl-form *,
.ezl-form *::before,
.ezl-form *::after {
    box-sizing: border-box;
}

.ezl-contact-container {
    max-width: 1180px;
    margin: 0 auto;
}

.ezl-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: start;
}

/* ====== Colonne gauche : infos ====== */
.ezl-contact-info { padding-top: 10px; }

.ezl-badge {
    display: inline-block;
    background: var(--ezl-cyan-soft);
    color: var(--ezl-cyan-dark);
    border: 1px solid var(--ezl-cyan-border);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.ezl-title {
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 18px;
    color: var(--ezl-text);
}

.ezl-description {
    font-size: 16px;
    line-height: 1.65;
    color: var(--ezl-text-soft);
    margin: 0 0 32px;
}

.ezl-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.ezl-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--ezl-cyan-soft);
    color: var(--ezl-cyan-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ezl-info-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ezl-text-muted);
    margin-bottom: 4px;
    font-weight: 600;
}

.ezl-info-value {
    font-size: 15px;
    color: var(--ezl-text);
    line-height: 1.5;
}

.ezl-info-value a {
    color: var(--ezl-cyan-dark);
    text-decoration: none;
    font-weight: 600;
}
.ezl-info-value a:hover { text-decoration: underline; }

/* ====== Carte formulaire ====== */
.ezl-contact-form-col .ezl-form,
.ezl-form {
    background: var(--ezl-card, #eef2f7);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 20px;
    padding: 38px 34px;
    box-shadow: 0 18px 45px -28px rgba(15, 23, 42, 0.25);
}

.ezl-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
}

.ezl-col-half { grid-column: span 1; }
.ezl-col-full { grid-column: 1 / -1; }

.ezl-field label,
.ezl-field .ezl-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ezl-label, #64748b);
    margin-bottom: 8px;
}

.ezl-required { color: #f43f5e; }

.ezl-field input[type="text"],
.ezl-field input[type="email"],
.ezl-field input[type="tel"],
.ezl-field input[type="url"],
.ezl-field input[type="number"],
.ezl-field input[type="date"],
.ezl-field select,
.ezl-field textarea {
    width: 100%;
    background: var(--ezl-white, #fff);
    border: 1px solid var(--ezl-border, #dde3ec);
    border-radius: 12px;
    color: var(--ezl-text, #1f2937);
    font-size: 16px;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
}

.ezl-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

.ezl-field textarea { min-height: 130px; resize: vertical; }

.ezl-field input::placeholder,
.ezl-field textarea::placeholder {
    color: var(--ezl-text-muted, #94a3b8);
}

.ezl-field input:focus,
.ezl-field select:focus,
.ezl-field textarea:focus {
    border-color: var(--ezl-cyan, #00d2f5);
    box-shadow: 0 0 0 3px rgba(0, 210, 245, 0.18);
}

/* ====== Pills (Profil, Modalité, Moyen de paiement) ====== */
.ezl-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ezl-pills input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.ezl-pill {
    flex: 1 1 0;
    min-width: 110px;
    text-align: center;
    background: var(--ezl-white, #fff);
    border: 1px solid var(--ezl-border, #dde3ec);
    border-radius: 12px;
    padding: 13px 18px;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: var(--ezl-text-soft, #475569) !important;
    cursor: pointer;
    transition: all 0.18s ease;
    margin-bottom: 0 !important;
    user-select: none;
}

.ezl-pill:hover {
    border-color: var(--ezl-cyan-border, #67e3f9);
}

.ezl-pills input[type="radio"]:checked + .ezl-pill {
    background: var(--ezl-cyan-soft, #e3f8fd);
    border-color: var(--ezl-cyan, #00d2f5);
    color: var(--ezl-cyan-dark, #00b8d9) !important;
    font-weight: 600 !important;
    box-shadow: 0 0 0 1px var(--ezl-cyan, #00d2f5) inset;
}

.ezl-pills input[type="radio"]:focus-visible + .ezl-pill {
    box-shadow: 0 0 0 3px rgba(0, 210, 245, 0.25);
}

/* ====== Captcha ====== */
.ezl-captcha label {
    text-transform: none;
    letter-spacing: 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--ezl-text-soft, #475569);
}

/* ====== Bouton ====== */
.ezl-submit-wrap { margin-top: 6px; }

.ezl-button {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--ezl-cyan, #00d2f5);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 17px 28px;
    font-size: 17px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 25px -10px rgba(0, 210, 245, 0.55);
}

.ezl-button:hover {
    background: var(--ezl-cyan-dark, #00b8d9);
    transform: translateY(-1px);
}

.ezl-button:active { transform: translateY(0); }

.ezl-button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

/* ====== Note confidentialité ====== */
.ezl-footer-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 12.5px;
    color: var(--ezl-text-muted, #94a3b8);
    text-align: center;
    margin-top: -4px;
}

/* ====== Messages ====== */
.ezl-form-message {
    display: none;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.ezl-form-message.success {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    color: #047857;
}

.ezl-form-message.error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #b91c1c;
}

/* ====== Responsive ====== */
@media (max-width: 920px) {
    .ezl-contact-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 640px) {
    .ezl-contact-section { padding: 40px 14px; }
    .ezl-form { padding: 26px 20px; }
    .ezl-form-grid { grid-template-columns: 1fr; }
    .ezl-col-half { grid-column: 1 / -1; }
    .ezl-pills { flex-direction: column; }
    .ezl-pill { width: 100%; }
}
