/**
 * RTL (Right-to-Left) Stylesheet
 * Additional styles for RTL languages (Hebrew, Arabic)
 */

/* Bootstrap RTL overrides */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .navbar-nav {
    flex-direction: row-reverse;
}

[dir="rtl"] .ms-auto {
    margin-left: 0 !important;
    margin-right: auto !important;
}

[dir="rtl"] .me-auto {
    margin-right: 0 !important;
    margin-left: auto !important;
}

[dir="rtl"] .text-start {
    text-align: right !important;
}

[dir="rtl"] .text-end {
    text-align: left !important;
}

[dir="rtl"] .float-start {
    float: right !important;
}

[dir="rtl"] .float-end {
    float: left !important;
}

/* Card adjustments for RTL */
[dir="rtl"] .card-body {
    text-align: right;
}

[dir="rtl"] .list-group-item {
    text-align: right;
}

/* Table adjustments */
[dir="rtl"] table {
    direction: rtl;
}

/* Navigation menu RTL */
[dir="rtl"] .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

/* Footer RTL */
[dir="rtl"] footer .text-md-end {
    text-align: left !important;
}

[dir="rtl"] footer .row {
    direction: rtl;
}

/* Single Product Page RTL */
.single-product-page {
    direction: rtl;
    text-align: right;
}

.single-product-page .product-breadcrumb {
    flex-direction: row;
}

.single-product-page .meta-badge svg {
    margin-left: 0.5rem;
    margin-right: 0;
}

.single-product-page .learn-item {
    border-right: 3px solid transparent;
    border-left: none;
}

.single-product-page .learn-item:hover {
    border-right-color: #C10230;
}

.single-product-page .accordion-header {
    text-align: right;
}

.single-product-page .lesson-item {
    flex-direction: row;
}

.single-product-page .highlight-box {
    border-right: 4px solid #C10230;
    border-left: none;
}

.single-product-page .audience-list li svg {
    order: -1;
}

.single-product-page .calendar-nav.prev svg {
    transform: rotate(180deg);
}

.single-product-page .calendar-nav.next svg {
    transform: rotate(180deg);
}

.single-product-page .detail-row {
    flex-direction: row;
}

.single-product-page .testimonial-header {
    flex-direction: row;
}

/* ============================================
   RTL Mobile Adjustments
   ============================================ */

/* Mobile Navigation RTL */
@media (max-width: 991.98px) {
    [dir="rtl"] .navbar-nav {
        flex-direction: column;
    }
    
    [dir="rtl"] .site-header .navbar-nav .nav-link {
        text-align: right;
        padding-right: 0.5rem;
    }
    
    [dir="rtl"] .mobile-menu-toggle {
        order: -1;
        margin: 0!important;
    }
    
    [dir="rtl"] .navbar-brand {
        order: 0;
    }
}

/* Mobile Hero RTL */
@media (max-width: 991.98px) {
    [dir="rtl"] .hero-section .col-lg-6 {
        text-align: center;
    }
    
    [dir="rtl"] .hero-section h1,
    [dir="rtl"] .hero-section p {
        text-align: center;
    }
}

/* Mobile Footer RTL */
@media (max-width: 767.98px) {
    [dir="rtl"] .footer-modern .col-lg-3,
    [dir="rtl"] .footer-modern .col-lg-2 {
        text-align: center;
    }
    
    [dir="rtl"] .footer-nav ul {
        text-align: center;
    }
    
    [dir="rtl"] .footer-social-links {
        justify-content: center;
    }
}

/* Mobile Cards RTL */
@media (max-width: 991.98px) {
    [dir="rtl"] .course-card-horizontal .course-content-wrapper {
        text-align: right;
    }
    
    [dir="rtl"] .hero-info-card {
        text-align: right;
    }
    
    [dir="rtl"] .sidebar-card {
        text-align: right;
    }
}

/* Mobile Single Product RTL */
@media (max-width: 575.98px) {
    [dir="rtl"] .hero-meta-badges {
        justify-content: center;
    }
    
    [dir="rtl"] .quick-info-list li {
        text-align: right;
    }
    
    [dir="rtl"] .booking-summary-list li {
        text-align: right;
    }
}
