/**
 * ★ RTL + SOLID BRAND COLORS ★
 * Right to Left + Blue (#0c2b9b) + Orange (#ff8400)
 */

/* ============================================
   RTL - RIGHT TO LEFT FOR ENTIRE PLATFORM
   ============================================ */
*,
*::before,
*::after {
    direction: rtl !important;
}

html,
body,
.container,
.row {
    direction: rtl !important;
    text-align: right !important;
}

/* Fix for specific elements that need LTR */
input[type="email"],
input[type="tel"],
input[type="number"],
code,
pre {
    direction: ltr !important;
    text-align: left !important;
}

/* ============================================
   NAVBAR - SOLID COLORS
   ============================================ */
.bundles-btn {
    background: #ff8400 !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    padding: 0.7rem 1.3rem !important;
    border-radius: 0.7rem !important;
    box-shadow: 0 3px 10px rgba(255, 132, 0, 0.2) !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    margin: 0 !important;
}

.bundles-btn:hover {
    background: #e67700 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 14px rgba(255, 132, 0, 0.3) !important;
    color: #ffffff !important;
}

.mobile-login-btn .btn {
    background: transparent !important;
    border: 2px solid #ff8400 !important;
    color: #ff8400 !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    padding: 0.65rem 1.3rem !important;
    border-radius: 0.7rem !important;
    transition: all 0.3s ease !important;
}

.mobile-login-btn .btn:hover {
    background: #ff8400 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

.mobile-signup-btn .btn {
    background: #0c2b9b !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    padding: 0.7rem 1.3rem !important;
    border-radius: 0.7rem !important;
    box-shadow: 0 3px 10px rgba(12, 43, 155, 0.2) !important;
    transition: all 0.3s ease !important;
}

.mobile-signup-btn .btn:hover {
    background: #0a2380 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 14px rgba(12, 43, 155, 0.3) !important;
    color: #ffffff !important;
}

/* ============================================
   STATS SECTION - SOLID BLUE
   ============================================ */
.stats-section {
    background: #0c2b9b !important;
    color: #ffffff !important;
    padding: 4rem 0 !important;
    margin: 3rem 0 !important;
}

.stat-number {
    font-size: 3.2rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 0.65rem !important;
}

.stat-label {
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.95) !important;
}

/* ============================================
   COURSE CARDS - CONSISTENT SIZING
   ============================================ */
.course-card {
    background: #ffffff !important;
    border-radius: 1rem !important;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    overflow: hidden !important;
    height: 100% !important;
    border: 1px solid #e0e0e0 !important;
}

.course-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 8px 24px rgba(12, 43, 155, 0.12) !important;
    border-color: #0c2b9b !important;
}

/* ============================================
   FEATURES - SOLID COLORS
   ============================================ */
.feature-card-pro {
    background: #ffffff !important;
    border-radius: 1rem !important;
    padding: 2rem 1.5rem !important;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.3s ease !important;
    height: 100% !important;
    border: 2px solid #e0e0e0 !important;
}

.feature-card-pro:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 8px 24px rgba(12, 43, 155, 0.12) !important;
    border-color: #0c2b9b !important;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: #0c2b9b !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(12, 43, 155, 0.2);
    transition: all 0.3s ease;
}

.feature-card-pro:hover .feature-icon {
    background: #ff8400 !important;
    transform: scale(1.08);
    box-shadow: 0 5px 14px rgba(255, 132, 0, 0.3);
}

.feature-icon svg {
    width: 35px;
    height: 35px;
    fill: #ffffff;
}

.feature-title {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #0c2b9b !important;
    margin-bottom: 0.75rem !important;
}

.feature-description {
    font-size: 1rem !important;
    color: #616161 !important;
    line-height: 1.6 !important;
}

/* ============================================
   CTA SECTION - SOLID BLUE
   ============================================ */
.cta-section {
    background: #0c2b9b !important;
    color: #ffffff !important;
    padding: 4.5rem 0 !important;
}

.cta-title {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 1rem !important;
}

.cta-subtitle {
    font-size: 1.25rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 2rem !important;
}

.btn-primary {
    background: #ff8400 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 0.85rem 1.75rem !important;
    border-radius: 0.7rem !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    box-shadow: 0 3px 10px rgba(255, 132, 0, 0.25) !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover {
    background: #e67700 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 14px rgba(255, 132, 0, 0.35) !important;
}

.btn-outline-secondary {
    background: transparent !important;
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
    padding: 0.85rem 1.75rem !important;
    border-radius: 0.7rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.btn-outline-secondary:hover {
    background: #ffffff !important;
    color: #0c2b9b !important;
}

/* ============================================
   SECTION TITLES - SOLID COLOR
   ============================================ */
.section-title-pro h3,
.marhala-title h3 {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #0c2b9b !important;
    margin-bottom: 3rem !important;
    text-align: center !important;
    position: relative;
    padding-bottom: 1rem;
}

.section-title-pro h3::after,
.marhala-title h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ff8400;
    border-radius: 2px;
}