/* Fix Contact Form layout for RTL mode */

/* Make subject input full width like textarea in RTL */
[dir="rtl"] .contact-pg-contact-section .contact-form form > div {
    width: calc(100% - 30px);
    float: none;
}

/* Align submit button to the right (which is left in RTL) */
[dir="rtl"] .contact-pg-contact-section .contact-form form .submit-area {
    text-align: right;
}

/* Also fix for LTR to ensure button is on the left */
[dir="ltr"] .contact-pg-contact-section .contact-form form .submit-area {
    text-align: left;
}

/* Ensure button has proper padding */
[dir="rtl"] .contact-form-area .theme-btn {
    padding-right: 27px;
    padding-left: 27px;
}
