/* ============================================
   PREMIUM HOMEPAGE STYLES
   Dark Theme with Glassmorphism
   ============================================ */

/* Premium Theme Overrides for Header and Footer */
.premium-theme .unified-navbar,
.premium-theme nav.unified-navbar,
.premium-theme .navbar.navbar-expand-lg.navbar-dark.bg-dark.unified-navbar {
    background: rgba(10, 14, 39, 0.95) !important;
    background-image: none !important;
    background-color: rgba(10, 14, 39, 0.95) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
    padding: 0.75rem 0 !important;
}

.premium-theme .unified-navbar::before,
.premium-theme .unified-navbar::after {
    display: none !important;
}

/* Ensure all text in navbar is visible */
.premium-theme .unified-navbar,
.premium-theme .unified-navbar *:not(.dropdown-menu *) {
    color: rgba(255, 255, 255, 0.9) !important;
}

.premium-theme .unified-navbar .text-muted,
.premium-theme .unified-navbar .text-secondary {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Override any inline styles */
.premium-theme .unified-navbar[style] {
    background: rgba(10, 14, 39, 0.95) !important;
    background-image: none !important;
    background-color: rgba(10, 14, 39, 0.95) !important;
}

/* Fix navbar brand/logo area */
.premium-theme .unified-navbar .logo-link-unified,
.premium-theme .unified-navbar a.logo-link-unified {
    display: inline-block !important;
    opacity: 1 !important;
}

/* Fix sidebar backdrop for premium theme */
.premium-theme #sidebarBackdropElement {
    background: rgba(0, 0, 0, 0.7) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    backdrop-filter: blur(5px) !important;
}

/* Override any inline styles from header fragment */
.premium-theme .unified-navbar[style*="background"],
.premium-theme .unified-navbar[style*="gradient"] {
    background: rgba(10, 14, 39, 0.95) !important;
    background-image: none !important;
    background-color: rgba(10, 14, 39, 0.95) !important;
}

/* Ensure navbar visibility */
.premium-theme .unified-navbar {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

/* Fix any Bootstrap dark theme conflicts */
.premium-theme .navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.premium-theme .navbar-dark .navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

/* Ensure dropdown toggle visibility */
.premium-theme .unified-navbar .dropdown-toggle::after {
    border-top-color: rgba(255, 255, 255, 0.9) !important;
}

/* Fix any text color issues in navbar */
.premium-theme .unified-navbar span,
.premium-theme .unified-navbar .action-text {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Fix navbar layout */
.premium-theme .unified-navbar .container-fluid {
    background: transparent !important;
}

.premium-theme .unified-navbar .navbar-content {
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
}

.premium-theme .unified-navbar .nav-link-unified,
.premium-theme .unified-navbar a.nav-link-unified,
.premium-theme .unified-navbar button.nav-link-unified,
.premium-theme .unified-navbar .dropdown-toggle {
    color: rgba(255, 255, 255, 0.9) !important;
    background: transparent !important;
    border: none !important;
    transition: all 0.3s ease;
}

.premium-theme .unified-navbar .nav-link-unified:hover,
.premium-theme .unified-navbar a.nav-link-unified:hover,
.premium-theme .unified-navbar button.nav-link-unified:hover,
.premium-theme .unified-navbar .dropdown-toggle:hover,
.premium-theme .unified-navbar .dropdown-toggle.show,
.premium-theme .unified-navbar .dropdown-toggle[aria-expanded="true"] {
    color: var(--accent-color) !important;
    transform: translateY(-2px);
    background: transparent !important;
    border: none !important;
}

.premium-theme .unified-navbar .btn-navbar-action,
.premium-theme .unified-navbar button.btn-navbar-action,
.premium-theme .unified-navbar .navbar-action-item .btn-navbar-action {
    color: rgba(255, 255, 255, 0.9) !important;
    background: transparent !important;
    border: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    transition: all 0.3s ease !important;
}

.premium-theme .unified-navbar .btn-navbar-action:hover,
.premium-theme .unified-navbar button.btn-navbar-action:hover {
    background: transparent !important;
    color: var(--accent-color) !important;
    border: none !important;
    transform: translateY(-2px) !important;
}

.premium-theme .unified-navbar .navbar-action-item .btn-navbar-action.dropdown-toggle {
    display: inline-flex !important;
    align-items: center !important;
}

/* No frosted panel behind user control (main.css mobile rule uses glass + !important) */
@media (max-width: 991px) {
    .premium-theme .unified-navbar .btn-navbar-action,
    .premium-theme .unified-navbar button.btn-navbar-action {
        background: transparent !important;
        border: none !important;
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
    }

    .premium-theme .unified-navbar .btn-navbar-action:hover,
    .premium-theme .unified-navbar button.btn-navbar-action:hover {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
}

.premium-theme .unified-navbar .btn-lang-switcher,
.premium-theme .unified-navbar button.btn-lang-switcher,
.premium-theme .unified-navbar a.btn-lang-switcher,
.premium-theme .unified-navbar form button.btn-lang-switcher {
    color: rgba(255, 255, 255, 0.9) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
}

.premium-theme .unified-navbar .btn-lang-switcher:hover,
.premium-theme .unified-navbar button.btn-lang-switcher:hover,
.premium-theme .unified-navbar a.btn-lang-switcher:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-color: rgba(33, 150, 243, 0.3) !important;
}

.premium-theme .unified-navbar .dropdown-menu,
.premium-theme .unified-navbar ul.dropdown-menu,
.premium-theme .unified-navbar .user-dropdown-menu,
.premium-theme .unified-navbar .materials-dropdown {
    background: rgba(15, 20, 34, 0.95) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
}

.premium-theme .unified-navbar .dropdown-item,
.premium-theme .unified-navbar a.dropdown-item,
.premium-theme .unified-navbar .dropdown-menu .dropdown-item {
    color: rgba(255, 255, 255, 0.9) !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
}

.premium-theme .unified-navbar .dropdown-item:hover,
.premium-theme .unified-navbar a.dropdown-item:hover {
    background: rgba(33, 150, 243, 0.2) !important;
    color: #ffffff !important;
}

.premium-theme .unified-navbar .dropdown-item .text-muted,
.premium-theme .unified-navbar .dropdown-item .text-secondary {
    color: rgba(255, 255, 255, 0.6) !important;
}

.premium-theme .unified-navbar .dropdown-item .fw-bold {
    color: rgba(255, 255, 255, 0.95) !important;
}

.premium-theme .unified-navbar .logo-image-unified,
.premium-theme .unified-navbar img.logo-image-unified {
    filter: brightness(1.2) !important;
    opacity: 1 !important;
}

.premium-theme .unified-navbar .navbar-toggler,
.premium-theme .unified-navbar button.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.premium-theme .unified-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.premium-theme .unified-navbar .action-text,
.premium-theme .unified-navbar .action-icon {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* User initial: theme accent ring, transparent fill (navbar trigger only) */
.premium-theme .unified-navbar .user-avatar-initial {
    display: inline-grid !important;
    place-items: center;
    justify-content: center;
    align-content: center;
    width: 2.35rem;
    height: 2.35rem;
    padding: 0;
    border-radius: 50%;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    background: transparent !important;
    border: 2px solid var(--accent-color) !important;
    color: #ffffff !important;
    box-shadow: none !important;
    margin-inline-end: 0.65rem;
    box-sizing: border-box;
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    transform: translate(0.04em, 0.06em);
}

/* Unauthenticated mobile: ring matches signed-in avatar; FA icon centered in ring */
.premium-theme .unified-navbar .user-avatar-initial.user-avatar-guest {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 0 !important;
    transform: none !important;
}

.premium-theme .unified-navbar .user-avatar-initial.user-avatar-guest i {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    display: block !important;
    width: 1em !important;
    height: 1em !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 1rem !important;
    line-height: 1 !important;
    color: #ffffff !important;
    text-align: center !important;
    transform: translate(-50%, -50%) !important;
}

.premium-theme .unified-navbar .btn-navbar-action.dropdown-toggle .action-text {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.premium-theme .unified-navbar .btn-navbar-action.dropdown-toggle:hover .user-avatar-initial,
.premium-theme .unified-navbar .btn-navbar-action.dropdown-toggle.show .user-avatar-initial,
.premium-theme .unified-navbar .btn-navbar-action.dropdown-toggle:focus-visible .user-avatar-initial {
    background: transparent !important;
    border-color: var(--accent-primary) !important;
    box-shadow: 0 0 0 1px rgba(33, 150, 243, 0.45) !important;
    color: #ffffff !important;
}

.premium-theme .unified-navbar .navbar-content {
    background: transparent !important;
}

.premium-theme .unified-navbar .navbar-left,
.premium-theme .unified-navbar .navbar-center,
.premium-theme .unified-navbar .navbar-right {
    background: transparent !important;
}

/* Premium Footer Styles */
.premium-theme .modern-footer {
    background: rgba(10, 14, 39, 0.95) !important;
    -webkit-backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0;
}

.premium-theme .modern-footer::before {
    background: linear-gradient(90deg, transparent, rgba(33, 150, 243, 0.3), transparent);
}

.premium-theme .modern-footer .footer-title {
    color: #ffffff !important;
    font-weight: 600;
}

.premium-theme .modern-footer .footer-description,
.premium-theme .modern-footer .footer-location {
    color: rgba(255, 255, 255, 0.7) !important;
}

.premium-theme .modern-footer .footer-links a {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: all 0.3s ease;
    text-decoration: none;
}

.premium-theme .modern-footer .footer-links a:hover {
    color: var(--accent-color) !important;
    padding-left: 5px;
}

[dir="rtl"] .premium-theme .modern-footer .footer-links a:hover {
    padding-left: 0;
    padding-right: 5px;
}

.premium-theme .modern-footer .footer-contact-link {
    color: var(--accent-color) !important;
    transition: all 0.3s ease;
}

.premium-theme .modern-footer .footer-contact-link:hover {
    color: var(--secondary-color) !important;
}

.premium-theme .modern-footer .footer-copyright {
    color: rgba(255, 255, 255, 0.6) !important;
}

.premium-theme .modern-footer .footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-theme .modern-footer .footer-logo {
    filter: brightness(1.2);
}

.premium-theme .modern-footer .footer-taqato3-below-logo,
.premium-theme .modern-footer .footer-taqato3-below-logo:hover {
    background: transparent;
    border-radius: 0;
}

.premium-theme .modern-footer .footer-taqato3-kicker {
    color: rgba(255, 255, 255, 0.82);
}

/* Materials Dropdown for Premium Theme */
.premium-theme .materials-dropdown {
    background: rgba(15, 20, 34, 0.95) !important;
    -webkit-backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-theme .materials-dropdown .dropdown-item {
    color: rgba(255, 255, 255, 0.9) !important;
    background: transparent !important;
}

.premium-theme .materials-dropdown .dropdown-item:hover {
    background: rgba(33, 150, 243, 0.2) !important;
    color: #ffffff !important;
}

.premium-theme .materials-dropdown li:nth-child(even) .dropdown-item {
    background: transparent !important;
}

.premium-theme .materials-dropdown li:nth-child(odd) .dropdown-item {
    background: transparent !important;
}

.premium-theme .materials-dropdown li:not(:last-child) .dropdown-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* User Dropdown Header for Premium Theme */
.premium-theme .user-dropdown-header .user-header-item {
    background-color: rgba(33, 150, 243, 0.1) !important;
    border-bottom: none !important;
}

.premium-theme .user-dropdown-header .user-header-item:hover {
    background-color: rgba(33, 150, 243, 0.15) !important;
}

/* Fix chevron arrow positioning in user dropdown header */
.premium-theme .user-dropdown-header .user-header-item .d-flex {
    align-items: center !important;
}

.premium-theme .user-dropdown-header .user-header-item .ms-2,
.premium-theme .user-dropdown-header .user-header-item [class*="ms-"] {
    margin-left: 0.5rem !important;
    margin-right: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    width: auto !important;
    min-width: auto !important;
}

[dir="rtl"] .premium-theme .user-dropdown-header .user-header-item .ms-2,
[dir="rtl"] .premium-theme .user-dropdown-header .user-header-item [class*="ms-"] {
    margin-left: 0 !important;
    margin-right: 0.5rem !important;
}

.premium-theme .user-dropdown-header .user-header-item .ms-2 i,
.premium-theme .user-dropdown-header .user-header-item .fa-chevron-left,
.premium-theme .user-dropdown-header .user-header-item .fa-chevron-right {
    font-size: 0.875rem !important;
    color: var(--text-secondary) !important;
    display: inline-block !important;
    vertical-align: middle !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.premium-theme .user-dropdown-header .user-header-item:hover .ms-2 i,
.premium-theme .user-dropdown-header .user-header-item:hover .fa-chevron-left,
.premium-theme .user-dropdown-header .user-header-item:hover .fa-chevron-right {
    color: var(--text-primary) !important;
}

/* Profile row: id-card only — no grey tile behind icon */
.premium-theme .user-dropdown-header .user-header-item .me-3 {
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.premium-theme .user-dropdown-header .user-header-item .me-3 i {
    color: var(--text-secondary) !important;
}

.premium-theme .user-dropdown-header .user-header-item:hover .me-3 {
    background-color: transparent !important;
    border: none !important;
}

.premium-theme .user-dropdown-header .user-header-item:hover .me-3 i {
    color: var(--text-primary) !important;
}

.premium-theme .user-dropdown-menu .dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.premium-theme .user-dropdown-menu .dropdown-item:last-child button,
.premium-theme .user-dropdown-menu .dropdown-item button.btn-link {
    background: transparent !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.premium-theme .user-dropdown-menu .dropdown-item:last-child button:hover,
.premium-theme .user-dropdown-menu .dropdown-item button.btn-link:hover {
    background: rgba(33, 150, 243, 0.2) !important;
    color: var(--accent-primary) !important;
}

.premium-theme .user-dropdown-menu .dropdown-item:last-child button .text-dark,
.premium-theme .user-dropdown-menu .dropdown-item button.btn-link .text-dark {
    color: rgba(255, 255, 255, 0.9) !important;
}

.premium-theme .user-dropdown-menu .dropdown-item:last-child button:hover .text-dark,
.premium-theme .user-dropdown-menu .dropdown-item button.btn-link:hover .text-dark {
    color: var(--accent-primary) !important;
}

/* Mobile Sidebar for Premium Theme */
@media (max-width: 991px) {
    .premium-theme .unified-navbar .navbar-center .collapse,
    .premium-theme .unified-navbar .navbar-center .navbar-collapse {
        background-color: rgba(15, 20, 34, 0.98) !important;
    -webkit-backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    [dir="rtl"] .premium-theme .unified-navbar .navbar-center .collapse,
    [dir="rtl"] .premium-theme .unified-navbar .navbar-center .navbar-collapse {
        border-right: none;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .premium-theme .unified-navbar .nav-link-unified {
        color: rgba(255, 255, 255, 0.9) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .premium-theme .unified-navbar .nav-link-unified:hover {
        background: rgba(33, 150, 243, 0.1);
        color: var(--accent-color) !important;
    }
}

:root {
    /* App Theme Colors */
    --primary-color: #1a237e;
    --secondary-color: #0d47a1;
    --accent-color: #2196f3;
    
    /* Dark Theme Colors */
    --bg-primary: #0a0e27;
    --bg-secondary: #0f1422;
    --bg-tertiary: #1a1f35;
    --bg-glass: rgba(255, 255, 255, 0.05);
    --bg-glass-hover: rgba(255, 255, 255, 0.08);
    
    /* Accent Colors - Using App Theme */
    --accent-primary: var(--accent-color);
    --accent-secondary: var(--secondary-color);
    --accent-tertiary: var(--primary-color);
    --accent-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-tertiary: rgba(255, 255, 255, 0.6);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(33, 150, 243, 0.3);
    
    /* Spacing */
    --spacing-section: 120px;
    --spacing-container: 80px;
    
    /* Typography */
    --font-primary: 'The Year of Handicrafts', 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'The Year of Handicrafts', 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================
   BASE STYLES
   ============================================ */

.premium-body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.premium-main {
    position: relative;
    z-index: 1;
}

.premium-alert {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    border-radius: 12px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(40, 167, 69, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   GLASSMORPHISM UTILITIES
   ============================================ */

.glass-card {
    background: var(--bg-glass);
    -webkit-backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.glass-card:hover {
    background: var(--bg-glass-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: rgba(255, 255, 255, 0.2);
}

.premium-card {
    background: var(--bg-glass);
    -webkit-backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.premium-card:hover {
    background: var(--bg-glass-hover);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: rgba(33, 150, 243, 0.3);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-primary), transparent);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-secondary), transparent);
    bottom: -150px;
    right: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-tertiary), transparent);
    top: 50%;
    right: 10%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 2rem 0;
    text-align: center;
}

.hero-content.text-center {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-glass);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge i {
    color: var(--accent-primary);
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.title-line-1 {
    display: block;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.hero-feature-item i {
    color: var(--accent-primary);
    font-size: 1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-hero-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(33, 150, 243, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(33, 150, 243, 0.6);
    color: white;
}

.btn-hero-secondary {
    background: var(--bg-glass);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.btn-hero-secondary:hover {
    background: var(--bg-glass-hover);
    transform: translateY(-2px);
    color: var(--text-primary);
}

/* 3D Animation Container */
.hero-3d-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

#hero3d-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-visual {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-content {
    width: 100%;
    padding: 2rem;
}

.hero-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.hero-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: var(--bg-glass);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.hero-icon-item:hover {
    background: var(--bg-glass-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: rgba(33, 150, 243, 0.3);
}

.hero-icon-item .icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.hero-icon-item:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.hero-icon-item .icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.hero-icon-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.hero-icon-item:hover span {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .hero-icon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .hero-icon-item {
        padding: 1.5rem 1rem;
    }
    
    .hero-icon-item .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .hero-icon-item .icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .hero-icon-item span {
        font-size: 0.875rem;
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-tertiary);
    font-size: 0.875rem;
    z-index: 2;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    padding: var(--spacing-container) 0;
    background: var(--bg-secondary);
    position: relative;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    transform: translateX(-4px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    padding: var(--spacing-section) 0;
    background: var(--bg-primary);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-align: center;
}

.title-accent {
    width: 60px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.title-text {
    flex: 1;
    max-width: 800px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    position: relative;
}

.feature-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    margin-left: 0;
    margin-right: auto;
}

/* LTR (English) - Center icons using flexbox */
body[dir="ltr"] .feature-icon-wrapper {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 20px;
    opacity: 0.2;
    transform: rotate(45deg);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-bg {
    opacity: 0.3;
    transform: rotate(45deg) scale(1.1);
}

.feature-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--accent-primary);
    z-index: 2;
}

/* LTR (English) - Center icons using flexbox */
body[dir="ltr"] .feature-icon {
    position: relative;
    top: auto;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Individual icon positioning - RTL only */
body[dir="rtl"] .feature-icon-materials {
    left: 22px;
}

body[dir="rtl"] .feature-icon-gpa {
    left: 20px;
}

body[dir="rtl"] .feature-icon-plans {
    left: 15px;
}

body[dir="rtl"] .feature-icon-calendar {
    left: 18px;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.feature-link:hover {
    gap: 1rem;
    color: var(--accent-secondary);
}

.feature-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-primary), transparent);
    opacity: 0;
    filter: blur(40px);
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover .feature-glow {
    opacity: 0.2;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works-section {
    padding: var(--spacing-section) 0;
    background: var(--bg-secondary);
    position: relative;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.1;
    z-index: 0;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 2rem auto 1.5rem;
    background: var(--accent-gradient);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 30px rgba(33, 150, 243, 0.4);
}

.step-icon i {
    display: inline-block;
    line-height: 1;
}

/* Slight visual centering tweak for RTL */
body[dir="rtl"] .step-icon i {
    transform: translateX(-3px);
}

/* Individual step icon positioning - RTL only */
body[dir="rtl"] .step-icon-compass {
    transform: translateX(-4px);
}

body[dir="rtl"] .step-icon-rocket {
    transform: translateX(-5px);
}

/* LTR (English) - Center icons properly */
body[dir="ltr"] .step-icon-compass {
    transform: none;
}

body[dir="ltr"] .step-icon-rocket {
    transform: none;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* Home hero search button: keep icon visually centered in RTL */
body[dir="rtl"] .hero-search-btn i,
body[dir="rtl"] .hero-search-btn .fas,
body[dir="rtl"] .hero-search-btn .far,
body[dir="rtl"] .hero-search-btn .fa {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   WHY PLATFORM SECTION
   ============================================ */

.why-platform-section {
    padding: var(--spacing-section) 0;
    background: var(--bg-primary);
    position: relative;
}

.why-platform-section .row {
    display: flex;
    align-items: stretch;
}

.why-platform-section .col-lg-6 {
    display: flex;
}

.why-platform-visual {
    display: flex;
    width: 100%;
    height: 100%;
}

.developer-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.developer-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 8px 30px rgba(33, 150, 243, 0.4);
}

.developer-avatar i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
    transform: translateX(-3px);
}

/* LTR (English) - Center icons properly */
body[dir="ltr"] .developer-avatar i {
    transform: none;
}

.motivation-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
    transform: translateX(-2px);
}

/* LTR (English) - Center icons properly */
body[dir="ltr"] .motivation-icon {
    transform: none;
}

.developer-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.developer-description {
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.8;
    flex-grow: 1;
}

.developer-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.dev-stat {
    text-align: center;
}

.dev-stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

.dev-stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.why-platform-content {
    padding: 2rem 0;
}

.why-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.why-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: var(--accent-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.why-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
}

/* Individual why icon positioning */
.why-icon-bullseye {
    transform: translateX(-4px);
}

.why-icon-magic {
    transform: translateX(-2px);
}

.why-icon-chart {
    transform: translateX(-4px);
}

.why-icon-heart {
    transform: translateX(-4px);
}

.why-content h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.why-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   PREVIEW SECTION
   ============================================ */

.preview-section {
    padding: var(--spacing-section) 0;
    background: var(--bg-secondary);
    position: relative;
}

.preview-card {
    padding: 0;
    overflow: hidden;
}

.preview-header {
    padding: 1.5rem 2rem;
    background: var(--bg-tertiary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.preview-dots {
    display: flex;
    gap: 0.5rem;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.preview-dots span:nth-child(1) {
    background: #ff5f57;
}

.preview-dots span:nth-child(2) {
    background: #ffbd2e;
}

.preview-dots span:nth-child(3) {
    background: #28ca42;
}

.preview-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.preview-content {
    padding: 2rem;
    background: var(--bg-glass);
}

.preview-mockup {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gpa-mockup {
    align-items: center;
    justify-content: center;
}

.mockup-chart {
    width: 100%;
    height: 200px;
}

.planner-mockup {
    align-items: flex-start;
}

.mockup-calendar {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.calendar-day {
    flex: 1;
    aspect-ratio: 1;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.calendar-day.active {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
    transform: scale(1.1);
}

.mockup-tasks {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: 12px;
    color: var(--text-secondary);
}

.task-item i {
    color: var(--accent-primary);
    font-size: 0.75rem;
}

.mockup-stats {
    display: flex;
    gap: 2rem;
    width: 100%;
    justify-content: center;
}

.mockup-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: var(--spacing-section) 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.cta-gradient-orb {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-primary), transparent);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-glass);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.cta-badge i {
    color: var(--accent-primary);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-cta-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(33, 150, 243, 0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(33, 150, 243, 0.6);
    color: white;
}

.btn-cta-secondary {
    background: var(--bg-glass);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.btn-cta-secondary:hover {
    background: var(--bg-glass-hover);
    transform: translateY(-2px);
    color: var(--text-primary);
}

/* ============================================
   DUA SECTION
   ============================================ */

.dua-section {
    padding: var(--spacing-container) 0;
    background: var(--bg-secondary);
}

.dua-card {
    text-align: center;
}

.dua-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--accent-gradient);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(33, 150, 243, 0.4);
}

.dua-container {
    min-height: 200px;
    margin: 2rem 0;
    position: relative;
}

.dua-item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.dua-item.active {
    display: block;
    opacity: 1;
}

.dua-arabic {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.dua-date {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
}

.dua-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.dua-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-glass);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dua-nav-btn:hover {
    background: var(--accent-gradient);
    transform: scale(1.1);
    border-color: transparent;
}

.dua-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.dua-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dua-dot.active {
    background: var(--accent-primary);
    width: 16px;
    height: 16px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    :root {
        --spacing-section: 80px;
        --spacing-container: 60px;
    }
    
    .hero-visual {
        height: 400px;
        margin-top: 3rem;
    }
    
    .section-title {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .title-accent {
        width: 40px;
    }
    
    .why-item {
        flex-direction: column;
        text-align: center;
    }
    
    .why-icon {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: row;
        gap: 0.75rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: auto;
        max-width: 45%;
        min-width: 140px;
        justify-content: center;
        padding: 0.65rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .step-number {
        font-size: 4rem;
    }
    
    .developer-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.65rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .dua-arabic {
        font-size: 1.5rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: auto;
        max-width: 280px;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}