/* =====================================================================
   بخش تماس با ما — این فایل در App.razor فراخوانی می‌شد ولی وجود نداشت
   (فقدان آن باعث خطای build در @Assets می‌شد)
   ===================================================================== */

.contact-section { position: relative; }

.contact-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    padding: 26px;
    transition: box-shadow .25s ease, transform .25s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, .08);
}

.contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }

.contact-item-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #eef2ff;
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.contact-item-title { font-size: 13px; font-weight: 700; color: #0f172a; margin-bottom: 2px; }
.contact-item-value { font-size: 13px; color: #64748b; line-height: 1.9; }

.contact-input {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 11px 14px;
    font-size: 13.5px;
    background: #f8fafc;
    outline: none;
    transition: border-color .18s, box-shadow .18s, background .18s;
}

.contact-input:focus {
    border-color: #4f46e5;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, .12);
}

.contact-submit {
    width: 100%;
    border: 0;
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    cursor: pointer;
    transition: transform .18s, box-shadow .18s;
}

.contact-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(79, 70, 229, .3); }
.contact-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }

.contact-success {
    background: #dcfce7;
    color: #166534;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 13px;
}
