* {
    font-family: "Vazirmatn", serif;
}

.contact-page {
    direction: rtl;
    font-family: 'Vazirmatn', sans-serif;
    padding: 3rem 1rem;
    max-width: 1000px;
    margin: auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-header h1 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: #222;
}

.contact-header p {
    color: #555;
    font-size: 1.1rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info {
    background: #f7f8fa;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: #333;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: #444;
}

.contact-info a {
    color: #0078ff;
    text-decoration: none;
}

.contact-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: #333;
}

.form-group {
    margin-bottom: 1.5rem;

}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
    background: #fdfdfd;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0078ff;
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    background: #0078ff;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #005fcc;
}

.form-status {
    text-align: center;
    margin-top: 1rem;
    font-weight: bold;
}




@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}