@charset "UTF-8";
/* ==========================================================================
   استوديو سليمان | SULAIMAN STUDIO
   ملف التنسيقات الرئيسي (StyleSheet)
   تصميم سايبر فاخر بالخلفية البيضاء والمؤثرات البصرية الفائقة
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. تعريف الخطوط الخاصة بالموقع (Font Faces)
   -------------------------------------------------------------------------- */
@font-face {
    font-family: 'Thmanyah-Black';
    src: local('Thmanyah Black'),
         local('thmanyahserifdisplay-Black'),
         url('fonts/thmanyahserifdisplay-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Thmanyah-Regular';
    src: local('Thmanyah Regular'),
         local('thmanyahserifdisplay-Regular'),
         url('fonts/thmanyahserifdisplay-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* --------------------------------------------------------------------------
   2. المتغيرات العامة ونظام الألوان السايبر الفاخر (Cyber Design Tokens)
   -------------------------------------------------------------------------- */
:root {
    /* الخطوط */
    --font-heading: 'Thmanyah-Black', 'IBM Plex Sans Arabic', 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Thmanyah-Regular', 'IBM Plex Sans Arabic', 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-en: 'IBM Plex Sans Devanagari', 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* درجات الخلفية السايبرية البيضاء والبلاتينية */
    --bg-white-pure: #ffffff;
    --bg-white-surface: #f7f9fd;
    --bg-glass: rgba(255, 255, 255, 0.65);
    --bg-glass-hover: rgba(255, 255, 255, 0.9);

    /* ألوان التباين الأسود الفاحم والرمادي الكربوني */
    --text-primary: #0a0c12;
    --text-secondary: #4a5060;
    --text-muted: #8c93a4;
    --dark-squircle: #07090e;

    /* إضاءات ولمسات السايبر الفاخرة (Cyber Accents) */
    --cyber-cyan: #4e71ff;
    --cyber-cyan-glow: rgba(78, 113, 255, 0.35);
    --cyber-violet: #7928ca;
    --cyber-violet-glow: rgba(121, 40, 202, 0.3);
    --cyber-electric: #4f46e5;
    --cyber-gold: #ffaa00;

    /* حدود وظلال زجاجية */
    --glass-border: rgba(220, 228, 242, 0.85);
    --glass-border-glow: rgba(78, 113, 255, 0.5);
    --glass-shadow: 0 20px 50px rgba(10, 20, 45, 0.06);
    --glass-shadow-hover: 0 25px 60px rgba(78, 113, 255, 0.15);

    /* قياسات الانتقال والتحريك */
    --ease-cyber: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.25s var(--ease-cyber);
    --transition-medium: 0.45s var(--ease-cyber);
    --transition-smooth: 0.7s var(--ease-cyber);
}

/* --------------------------------------------------------------------------
   3. إعادة التعيين والتنسيق الأساسي (Base & Reset)
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-white-pure);
    color: var(--text-primary);
}

body {
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background: radial-gradient(circle at 50% 10%, #f4f6fa 0%, #ffffff 70%, #f8faff 100%);
    cursor: default;
}

/* عناوين الموقع بالخط المطلوب */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.25;
}

p, span, a, button, li {
    font-family: var(--font-body22);
}

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

ul {
    list-style: none;
}

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

/* --------------------------------------------------------------------------
   4. مؤشر الماوس السايبر التفاعلي (Custom Cyber Cursor)
   -------------------------------------------------------------------------- */
.cyber-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 7px;
    height: 7px;
    background: var(--text-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--cyber-cyan);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

.cyber-cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(10, 12, 18, 0.3);
    border-radius: 0%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.12s ease-out, width 0.25s var(--ease-cyber), height 0.25s var(--ease-cyber), border-color 0.25s, background-color 0.25s;
}

/* الأقواس التقنية حول مؤشر الماوس */
.ring-bracket {
    position: absolute;
    width: 5px;
    height: 5px;
    border-color: var(--cyber-cyan);
    opacity: 0.8;
}

.ring-bracket.top-left {
    top: -2px;
    left: -2px;
    border-top: 2px solid var(--cyber-cyan);
    border-left: 2px solid var(--cyber-cyan);
}

.ring-bracket.top-right {
    top: -2px;
    right: -2px;
    border-top: 2px solid var(--cyber-cyan);
    border-right: 2px solid var(--cyber-cyan);
}

.ring-bracket.bottom-left {
    bottom: -2px;
    left: -2px;
    border-bottom: 2px solid var(--cyber-cyan);
    border-left: 2px solid var(--cyber-cyan);
}

.ring-bracket.bottom-right {
    bottom: -2px;
    right: -2px;
    border-bottom: 2px solid var(--cyber-cyan);
    border-right: 2px solid var(--cyber-cyan);
}

/* حالة التحويم للمؤشر عند الوقوف على رابط أو زر */
body.cursor-hover .cyber-cursor-ring {
    width: 54px;
    height: 54px;
    border-color: var(--cyber-cyan);
    background: rgba(78, 113, 255, 0.08);
}

body.cursor-hover .cyber-cursor-dot {
    width: 10px;
    height: 10px;
    background: var(--cyber-cyan);
}

/* --------------------------------------------------------------------------
   5. خلفية السايبر البيضاء والتأثيرات التفاعلية (Interactive Canvas & Hologram Grid)
   -------------------------------------------------------------------------- */
/* Background Interactive Canvas */
#cyber-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* Futuristic Light Grid and Holographic Overlay */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(
        rgba(255, 255, 255, 0) 50%, 
        rgba(0, 136, 204, 0.02) 50%
    ), linear-gradient(
        90deg,
        rgba(0, 136, 204, 0.02),
        rgba(217, 4, 82, 0.01),
        rgba(0, 136, 204, 0.02)
    );
    background-size: 100% 4px, 8px 100%;
    opacity: 0.7;
}

.cyber-glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    background: 
        99radial-gradient(circle at 15% 20%, rgba(0, 136, 204, 0.14) 0%, transparent 45%),
        99radial-gradient(circle at 85% 80%, rgba(217, 4, 82, 0.09) 0%, transparent 45%),
        99radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.85) 0%, transparent 70%);
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   6. بنية الصفحة والغلاف العام (Layout Wrapper)
   -------------------------------------------------------------------------- */
.page-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --------------------------------------------------------------------------
   7. الهيدر وشريط التنقل الفاخر (Header & Glassmorphism Navbar)
   -------------------------------------------------------------------------- */
.main-header {
    position: sticky;
    top: 1.5rem;
    z-index: 100;
    width: 100%;
    margin-bottom: 2rem;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition-medium);
}

.header-container:hover {
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* هوية وشعار الاستوديو */
.brand-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    user-select: none;
}

/* الأيقونة المربعة بزوايا مستديرة سوداء وبداخلها الشعار الأبيض */
.logo-squircle {
    width: 52px;
    height: 52px;
    background: var(--dark-squircle);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    box-shadow: 0 8px 20px rgba(7, 9, 14, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
    transition: var(--transition-medium);
}

.logo-squircle::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 15px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.logo-squircle:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.logo-squircle:hover::before {
    opacity: 1;
}

/* الشعار الأبيض داخل الأيقونة السوداء */
.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.brand-box:hover .logo-image {
    transform: scale(1.05);
}

/* نصوص الشعار (عربي وإنجليزي) */
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-name-ar {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.brand-name-en {
    font-family: var(--font-en);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 2.2px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* شارة إصدار الاستوديو بجانب الشعار (Studio Version Badge) */
.brand-version-badge {
    font-family: var(--font-en);
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--cyber-cyan);
    background: rgba(78, 113, 255, 0.08);
    border: 1px solid rgba(78, 113, 255, 0.3);
    padding: 0.2rem 0.55rem;
    border-radius: 2px;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(78, 113, 255, 0.08);
    transition: var(--transition-fast);
    align-self: center;
    user-select: none;
    line-height: 1.2;
}

.brand-box:hover .brand-version-badge {
    background: var(--cyber-cyan);
    color: #ffffff;
    border-color: var(--cyber-cyan);
    box-shadow: 0 4px 14px rgba(78, 113, 255, 0.35);
    transform: translateY(-1px);
}

/* شريط الروابط الأربعة الزجاجي مع Blur */
.glass-navbar {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    background: transparent;
    border: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: 3px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.nav-tag {
    font-family: var(--font-en);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-secondary);
    background: rgba(16, 24, 40, 0.06);
    padding: 0.15rem 0.35rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.nav-title {
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: var(--bg-white-pure);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.nav-link.active .nav-tag,
.nav-link:hover .nav-tag {
    background: var(--text-primary);
    color: #fff;
}

/* إجراءات الهيدر */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ويدجت التوقيت الكوني والساعة الحية (UTC Live Clock Badge) */
.utc-clock-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-fast);
    user-select: none;
}



/* النقطة النابضة الحية للتوقيت */
.utc-live-dot {
    width: 7px;
    height: 7px;
    background-color: var(--cyber-cyan);
    border-radius: 50%;
    position: relative;
    display: inline-block;
    box-shadow: 0 0 8px var(--cyber-cyan);
    flex-shrink: 0;
}

.utc-live-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background-color: rgba(78, 113, 255, 0.4);
    animation: utcPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes utcPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: scale(2);
        opacity: 0;
    }
    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

.utc-label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.84rem;
    color: var(--text-primary);
    white-space: nowrap;
}

.utc-live-time {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--cyber-cyan);
    letter-spacing: 0.6px;
    direction: ltr;
    display: inline-block;
    white-space: nowrap;
}

/* زر القائمة للشاشات الصغيرة */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-toggle .bar {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* --------------------------------------------------------------------------
   8. القسم الرئيسي الأوسط (Centerpiece Hero Section)
   -------------------------------------------------------------------------- */
.hero-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.5rem 0 4.5rem;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

/* الجانب النصي والعناوين */
.hero-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.8rem;
    z-index: 2;
}

/* العنوان الرئيسي الفاخر "سليمان - فنان رقمي ومخرج بصري" بتدرج سايبر متقن */
.hero-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    line-height: 1.2;
    letter-spacing: -1.5px;
    color: var(--text-primary);
    margin: 0.2rem 0;
}

.hero-artist-name {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(7.4rem, 5vw, 7.2rem);
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-title-role {
    display: block;
}

.title-gradient {
    display: inline-block;
    background: linear-gradient(135deg, #0a0c12 0%, #1e2640 35%, #008cb3 70%, #7928ca 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(78, 113, 255, 0.15);
    position: relative;
}

.title-ampersand {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75em;
    color: var(--cyber-cyan);
    margin: 0 0.25em;
    font-weight: 400;
    vertical-align: middle;
}

/* الوصف التقني الفاخر */
.hero-description {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-secondary);
    max-width: 620px;
}

/* --------------------------------------------------------------------------
   9. الجانب البصري وصورة RobotIndex العائمة (Floating Robot Showcase)
   -------------------------------------------------------------------------- */
.hero-visual-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

.robot-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

/* حلقات الهولوغرام السايبرية الدائرية */
.hologram-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    pointer-events: none;
}

.holo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(78, 113, 255, 0.35);
}

.holo-ring.outer {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(78, 113, 255, 0.2);
    animation: rotateClockwise 25s linear infinite;
}

.holo-ring.middle {
    width: 75%;
    height: 75%;
    border-color: rgba(121, 40, 202, 0.25);
    animation: rotateCounter 18s linear infinite;
}

.holo-ring.inner {
    width: 50%;
    height: 50%;
    border: 1px dashed rgba(78, 113, 255, 0.4);
    animation: rotateClockwise 12s linear infinite;
}

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

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

/* قاعدة المنصة السايبرية (Cyber Pedestal Base) */
.cyber-pedestal {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 60px;
    pointer-events: none;
}

.pedestal-plate {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(78, 113, 255, 0.25) 0%, rgba(121, 40, 202, 0.1) 50%, transparent 75%);
    transform: rotateX(70deg);
    border: 1px solid rgba(78, 113, 255, 0.4);
}

.pedestal-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(78, 113, 255, 0.6) 0%, transparent 70%);
    filter: blur(15px);
    animation: pedestalPulse 3s infinite ease-in-out alternate;
}

@keyframes pedestalPulse {
    0% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.85); }
    100% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.15); }
}

/* حاوية وصورة الروبوت العائمة بسلاسة */
.robot-image-container {
    position: relative;
    z-index: 5;
    animation: robotFloating 4.8s ease-in-out infinite;
    filter: drop-shadow(0 25px 35px rgba(78, 113, 255, 0.2)) drop-shadow(0 15px 25px rgba(10, 15, 30, 0.15));
    transition: transform 0.3s ease-out;
}

.robot-image {
    max-height: 440px;
    width: auto;
    object-fit: contain;
    user-select: none;
    pointer-events: auto;
    transition: transform 0.5s var(--ease-cyber);
}

.robot-visual-wrapper:hover .robot-image {
    transform: scale(1.04) translateY(-5px);
}

/* أنيميشن الطفو العائم المستمر للروبوت */
@keyframes robotFloating {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-22px) rotate(1.2deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* بطاقات بيانات الـ HUD الطافية حول الروبوت */
.hud-tag {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    backdrop-filter: blur(2px);
    border: 1px solid var(--glass-border);
    border-radius: 3px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    z-index: 10;
    animation: hudFloat 6s ease-in-out infinite alternate;
}

.hud-tag.top-right {
    top: 40px;
    right: 50px;
    border-right: 3px solid var(--cyber-cyan);
}

.hud-tag.bottom-left {
    bottom: 70px;
    left: -10px;
    border-left: 3px solid var(--cyber-violet);
    animation-delay: -3s;
}

.hud-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyber-cyan);
}

.hud-tag.bottom-left .hud-bullet {
    background: var(--cyber-violet);
}

.hud-text {
    font-family: var(--font-en);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--text-primary);
}

@keyframes hudFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-12px); }
}

/* --------------------------------------------------------------------------
   10. الفوتر وحقوق الملكية (Cyber Luxury Footer)
   -------------------------------------------------------------------------- */
.cyber-footer {
    width: 100%;
    margin-top: auto;
    padding: 1.8rem 0 2rem;
    border-top: 1px solid rgba(220, 228, 242, 0.6);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    text-align: center;
}

.footer-rights {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
}

.rights-text {
    font-size: 0.99rem;
    color: var(--text-primary);
    font-weight: 200;
}

.studio-highlight {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 900;
}

.rights-subtext {
    font-family: var(--font-en);
    font-size: 0.68rem;
    font-weight: 200;
    color: var(--text-muted);
    letter-spacing: 1.2px;
}

/* --------------------------------------------------------------------------
   11. التجاوب الكامل مع كافة الشاشات (Responsive Media Queries)
   -------------------------------------------------------------------------- */

/* الشاشات الكبيرة (Laptops & Desktops) */
@media (max-width: 1200px) {
    .hero-container {
        gap: 2.5rem;
    }
    
    .hero-title {
        font-size: 3.4rem;
    }
}

/* أجهزة التابلت (Tablets: 768px - 992px) */
@media (max-width: 992px) {
    .page-wrapper {
        padding: 0 1.25rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3.5rem;
    }

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

    .hero-title {
        align-items: center;
    }

    .hero-description {
        margin: 0 auto;
    }

    .hero-visual-content {
        order: -1;
    }

    .robot-visual-wrapper {
        height: 400px;
        max-width: 380px;
    }

    .robot-image {
        max-height: 340px;
    }
    
    .hologram-rings {
        width: 340px;
        height: 340px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* الهواتف الذكية (Mobile Screens: <= 768px) */
@media (max-width: 768px) {
    /* إخفاء المؤشر المخصص في أجهزة اللمس */
    .cyber-cursor-dot,
    .cyber-cursor-ring {
        display: none !important;
    }

    .main-header {
        top: 0.75rem;
    }

    .header-container {
        padding: 0.6rem 1rem;
    }

    .brand-name-ar {
        font-size: 1.1rem;
    }

    .brand-name-en {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }

    .logo-squircle {
        width: 44px;
        height: 44px;
        padding: 7px;
    }

    /* إخفاء شريط الروابط وتحويله لقائمة منسدلة للجوال */
    .glass-navbar {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(25px);
        border: 1px solid var(--glass-border);
        border-radius: 16px;
        padding: 1.2rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        display: none;
        flex-direction: column;
    }

    .glass-navbar.mobile-active {
        display: flex;
        animation: fadeInSlide 0.3s var(--ease-cyber) forwards;
    }

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

    .nav-links {
        flex-direction: column;
        width: 100%;
        background: transparent;
        border: none;
        gap: 0.5rem;
    }

    .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 0.75rem 1rem;
        background: rgba(240, 244, 252, 0.5);
    }

    .mobile-toggle {
        display: flex;
    }

    /* تفاصيل الهيرو على الجوال */
    .hero-title {
        font-size: 2.3rem;
    }

    .hero-artist-name {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .robot-visual-wrapper {
        height: 320px;
        max-width: 300px;
    }

    .robot-image {
        max-height: 280px;
    }

    .hud-tag.top-right {
        top: 10px;
        right: -10px;
    }

    .hud-tag.bottom-left {
        bottom: 30px;
        left: -10px;
    }
}
/* --------------------------------------------------------------------------
   10. التنسيقات المشتركة للصفحات الداخلية (Page Main & Headers)
   -------------------------------------------------------------------------- */
.page-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0 4rem;
    width: 100%;
}

.page-main-title {
    font-size: clamp(2.4rem, 4.8vw, 3.8rem);
    line-height: 1.2;
    letter-spacing: -1px;
}

/* --------------------------------------------------------------------------
   11. صفحة الأعمال (Portfolio Page Styles)
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   11. معرض الأعمال الفاخر غير التقليدي (Cyber Luxury Portfolio & Lightbox)
   -------------------------------------------------------------------------- */
.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    font-family: var(--font-en);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.8);
}

.filter-btn.active {
    background: var(--text-primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(10, 12, 18, 0.2), 0 0 15px var(--cyber-cyan-glow);
}

.filter-btn.active .gallery-showcase-section {
    width: 100%;
    margin-top: 1.5rem;
}

.cyber-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
}

/* بطاقة اللوحة الفنية السايبر الفاخرة */
.artwork-cyber-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 20, 45, 0.04);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.artwork-cyber-card:hover {
    transform: translateY(-8px);
    border-color: rgba(78, 113, 255, 0.5);
    box-shadow: 0 25px 50px rgba(78, 113, 255, 0.12), 0 0 20px rgba(78, 113, 255, 0.05);
}

/* إطار الصورة والشاشة البصرية للبطاقة */
.artwork-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: #080a10;
}

.artwork-img-box {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.artwork-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.artwork-cyber-card:hover .artwork-image {
    transform: scale(1.06);
}

.artwork-grad-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(1, 2, 2, 0.35) 0%, transparent 50%, rgba(78, 113, 255, 0.3) 100%);
    pointer-events: none;
}

.artwork-scan-fx {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(78, 113, 255, 0.15) 50%, transparent 100%);
    background-size: 100% 200%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.artwork-cyber-card:hover .artwork-scan-fx {
    opacity: 1;
    animation: scanAnim 2.5s infinite linear;
}

@keyframes scanAnim {
    0% { background-position: 0 -100%; }
    100% { background-position: 0 200%; }
}

/* شارات الهيدر على الصورة */
.artwork-hud-top {
    position: absolute;
    top: 1.5rem;
    right: 1.85rem;
    left: 1.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    pointer-events: none;
}

.art-index-pill {
    font-family: var(--font-en);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 0.25rem 0.65rem;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    color: #4e71ff;
}

.art-render-pill {
    font-family: var(--font-en);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.65rem;
    background: rgba(252, 252, 252, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(78, 113, 255, 0.6);
}

/* زر التكبير والتشغيل التفاعلي المنبثق عند التحويم */
.artwork-expand-trigger {
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 16, 0.4);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.artwork-cyber-card:hover .artwork-expand-trigger {
    opacity: 1;
}

.expand-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 30%;
    background: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35), 0 0 15px rgba(78, 113, 255, 0.3);
    transform: scale(0.85);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.expand-icon-wrap svg {
    width: 20px;
    height: 20px;
}

.artwork-cyber-card:hover .expand-icon-wrap {
    transform: scale(1.05);
}

/* صندوق التفاصيل الفنية للبطاقة */
.artwork-details-box {
    padding: 1.5rem 1.6rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex: 1;
}

.artwork-title-wrap {
    display: flex;
    flex-direction: column;
}

.artwork-ar-title {
    font-size: 1.22rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.artwork-cyber-card:hover .artwork-ar-title {
    color: var(--cyber-cyan);
}

.artwork-narrative {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* مصفوفة المواصفات التقنية (الريندر والبرامج) */
.artwork-tech-matrix {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 0.85rem 1rem;
    background: rgba(240, 244, 252, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    margin-top: auto;
}

.tech-spec-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
}

.spec-name {
    color: var(--text-muted);
    font-weight: 600;
}

.spec-highlight.render-tag {
    font-family: var(--font-en);
    font-weight: 800;
    color: var(--cyber-cyan);
    font-size: 0.78rem;
}

.spec-tools-list {
    font-family: var(--font-en);
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.76rem;
}

/* زر الإجراء داخل البطاقة */
/* --------------------------------------------------------------------------
   11.1 نافذة عارض الصور والفيديو بالحجم الكامل (Clean Fullscreen Lightbox)
   -------------------------------------------------------------------------- */
#lightboxModal {
    position: fixed;
    inset: 0;
    background: rgba(5, 7, 12, 0.96);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    z-index: 99990;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem 1.75rem;
    box-sizing: border-box;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
}

#lightboxModal.hidden {
    display: none !important;
}

#lightboxModal.opacity-0 {
    opacity: 0;
    pointer-events: none;
}

.lightbox-top-bar {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    z-index: 20;
    padding-bottom: 0.5rem;
}

.lightbox-brand-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lightbox-title-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cyber-cyan);
    box-shadow: 0 0 12px var(--cyber-cyan);
    flex-shrink: 0;
}

#lightboxTitle {
    font-size: clamp(1.1rem, 2.5vw, 1.45rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.2px;
    margin: 0;
}

.lightbox-actions-cluster {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.lightbox-ctrl-btn {
    padding: 0.55rem 0.95rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-ctrl-btn svg {
    width: 16px;
    height: 16px;
}

.lightbox-ctrl-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
}

.lightbox-ctrl-btn.close-btn:hover {
    background: rgba(239, 68, 68, 0.85);
    border-color: #ef4444;
    color: #ffffff;
}

#lightboxImageContainer {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    margin: auto 0;
    position: relative;
    overflow: hidden;
}

#lightboxImg {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.85);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    cursor: zoom-in;
}

#lightboxImg.cursor-zoom-out {
    cursor: zoom-out;
}

#lightboxVideo {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.85);
    outline: none;
}

#lightboxImg.hidden,
#lightboxVideo.hidden,
#zoomBtn.hidden {
    display: none !important;
}
/* --------------------------------------------------------------------------
   12. بطاقة البروفايل والحصيلة الإبداعية (Profile Hero & Harvest Card)
   -------------------------------------------------------------------------- */
.profile-hero-section {
    width: 100%;
    padding: 1.5rem 0 2.5rem;
}

.profile-master-card {
    max-width: 960px;
    margin: 0 auto;
    background: var(--bg-glass);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 3rem 2.5rem 2.5rem;
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
    transition: var(--transition-medium);
}

.profile-master-card:hover {
    border-color: rgba(78, 113, 255, 0.4);
    box-shadow: 0 25px 60px rgba(78, 113, 255, 0.1);
}

.card-ambient-aura {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 300px;
    background: radial-gradient(circle, rgba(78, 113, 255, 0.2) 0%, rgba(121, 40, 202, 0.12) 50%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

.profile-header-split {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.profile-visual-side {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.profile-avatar-wrapper {
    position: relative;
    width: 170px;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-glow-ring {
    position: absolute;
    inset: -6px;
    border-radius: 26px;
    background: radial-gradient(circle, rgba(78, 113, 255, 0.4) 0%, rgba(121, 40, 202, 0.25) 50%, transparent 75%);
    filter: blur(12px);
    opacity: 0.85;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.profile-avatar-wrapper:hover .avatar-glow-ring {
    opacity: 1;
    transform: scale(1.05);
}

.avatar-squircle {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12), inset 0 0 0 1px rgba(78, 113, 255, 0.2);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s var(--ease-cyber);
}

.profile-avatar-wrapper:hover .avatar-img {
    transform: scale(1.06);
}

.avatar-glass-glare {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 22px 22px 0 0;
}

/* أقواس HUD التقنية حول الصورة */
.avatar-bracket {
    position: absolute;
    width: 10px;
    height: 10px;
    pointer-events: none;
    transition: all 0.3s var(--ease-cyber);
}

.avatar-bracket.top-left {
    top: -4px;
    left: -4px;
    border-top: 2px solid var(--cyber-cyan);
    border-left: 2px solid var(--cyber-cyan);
    border-top-left-radius: 4px;
}

.avatar-bracket.top-right {
    top: -4px;
    right: -4px;
    border-top: 2px solid var(--cyber-cyan);
    border-right: 2px solid var(--cyber-cyan);
    border-top-right-radius: 4px;
}

.avatar-bracket.bottom-left {
    bottom: -4px;
    left: -4px;
    border-bottom: 2px solid var(--cyber-cyan);
    border-left: 2px solid var(--cyber-cyan);
    border-bottom-left-radius: 4px;
}

.avatar-bracket.bottom-right {
    bottom: -4px;
    right: -4px;
    border-bottom: 2px solid var(--cyber-cyan);
    border-right: 2px solid var(--cyber-cyan);
    border-bottom-right-radius: 4px;
}

.profile-avatar-wrapper:hover .avatar-bracket.top-left {
    transform: translate(-3px, -3px);
    border-color: var(--cyber-gold);
}
.profile-avatar-wrapper:hover .avatar-bracket.top-right {
    transform: translate(3px, -3px);
    border-color: var(--cyber-gold);
}
.profile-avatar-wrapper:hover .avatar-bracket.bottom-left {
    transform: translate(-3px, 3px);
    border-color: var(--cyber-gold);
}
.profile-avatar-wrapper:hover .avatar-bracket.bottom-right {
    transform: translate(3px, 3px);
    border-color: var(--cyber-gold);
}

.profile-text-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
    flex: 1;
}

.profile-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem 0.95rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 0.75rem;
}

.status-live-dot {
    width: 7px;
    height: 7px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: statusPulse 2s infinite ease-in-out;
}

@keyframes statusPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.profile-artist-name {
    font-size: clamp(2rem, 2.5vw, 3.75rem);
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 0.35rem;
}

.profile-artist-role {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.6rem;
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 1.1rem;
}

.role-primary {
    color: var(--cyber-cyan);
    font-weight: 800;
}

/* شبكة مربعات الحصيلة المصغرة */
/* شبكة مربعات الحصيلة المصغرة المستوحاة من العُدة والعتاد */
.harvest-compact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    width: 100%;
}

.stat-pill {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.85rem 0.5rem 0.95rem;
    backgroundss: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(10, 20, 45, 0.03);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.stat-pill-glow {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    filter: blur(25px);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.stat-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.stat-pill:hover .stat-pill-glow {
    opacity: 1;
}

/* ثيمات وألوان الحصيلة المستوحاة من العُدة والعتاد */
.stat-pill.cyan-pill:hover {
    border-color: rgba(78, 113, 255, 0.55);
    box-shadow: 0 10px 28px rgba(78, 113, 255, 0.14);
}
.stat-pill.cyan-pill .stat-pill-glow {
    background: rgba(78, 113, 255, 0.25);
}
.stat-pill.cyan-pill .stat-pill-bar {
    background: linear-gradient(90deg, #0070f3, #4e71ff);
}

.stat-pill.gold-pill:hover {
    border-color: rgba(255, 170, 0, 0.55);
    box-shadow: 0 10px 28px rgba(255, 170, 0, 0.14);
}
.stat-pill.gold-pill .stat-pill-glow {
    background: rgba(255, 170, 0, 0.25);
}
.stat-pill.gold-pill .stat-pill-bar {
    background: linear-gradient(90deg, #ff7700, #ffaa00);
}

.stat-pill.violet-pill:hover {
    border-color: rgba(121, 40, 202, 0.55);
    box-shadow: 0 10px 28px rgba(121, 40, 202, 0.14);
}
.stat-pill.violet-pill .stat-pill-glow {
    background: rgba(121, 40, 202, 0.25);
}
.stat-pill.violet-pill .stat-pill-bar {
    background: linear-gradient(90deg, #7928ca, #ea77ff);
}

.stat-pill.electric-pill:hover {
    border-color: rgba(0, 242, 254, 0.55);
    box-shadow: 0 10px 28px rgba(0, 242, 254, 0.14);
}
.stat-pill.electric-pill .stat-pill-glow {
    background: rgba(0, 242, 254, 0.25);
}
.stat-pill.electric-pill .stat-pill-bar {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
}

.stat-pill-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 0.2rem;
    position: relative;
    z-index: 1;
}

.stat-pill-num {
    font-family: var(--font-en);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.3px;
    line-height: 1.15;
}

.stat-pill-label {
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--text-secondary);
    white-space: nowrap;
    letter-spacing: -0.2px;
    text-align: center;
    width: 100%;
}

.stat-pill-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0.35;
    transition: opacity 0.35s ease, height 0.35s ease;
}

.stat-pill:hover .stat-pill-bar {
    opacity: 1;
    height: 3.5px;
}

/* --------------------------------------------------------------------------
   12.1 قسم فصول التكوين والمحطات (Timeline & Milestones)
   -------------------------------------------------------------------------- */
.timeline-section {
    width: 100%;
    margin-top: 5rem;
    padding-top: 3.5rem;
    border-top: 1px solid var(--glass-border);
}

.timeline-list {
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
}

.timeline-item {
    position: relative;
    padding-bottom: 4.5rem;
    border-bottom: 1px solid rgba(220, 228, 242, 0.6);
}

.timeline-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.timeline-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 3.5rem;
}

.timeline-grid.reverse-grid {
    grid-template-columns: 0.85fr 1.15fr;
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.milestone-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-en);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--cyber-cyan);
}

.milestone-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.35;
}

.milestone-desc {
    font-size: 1rem;
    line-height: 2.1;
    color: var(--text-secondary);
    text-align: justify;
    text-justify: inter-word;
}

.milestone-meta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.25rem;
    background: rgba(240, 244, 252, 0.7);
    border: 1px solid rgba(220, 228, 242, 0.9);
    border-radius: 12px;
    font-family: var(--font-en);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--text-secondary);
}

.milestone-meta-box .milestone-meta-box.dark-meta-box {
    background: var(--dark-squircle);
    border-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.sculpted-numeral {
    font-family: var(--font-en);
    font-size: clamp(5.5rem, 11vw, 11rem);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -3px;
    -webkit-text-stroke: 1.5px rgba(10, 12, 18, 0.16);
    color: transparent;
    transition: all 0.6s var(--ease-cyber);
    display: block;
}

.timeline-item:hover .sculpted-numeral {
    -webkit-text-stroke: 1.5px rgba(78, 113, 255, 0.55);
    color: rgba(78, 113, 255, 0.03);
    transform: scale(1.03);
}

.sculpted-numeral.highlight-numeral {
    -webkit-text-stroke: 1.5px rgba(78, 113, 255, 0.4);
}

/* --------------------------------------------------------------------------
   12.2 قسم البرمجيات والمسار الإبداعي (Creative Tools Arsenal & Continuum)
   -------------------------------------------------------------------------- */
.tools-arsenal-section {
    width: 100%;
    margin-top: 5rem;
    padding-top: 3.5rem;
    border-top: 1px solid var(--glass-border);
}

.tools-section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tools-main-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.3;
}

/* شبكة بطاقات البرمجيات */
.tools-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.75rem;
}

.tool-card {
    position: relative;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 22px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.4rem;
    overflow: hidden;
    transition: var(--transition-medium);
    box-shadow: var(--glass-shadow);
}

.tool-card-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.tool-card:hover .tool-card-glow {
    opacity: 1;
}

/* ثيمات وألوان البطاقات */
.tool-card.c4d-theme:hover { border-color: rgba(78, 113, 255, 0.5); }
.tool-card.c4d-theme .tool-card-glow { background: rgba(78, 113, 255, 0.25); }
.tool-card.c4d-theme .tool-progress-bar { background: linear-gradient(90deg, #0070f3, #4e71ff); }

.tool-card.octane-theme:hover { border-color: rgba(255, 170, 0, 0.5); }
.tool-card.octane-theme .tool-card-glow { background: rgba(255, 170, 0, 0.25); }
.tool-card.octane-theme .tool-progress-bar { background: linear-gradient(90deg, #ff7700, #ffaa00); }

.tool-card.ps-theme:hover { border-color: rgba(49, 168, 255, 0.5); }
.tool-card.ps-theme .tool-card-glow { background: rgba(49, 168, 255, 0.25); }
.tool-card.ps-theme .tool-progress-bar { background: linear-gradient(90deg, #0055ff, #31a8ff); }

.tool-card.ai-theme:hover { border-color: rgba(255, 154, 0, 0.5); }
.tool-card.ai-theme .tool-card-glow { background: rgba(255, 154, 0, 0.25); }
.tool-card.ai-theme .tool-progress-bar { background: linear-gradient(90deg, #ff5e3a, #ff9a00); }

.tool-card.pr-theme:hover { border-color: rgba(153, 153, 255, 0.5); }
.tool-card.pr-theme .tool-card-glow { background: rgba(153, 153, 255, 0.25); }
.tool-card.pr-theme .tool-progress-bar { background: linear-gradient(90deg, #7928ca, #ea77ff); }

.tool-card.id-theme:hover { border-color: rgba(255, 51, 102, 0.5); }
.tool-card.id-theme .tool-card-glow { background: rgba(255, 51, 102, 0.25); }
.tool-card.id-theme .tool-progress-bar { background: linear-gradient(90deg, #d81b60, #ff3366); }

.tool-card.ue-theme:hover { border-color: rgba(0, 242, 254, 0.5); }
.tool-card.ue-theme .tool-card-glow { background: rgba(0, 242, 254, 0.25); }
.tool-card.ue-theme .tool-progress-bar { background: linear-gradient(90deg, #00c6ff, #0072ff); }

.tool-card.wp-theme:hover { border-color: rgba(0, 168, 232, 0.5); }
.tool-card.wp-theme .tool-card-glow { background: rgba(0, 168, 232, 0.25); }
.tool-card.wp-theme .tool-progress-bar { background: linear-gradient(90deg, #0073aa, #00c8ff); }

.tool-card.genai-theme:hover { border-color: rgba(121, 40, 202, 0.5); }
.tool-card.genai-theme .tool-card-glow { background: rgba(121, 40, 202, 0.25); }
.tool-card.genai-theme .tool-progress-bar { background: linear-gradient(90deg, #7928ca, #00f2fe); }

.tool-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.tool-icon-squircle {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.tool-card:hover .tool-icon-squircle {
    transform: scale(1.08) rotate(2deg);
}

.tool-svg {
    width: 100%;
    height: 100%;
    border-radius: 14px;
}

.tool-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.65rem;
    background: rgba(240, 244, 252, 0.8);
    border: 1px solid rgba(220, 228, 242, 0.9);
    border-radius: 999px;
    font-family: var(--font-en);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.badge-status-dot {
    width: 6px;
    height: 6px;
    background: var(--cyber-cyan);
    border-radius: 50%;
}

.tool-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    position: relative;
    z-index: 1;
}

.tool-name {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--text-primary);
}

.tool-arabic-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--cyber-cyan);
    letter-spacing: -0.2px;
}

.tool-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

.tool-footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(220, 228, 242, 0.6);
    position: relative;
    z-index: 1;
}

.tool-stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-en);
    font-size: 0.72rem;
    font-weight: 700;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--text-muted);
}

.stat-value {
    color: var(--text-primary);
}

.tool-progress-track {
    width: 100%;
    height: 6px;
    background: rgba(220, 228, 242, 0.7);
    border-radius: 999px;
    overflow: hidden;
}

.tool-progress-bar {
    height: 100%;
    border-radius: 999px;
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   12.3 قسم مسار الإنتاج: من الفكرة إلى الصورة (Production Pipeline - Elevated Compact Console)
   -------------------------------------------------------------------------- */
.pipeline-production-section {
    width: 100%;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--glass-border);
}

.pipeline-section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.pipeline-main-title {
    font-size: 2.3rem;
    font-weight: 900;
    line-height: 1.2;
}

/* لوحة التحكم الرئيسية المدمجة */
.pipeline-master-console {
    background: var(--bg-glass);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 1.25rem 1.5rem;
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
    transition: var(--transition-medium);
}

.pipeline-master-console:hover {
    border-color: rgba(78, 113, 255, 0.4);
    box-shadow: 0 20px 50px rgba(78, 113, 255, 0.08);
}

.console-ambient-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(78, 113, 255, 0.15) 0%, rgba(121, 40, 202, 0.08) 60%, transparent 80%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

/* الشبكة الداخلية */
.pipeline-console-grid {
    display: grid;
    grid-template-columns: 1.15fr 1.25fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 1.25rem;
}

/* شاشة العرض البصرية السينمائية المصغرة */
.pipeline-viewport-col {
    position: relative;
}

.pipeline-viewport-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 220px;
    border-radius: 16px;
    overflow: hidden;
    background: #080a10;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.viewport-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.25s ease, transform 0.5s var(--ease-cyber);
}

.pipeline-viewport-frame:hover .viewport-media-img {
    transform: scale(1.03);
}

.viewport-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 35%, rgba(0, 0, 0, 0.85) 100%);
    pointer-events: none;
}

.viewport-grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.viewport-top-badge {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.65rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    z-index: 2;
}

.viewport-live-dot {
    width: 5px;
    height: 5px;
    background: var(--cyber-gold);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--cyber-gold);
}

.viewport-badge-text {
    font-family: var(--font-en);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #ffffff;
}

.viewport-bottom-caption {
    position: absolute;
    bottom: 0.75rem;
    right: 0.85rem;
    left: 0.85rem;
    z-index: 2;
}

.caption-tag {
    font-family: var(--font-en);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 0.15rem;
    text-transform: uppercase;
}

.caption-title {
    font-size: 0.98rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
}

.console-bracket {
    position: absolute;
    width: 7px;
    height: 7px;
    pointer-events: none;
    z-index: 3;
}

.console-bracket.top-left {
    top: 5px;
    left: 5px;
    border-top: 1.5px solid rgba(78, 113, 255, 0.8);
    border-left: 1.5px solid rgba(78, 113, 255, 0.8);
}
.console-bracket.top-right {
    top: 5px;
    right: 5px;
    border-top: 1.5px solid rgba(78, 113, 255, 0.8);
    border-right: 1.5px solid rgba(78, 113, 255, 0.8);
}
.console-bracket.bottom-left {
    bottom: 5px;
    left: 5px;
    border-bottom: 1.5px solid rgba(78, 113, 255, 0.8);
    border-left: 1.5px solid rgba(78, 113, 255, 0.8);
}
.console-bracket.bottom-right {
    bottom: 5px;
    right: 5px;
    border-bottom: 1.5px solid rgba(78, 113, 255, 0.8);
    border-right: 1.5px solid rgba(78, 113, 255, 0.8);
}

/* تفاصيل المرحلة */
.pipeline-details-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stage-dossier-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.stage-sculpted-num {
    font-family: var(--font-en);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    color: var(--cyber-cyan);
    text-shadow: 0 0 15px var(--cyber-cyan-glow);
    letter-spacing: -1px;
}

.stage-identity-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.stage-ar-heading {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.25;
}

/* وسوم المواصفات المدمجة */
.stage-specs-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.35rem;
}

.spec-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.05rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: var(--transition-fast);
}

.spec-chip.spec-chip.gold-chip {
    border-right: 3.5px solid var(--cyber-gold);
    box-shadow: 0 4px 15px rgba(255, 170, 0, 0.08);
}

.spec-chip .chip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: rgba(255, 170, 0, 0.12);
    color: var(--cyber-gold);
    flex-shrink: 0;
}

.spec-chip .chip-icon svg {
    width: 14px;
    height: 14px;
}

.chip-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 700;
}

.chip-val {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 800;
}

/* مسار المحطات الشريطي المدمج بأسفل الكونسول */
.pipeline-stepper-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.65rem;
    background: rgba(240, 244, 252, 0.7);
    padding: 0.4rem;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
}

.pipeline-step-node {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 0.55rem 0.4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.pipeline-step-node:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
}

.pipeline-step-node.active {
    background: #ffffff;
    border-color: rgba(78, 113, 255, 0.5);
    box-shadow: 0 4px 15px rgba(78, 113, 255, 0.15);
    transform: translateY(-1px);
}

.node-num {
    font-family: var(--font-en);
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.pipeline-step-node.active .node-num {
    color: var(--cyber-cyan);
}

.node-name {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    white-space: nowrap;
}

.node-sub {
    font-family: var(--font-en);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.pipeline-step-node.active .node-sub {
    color: var(--cyber-cyan);
}

/* --------------------------------------------------------------------------
   13. صفحة تواصل معنا الفاخرة وقنوات الاتصال (Luxury Contact Page & Social Hub)
   -------------------------------------------------------------------------- */
.contact-section {
    width: 100%;
    padding: 0.5rem 0 3rem;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

/* هيدر صفحة التواصل مع الرقم المموه الكبير لتسلسل الصفحة */
.hero-sequence-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 0 2rem;
    overflow: visible;
    width: 100%;
    margin: 0 auto;
}

.sequence-backdrop-numeral {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-en);
    font-size: clamp(7rem, 20vw, 16rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -6px;
    -webkit-text-stroke: 1.5px rgba(10, 12, 18, 0.12);
    color: transparent;
    user-select: none;
    pointer-events: none;
    z-index: 1;
    opacity: 0.75;
    transition: all 0.6s var(--ease-cyber);
}

.hero-sequence-wrap:hover .sequence-backdrop-numeral {
    -webkit-text-stroke: 1.5px rgba(10, 12, 18, 0.22);
    color: transparent;
    transform: translate(-50%, -50%) scale(1.02);
}

.sequence-title {
    position: relative;
    z-index: 2;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 900;
    letter-spacing: -0.5px;
    margin: 0;
}

/* قسم شبكة قنوات التواصل المباشرة */
.social-channels-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.section-sub-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(220, 228, 242, 0.8);
}

.section-sub-title {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--text-primary);
}

/* شبكة بطاقات القنوات (أفقية منخفضة الارتفاع وفاخرة) */
.social-channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
}

.social-channel-card {
    position: relative;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 0.85rem 1.15rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    min-height: 72px;
}

.social-channel-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.social-card-inner {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* وهج الخلفية التفاعلي للبطاقة */
.social-card-glow {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.social-channel-card:hover .social-card-glow {
    opacity: 0.75;
}

/* صندوق الأيقونة الحقيقية المتقنة */
.social-icon-box {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(240, 244, 252, 0.9);
    color: var(--text-primary);
    border: 1px solid rgba(220, 228, 242, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
}

.social-icon-box svg {
    width: 22px;
    height: 22px;
    display: block;
    transition: transform 0.3s ease;
}

.social-icon-box i {
    font-size: 1.35rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-channel-card:hover .social-icon-box {
    transform: scale(1.08) rotate(2deg);
}

/* بيانات القناة والعناوين */
.social-card-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
    flex: 1;
    min-width: 0;
    text-align: right;
}

.social-title-ar {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -0.2px;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.social-handle-en {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* سهم الإجراء التفاعلي */
.social-arrow-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 9px;
    background: rgba(10, 12, 18, 0.03);
    color: var(--text-muted);
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.social-channel-card:hover .social-arrow-box {
    background: var(--text-primary);
    color: #ffffff;
    transform: translateX(-3px);
}

/* ثيمات المنصات الرسمية الحقيقية لكل بطاقة */
/* 1. WhatsApp */
.social-channel-card.whatsapp-theme .social-icon-box { background: rgba(37, 211, 102, 0.1); color: #25D366; border-color: rgba(37, 211, 102, 0.25); }
.social-channel-card.whatsapp-theme:hover { border-color: rgba(37, 211, 102, 0.55); }
.social-channel-card.whatsapp-theme .social-card-glow { background: rgba(37, 211, 102, 0.25); }
.social-channel-card.whatsapp-theme:hover .social-icon-box { background: #25D366; color: #ffffff; border-color: #25D366; box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4); }
.social-channel-card.whatsapp-theme:hover .social-title-ar { color: #1ebe5d; }

/* 2. E-Mail */
.social-channel-card.email-theme .social-icon-box { background: rgba(0, 180, 216, 0.1); color: #0077b6; border-color: rgba(0, 180, 216, 0.25); }
.social-channel-card.email-theme:hover { border-color: rgba(78, 113, 255, 0.6); }
.social-channel-card.email-theme .social-card-glow { background: rgba(78, 113, 255, 0.25); }
.social-channel-card.email-theme:hover .social-icon-box { background: linear-gradient(135deg, #0077b6, #00b4d8); color: #ffffff; border-color: #0077b6; box-shadow: 0 6px 18px rgba(0, 180, 216, 0.4); }
.social-channel-card.email-theme:hover .social-title-ar { color: #0088cc; }

/* 3. Instagram */
.social-channel-card.instagram-theme .social-icon-box { background: rgba(225, 48, 108, 0.1); color: #E1306C; border-color: rgba(225, 48, 108, 0.25); }
.social-channel-card.instagram-theme:hover { border-color: rgba(225, 48, 108, 0.55); }
.social-channel-card.instagram-theme .social-card-glow { background: rgba(225, 48, 108, 0.25); }
.social-channel-card.instagram-theme:hover .social-icon-box { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); color: #ffffff; border-color: transparent; box-shadow: 0 6px 18px rgba(225, 48, 108, 0.4); }
.social-channel-card.instagram-theme:hover .social-title-ar { color: #dc2743; }

/* 4. X (Twitter) */
.social-channel-card.x-theme .social-icon-box { background: rgba(15, 20, 25, 0.07); color: #0f1419; border-color: rgba(15, 20, 25, 0.2); }
.social-channel-card.x-theme:hover { border-color: rgba(10, 12, 18, 0.6); }
.social-channel-card.x-theme .social-card-glow { background: rgba(78, 113, 255, 0.15); }
.social-channel-card.x-theme:hover .social-icon-box { background: #000000; color: #ffffff; border-color: #000000; box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35); }
.social-channel-card.x-theme:hover .social-title-ar { color: #000000; }

/* 5. ArtStation */
.social-channel-card.artstation-theme .social-icon-box { background: rgba(19, 175, 240, 0.1); color: #13AFF0; border-color: rgba(19, 175, 240, 0.25); }
.social-channel-card.artstation-theme:hover { border-color: rgba(19, 175, 240, 0.6); }
.social-channel-card.artstation-theme .social-card-glow { background: rgba(19, 175, 240, 0.25); }
.social-channel-card.artstation-theme:hover .social-icon-box { background: #13AFF0; color: #ffffff; border-color: #13AFF0; box-shadow: 0 6px 18px rgba(19, 175, 240, 0.4); }
.social-channel-card.artstation-theme:hover .social-title-ar { color: #13AFF0; }

/* 6. Meta VR */
.social-channel-card.meta-theme .social-icon-box { background: rgba(0, 129, 251, 0.1); color: #0081FB; border-color: rgba(0, 129, 251, 0.25); }
.social-channel-card.meta-theme:hover { border-color: rgba(0, 129, 251, 0.55); }
.social-channel-card.meta-theme .social-card-glow { background: rgba(0, 129, 251, 0.25); }
.social-channel-card.meta-theme:hover .social-icon-box { background: linear-gradient(135deg, #0081FB, #0064E0); color: #ffffff; border-color: transparent; box-shadow: 0 6px 18px rgba(0, 129, 251, 0.4); }
.social-channel-card.meta-theme:hover .social-title-ar { color: #0081FB; }

/* 7. Pinterest */
.social-channel-card.pinterest-theme .social-icon-box { background: rgba(230, 0, 35, 0.1); color: #E60023; border-color: rgba(230, 0, 35, 0.25); }
.social-channel-card.pinterest-theme:hover { border-color: rgba(230, 0, 35, 0.55); }
.social-channel-card.pinterest-theme .social-card-glow { background: rgba(230, 0, 35, 0.25); }
.social-channel-card.pinterest-theme:hover .social-icon-box { background: #E60023; color: #ffffff; border-color: #E60023; box-shadow: 0 6px 18px rgba(230, 0, 35, 0.4); }
.social-channel-card.pinterest-theme:hover .social-title-ar { color: #E60023; }

/* 8. Snapchat */
.social-channel-card.snapchat-theme .social-icon-box { background: rgba(255, 252, 0, 0.25); color: #b89000; border-color: rgba(230, 200, 0, 0.4); }
.social-channel-card.snapchat-theme:hover { border-color: rgba(255, 210, 0, 0.85); }
.social-channel-card.snapchat-theme .social-card-glow { background: rgba(255, 252, 0, 0.35); }
.social-channel-card.snapchat-theme:hover .social-icon-box { background: #FFFC00; color: #000000; border-color: #FFFC00; box-shadow: 0 6px 18px rgba(255, 220, 0, 0.5); }
.social-channel-card.snapchat-theme:hover .social-title-ar { color: #b89000; }

/* --------------------------------------------------------------------------
   قسم استمارة إرسال تفاصيل المشروع والمعلومات الاستوديو
   -------------------------------------------------------------------------- */
.contact-inquiry-section {
    width: 100%;
    margin-top: 1rem;
}

/* عمود الاستمارة التفاعلية */
.cyber-form-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.4rem;
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   قسم استمارة إرسال تفاصيل المشروع (Full-Width Luxury Commission Console)
   -------------------------------------------------------------------------- */
.contact-inquiry-section {
    width: 100%;
    margin-top: 0.5rem;
}

.contact-form-full-wrap {
    width: 100%;
    max-width: 100%;
}

/* عمود الاستمارة التفاعلية بكامل العرض */
.cyber-form-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem 3rem;
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.cyber-form {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.label-required {
    color: #ef4444;
    font-size: 0.85rem;
}

.cyber-input {
    width: 100%;
    padding: 0.95rem 1.25rem;
    background: rgba(249, 250, 251, 0.9);
    border: 1.5px solid var(--glass-border);
    border-radius: 4px;
    font-size: 0.95rem;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition-fast);
    box-sizing: border-box;
}

.cyber-input:focus {
    border-color: var(--cyber-cyan);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(78, 113, 255, 0.15);
}

.cyber-textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.75;
}

.cyber-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 1.1rem 2.5rem;
    background: var(--text-primary);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.08rem;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(10, 12, 18, 0.2), 0 0 15px var(--cyber-cyan-glow);
    transition: var(--transition-medium);
    margin-top: 0.5rem;
    width: 100%;
}

.cyber-submit-btn:hover {
    transform: translateY(-2px);
    background: #000000;
    box-shadow: 0 15px 35px rgba(10, 12, 18, 0.3), 0 0 25px rgba(78, 113, 255, 0.35);
}

.form-success-msg {
    padding: 1.1rem 1.4rem;
    background: rgba(0, 230, 118, 0.12);
    border: 1.5px solid rgba(0, 230, 118, 0.45);
    border-radius: 14px;
    color: #007a3d;
    font-weight: 800;
    font-size: 1rem;
    text-align: center;
    animation: fadeInSlide 0.3s forwards;
}

.form-error-msg {
    padding: 1.1rem 1.4rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1.5px solid rgba(239, 68, 68, 0.4);
    border-radius: 14px;
    color: #dc2626;
    font-weight: 800;
    font-size: 0.95rem;
    text-align: center;
    margin-top: 1rem;
    animation: fadeInSlide 0.3s forwards;
}

/* --------------------------------------------------------------------------
   14. تجاوب الصفحات الداخلية (Responsive Media Queries For Subpages)
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .page-main-title {
        font-size: 3.2rem;
    }

    .social-channels-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .social-channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* تجاوب قسم المحطات */
    .timeline-grid,
    .timeline-grid.reverse-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-visual {
        order: -1;
    }

    .sculpted-numeral {
        font-size: clamp(4.5rem, 16vw, 7rem);
    }

    .timeline-list {
        gap: 3.5rem;
    }

    .timeline-item {
        padding-bottom: 3.5rem;
    }

    /* تجاوب شبكة الحصيلة وبطاقة البروفايل */
    .profile-header-split {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .profile-text-side {
        align-items: center;
        text-align: center;
    }

    .profile-artist-role {
        justify-content: center;
    }

    .harvest-compact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* تجاوب معرض الأعمال واللوحات */
    .cyber-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.6rem;
    }

    /* تجاوب مسار الإنتاج */
    .pipeline-console-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-main-title,
    .pipeline-main-title {
        font-size: 2.2rem;
    }

    .form-row-2col {
        grid-template-columns: 1fr;
    }

    .cyber-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .filter-btn {
        white-space: nowrap;
        padding: 0.5rem 0.9rem;
    }

    .cyber-form-card {
        padding: 1.5rem;
    }

    .milestone-title {
        font-size: 1.4rem;
    }

    .milestone-meta-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    /* تجاوب بطاقة البروفايل والحصيلة */
    .profile-master-card {
        padding: 2rem 1.25rem 1.75rem;
    }

    .profile-artist-name {
        font-size: 2.35rem;
    }

    .profile-avatar-wrapper {
        width: 130px;
        height: 130px;
    }

    /* تجاوب قسم البرمجيات */
    .tools-main-title {
        font-size: 1.85rem;
    }

    .tools-cards-grid {
        grid-template-columns: 1fr;
    }

    /* تجاوب مسار الإنتاج */
    .pipeline-master-console {
        padding: 1rem;
    }

    .pipeline-stepper-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .stage-sculpted-num {
        font-size: 1.8rem;
    }

    .stage-ar-heading {
        font-size: 1.15rem;
    }
}

@media (max-width: 580px) {
    .social-channels-grid {
        grid-template-columns: 1fr;
    }

    .harvest-compact-grid {
        grid-template-columns: 1fr;
    }

    .utc-clock-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.4rem 0.85rem;
        gap: 0.45rem;
        border-radius: 999px;
    }

    .utc-label {
        display: inline-block;
        font-size: 0.78rem;
        font-weight: 700;
        color: var(--text-primary);
        white-space: nowrap;
    }

    .utc-live-time {
        font-size: 0.78rem;
        font-weight: 700;
        color: var(--cyber-cyan);
        white-space: nowrap;
    }
}

@media (max-width: 420px) {
    .utc-clock-badge {
        padding: 0.35rem 0.7rem;
        gap: 0.4rem;
        max-width: 100%;
    }

    .utc-label {
        display: inline-block;
        font-size: 0.72rem;
        font-weight: 700;
        white-space: nowrap;
    }

    .utc-live-time {
        font-size: 0.72rem;
        letter-spacing: 0.3px;
        white-space: nowrap;
    }

    .utc-live-dot {
        width: 6px;
        height: 6px;
    }
}


