/* RTL Language Support */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .modern-nav {
    flex-direction: row-reverse;
}

[dir="rtl"] .modern-nav__menu {
    margin-right: 0;
    margin-left: auto;
}

[dir="rtl"] .modern-nav__lang {
    margin-left: 0;
    margin-right: 20px;
}

[dir="rtl"] .modern-nav__lang-menu {
    right: auto;
    left: 0;
}

[dir="rtl"] .modern-nav__lang-menu li a {
    flex-direction: row-reverse;
}

[dir="rtl"] .modern-nav__user {
    flex-direction: row-reverse;
}

[dir="rtl"] .modern-nav__actions {
    flex-direction: row-reverse;
}

/* Arabic Font Support */
[dir="rtl"] body,
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] h5,
[dir="rtl"] h6,
[dir="rtl"] p,
[dir="rtl"] span,
[dir="rtl"] a,
[dir="rtl"] button {
    font-family: 'Tahoma', 'Arial', 'Segoe UI', sans-serif;
    font-weight: normal;
}

/* RTL Form Support */
[dir="rtl"] .form-control,
[dir="rtl"] .form-select,
[dir="rtl"] .btn {
    text-align: right;
}

[dir="rtl"] .input-group .btn {
    border-radius: 0.25rem 0 0 0.25rem;
}

[dir="rtl"] .input-group .form-control {
    border-radius: 0 0.25rem 0.25rem 0;
}

/* RTL Modal Support */
[dir="rtl"] .modal-header {
    flex-direction: row-reverse;
}

[dir="rtl"] .modal-footer {
    justify-content: flex-start;
}

[dir="rtl"] .close {
    margin-left: 0;
    margin-right: auto;
}

/* RTL Navigation Pills/Tabs */
[dir="rtl"] .nav-pills .nav-link,
[dir="rtl"] .nav-tabs .nav-link {
    margin-left: 0.25rem;
    margin-right: 0;
}

[dir="rtl"] .nav-tabs .nav-link {
    border-top-left-radius: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0.25rem;
}

/* RTL Card Support */
[dir="rtl"] .card-header {
    flex-direction: row-reverse;
}

[dir="rtl"] .card-body .d-flex {
    flex-direction: row-reverse;
}

/* RTL Admin Panel Support */
[dir="rtl"] .language-header {
    flex-direction: row-reverse;
}

[dir="rtl"] .btn-group {
    flex-direction: row-reverse;
}

[dir="rtl"] .translation-row {
    flex-direction: row-reverse;
}

[dir="rtl"] .tabs {
    flex-direction: row-reverse;
}

[dir="rtl"] .tab-btn {
    margin-left: 10px;
    margin-right: 0;
}

/* RTL Language Specific Adjustments */
[dir="rtl"] .modern-nav__lang-btn {
    flex-direction: row-reverse;
}

[dir="rtl"] .modern-nav__lang-btn i {
    transform: scaleX(-1);
}

/* Responsive RTL */
@media (max-width: 768px) {
    [dir="rtl"] .modern-nav__mobile-toggle {
        left: 20px;
        right: auto;
    }
    
    [dir="rtl"] .modern-nav__menu {
        text-align: right;
    }
}

/* RTL Text Animation */
[dir="rtl"] .typing-effect::after {
    right: auto;
    left: 0;
}

/* RTL Dropdown Support */
[dir="rtl"] .dropdown-menu {
    right: 0;
    left: auto;
}

[dir="rtl"] .dropdown-toggle::after {
    margin-left: 0;
    margin-right: .255em;
}

/* RTL Alert Support */
[dir="rtl"] .alert {
    padding-left: 4rem;
    padding-right: .75rem;
}

[dir="rtl"] .alert .btn-close {
    right: auto;
    left: 0;
}