@import url('https://cdn.jsdelivr.net/gh/rastikerdar/iransans@v5.1.0/dist/font-face.css');

.contact-us-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 30px;
    background: linear-gradient(135deg, #eef2ff, #f5f9ff);
    font-family: "IRANSansWeb", sans-serif;
}

.contact-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 600px;
}

    .contact-card h2 {
        text-align: center;
        margin-bottom: 10px;
        color: #333;
    }

    .contact-card p {
        text-align: center;
        margin-bottom: 25px;
        color: #555;
    }

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

    .form-row input,
    .form-row textarea {
        flex: 1 1 100%;
        padding: 12px 15px;
        border-radius: 8px;
        border: 1px solid #ccc;
        font-family: "IRANSansWeb", sans-serif;
        font-size: 16px;
    }

        .form-row input:focus,
        .form-row textarea:focus {
            border-color: #4a90e2;
            outline: none;
        }

    .form-row textarea {
        resize: none;
    }

button[type="submit"] {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: #4a90e2;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

    button[type="submit"]:hover {
        background: #3578c6;
    }

@media (min-width: 576px) {
    .form-row input {
        flex: 1 1 calc(50% - 15px);
    }
}
