>
.contact-page {
    background: linear-gradient(to bottom, #fefaf6 0%, #fdf3e7 100%);
    min-height: 100vh;
    padding: 0 1rem;
    margin: auto;
    font-family: "B Nazanin", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;

}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: fadeSlide 1s ease;
    width: 100%;
    margin-top: 2%;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.contact-form,
.contact-info {
    flex: 1 1 45%;
}

.contact-form h2 {
    font-family: "B Titr", sans-serif;
    font-size: 1.8rem;
    color: #d32f2f;
    margin-bottom: 1rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid #ccc;
    font-size: 1rem;
    resize: vertical;
    font-family: "B Nazanin", sans-serif;
    transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #d32f2f;
    outline: none;
}

.contact-form button {
    padding: 1rem;
    background: #d32f2f;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-family: "B Nazanin", sans-serif;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #b91c1c;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    background: #fef4ec;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: inset 0 0 10px rgba(211, 47, 47, 0.05);
    animation: fadeSlide 1.3s ease;
}

.contact-info h3 {
    font-family: "B Titr";
    font-size: 1.5rem;
    color: #d32f2f;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.contact-info i {
    color: #d32f2f;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        padding: 2rem 1.5rem;
    }

    .contact-form,
    .contact-info {
        flex: 1 1 100%;
    }
}