/* RTL Support for Rowad Al-Ibtikar Theme */

body {
    direction: rtl;
    text-align: right;
}

/* Header RTL adjustments */
.header-container {
    flex-direction: row-reverse;
}

.main-navigation ul {
    flex-direction: row-reverse;
}

/* Hero buttons RTL */
.hero-buttons {
    flex-direction: row-reverse;
}

/* Services grid RTL */
.services-grid {
    direction: rtl;
}

/* Projects grid RTL */
.projects-grid {
    direction: rtl;
}

/* Footer RTL */
.footer-content {
    direction: rtl;
}

/* Form RTL */
.form-grid {
    direction: rtl;
}

input,
textarea,
select {
    direction: rtl;
    text-align: right;
}

/* WhatsApp float button - left side for RTL */
.whatsapp-float {
    left: 20px;
    right: auto;
}

/* Navigation arrows for RTL */
.nav-previous::before {
    content: '→';
    margin-left: 0.5rem;
}

.nav-next::after {
    content: '←';
    margin-right: 0.5rem;
}