/**
 * FribHosting - Premium Stylesheet
 * تصميم عالمي احترافي
 */

/* ========================================
   المتغيرات والإعدادات العامة
   ======================================== */
:root {
    /* الألوان الأساسية - نظام ألوان جريء */
    --primary: #7c3aed;
    --primary-dark: #6d28d9;
    --primary-light: #a78bfa;
    --primary-glow: rgba(124, 58, 237, 0.4);
    
    --secondary: #06b6d4;
    --secondary-dark: #0891b2;
    
    --accent: #f59e0b;
    --accent-pink: #ec4899;
    --accent-green: #10b981;
    
    /* ألوان الحالة */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    
    /* ألوان محايدة */
    --dark: #0f0f23;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --light: #fafafa;
    --white: #ffffff;
    
    /* التدرجات الحديثة */
    --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --gradient-dark: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    --gradient-hero: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d1b4e 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, hsla(280,100%,74%,0.15) 0px, transparent 50%),
                     radial-gradient(at 80% 0%, hsla(189,100%,56%,0.1) 0px, transparent 50%),
                     radial-gradient(at 0% 50%, hsla(355,100%,93%,0.1) 0px, transparent 50%),
                     radial-gradient(at 80% 50%, hsla(340,100%,76%,0.1) 0px, transparent 50%),
                     radial-gradient(at 0% 100%, hsla(22,100%,77%,0.1) 0px, transparent 50%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    
    /* الظلال المحسنة */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow: 0 0 60px var(--primary-glow);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    
    /* الخطوط */
    --font-primary: 'Cairo', 'Segoe UI', sans-serif;
    --font-heading: 'Almarai', 'Cairo', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* الأبعاد */
    --radius-sm: 0.5rem;
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;
    
    /* الانتقالات - سريعة وخفيفة */
    --transition: all 0.15s ease-out;
    --transition-fast: all 0.1s ease-out;
    --transition-slow: all 0.25s ease-out;
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ========================================
   إعادة تعيين الأنماط
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--light);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

/* ========================================
   العناصر الأساسية
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   الأزرار
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: var(--transition);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--primary-glow);
    color: var(--white);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white);
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: var(--white);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    border-radius: var(--radius-2xl);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-icon {
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border-radius: var(--radius-full);
}

/* ========================================
   شريط التنقل
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* حالة الـ Navbar الافتراضية - شفافة مع تأثير زجاجي خفيف */
.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 15, 35, 0.6) 0%, rgba(15, 15, 35, 0.3) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: -1;
    opacity: 1;
    transition: all 0.3s ease;
}

/* حالة الـ Navbar عند التمرير */
.navbar.scrolled {
    padding: 0.75rem 0;
}

.navbar.scrolled::before {
    background: rgba(10, 10, 25, 0.95);
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3),
                0 0 40px rgba(124, 58, 237, 0.1);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* شعار الموقع */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    position: relative;
}

.navbar-brand::before {
    content: '';
    position: absolute;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3) 0%, rgba(236, 72, 153, 0.2) 100%);
    border-radius: 12px;
    right: -8px;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar-brand:hover::before {
    opacity: 1;
}

.navbar-brand img {
    height: 40px;
    filter: drop-shadow(0 2px 8px rgba(124, 58, 237, 0.3));
}

.navbar-brand span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(167, 139, 250, 0.3);
}

/* قائمة التنقل */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.375rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar-nav li {
    position: relative;
}

.navbar-nav a {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-full);
    position: relative;
    transition: all 0.2s ease;
    text-decoration: none;
}

.navbar-nav a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: var(--radius-full);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.navbar-nav a:hover {
    color: var(--white);
}

.navbar-nav a:hover::before {
    opacity: 1;
}

.navbar-nav a.active {
    color: var(--white);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.25) 0%, rgba(236, 72, 153, 0.15) 100%);
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.navbar-nav a.active::before {
    display: none;
}

/* أزرار الـ Navbar */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-actions .btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.navbar-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.navbar-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
    transform: translateY(-2px);
}

.navbar-actions .btn-primary {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.navbar-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(124, 58, 237, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* زر القائمة للموبايل */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   Mobile Menu - القائمة المتنقلة
   ======================================== */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: linear-gradient(180deg, #0f0f23 0%, #1a1a3e 100%);
    z-index: 1200;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
    display: none;
}

.mobile-menu.open {
    display: block;
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-header .navbar-brand span {
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 700;
}

.close-menu-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-menu-btn:hover {
    background: var(--primary);
}

.mobile-nav-links {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.mobile-nav-links li {
    margin: 0;
}

.mobile-nav-links li a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--gray-300);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.mobile-nav-links li a:hover,
.mobile-nav-links li a.active {
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary-light);
    padding-right: 2rem;
}

.mobile-nav-links li a.btn {
    margin: 0.5rem 1rem;
    text-align: center;
    border-bottom: none;
    padding: 0.875rem 1.5rem;
}

.mobile-nav-links li a.btn.btn-block {
    display: block;
}

/* ========================================
   قسم البطل (Hero) - تصميم الفضاء والسحابة
   ======================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(180deg, #0a0a1a 0%, #0d1033 30%, #1a1a4e 60%, #0f0f2d 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* طبقة السديم */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(120, 80, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(80, 200, 255, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 40% 80%, rgba(255, 100, 200, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 90%, rgba(100, 255, 200, 0.08) 0%, transparent 40%);
    animation: nebulaMove 30s ease-in-out infinite;
}

@keyframes nebulaMove {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to top, var(--light), transparent);
    pointer-events: none;
    z-index: 5;
}

/* النجوم */
.hero-stars {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: twinkle var(--duration) ease-in-out infinite;
}

.hero-star.small {
    width: 1px;
    height: 1px;
    box-shadow: 0 0 2px #fff;
}

.hero-star.medium {
    width: 2px;
    height: 2px;
    box-shadow: 0 0 4px #fff, 0 0 8px rgba(255,255,255,0.5);
}

.hero-star.large {
    width: 3px;
    height: 3px;
    box-shadow: 0 0 6px #fff, 0 0 12px rgba(255,255,255,0.5), 0 0 20px rgba(100,150,255,0.3);
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* الشهب */
.hero-shooting-star {
    position: absolute;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8), transparent);
    border-radius: 50%;
    animation: shootingStar 4s ease-in-out infinite;
    opacity: 0;
}

@keyframes shootingStar {
    0% { 
        transform: translateX(0) translateY(0) rotate(-45deg);
        opacity: 0;
    }
    5% { opacity: 1; }
    30% { 
        transform: translateX(-400px) translateY(400px) rotate(-45deg);
        opacity: 0;
    }
    100% { opacity: 0; }
}

/* الكواكب */
.hero-planets {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-planet {
    position: absolute;
    border-radius: 50%;
    animation: floatPlanet 20s ease-in-out infinite;
}

.hero-planet-1 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, #6366f1, #312e81);
    top: 15%;
    right: 10%;
    box-shadow: 
        inset -20px -20px 40px rgba(0,0,0,0.5),
        0 0 60px rgba(99, 102, 241, 0.3);
}

.hero-planet-1::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 20px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-20deg);
}

.hero-planet-2 {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 30%, #f59e0b, #b45309);
    bottom: 25%;
    left: 8%;
    box-shadow: 
        inset -10px -10px 20px rgba(0,0,0,0.5),
        0 0 30px rgba(245, 158, 11, 0.3);
    animation-delay: 5s;
}

.hero-planet-3 {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at 30% 30%, #10b981, #047857);
    top: 60%;
    right: 15%;
    box-shadow: 
        inset -8px -8px 15px rgba(0,0,0,0.5),
        0 0 20px rgba(16, 185, 129, 0.3);
    animation-delay: 10s;
}

@keyframes floatPlanet {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* القمر الصناعي */
.hero-satellite {
    position: absolute;
    width: 80px;
    height: 30px;
    top: 25%;
    left: 15%;
    animation: orbitSatellite 25s linear infinite;
}

.satellite-body {
    position: absolute;
    width: 30px;
    height: 20px;
    background: linear-gradient(135deg, #94a3b8, #475569);
    border-radius: 4px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(148, 163, 184, 0.5);
}

.satellite-panel {
    position: absolute;
    width: 25px;
    height: 35px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: 1px solid #60a5fa;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.satellite-panel.left { left: 0; border-radius: 2px 0 0 2px; }
.satellite-panel.right { right: 0; border-radius: 0 2px 2px 0; }

.satellite-antenna {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #f59e0b;
    border-radius: 50%;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px #f59e0b;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes orbitSatellite {
    0% { 
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
    }
    25% { 
        transform: translate(200px, -100px) rotate(90deg);
    }
    50% { 
        transform: translate(400px, 0) rotate(180deg);
        opacity: 0.5;
    }
    75% { 
        transform: translate(200px, 100px) rotate(270deg);
    }
    100% { 
        transform: translate(0, 0) rotate(360deg);
        opacity: 1;
    }
}

/* السحابة الرقمية */
.hero-cloud {
    position: absolute;
    bottom: 20%;
    right: 5%;
    width: 200px;
    height: 120px;
    opacity: 0.6;
    animation: cloudFloat 15s ease-in-out infinite;
}

.cloud-main {
    position: absolute;
    width: 100px;
    height: 60px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.2));
    border-radius: 50px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cloud-part {
    position: absolute;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.2));
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cloud-part-1 {
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 30%;
}

.cloud-part-2 {
    width: 50px;
    height: 50px;
    bottom: 25px;
    left: 55%;
}

.cloud-part-3 {
    width: 40px;
    height: 40px;
    bottom: 10px;
    left: 20%;
}

/* أيقونات السحابة */
.cloud-icons {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.cloud-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a78bfa;
    font-size: 14px;
    animation: iconPulse 2s ease-in-out infinite;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cloud-icon:nth-child(2) { animation-delay: 0.3s; }
.cloud-icon:nth-child(3) { animation-delay: 0.6s; }

@keyframes iconPulse {
    0%, 100% { transform: translateY(0); opacity: 0.8; }
    50% { transform: translateY(-5px); opacity: 1; }
}

@keyframes cloudFloat {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-15px) translateX(10px); }
}

/* خطوط الاتصال */
.hero-connections {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.connection-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
    animation: connectionPulse 3s ease-in-out infinite;
}

@keyframes connectionPulse {
    0%, 100% { opacity: 0; transform: scaleX(0); }
    50% { opacity: 1; transform: scaleX(1); }
}

/* نقاط البيانات */
.hero-data-points {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.data-point {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #7c3aed;
    border-radius: 50%;
    box-shadow: 0 0 10px #7c3aed, 0 0 20px rgba(124, 58, 237, 0.5);
    animation: dataFlow 8s linear infinite;
}

@keyframes dataFlow {
    0% { 
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% { 
        opacity: 1;
        transform: translateY(80vh) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(10vh) scale(1);
    }
    100% { 
        transform: translateY(0) scale(0);
        opacity: 0;
    }
}

/* المدارات */
.hero-orbits {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.orbit-ring {
    position: absolute;
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-ring-1 {
    width: 400px;
    height: 400px;
    animation: orbitRotate 40s linear infinite;
}

.orbit-ring-2 {
    width: 600px;
    height: 600px;
    animation: orbitRotate 60s linear infinite reverse;
}

.orbit-ring-3 {
    width: 800px;
    height: 800px;
    animation: orbitRotate 80s linear infinite;
}

.orbit-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #7c3aed;
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px #7c3aed;
}

@keyframes orbitRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* شبكة الفضاء */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    animation: gridPulse 10s ease-in-out infinite;
    transform: perspective(500px) rotateX(60deg) translateY(-50%);
    transform-origin: center top;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 120px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--gradient-glass);
    color: var(--white);
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    animation: badgePulse 3s infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(124, 58, 237, 0); }
}

.hero-badge i {
    color: var(--accent);
    animation: rocketBounce 2s infinite;
}

@keyframes rocketBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.75rem;
    line-height: 1.15;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.5;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 5rem;
    padding: 2.5rem;
    background: var(--gradient-glass);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.hero-stat {
    text-align: center;
    padding: 1rem;
    position: relative;
}

.hero-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2), transparent);
}

.hero-stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(236, 72, 153, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #a78bfa;
    border: 1px solid rgba(167, 139, 250, 0.3);
    animation: iconFloat 3s ease-in-out infinite;
}

.hero-stat:nth-child(2) .hero-stat-icon { animation-delay: 0.5s; }
.hero-stat:nth-child(3) .hero-stat-icon { animation-delay: 1s; }
.hero-stat:nth-child(4) .hero-stat-icon { animation-delay: 1.5s; }

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero-stat-value {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
}

/* ========================================
   الحاوية
   ======================================== */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========================================
   الأقسام - تصميم فضائي
   ======================================== */
.section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.section-dark {
    background: linear-gradient(180deg, #0f0f2d 0%, #1a1a4e 50%, #0d1033 100%);
    color: var(--white);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 80%, rgba(236, 72, 153, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.section-light {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.section-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}

.section-gray {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
    position: relative;
}

/* نجوم خفيفة للأقسام */
.section-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.section-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(99, 102, 241, 0.4);
    border-radius: 50%;
    animation: sectionTwinkle 3s ease-in-out infinite;
}

@keyframes sectionTwinkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.6; }
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(236, 72, 153, 0.1));
    color: var(--primary);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    margin-bottom: 1.25rem;
    position: relative;
}

.section-subtitle {
    color: var(--gray-500);
    font-size: 1.125rem;
    line-height: 1.8;
}

/* ========================================
   المميزات - تصميم فضائي
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(248,250,252,0.9));
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: var(--transition);
    opacity: 0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
}

.feature-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.feature-card:hover::after {
    opacity: 1;
    transform: translate(-20%, 20%);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1.75rem;
    position: relative;
    animation: featureIconFloat 4s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-icon { animation-delay: 0.5s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 1s; }
.feature-card:nth-child(4) .feature-icon { animation-delay: 1.5s; }
.feature-card:nth-child(5) .feature-icon { animation-delay: 2s; }
.feature-card:nth-child(6) .feature-icon { animation-delay: 2.5s; }

@keyframes featureIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: var(--radius-xl);
    background: var(--gradient-primary);
    opacity: 0.15;
    filter: blur(15px);
    z-index: -1;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    top: 10px;
    right: 10px;
    opacity: 0.6;
}

.feature-title {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.feature-desc {
    color: var(--gray-500);
    font-size: 1rem;
    line-height: 1.8;
}

/* بطاقات المميزات في القسم الداكن */
.section-dark .feature-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
}

.section-dark .feature-card:hover {
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(99, 102, 241, 0.2);
}

.section-dark .feature-title {
    color: var(--white);
}

.section-dark .feature-desc {
    color: rgba(255,255,255,0.7);
}

/* ========================================
   خطط الأسعار - تصميم فضائي
   ======================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.95));
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    padding-top: 3rem;
    box-shadow: var(--shadow-card);
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(99, 102, 241, 0.1);
    display: flex;
    flex-direction: column;
}

/* كوكب صغير في الخلفية */
.pricing-card::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.08), transparent 70%);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    transition: var(--transition);
}

/* نجمة متلألئة */
.pricing-card::after {
    content: '✦';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 12px;
    color: rgba(99, 102, 241, 0.3);
    animation: pricingStarTwinkle 2s ease-in-out infinite;
}

@keyframes pricingStarTwinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
}

.pricing-card:hover::before {
    transform: scale(1.5);
    opacity: 0.5;
}

.pricing-card.featured {
    background: linear-gradient(180deg, #0f0f2d, #1a1a4e);
    border: 2px solid rgba(99, 102, 241, 0.5);
    transform: scale(1.03);
    box-shadow: var(--shadow-glow), 0 30px 60px rgba(99, 102, 241, 0.3);
    color: var(--white);
    margin-top: 15px;
}

.pricing-card.featured::before {
    background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.2), transparent 70%);
}

.pricing-card.featured::after {
    color: rgba(255, 255, 255, 0.5);
}

/* نجوم في البطاقة المميزة */
.pricing-card.featured .pricing-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-12px);
    box-shadow: var(--shadow-glow), 0 40px 80px rgba(99, 102, 241, 0.4);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    z-index: 10;
    white-space: nowrap;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 6px 25px rgba(245, 158, 11, 0.6); }
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
}

.pricing-name {
    font-size: 1.625rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.pricing-card.featured .pricing-name {
    color: var(--white);
}

.pricing-desc {
    color: var(--gray-500);
    font-size: 0.9375rem;
}

.pricing-card.featured .pricing-desc {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-price {
    margin-top: 1.75rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-amount {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pricing-card.featured .pricing-amount {
    background: linear-gradient(135deg, #a78bfa, #f0abfc);
    -webkit-background-clip: text;
    background-clip: text;
}

.pricing-currency {
    font-size: 1.125rem;
    color: var(--gray-500);
    font-weight: 600;
}

.pricing-card.featured .pricing-currency {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-period {
    font-size: 0.9375rem;
    color: var(--gray-400);
}

.pricing-card.featured .pricing-period {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 0;
    color: var(--gray-600);
    border-bottom: 1px solid rgba(99, 102, 241, 0.08);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.pricing-features li:hover {
    padding-right: 0.5rem;
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--success);
    font-size: 1.125rem;
    width: 20px;
    text-align: center;
}

.pricing-card.featured .pricing-features li i {
    color: #4ade80;
}

.pricing-features li.disabled {
    color: var(--gray-400);
}

.pricing-features li.disabled i {
    color: var(--gray-300);
}

.pricing-card.featured .pricing-features li.disabled {
    color: rgba(255, 255, 255, 0.4);
}

.pricing-card.featured .pricing-features li.disabled i {
    color: rgba(255, 255, 255, 0.3);
}

.pricing-btn {
    width: 100%;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    visibility: visible !important;
    opacity: 1 !important;
}

/* تأكيد ظهور الأزرار دائماً */
.pricing-card .pricing-btn,
.pricing-card .btn,
.pricing-card .btn-secondary,
.pricing-card .btn-primary,
.pricing-card .btn-outline {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* زر الأسعار الثانوي */
.pricing-card .btn-secondary.pricing-btn {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
    color: var(--primary);
    border: 2px solid var(--primary);
}

.pricing-card .btn-secondary.pricing-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.pricing-card.featured .pricing-btn {
    background: linear-gradient(135deg, #a78bfa, #f0abfc);
    box-shadow: 0 4px 20px rgba(167, 139, 250, 0.4);
}

.pricing-card.featured .pricing-btn:hover {
    box-shadow: 0 8px 30px rgba(167, 139, 250, 0.6);
}

/* ========================================
   بانر دعائي - Promo Banner
   ======================================== */
.promo-banner {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0f1e 0%, #1a1f35 50%, #0f172a 100%);
    overflow: hidden;
}

.promo-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.promo-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.promo-glow-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    animation: promoPulse 4s ease-in-out infinite;
}

.promo-glow-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: -50px;
    left: 10%;
    animation: promoPulse 4s ease-in-out infinite 2s;
}

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

.promo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.promo-text {
    flex: 1;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(249, 115, 22, 0.2));
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 50px;
    color: #f87171;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: badgeGlow 2s ease-in-out infinite;
}

.promo-badge i {
    color: #f97316;
    animation: fireFlicker 0.5s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(239, 68, 68, 0.2); }
    50% { box-shadow: 0 0 20px rgba(239, 68, 68, 0.4); }
}

@keyframes fireFlicker {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.promo-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.promo-price {
    display: inline-block;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #f97316, #facc15);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: priceShine 3s ease-in-out infinite;
}

@keyframes priceShine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.promo-currency {
    font-size: 1.5rem;
    color: #facc15;
    font-weight: 600;
}

.promo-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
}

.promo-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.promo-features span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.promo-features i {
    color: #4ade80;
    font-size: 0.8rem;
}

.promo-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn-promo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #f97316, #facc15);
    color: #0a0f1e;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.btn-promo:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.5);
    color: #0a0f1e;
}

.btn-promo i {
    animation: arrowBounce 1s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
}

.promo-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.promo-guarantee i {
    color: #4ade80;
}

/* استجابة البانر للشاشات الصغيرة */
@media (max-width: 768px) {
    .promo-banner {
        padding: 3rem 0;
    }
    
    .promo-content {
        flex-direction: column;
        text-align: center;
    }
    
    .promo-title {
        font-size: 1.8rem;
    }
    
    .promo-price {
        font-size: 3rem;
    }
    
    .promo-features {
        justify-content: center;
    }
    
    .btn-promo {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   قسم البحث عن دومين - Homepage
   ======================================== */
.domain-search-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.domain-search-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.domain-search-box {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.domain-search-header {
    margin-bottom: 2rem;
}

.domain-search-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.domain-search-header h2 i {
    font-size: 1.5rem;
}

.domain-search-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.domain-search-form {
    margin-bottom: 1.5rem;
}

.domain-input-group {
    display: flex;
    background: var(--white);
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.domain-input {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    background: transparent;
    outline: none;
    color: var(--dark);
    direction: ltr;
    text-align: left;
}

.domain-input::placeholder {
    color: var(--gray-400);
    direction: rtl;
    text-align: right;
}

.domain-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.domain-tlds {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.tld-item {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.tld-item small {
    color: rgba(255, 255, 255, 0.7);
    margin-right: 0.3rem;
}

@media (max-width: 768px) {
    .domain-input-group {
        flex-direction: column;
        border-radius: 20px;
    }
    
    .domain-input {
        text-align: center;
    }
    
    .domain-input::placeholder {
        text-align: center;
    }
    
    .domain-btn {
        width: 100%;
        justify-content: center;
    }
    
    .domain-tlds {
        gap: 0.75rem;
    }
    
    .tld-item {
        font-size: 0.9rem;
    }
}

/* ========================================
   آراء العملاء في الصفحة الرئيسية
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card-home {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.testimonial-card-home:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-rating i.empty {
    color: var(--gray-300);
}

.testimonial-text {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-info strong {
    display: block;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-info span {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ========================================
   قسم المدونة في الصفحة الرئيسية - تصميم محسّن
   ======================================== */
.section-dark#blog {
    background: linear-gradient(180deg, #0a0f1e 0%, #131b2e 50%, #0a0f1e 100%);
    position: relative;
    overflow: hidden;
}

.section-dark#blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.blog-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.blog-card-home {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.blog-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 24px;
    z-index: 0;
}

.blog-card-home:hover::before {
    opacity: 1;
}

.blog-card-home:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 
        0 25px 50px rgba(99, 102, 241, 0.25),
        0 0 100px rgba(139, 92, 246, 0.1);
}

.blog-card-image-home {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
}

.blog-card-image-home::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(10, 15, 30, 0.8), transparent);
    pointer-events: none;
}

.blog-card-image-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.blog-card-home:hover .blog-card-image-home img {
    transform: scale(1.15);
}

.blog-placeholder-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blog-placeholder-icon i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.2);
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.blog-category-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    z-index: 2;
}

.blog-card-body-home {
    padding: 1.75rem;
    position: relative;
    z-index: 1;
}

.blog-meta-home {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.blog-meta-home span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta-home i {
    color: #a855f7;
}

.blog-title-home {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-title-home a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, var(--white), var(--white));
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: right bottom;
}

.blog-title-home a:hover {
    color: #c4b5fd;
    background-size: 100% 2px;
}

.blog-excerpt-home {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #a855f7;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.blog-read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #a855f7);
    transition: width 0.3s ease;
}

.blog-read-more:hover::after {
    width: 100%;
}

.blog-read-more:hover {
    color: #c4b5fd;
}

.blog-read-more i {
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.blog-read-more:hover i {
    transform: translateX(-8px);
}

/* زر عرض جميع المقالات */
#blog .btn-primary.btn-lg {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
}

#blog .btn-primary.btn-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

@media (max-width: 1024px) {
    .blog-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid-home {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card-image-home {
        height: 200px;
    }
    
    .blog-card-home:hover {
        transform: translateY(-8px);
    }
    
    .blog-title-home {
        font-size: 1.1rem;
    }
}

/* ========================================
   الأسئلة الشائعة - تصميم فضائي
   ======================================== */
.faq-space {
    background: var(--dark, #0f0f23);
    padding-top: 0;
    padding-bottom: 5rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.15);
}

.faq-item.active {
    border-color: rgba(124, 58, 237, 0.4);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.faq-question-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question-header::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 4px 4px 0;
}

.faq-item.active .faq-question-header::before {
    opacity: 1;
}

.faq-question-header:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    flex: 1;
    line-height: 1.5;
}

.faq-toggle-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.15);
    border-radius: 50%;
    color: var(--primary-light);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.4);
}

.faq-answer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-300);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.25rem;
}

/* Legacy Card Styles for backward compatibility */
.faq-item .card {
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(248,250,252,0.95));
}

.faq-item .card:hover {
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
}

.faq-item .card-header {
    background: transparent;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.faq-item .card-header::before {
    content: '?';
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    opacity: 0;
    transition: var(--transition);
}

.faq-item .card-header:hover::before {
    opacity: 1;
}

.faq-item .card-header:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03), transparent);
}

.faq-item .card-title {
    font-size: 1.0625rem !important;
    font-weight: 600;
}

.faq-item .card-body {
    padding: 0 1.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.02), transparent);
}

/* ========================================
   قسم CTA - تصميم فضائي
   ======================================== */
.cta-section {
    background: linear-gradient(180deg, #0f0f2d 0%, #1a1a4e 50%, #2d1b4e 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* نجوم CTA */
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.5), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 160px 30px, rgba(255,255,255,0.5), transparent);
    background-size: 200px 100px;
    animation: ctaStars 100s linear infinite;
}

@keyframes ctaStars {
    from { background-position: 0 0; }
    to { background-position: 10000px 5000px; }
}

/* سديم CTA */
.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.25rem;
    text-shadow: 0 0 40px rgba(99, 102, 241, 0.5);
}

.cta-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background: linear-gradient(135deg, #ffffff, #f0f0ff);
    color: var(--primary);
    padding: 1.125rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: ctaBtnShine 3s ease-in-out infinite;
}

@keyframes ctaBtnShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    color: var(--primary);
}

/* أيقونة صاروخ في CTA */
.cta-rocket {
    display: inline-block;
    animation: rocketLaunch 2s ease-in-out infinite;
}

@keyframes rocketLaunch {
    0%, 100% { transform: translateY(0) rotate(-10deg); }
    50% { transform: translateY(-10px) rotate(-10deg); }
}

/* ========================================
   CTA Space - تصميم فضائي مميز
   ======================================== */
.cta-space {
    background: linear-gradient(135deg, #0f0a1f 0%, #1a0f2e 30%, #0d1b2a 70%, #0a1628 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* خلفية النجوم المتحركة */
.cta-space::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 10% 20%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 30% 60%, rgba(139, 92, 246, 0.6), transparent),
        radial-gradient(1px 1px at 50% 30%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 70% 80%, rgba(236, 72, 153, 0.5), transparent),
        radial-gradient(1px 1px at 90% 40%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 15% 90%, rgba(59, 130, 246, 0.6), transparent),
        radial-gradient(1px 1px at 85% 15%, rgba(255, 255, 255, 0.5), transparent);
    background-size: 300px 200px;
    animation: ctaSpaceStars 80s linear infinite;
    opacity: 0.8;
}

@keyframes ctaSpaceStars {
    from { background-position: 0 0; }
    to { background-position: 300px 200px; }
}

/* الهالة المتوهجة */
.cta-space::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: 
        radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 30% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 30%),
        radial-gradient(ellipse at 70% 30%, rgba(236, 72, 153, 0.1) 0%, transparent 30%);
    animation: ctaGlow 8s ease-in-out infinite alternate;
    pointer-events: none;
}

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

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

.cta-space .cta-title {
    color: #fff;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.5), 0 0 60px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, #fff 0%, #e0e7ff 50%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-space .cta-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* زر CTA المتوهج */
.btn-cta-glow {
    background: linear-gradient(135deg, var(--accent), var(--accent-pink), var(--primary));
    background-size: 200% 200%;
    color: #fff !important;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(139, 92, 246, 0.4),
        0 0 30px rgba(139, 92, 246, 0.2);
    animation: gradientShift 4s ease infinite;
    transition: all 0.15s ease-out;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-cta-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.2s ease-out;
}

.btn-cta-glow:hover::before {
    left: 100%;
}

.btn-cta-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(139, 92, 246, 0.5),
        0 0 50px rgba(139, 92, 246, 0.3),
        0 0 100px rgba(236, 72, 153, 0.2);
}

.btn-cta-glow i {
    font-size: 1.2rem;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* كواكب صغيرة للزينة */
.cta-space .cta-planet {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta-space .cta-planet-1 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    top: 20%;
    right: 10%;
    opacity: 0.4;
    animation: floatPlanet 10s ease-in-out infinite;
}

.cta-space .cta-planet-2 {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ec4899, #f472b6);
    bottom: 25%;
    left: 8%;
    opacity: 0.3;
    animation: floatPlanet 12s ease-in-out infinite reverse;
}

@keyframes floatPlanet {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .cta-space {
        padding: 4rem 1rem;
    }
    
    .cta-space .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-space .cta-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .btn-cta-glow {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .cta-space .cta-planet-1,
    .cta-space .cta-planet-2 {
        display: none;
    }
}

/* ========================================
   الفوتر - تصميم فضائي
   ======================================== */
.footer {
    background: linear-gradient(180deg, #0a0a1a 0%, #0f0f23 100%);
    color: var(--gray-300);
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--primary), transparent);
    opacity: 0.6;
}

.footer-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.1), transparent);
    pointer-events: none;
}

/* نجوم الفوتر */
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(1px 1px at 10% 10%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 30% 20%, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 50% 15%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 70% 25%, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 90% 10%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 15% 40%, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 85% 50%, rgba(255,255,255,0.3), transparent);
    pointer-events: none;
}

/* شريط متوهج علوي */
.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    box-shadow: 0 0 20px var(--primary-glow), 0 0 40px var(--primary-glow);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-brand img {
    height: 40px;
}

.footer-brand span {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: var(--gray-400);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-title i {
    color: var(--primary-light);
    font-size: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.875rem;
}

.footer-links a {
    color: var(--gray-400);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-right: 8px;
}

.footer-links a i {
    color: var(--primary-light);
    width: 20px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links a:hover i {
    color: var(--secondary);
}

.footer-contact li {
    margin-bottom: 1rem;
}

.footer-address {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
}

.footer-address i {
    color: var(--primary-light);
    width: 20px;
    font-size: 0.85rem;
}

.footer-hours {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-hours h5 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-hours h5 i {
    color: var(--primary-light);
}

.footer-hours p {
    color: var(--gray-400);
    font-size: 0.85rem;
}

.footer-about {
    max-width: 320px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.footer-copyright {
    font-size: 0.95rem;
    color: #1e293b;
    font-weight: 600;
}

.footer-payments {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-payments span {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.footer-payments img {
    height: 28px;
    opacity: 0.7;
    transition: var(--transition);
    filter: grayscale(0.5);
}

.footer-payments img:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.1);
}

/* ========================================
   البطاقات العامة
   ======================================== */
.card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--gray-100);
    background: var(--gray-50);
}

/* ========================================
   النماذج
   ======================================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.625rem;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.form-control {
    width: 100%;
    padding: 0.9375rem 1.125rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.form-control::placeholder {
    color: var(--gray-400);
}

.form-control.is-invalid {
    border-color: var(--danger);
}

.form-text {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

.invalid-feedback {
    color: var(--danger);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-check-input {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 1rem center;
    background-size: 16px 12px;
    padding-left: 2.5rem;
}

/* ========================================
   التنبيهات
   ======================================== */
.alert {
    padding: 1.125rem 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.alert-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #92400e;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    color: #1e40af;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* ========================================
   الجداول
   ======================================== */
.table-responsive {
    overflow-x: auto;
    border-radius: var(--radius-lg);
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 1rem 1.25rem;
    text-align: right;
    border-bottom: 1px solid var(--gray-100);
}

.table th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.table tbody tr {
    transition: var(--transition);
}

.table tbody tr:hover {
    background: var(--gray-50);
}

/* ========================================
   الشارات
   ======================================== */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.badge-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.badge-warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.badge-danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.badge-info {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info);
}

.badge-secondary {
    background: var(--gray-100);
    color: var(--gray-600);
}

/* ========================================
   المساعدات
   ======================================== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-warning { color: var(--warning); }
.text-muted { color: var(--gray-500); }

.bg-primary { background-color: var(--primary); }
.bg-success { background-color: var(--success); }
.bg-danger { background-color: var(--danger); }
.bg-warning { background-color: var(--warning); }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.d-flex { display: flex; }
.d-block { display: block; }
.d-none { display: none; }

.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }

/* ========================================
   Responsive - تصميم متجاوب كامل
   ======================================== */

/* شاشات كبيرة (Desktop) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero-planet-1 {
        width: 100px;
        height: 100px;
    }
    
    .hero-satellite {
        left: 10%;
    }
    
    .hero-cloud {
        width: 160px;
        height: 100px;
    }
}

/* شاشات متوسطة (Tablet Landscape) */
@media (max-width: 1024px) {
    .container {
        max-width: 720px;
    }
    
    /* Navbar Mobile Styles */
    .navbar .container {
        padding: 0 1.25rem;
    }
    
    .navbar-brand span {
        font-size: 1.25rem;
    }
    
    .navbar-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        background: linear-gradient(180deg, rgba(15, 15, 35, 0.98) 0%, rgba(26, 26, 62, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 1.5rem 2rem;
        gap: 0.5rem;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1100;
        border-left: 1px solid rgba(124, 58, 237, 0.2);
        border-radius: 0;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    }
    
    .navbar-nav.show {
        right: 0;
    }
    
    /* Overlay للقائمة */
    .navbar-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 300px;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(5px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: -1;
    }
    
    .navbar-nav.show::before {
        opacity: 1;
        visibility: visible;
    }
    
    .navbar-nav li {
        width: 100%;
    }
    
    .navbar-nav a {
        display: flex;
        align-items: center;
        padding: 1rem 1.25rem;
        border-radius: 12px;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.8);
        border-bottom: none;
        background: transparent;
    }
    
    .navbar-nav a::before {
        display: none;
    }
    
    .navbar-nav a:hover {
        background: rgba(124, 58, 237, 0.15);
        color: var(--white);
    }
    
    .navbar-nav a.active {
        background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(236, 72, 153, 0.15) 100%);
        color: var(--white);
        box-shadow: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1200;
    }
    
    .navbar-actions {
        gap: 0.5rem;
    }
    
    .navbar-actions .btn-secondary {
        display: none;
    }
    
    .navbar-actions .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .hero-stat:nth-child(2)::after {
        display: none;
    }
    
    .hero-planet-1 {
        width: 80px;
        height: 80px;
        top: 12%;
        right: 5%;
    }
    
    .hero-planet-1::before {
        width: 120px;
        height: 15px;
    }
    
    .hero-planet-2 {
        width: 50px;
        height: 50px;
        bottom: 30%;
        left: 5%;
    }
    
    .hero-planet-3 {
        width: 30px;
        height: 30px;
    }
    
    .hero-satellite {
        width: 60px;
        height: 25px;
        top: 20%;
        left: 5%;
    }
    
    .satellite-body {
        width: 22px;
        height: 15px;
    }
    
    .satellite-panel {
        width: 18px;
        height: 28px;
    }
    
    .hero-cloud {
        width: 140px;
        height: 90px;
        right: 3%;
        bottom: 25%;
    }
    
    .cloud-main {
        width: 80px;
        height: 50px;
    }
    
    .cloud-part-1 { width: 50px; height: 50px; }
    .cloud-part-2 { width: 40px; height: 40px; }
    .cloud-part-3 { width: 35px; height: 35px; }
    
    .cloud-icon {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    
    .orbit-ring-1 { width: 300px; height: 300px; }
    .orbit-ring-2 { width: 450px; height: 450px; }
    .orbit-ring-3 { width: 600px; height: 600px; }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* شاشات صغيرة (Tablet Portrait) */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .navbar {
        padding: 0.875rem 0;
    }
    
    .navbar-brand span {
        font-size: 1.375rem;
    }
    
    .navbar-actions .btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    .hero {
        min-height: 100svh;
    }
    
    .hero-content {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 1.875rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.7;
    }
    
    .hero-badge {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 1.25rem;
        margin-top: 3rem;
    }
    
    .hero-stat {
        padding: 0.75rem 0.5rem;
    }
    
    .hero-stat::after {
        display: none;
    }
    
    .hero-stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-stat-value {
        font-size: 1.5rem;
    }
    
    .hero-stat-label {
        font-size: 0.75rem;
    }
    
    /* إخفاء بعض العناصر الفضائية على الموبايل */
    .hero-planet-1 {
        width: 60px;
        height: 60px;
        top: 8%;
        right: 3%;
    }
    
    .hero-planet-1::before {
        width: 90px;
        height: 12px;
    }
    
    .hero-planet-2 {
        width: 35px;
        height: 35px;
        bottom: 35%;
    }
    
    .hero-planet-3 {
        display: none;
    }
    
    .hero-satellite {
        width: 50px;
        height: 20px;
        top: 15%;
    }
    
    .satellite-body {
        width: 18px;
        height: 12px;
    }
    
    .satellite-panel {
        width: 14px;
        height: 22px;
    }
    
    .satellite-antenna {
        width: 6px;
        height: 6px;
    }
    
    .hero-cloud {
        width: 100px;
        height: 70px;
        bottom: 30%;
        opacity: 0.4;
    }
    
    .cloud-icons {
        gap: 10px;
    }
    
    .cloud-icon {
        width: 20px;
        height: 20px;
        font-size: 9px;
    }
    
    .orbit-ring-1 { width: 200px; height: 200px; }
    .orbit-ring-2 { width: 300px; height: 300px; }
    .orbit-ring-3 { display: none; }
    
    .orbit-dot {
        width: 6px;
        height: 6px;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .section-title {
        font-size: 1.625rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .feature-card {
        padding: 1.75rem;
    }
    
    .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 1.375rem;
    }
    
    .feature-title {
        font-size: 1.125rem;
    }
    
    .feature-desc {
        font-size: 0.9375rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .pricing-name {
        font-size: 1.375rem;
    }
    
    .pricing-amount {
        font-size: 2.75rem;
    }
    
    .faq-list {
        padding: 0;
    }
    
    .faq-item .card-header {
        padding: 1.25rem;
    }
    
    .faq-item .card-title {
        font-size: 0.9375rem !important;
    }
    
    .faq-item .card-body {
        padding: 0 1.25rem 1.25rem;
    }
    
    .cta-section {
        padding: 3.5rem 0;
    }
    
    .cta-title {
        font-size: 1.625rem;
    }
    
    .cta-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-links li {
        margin-bottom: 0.625rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .footer-payments img {
        height: 22px;
    }
    
    .scroll-top {
        width: 44px;
        height: 44px;
        bottom: 1.5rem;
        left: 1.5rem;
        font-size: 1.125rem;
    }
}

/* شاشات صغيرة جداً (Mobile) */
@media (max-width: 480px) {
    .container {
        padding: 0 0.875rem;
    }
    
    /* Navbar Small Screen */
    .navbar .container {
        padding: 0 1rem;
    }
    
    .navbar-brand img {
        height: 32px;
    }
    
    .navbar-brand span {
        font-size: 1.125rem;
    }
    
    .navbar-actions .btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
    }
    
    .navbar-actions .btn-primary {
        padding: 0.5rem 0.75rem;
    }
    
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        gap: 4px;
    }
    
    .mobile-menu-toggle span {
        width: 18px;
    }
    
    .navbar-nav {
        width: 280px;
        padding: 90px 1.25rem 2rem;
    }
    
    .hero-content {
        padding: 80px 0.5rem 1rem;
    }
    
    .hero-title {
        font-size: 1.625rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
    }
    
    .hero-buttons {
        max-width: 100%;
    }
    
    .hero-buttons .btn {
        font-size: 0.9375rem;
    }
    
    .hero-stats {
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .hero-stat-icon {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
    
    .hero-stat-value {
        font-size: 1.25rem;
    }
    
    .hero-stat-label {
        font-size: 0.6875rem;
    }
    
    .hero-planet-1 {
        width: 45px;
        height: 45px;
    }
    
    .hero-planet-1::before {
        width: 70px;
        height: 10px;
    }
    
    .hero-planet-2 {
        width: 28px;
        height: 28px;
    }
    
    .hero-satellite {
        width: 40px;
        height: 16px;
    }
    
    .hero-cloud {
        display: none;
    }
    
    .orbit-ring-1 { width: 150px; height: 150px; }
    .orbit-ring-2 { width: 220px; height: 220px; }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-amount {
        font-size: 2.5rem;
    }
    
    .pricing-features li {
        font-size: 0.875rem;
        padding: 0.75rem 0;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .footer-brand span {
        font-size: 1.25rem;
    }
}

/* تحسينات للشاشات الصغيرة جداً */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-stat {
        padding: 0.5rem 0.25rem;
    }
    
    .hero-stat-icon {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-stat-value {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 1.375rem;
    }
    
    .pricing-amount {
        font-size: 2.25rem;
    }
}

/* تحسين للشاشات العالية الدقة */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* ========================================
   الرسوم المتحركة
   ======================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.25s ease-out forwards;
}

.animate-slideUp {
    animation: slideUp 0.3s ease-out forwards;
}

.animate-slideDown {
    animation: slideDown 0.3s ease-out forwards;
}

.animate-scaleIn {
    animation: scaleIn 0.25s ease-out forwards;
}

.animate-slideInRight {
    animation: slideInRight 0.25s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

/* ========================================
   المحمل
   ======================================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: var(--transition-slow);
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   التمرير للأعلى
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px var(--primary-glow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

/* ========================================
   Glass Effects
   ======================================== */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========================================
   صفحات الداخلية - Page Hero Space
   ======================================== */
.page-hero-space {
    background: var(--gradient-hero);
    color: var(--white);
    text-align: center;
    padding: 10rem 0 6rem;
    padding-top: calc(80px + 50px + 4rem); /* navbar + ticker + spacing */
    position: relative;
    overflow: hidden;
    min-height: 45vh;
}

/* إذا كان شريط الإعلانات موجود */
body:has(.news-ticker-wrapper) .page-hero-space {
    padding-top: calc(80px + 50px + 5rem);
}

.page-hero-space .stars {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 230px 80px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 300px 150px, rgba(255,255,255,0.4), transparent);
    background-repeat: repeat;
    background-size: 350px 350px;
    animation: twinkle 4s ease-in-out infinite alternate;
    z-index: 1;
}

.page-hero-space .shooting-stars {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.page-hero-space .shooting-stars::before,
.page-hero-space .shooting-stars::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), transparent);
    border-radius: 50%;
    animation: meteor 8s ease-in-out infinite;
}

.page-hero-space .shooting-stars::before {
    top: 15%;
    right: 20%;
    animation-delay: 0s;
}

.page-hero-space .shooting-stars::after {
    top: 35%;
    right: 40%;
    animation-delay: 4s;
}

.page-hero-space .planets {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.page-hero-space .planet {
    position: absolute;
    border-radius: 50%;
}

.page-hero-space .planet-1 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, #ec4899, #9333ea);
    top: 20%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.3);
}

.page-hero-space .planet-2 {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle at 30% 30%, #06b6d4, #3b82f6);
    bottom: 25%;
    left: 8%;
    animation: float 10s ease-in-out infinite reverse;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
}

.page-hero-space .container {
    position: relative;
    z-index: 10;
}

.page-hero-space .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.page-hero-space h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    color: #ffffff !important;
    text-shadow: 0 4px 30px rgba(139, 92, 246, 0.5), 0 2px 10px rgba(0,0,0,0.5);
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #ffffff, #e0e7ff, #c7d2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-space h1 i {
    margin-left: 0.5rem;
    color: #a78bfa !important;
    -webkit-text-fill-color: #a78bfa;
    filter: drop-shadow(0 0 10px rgba(167, 139, 250, 0.6));
}

.page-hero-space p {
    font-size: clamp(1rem, 2vw, 1.35rem);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    z-index: 10;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.page-hero-space .container {
    position: relative;
    z-index: 10;
}

/* ========================================
   FAQ Category Title
   ======================================== */
.faq-category {
    margin-bottom: 3rem;
}

.faq-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(124, 58, 237, 0.3);
}

.faq-category-title i {
    color: var(--primary-light);
    font-size: 1.25rem;
}

/* ========================================
   Help Card - FAQ Page
   ======================================== */
.help-card {
    background: var(--glass-card-bg, rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.help-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.1), transparent 70%);
    z-index: -1;
}

.help-card .help-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.help-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.help-card p {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

/* ========================================
   Empty State Space
   ======================================== */
.empty-state-space {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--glass-card-bg, rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
}

.empty-state-space i {
    font-size: 5rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    display: block;
}

.empty-state-space h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.empty-state-space p {
    color: var(--gray-400);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ========================================
   Pricing Monthly Badge
   ======================================== */
.pricing-monthly {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 0.5rem;
}

/* ========================================
   تحسينات الاستجابة للصفحات الداخلية
   ======================================== */
@media (max-width: 768px) {
    .page-hero-space {
        padding: 8rem 0 4rem;
        padding-top: calc(70px + 45px + 3rem);
        min-height: auto;
    }
    
    body:has(.news-ticker-wrapper) .page-hero-space {
        padding-top: calc(70px + 45px + 4rem);
    }
    
    .page-hero-space h1 {
        font-size: 2rem;
    }
    
    .page-hero-space p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .page-hero-space .planet-1 {
        width: 50px;
        height: 50px;
        right: 5%;
    }
    
    .page-hero-space .planet-2 {
        width: 35px;
        height: 35px;
        left: 5%;
    }
    
    .page-hero-space .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .faq-category-title {
        font-size: 1.25rem;
    }
    
    .help-card {
        padding: 2rem 1.5rem;
    }
    
    .help-card .help-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .help-card h3 {
        font-size: 1.25rem;
    }
    
    .help-card .help-buttons {
        flex-direction: column;
    }
    
    .help-card .help-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-hero-space {
        padding: 7rem 0 3rem;
        padding-top: calc(60px + 40px + 2.5rem);
    }
    
    body:has(.news-ticker-wrapper) .page-hero-space {
        padding-top: calc(60px + 40px + 3rem);
    }
    
    .page-hero-space h1 {
        font-size: 1.75rem;
    }
    
    .page-hero-space h1 i {
        display: none;
    }
    
    .page-hero-space .planet-1,
    .page-hero-space .planet-2 {
        display: none;
    }
    
    .empty-state-space {
        padding: 3rem 1.5rem;
    }
    
    .empty-state-space i {
        font-size: 3.5rem;
    }
}

/* ========================================
   شريط الإعلانات المتحرك - News Ticker
======================================== */
.news-ticker-wrapper {
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    width: 100% !important;
    z-index: 999;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center;
    background: linear-gradient(90deg, #1e1b4b, #312e81, #1e1b4b) !important;
    border-top: 3px solid #f59e0b;
    border-bottom: 3px solid #f59e0b;
    box-shadow: 0 5px 30px rgba(245, 158, 11, 0.4), 0 0 50px rgba(139, 92, 246, 0.3);
    height: 55px;
    min-height: 55px;
    overflow: hidden;
}

.news-ticker-label {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1.5rem;
    min-width: 100px;
    height: 100%;
    background: linear-gradient(135deg, #ef4444, #f59e0b) !important;
    color: #fff !important;
    font-weight: 800;
    font-size: 1rem;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 0.5px;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}

.news-ticker-label::after {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-pink));
    transform: skewX(-15deg);
}

.news-ticker-label i {
    font-size: 1rem;
    animation: bellRing 2s ease-in-out infinite;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
    50% { transform: rotate(0); }
}

.news-ticker {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex !important;
    align-items: center;
    height: 100%;
    min-width: 0; /* مهم للـ flex */
}

.news-ticker::before,
.news-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 10;
    pointer-events: none;
}

.news-ticker::before {
    right: 0;
    background: linear-gradient(to left, #312e81 0%, transparent 100%);
}

.news-ticker::after {
    left: 0;
    background: linear-gradient(to right, #1e1b4b 0%, transparent 100%);
}

.news-ticker-content {
    display: inline-flex !important;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    gap: 0;
    /* يظهر فوراً ويتحرك لليمين - بطيء جداً */
    animation: move-right 200s linear infinite !important;
}

.news-ticker-wrapper:hover .news-ticker-content {
    animation-play-state: paused;
}

/* من الشمال لليمين - يبدأ ظاهر ويتحرك يمين */
@keyframes move-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}

.ticker-item {
    display: inline-flex !important;
    align-items: center;
    vertical-align: middle;
    gap: 0.75rem;
    padding: 0 2rem;
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    height: 55px;
    line-height: 55px;
}

.ticker-item i {
    font-size: 1.3rem;
    filter: drop-shadow(0 0 10px currentColor);
    color: #60a5fa !important;
}

.ticker-item strong {
    color: #fbbf24 !important;
    font-weight: 800;
    font-size: 1.1rem;
}

.ticker-item span {
    color: #e2e8f0 !important;
}

.ticker-separator {
    color: rgba(255, 255, 255, 0.4) !important;
    margin: 0 0.5rem;
}

.ticker-divider {
    color: #f59e0b !important;
    margin: 0 1.5rem;
    font-size: 0.9rem;
    animation: starPulse 1.5s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.ticker-item strong {
    color: #fff;
    font-weight: 700;
}

.ticker-separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.25rem;
}

.ticker-divider {
    color: var(--accent);
    margin: 0 1rem;
    font-size: 0.75rem;
    opacity: 0.7;
}

.news-ticker-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 100%;
    background: linear-gradient(135deg, #7f1d1d, #991b1b);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.15s ease-out;
    flex-shrink: 0;
}

.news-ticker-close:hover {
    background: linear-gradient(135deg, #991b1b, #b91c1c);
}

.news-ticker-close i {
    font-size: 1rem;
}

/* تعديل padding للهيرو عند وجود الشريط */
body:has(.news-ticker-wrapper) .hero-content {
    padding-top: 165px;
}

@media (max-width: 768px) {
    .news-ticker-wrapper {
        top: 70px;
        height: 50px;
    }
    
    .news-ticker-label {
        padding: 0 1rem;
        font-size: 0.85rem;
        min-width: 80px;
    }
    
    .news-ticker-label span {
        display: none;
    }
    
    .ticker-item {
        font-size: 0.9rem;
        padding: 0 1.5rem;
    }
    
    .ticker-item strong {
        font-size: 0.95rem;
    }
    
    .news-ticker-close {
        width: 45px;
    }
    
    body:has(.news-ticker-wrapper) .hero-content {
        padding-top: 165px;
    }
}

@media (max-width: 480px) {
    .news-ticker-wrapper {
        top: 65px;
        height: 45px;
    }
    
    .ticker-item {
        font-size: 0.85rem;
        gap: 0.5rem;
        padding: 0 1.25rem;
    }
    
    .ticker-item i {
        font-size: 1.1rem;
    }
    
    .ticker-item strong {
        font-size: 0.9rem;
    }
}
