/* الأساسيات */
body {
    background-color: #030712;
    color: white;
    font-family: 'Cairo', sans-serif;
    scroll-behavior: smooth;
}

/* الخلفية المتحركة */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    z-index: 0;
}
.blob-1 {
    width: 500px;
    height: 500px;
    background-color: #9333ea;
    top: -10%;
    right: -5%;
}
.blob-2 {
    width: 600px;
    height: 600px;
    background-color: #2563eb;
    bottom: -10%;
    left: -10%;
}

/* الهيدر الزجاجي */
.glass-nav {
    background: rgba(3, 7, 18, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-box {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #9333ea, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link {
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: white;
}

/* النصوص الملونة */
.gradient-text {
    background: linear-gradient(to right, #a855f7, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* الأزرار */
.contact-btn {
    padding: 10px 24px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.contact-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.primary-btn {
    padding: 16px 32px;
    background: linear-gradient(to right, #9333ea, #2563eb);
    border-radius: 12px;
    font-weight: bold;
    box-shadow: 0 10px 20px -5px rgba(147, 51, 234, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
}
.primary-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px -5px rgba(147, 51, 234, 0.6);
}

.secondary-btn {
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}
.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* البادج */
.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.2);
    color: #c084fc;
    border-radius: 99px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* الكارد الزجاجي */
.glass-panel {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hover-up:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.hero-card {
    border-radius: 24px;
    padding: 32px;
    position: relative;
    transform: rotate(-2deg);
    transition: transform 0.5s ease;
}
.hero-card:hover {
    transform: rotate(0deg);
}

.card-header {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.floating-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(8px);
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: bounce 3s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}