:root {
    --primary: #7B61FF;
    --primary-dark: #5D43E8;
    --secondary: #00F0FF;
    --dark: #0F0F1A;
    --darker: #0A0A12;
    --light: #FFFFFF;
    --light-dark: #C5C6D0;
    --gold-accent: #FFD700;
    --success: #00E676;
    --danger: #FF3D57;
    --warning: #FFC107;
    --border-radius: 16px;
    --box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    --border-glow: 0 0 15px rgba(123, 97, 255, 0.5);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Luxury Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--darker);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary), var(--secondary));
    border-radius: 10px;
    border: 2px solid var(--darker);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
    font-smooth: always;
    -webkit-font-smoothing: antialiased;
}

/* Luxury Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(123, 97, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 240, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* Navigation Bar - Luxury Version */
/* ============================================
   NAVBAR - تصميم بسيط واحترافي للهواتف
   ============================================ */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    min-height: 60px;
}

.navbar.scrolled {
    background: rgba(10, 10, 18, 0.98);
    border-bottom: 1px solid rgba(123, 97, 255, 0.08);
}

/* الشعار */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    z-index: 1001;
}

.logo-icon {
    color: #7B61FF;
    font-size: 1.3rem;
}

.logo-text {
    letter-spacing: 0.5px;
}

/* ============================================
   أزرار سطح المكتب
   ============================================ */
.navbar-actions {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.btn-login {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.45rem 1.4rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #00F0FF;
    color: #00F0FF;
}

.btn-register {
    background: linear-gradient(135deg, #7B61FF, #5D43E8);
    border: none;
    color: #fff;
    padding: 0.45rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(123, 97, 255, 0.2);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 97, 255, 0.3);
}

/* ============================================
   زر القائمة للهواتف - بسيط وأنيق
   ============================================ */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 1001;
    padding: 6px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-toggle .fa-times {
    display: none;
}

.mobile-menu-toggle.active .fa-bars {
    display: none;
}

.mobile-menu-toggle.active .fa-times {
    display: block;
    color: #7B61FF;
}

/* ============================================
   القائمة المنسدلة - بسيطة ونظيفة
   ============================================ */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    max-width: 75%;
    height: 100%;
    background: rgba(15, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 5rem 1.5rem 2rem;
    z-index: 1000;
    transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    border-left: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.mobile-menu.open {
    right: 0;
}

/* زر إغلاق القائمة */
.mobile-menu-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 8px;
}

.mobile-menu-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* أزرار القائمة - تصميم أنيق */
.mobile-menu .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.85rem 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.mobile-menu .menu-btn i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* زر Sign In */
.mobile-menu .menu-login {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
}

.mobile-menu .menu-login:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.mobile-menu .menu-login:active {
    transform: scale(0.97);
}

/* زر Create Account */
.mobile-menu .menu-register {
    background: linear-gradient(135deg, #7B61FF, #5D43E8);
    color: #fff;
    box-shadow: 0 4px 15px rgba(123, 97, 255, 0.2);
}

.mobile-menu .menu-register:hover {
    box-shadow: 0 6px 25px rgba(123, 97, 255, 0.3);
}

.mobile-menu .menu-register:active {
    transform: scale(0.97);
}

/* فصل بين الأزرار */
.mobile-menu .menu-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    margin: 0.3rem 0;
}

/* ============================================
   تصميم متجاوب - هواتف فقط
   ============================================ */

/* هواتف */
@media (max-width: 768px) {
    .navbar-actions {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }

    .mobile-menu-overlay {
        display: block !important;
    }

    .navbar-brand {
        font-size: 1.1rem;
    }

    .logo-icon {
        font-size: 1.2rem;
    }

    .navbar {
        padding: 0.7rem 5%;
        min-height: 56px;
    }
}

/* أجهزة لوحية - إخفاء القائمة */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    .mobile-menu-overlay {
        display: none !important;
    }
    .mobile-menu {
        display: none !important;
    }
}

/* منع التمرير */
body.menu-open {
    overflow: hidden;
}

/* Hero Section - Luxury Edition */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 5% 10rem;
    position: relative;
    overflow: hidden;
    /* إضافة الخلفية مع التعتيم */
    background: linear-gradient(rgba(15, 15, 26, 0.7), rgba(15, 15, 26, 0.7)), 
                url('nn.jpg') no-repeat center center;
    background-size: cover;
}

/* يمكنك إزالة أو تعديل التأثيرات الحالية إذا لزم الأمر */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(123, 97, 255, 0.08) 0%, transparent 70%);
    animation: pulse 15s infinite alternate;
    z-index: -1;
    opacity: 0.5; /* يمكنك تقليل التعتيم إذا أردت */
}

.hero-content {
    max-width: 50%;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
    text-shadow: var(--text-shadow);
}

.highlight {
    position: relative;
    display: inline-block;
    color: var(--light);
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0.7;
    z-index: -1;
    border-radius: 4px;
    transform-origin: left;
    transition: var(--transition);
}

.highlight:hover::after {
    height: 12px;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--light-dark);
    margin-bottom: 2.5rem;
    max-width: 90%;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.feature-badge:hover {
    background: rgba(0, 240, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.1);
}

.feature-badge i {
    color: var(--secondary);
}

.cta-buttons {
    display: flex;
    gap: 1.8rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(123, 97, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.6s;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 97, 255, 0.5);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light);
    padding: 1.2rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 240, 255, 0.1);
}

.hero-image {
    width: 45%;
    animation: float 8s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 60%);
    opacity: 0.15;
    z-index: -1;
    border-radius: 50%;
}

.hero-image img {
    width: 100%;
    
    transition: var(--transition);
}

.hero-image:hover img {
    transform: scale(1.02);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-25px); }
    100% { transform: translateY(0px); }
}

/* Features Section - Luxury Grid */
.features {
    padding: 8rem 5%;
    background-color: var(--darker);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(123, 97, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 240, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 5rem auto 0;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--primary));
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: rgba(123, 97, 255, 0.3);
}

.feature-card:hover::before {
    opacity: 0.3;
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { filter: blur(5px); opacity: 0.3; }
    50% { filter: blur(10px); opacity: 0.5; }
    100% { filter: blur(5px); opacity: 0.3; }
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon.c2b {
    background: rgba(123, 97, 255, 0.1);
    color: var(--primary);
    box-shadow: 0 0 0 5px rgba(123, 97, 255, 0.2);
}

.feature-icon.backup {
    background: rgba(0, 230, 118, 0.1);
    color: var(--success);
    box-shadow: 0 0 0 5px rgba(0, 230, 118, 0.2);
}

.feature-icon.inheritance {
    background: rgba(255, 193, 7, 0.1);
    color: var(--warning);
    box-shadow: 0 0 0 5px rgba(255, 193, 7, 0.2);
}

.feature-icon.fees {
    background: rgba(255, 61, 87, 0.1);
    color: var(--danger);
    box-shadow: 0 0 0 5px rgba(255, 61, 87, 0.2);
}

.feature-icon.protection {
    background: rgba(123, 97, 255, 0.1);
    color: var(--primary);
    box-shadow: 0 0 0 5px rgba(123, 97, 255, 0.2);
}

.feature-icon.global {
    background: rgba(0, 240, 255, 0.1);
    color: var(--secondary);
    box-shadow: 0 0 0 5px rgba(0, 240, 255, 0.2);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--light-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Protection Section - Luxury Design */
.protection-section {
    display: flex;
    align-items: center;
    padding: 8rem 5%;
    background-color: var(--dark);
    position: relative;
    overflow: hidden;
}

.protection-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 240, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(123, 97, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.protection-content {
    flex: 1;
    padding-right: 4rem;
    position: relative;
    z-index: 2;
}

.protection-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.protection-section .subtitle {
    font-size: 1.3rem;
    color: var(--light-dark);
    margin-bottom: 3.5rem;
    max-width: 80%;
    line-height: 1.8;
}

.protection-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.protection-feature {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    padding: 2rem 1.8rem;
    transition: var(--transition);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.protection-feature::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--primary));
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.protection-feature:hover {
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: var(--box-shadow);
}

.protection-feature:hover::before {
    opacity: 0.3;
}

.protection-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1.8rem;
    transition: var(--transition);
    box-shadow: 0 0 0 5px rgba(0, 240, 255, 0.2);
}

.protection-feature:hover .protection-icon {
    transform: rotate(15deg) scale(1.1);
    background: rgba(0, 240, 255, 0.2);
}

.protection-feature h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.protection-feature p {
    color: var(--light-dark);
    line-height: 1.8;
    font-size: 1rem;
}

.protection-image {
    flex: 1;
    position: relative;
    z-index: 2;
}

.protection-image img {
    width: 100%;
    transition: var(--transition);
    transform: perspective(1000px) rotateY(-5deg);
}

.protection-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

/* Global Support Section - Luxury Gradient */
.global-support {
    padding: 8rem 5%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    position: relative;
    overflow: hidden;
}

.global-support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 L0,100 Z" /></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 0;
}

.support-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.global-support h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 800;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.global-support p {
    font-size: 1.3rem;
    max-width: 800px;
    margin-bottom: 4rem;
    line-height: 1.8;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.country-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.country {
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.country:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.country i {
    font-size: 1.2rem;
}

/* CTA Section - Luxury Centered */
.cta-section {
    padding: 8rem 5%;
    text-align: center;
    background-color: var(--dark);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(123, 97, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 240, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    font-weight: 800;
}

.cta-section p {
    font-size: 1.3rem;
    color: var(--light-dark);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

/* Footer - Luxury Dark */
.footer {
    background-color: #080811;
    padding: 6rem 5% 3rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(123, 97, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 240, 255, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--light);
}

.footer-brand .logo i {
    color: var(--primary);
    font-size: 1.8rem;
}

.footer-brand p {
    color: var(--light-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.link-group h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--light-dark);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.link-group a {
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.05rem;
    display: inline-block;
    position: relative;
}

.link-group a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: var(--transition);
}

.link-group a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.link-group a:hover::after {
    width: 100%;
}

.footer-bottom {
    max-width: 1200px;
    margin: 5rem auto 0;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--light-dark);
    position: relative;
    z-index: 2;
}

/* Floating Action Button (Mobile) */
.fab-mobile {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.fab-mobile .btn-primary {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(123, 97, 255, 0.4);
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(123, 97, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(123, 97, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(123, 97, 255, 0); }
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 1s ease-out;
}

.loading-spinner {
    position: relative;
    width: 120px;
    height: 120px;
}

.spinner-logo {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
    z-index: 2;
    animation: pulse-opacity 2s infinite;
}

@keyframes pulse-opacity {
    0% { opacity: 0.8; }
    50% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

.spinner-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 6px solid transparent;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    z-index: 1;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
}

/* Responsive Design - Luxury Mobile Experience */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .section-title, .protection-section h2, .global-support h2, .cta-section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-bottom: 6rem;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 4rem;
    }
    
    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-image {
        width: 70%;
        margin: 0 auto;
    }
    
    .protection-section {
        flex-direction: column-reverse;
    }
    
    .protection-content {
        padding-right: 0;
        margin-top: 3rem;
    }
    
    .protection-section .subtitle {
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1.2rem 5%;
    }
    
    .navbar-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .feature-badge {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1.2rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid, .protection-features {
        grid-template-columns: 1fr;
    }
    
    .section-title, .protection-section h2, .global-support h2, .cta-section h2 {
        font-size: 2.2rem;
    }
    
    .global-support p, .cta-section p {
        font-size: 1.1rem;
    }
    
    .country-list {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .fab-mobile {
        display: flex;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-image {
        width: 90%;
    }
    
    .feature-card, .protection-feature {
        padding: 1.8rem 1.5rem;
    }
    
    .btn-large {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
}

/* Ultra HD and 4K Screens */
@media (min-width: 1920px) {
    body {
        font-size: 110%;
    }
    
    .hero h1 {
        font-size: 4.5rem;
    }
    
    .section-title, .protection-section h2, .global-support h2, .cta-section h2 {
        font-size: 3.5rem;
    }
    
    .hero-subtitle, .feature-card p, .protection-feature p, .footer-brand p {
        font-size: 1.2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }
    
    .btn-primary, .btn-secondary, .btn-login, .btn-register {
        font-size: 1.1rem;
    }
}



.feature-icon.trade {
    background: rgba(0, 240, 255, 0.1);
    color: var(--secondary);
    box-shadow: 0 0 0 5px rgba(0, 240, 255, 0.2);
}


/* ===== Global Marquee Styles ===== */
.marquee {
    --marquee-speed: 120s; /* التحكم بسرعة الحركة */
    --marquee-gap: 1.5rem; /* المسافة بين الدول */
    --marquee-item-bg: rgba(255, 255, 255, 0.08);
    --marquee-item-border: rgba(255, 255, 255, 0.15);
    overflow: hidden;
    position: relative;
    margin: 2.5rem 0;
    mask-image: linear-gradient(
        90deg,
        transparent 0%,
        var(--dark) 10%,
        var(--dark) 90%,
        transparent 100%
    );
}

.marquee-content {
    display: flex;
    width: max-content;
    will-change: transform;
    backface-visibility: hidden;
}

.marquee-container {
    display: flex;
    animation: scroll var(--marquee-speed) linear infinite;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: var(--marquee-gap);
    padding: 1rem 0;
}

.marquee-item {
    background: var(--marquee-item-bg);
    border: 1px solid var(--marquee-item-border);
    border-radius: 10rem;
    padding: 0.6rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--light);
    white-space: nowrap;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* ===== Animations ===== */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% - var(--marquee-gap))); }
}

/* ===== Hover Effects ===== */
.marquee-item:hover {
    background: rgba(0, 240, 255, 0.15);
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 240, 255, 0.1);
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 1024px) {
    .marquee {
        --marquee-speed: 180s;
        --marquee-gap: 1rem;
    }
    .marquee-item {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .marquee {
        --marquee-speed: 240s;
        mask-image: none;
    }
    .marquee-item {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
}

/* ===== Performance Optimizations ===== */
.marquee-container {
    transform-style: preserve-3d;
    perspective: 1000px;
}





/* CSS Code */
.inheritance-section {
    background: linear-gradient(135deg, #0F0F1A 0%, #1A1A2E 100%);
    padding: 5rem 8%;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(123, 97, 255, 0.2);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
  }
  
  .inheritance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 20% 30%, rgba(123, 97, 255, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(0, 240, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
  }
  
  .section-header h2 {
    font-size: 2.8rem;
    background: linear-gradient(90deg, #7B61FF, #00F0FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
  }
  
  .subtitle {
    color: #C5C6D0;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #7B61FF, #00F0FF);
    margin: 1.5rem auto 0;
    border-radius: 3px;
  }
  
  .inheritance-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  .inheritance-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
  }
  
  .inheritance-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #7B61FF, #00F0FF, #7B61FF);
    z-index: -1;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  
  .inheritance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(123, 97, 255, 0.3);
  }
  
  .inheritance-card:hover::before {
    opacity: 0.3;
  }
  
  .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: rgba(123, 97, 255, 0.1);
    color: #7B61FF;
    box-shadow: 0 0 0 5px rgba(123, 97, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  
  .inheritance-card:hover .icon-circle {
    transform: scale(1.1);
  }
  
  .inheritance-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
  }
  
  .inheritance-card p {
    color: #C5C6D0;
    line-height: 1.7;
    font-size: 1.05rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .inheritance-section {
      padding: 3rem 5%;
    }
    
    .section-header h2 {
      font-size: 2.2rem;
    }
    
    .inheritance-features {
      grid-template-columns: 1fr;
    }
  }



  /* ============================================
   Coming Soon Badges & Styles
   ============================================ */

/* Badge صغير في Hero Features */
.feature-badge.coming-soon {
    position: relative;
    cursor: default;
}

.soon-badge {
    display: inline-block;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 10px;
    border-radius: 12px;
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-left: 6px;
    animation: pulseSoon 2s ease-in-out infinite;
}

@keyframes pulseSoon {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Badge في بطاقات الميزات */
.soon-badge-card {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 12px;
    border-radius: 12px;
    background: rgba(255, 215, 0, 0.12);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.15);
    margin-left: 8px;
    vertical-align: middle;
    animation: pulseSoon 2.5s ease-in-out infinite;
}

/* بطاقات Coming Soon - تأثير خاص */
.coming-soon-card {
    position: relative;
    overflow: hidden;
}

.coming-soon-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, transparent 50%, rgba(255, 215, 0, 0.05) 50%);
    pointer-events: none;
}

.coming-soon-card .feature-icon {
    opacity: 0.7;
    filter: grayscale(0.2);
}

.coming-soon-card:hover .feature-icon {
    opacity: 0.9;
    filter: grayscale(0);
}

/* تنسيق خاص للـ Badge في الـ Hero */
.hero-features .feature-badge.coming-soon {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.1);
}

.hero-features .feature-badge.coming-soon:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.2);
}

/* تأثير هادئ للبطاقات التي تحمل Coming Soon */
.coming-soon-card h3 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

@media (max-width: 768px) {
    .soon-badge {
        font-size: 0.45rem;
        padding: 1px 8px;
    }
    .soon-badge-card {
        font-size: 0.5rem;
        padding: 1px 10px;
    }
}


/* ============================================
   إخفاء الصور على الهواتف
   ============================================ */

/* إخفاء جميع الصور على الشاشات الصغيرة (الهواتف) */
@media (max-width: 768px) {
    /* إخفاء صورة hero */
    .hero-image {
        display: none !important;
    }
    
    /* إخفاء صورة protection */
    .protection-image {
        display: none !important;
    }
    
    /* إخفاء أي صور أخرى إذا وجدت */
    .hero-image img,
    .protection-image img,
    img[src*=".png"],
    img[src*=".jpg"],
    img[src*=".jpeg"],
    img[src*=".gif"],
    img[src*=".svg"] {
        display: none !important;
    }
}

/* للشاشات المتوسطة (تابلت) - يمكن إظهار الصور ولكن بحجم أصغر */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-image {
        width: 50% !important;
    }
    
    .protection-image {
        width: 50% !important;
    }
    
    .hero-image img,
    .protection-image img {
        max-width: 100% !important;
        height: auto !important;
    }
}

/* للشاشات الصغيرة جداً (هواتف صغيرة) */
@media (max-width: 480px) {
    .hero-image {
        display: none !important;
    }
    
    .protection-image {
        display: none !important;
    }
    
    /* إخفاء أي صورة في أي مكان */
    img {
        display: none !important;
    }
}