/**
 * footer.css
 * Footer CTA strip, footer bottom bar, email contact modal
 * Extracted from app/Views/layout/footer.php (RFC-UI-V3 layout externalization).
 */

/* ============================================================
 * Footer CTA & bottom bar
 * ============================================================ */
.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 20px;
    padding: 24px 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.footer-cta-title {
    font-weight: 700;
    color: #1e293b;
    font-size: 1rem;
    margin: 0 0 4px 0;
}
.footer-cta-sub {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}
.footer-cta-btn {
    white-space: nowrap;
    flex-shrink: 0;
}
.footer-divider {
    height: 1px;
    background: #f1f5f9;
    margin-bottom: 24px;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-brand {
    font-weight: 800;
    color: #334155;
    font-size: 1rem;
}
.footer-version {
    font-size: 0.7rem;
    color: #3b82f6;
    background: #eff6ff;
    padding: 2px 6px;
    border-radius: 6px;
    font-weight: 700;
    vertical-align: middle;
    margin-left: 4px;
}
@media (max-width: 600px) {
    .footer-cta { flex-direction: column; align-items: flex-start; }
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

/* ============================================================
 * Email contact modal (dialog)
 * ============================================================ */
.email-dialog {
    border: none;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 400px;
    width: 90%;
    background: #fff;
}
.email-dialog::backdrop { background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(4px); }

.input-pastel {
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    background: #f8fafc;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}
.input-pastel:focus { outline: none; border-color: #3b82f6; background: #fff; }

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #475569;
    font-size: 0.9rem;
}
