/* ═══════════════════════════════════════════════════════════════════════════
   SECTIONS.CSS - NEON AURA EDITION
   كل نص ملون. لا رمادي. لا أبيض افتراضي. إبهار فقط.
═══════════════════════════════════════════════════════════════════════════ */

/* --- UTILITY TEXT CLASSES --- */
.text-neon {
    color: var(--neon-blue);
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
}

.text-fire {
    color: var(--neon-pink);
    text-shadow: 0 0 15px rgba(255, 0, 122, 0.5);
}

.text-glow {
    background: var(--grad-hyper);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-dim-colored {
    color: var(--neon-cyan);
    opacity: 0.85;
    text-shadow: 0 0 8px rgba(0, 255, 213, 0.3);
}

/* --- HERO SUBTITLE --- */
.hero-subtitle-colored {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 900px;
    margin-bottom: 3.5rem;
    line-height: 1.8;
    text-align: center;
}

/* --- FOUNDER SECTION --- */
.founder-name {
    font-size: 2.2rem;
    background: linear-gradient(90deg, #ff007a 0%, #9d00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 25px rgba(255, 0, 122, 0.5));
}

.founder-tag {
    color: var(--neon-cyan);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 255, 213, 0.4);
}

.founder-card {
    width: 100%;
    max-width: 1000px;
    background: rgba(5, 5, 15, 0.4);
    border: 1px solid rgba(0, 242, 255, 0.1);
    padding: 80px 60px;
    border-radius: 4px;
    /* Shorter radius for tech look */
    text-align: center;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: visible;
    transition: all 0.5s var(--ease-luxury);
}

/* Tactical HUD Corners */
.founder-card::before,
.founder-card::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--neon-blue);
    pointer-events: none;
}

.founder-card::before {
    top: -5px;
    right: -5px;
    border-left: 0;
    border-bottom: 0;
}

.founder-card::after {
    bottom: -5px;
    left: -5px;
    border-right: 0;
    border-top: 0;
}

.founder-card .hud-corners-alt::before,
.founder-card .hud-corners-alt::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--neon-pink);
    pointer-events: none;
}

.founder-card .hud-corners-alt::before {
    top: -5px;
    left: -5px;
    border-right: 0;
    border-bottom: 0;
}

.founder-card .hud-corners-alt::after {
    bottom: -5px;
    right: -5px;
    border-left: 0;
    border-top: 0;
}

.founder-card:hover {
    box-shadow: 0 0 50px rgba(0, 242, 255, 0.1), inset 0 0 30px rgba(0, 242, 255, 0.05);
    border-color: rgba(0, 242, 255, 0.3);
}

.hud-coordinates {
    position: absolute;
    bottom: 20px;
    right: 30px;
    display: flex;
    gap: 20px;
    font-family: 'monospace';
    font-size: 0.65rem;
    color: var(--neon-blue);
    opacity: 0.4;
    letter-spacing: 1px;
}

.mission-box {
    border-right: 2px solid var(--neon-blue);
    padding-right: 40px;
    margin-top: 40px;
    position: relative;
    text-align: right;
}

.narrative-text {
    font-size: 1.35rem;
    line-height: 2;
    color: #e2e8f0;
    font-style: italic;
    font-weight: 300;
}

/* --- IGNITION BUTTON --- */
/* --- IGNITION BUTTON (Tactical Style) --- */
.ignition-btn {
    position: relative;
    padding: 24px 80px;
    background: transparent;
    color: #fff;
    font-weight: 900;
    font-size: 1.4rem;
    border: 1px solid var(--neon-cyan);
    border-radius: 2px;
    /* Sharp Tactical Look */
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    overflow: hidden;
    z-index: 10;
}

.ignition-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--grad-hyper);
    z-index: -1;
    transition: transform 0.5s;
    transform: scaleX(0);
    transform-origin: right;
}

.ignition-btn:hover {
    color: #000;
    box-shadow: 0 0 50px rgba(0, 242, 255, 0.6), 0 0 10px rgba(255, 255, 255, 0.8);
    border-color: transparent;
    transform: translateY(-2px);
    letter-spacing: 4px;
}

.ignition-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Corner Accents for Button */
.ignition-btn::after {
    content: "LAUNCH";
    position: absolute;
    bottom: 2px;
    right: 5px;
    font-size: 0.5rem;
    color: var(--neon-cyan);
    opacity: 0.7;
    letter-spacing: 1px;
    transition: 0.3s;
}

.ignition-btn:hover::after {
    color: #000;
    opacity: 1;
}

/* --- HUD TAG --- */
.hud-tag {
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.15), rgba(157, 0, 255, 0.15));
    border: 1px solid var(--neon-blue);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 8px rgba(0, 255, 213, 0.5);
    display: inline-block;
    margin-bottom: 15px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PACKAGES SECTION - عتاد الاشتراك (Tactical Armory)
   ═══════════════════════════════════════════════════════════════════════════ */

#packages {
    padding: 100px 0;
    background: radial-gradient(circle at 50% -20%, rgba(157, 0, 255, 0.05), transparent 70%);
}

.packages-grid {
    display: flex;
    overflow-x: auto;
    gap: 25px;
    padding: 20px 7.5% 60px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.packages-grid::-webkit-scrollbar {
    display: none;
}

.package-card {
    flex: 0 0 85vw;
    max-width: 450px;
    background: rgba(10, 10, 25, 0.8);
    border: 1px solid rgba(0, 242, 255, 0.05);
    border-radius: 4px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s var(--ease-luxury);
    backdrop-filter: blur(20px);
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
}

/* System ID for Packages */
.package-card::after {
    content: attr(data-sys);
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: monospace;
    font-size: 0.7rem;
    color: var(--neon-blue);
    opacity: 0.3;
}

/* Empire Package (The Pro Card) - Artistic Shift */
.package-card.pro-card {
    --theme-color: #ff007a;
    --theme-grad: linear-gradient(135deg, #ff007a, #9d00ff);
    border-color: rgba(255, 0, 122, 0.2);
    box-shadow: 0 0 60px rgba(157, 0, 255, 0.05);
}

.package-card:not(.pro-card) {
    --theme-color: #00f2ff;
    --theme-grad: linear-gradient(135deg, #00f2ff, #2563eb);
}

.package-card.is-active,
.package-card:hover {
    border-color: var(--theme-color);
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px);
}

.pro-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--theme-grad);
    color: #000;
    padding: 6px 15px;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 2px;
    border-radius: 2px;
    box-shadow: 0 0 20px var(--theme-color);
}

/* --- PACKAGE CARDS INTERNAL --- */
.pkg-title {
    font-size: 2.2rem;
    font-weight: 950;
    margin-bottom: 30px;
    background: var(--theme-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}

.pkg-features {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
    flex-grow: 1;
}

.pkg-features li {
    font-size: 1rem;
    margin-bottom: 20px;
    padding-right: 30px;
    position: relative;
    color: var(--theme-color);
    text-align: right;
    transition: 0.3s;
}

/* Sequence Color Shifting for features (Packages) - Real Spectrum */

/* Empire Package (The Pro Card) - Pink to Purple Spectrum */
.package-card.pro-card .pkg-features li:nth-child(1) {
    color: #ff007a;
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 0, 122, 0.4);
}

.package-card.pro-card .pkg-features li:nth-child(2) {
    color: #db00ff;
    opacity: 0.95;
}

.package-card.pro-card .pkg-features li:nth-child(3) {
    color: #aa00ff;
    opacity: 0.9;
}

.package-card.pro-card .pkg-features li:nth-child(4) {
    color: #7000ff;
    opacity: 0.85;
}

/* Standard Package - Cyan to Blue Spectrum */
.package-card:not(.pro-card) .pkg-features li:nth-child(1) {
    color: #00f2ff;
    opacity: 1;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.4);
}

.package-card:not(.pro-card) .pkg-features li:nth-child(2) {
    color: #00c3ff;
    opacity: 0.95;
}

.package-card:not(.pro-card) .pkg-features li:nth-child(3) {
    color: #0088ff;
    opacity: 0.9;
}


.pkg-features li::before {
    content: "◈";
    position: absolute;
    right: 0;
    color: var(--theme-color);
    text-shadow: 0 0 10px var(--theme-color);
}

/* DESKTOP ADJUSTMENTS - PACKAGES */
@media (min-width: 1024px) {
    .packages-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        max-width: 1000px;
        margin: 0 auto;
        overflow: visible;
        padding: 0;
    }

    .package-card {
        flex: auto;
        width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCTS SHOWCASE - الإبهار الحقيقي
═══════════════════════════════════════════════════════════════════════════ */

.section-subtitle {
    font-size: 1.1rem;
    color: var(--neon-cyan);
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(0, 255, 213, 0.3);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCTS SHOWCASE - الترسانة التقنية (Mobile-First Carousel)
   ═══════════════════════════════════════════════════════════════════════════ */

.products-carousel-container {
    width: 100vw;
    margin-right: calc(-50vw + 50%);
    margin-left: calc(-50vw + 50%);
    padding: 20px 0 60px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-carousel-container::-webkit-scrollbar {
    display: none;
}

.products-grid {
    display: flex;
    gap: 20px;
    padding: 0 7.5%;
    /* Peek-a-boo effect */
    width: max-content;
}

.product-card {
    width: 85vw;
    max-width: 380px;
    background: rgba(5, 5, 15, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    /* Sharper Tech Look */
    padding: 60px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.6s var(--ease-luxury);
    backdrop-filter: blur(30px);
    scroll-snap-align: center;
    flex-shrink: 0;
}

/* --- Artistic Palettes & Gradient Injection --- */

/* 1. StreamSync: Cosmic Cyan / Deep Azure */
.product-card[data-color="cyan"] {
    --theme-color: #00f2ff;
    --theme-grad: linear-gradient(135deg, #00f2ff, #2563eb);
}

/* 2. Qanati Player: Royal Indigo / Neon Purple */
.product-card[data-color="blue"] {
    --theme-color: #9d00ff;
    --theme-grad: linear-gradient(135deg, #a855f7, #6366f1);
}

/* 3. Digital Themes: Solar Orange / Ember Pink */
.product-card[data-color="purple"] {
    --theme-color: #ff007a;
    --theme-grad: linear-gradient(135deg, #ff007a, #f97316);
}

/* 4. Custom Solutions: Emerald Mint / Radiant Gold */
.product-card[data-color="gold"] {
    --theme-color: #fbbf24;
    --theme-grad: linear-gradient(135deg, #fbbf24, #10b981);
}

/* System ID (SYS-01, etc) */
.product-card::after {
    content: attr(data-sys);
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: 'monospace';
    font-size: 0.7rem;
    color: var(--neon-blue);
    opacity: 0.3;
    letter-spacing: 2px;
}

.hud-corners::before,
.hud-corners::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border: 1.5px solid rgba(0, 242, 255, 0.2);
    pointer-events: none;
    transition: 0.4s;
}

.hud-corners::before {
    top: 0;
    left: 0;
    border-right: 0;
    border-bottom: 0;
}

.hud-corners::after {
    bottom: 0;
    right: 0;
    border-left: 0;
    border-top: 0;
}

/* Active/Hover states - Full Artistic Explosion */
.product-card.is-active,
.product-card:hover {
    border-color: var(--theme-color);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px) scale(1.02);
}

.product-card.is-active .hud-corners::before,
.product-card.is-active .hud-corners::after,
.product-card:hover .hud-corners::before,
.product-card:hover .hud-corners::after,
.package-card.is-active .hud-corners::before,
.package-card.is-active .hud-corners::after,
.package-card:hover .hud-corners::before,
.package-card:hover .hud-corners::after {
    border-color: var(--theme-color);
    width: 25px;
    height: 25px;
}

.card-scanner {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 242, 255, 0.05) 45%,
            rgba(0, 242, 255, 0.2) 50%,
            rgba(0, 242, 255, 0.05) 55%,
            transparent 100%);
    pointer-events: none;
}

.product-card.is-active .card-scanner,
.product-card:hover .card-scanner,
.package-card.is-active .card-scanner,
.package-card:hover .card-scanner {
    animation: tech-scan 3s linear infinite;
}

@keyframes tech-scan {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

.product-logo-frame {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    overflow: hidden;
}

.product-card.is-active .product-logo-frame,
.product-card:hover .product-logo-frame {
    transform: rotate(5deg) scale(1.1);
    border-color: var(--neon-blue);
}

.product-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card Heading & Subtitle Artistic Style */
.product-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 8px;
    background: var(--theme-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.product-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--theme-color);
    letter-spacing: 3px;
    margin-bottom: 30px;
    font-weight: 800;
    opacity: 0.9;
}

.product-desc {
    font-size: 0.95rem;
    color: var(--theme-color);
    line-height: 1.8;
    margin-bottom: 40px;
    min-height: 3.6em;
    opacity: 0.65;
    /* Subdued tech tint */
    font-weight: 300;
}

/* Feature List Artistic Shading (No more white/uniformity) */
.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.product-features li {
    font-size: 0.9rem;
    margin-bottom: 12px;
    padding-right: 25px;
    position: relative;
    text-align: right;
    transition: 0.3s;
}

/* Product Features Spectrum - Theme Specific */

/* Cyan Theme */
.product-card[data-color="cyan"] .product-features li:nth-child(1) {
    color: #00f2ff;
    opacity: 1;
}

.product-card[data-color="cyan"] .product-features li:nth-child(2) {
    color: #00c8ff;
    opacity: 0.9;
}

.product-card[data-color="cyan"] .product-features li:nth-child(3) {
    color: #0099ff;
    opacity: 0.8;
}

/* Blue/Purple Theme */
.product-card[data-color="blue"] .product-features li:nth-child(1) {
    color: #a855f7;
    opacity: 1;
}

.product-card[data-color="blue"] .product-features li:nth-child(2) {
    color: #8b5cf6;
    opacity: 0.9;
}

.product-card[data-color="blue"] .product-features li:nth-child(3) {
    color: #6366f1;
    opacity: 0.8;
}

/* Gold Theme */
.product-card[data-color="gold"] .product-features li:nth-child(1) {
    color: #fbbf24;
    opacity: 1;
}

.product-card[data-color="gold"] .product-features li:nth-child(2) {
    color: #f59e0b;
    opacity: 0.9;
}

.product-card[data-color="gold"] .product-features li:nth-child(3) {
    color: #d97706;
    opacity: 0.8;
}

/* Pink Theme */
.product-card[data-color="pink"] .product-features li:nth-child(1) {
    color: #f472b6;
    opacity: 1;
}

.product-card[data-color="pink"] .product-features li:nth-child(2) {
    color: #db2777;
    opacity: 0.9;
}

.product-card[data-color="pink"] .product-features li:nth-child(3) {
    color: #be185d;
    opacity: 0.8;
}

.product-features li::before {
    content: "◢";
    position: absolute;
    right: 0;
    color: var(--theme-color);
    font-size: 0.7rem;
    top: 2px;
}

/* Button & CTA UI Layer - Tactical Command Interface */
.product-cta {
    display: block;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--theme-color);
    text-decoration: none;
    border-radius: 2px;
    /* Sharper, more technical */
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: all 0.5s var(--ease-luxury);
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Subtle corner indicators for the action button */
.product-cta::before,
.product-cta::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border: 1px solid var(--theme-color);
    opacity: 0;
    transition: 0.3s;
}

.product-cta::before {
    top: 0;
    left: 0;
    border-right: 0;
    border-bottom: 0;
}

.product-cta::after {
    bottom: 0;
    right: 0;
    border-left: 0;
    border-top: 0;
}

.product-card.is-active .product-cta,
.product-card:hover .product-cta {
    background: var(--theme-grad);
    border-color: transparent;
    color: #000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--theme-color);
    transform: translateY(-2px);
    letter-spacing: 3.5px;
    /* Expansion feel */
}

.product-card.is-active .product-cta::before,
.product-card.is-active .product-cta::after,
.product-card:hover .product-cta::before,
.product-card:hover .product-cta::after {
    opacity: 1;
    width: 10px;
    height: 10px;
}

.product-card.is-active .product-cta,
.product-card:hover .product-cta {
    background: var(--theme-grad);
    border-color: transparent;
    color: #000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.featured-cta {
    border-color: #ffd700;
    color: #ffd700;
}

.featured-cta:hover {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border-color: transparent;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TIMELINE ROADMAP - المسار الهولوغرافي 2026
═══════════════════════════════════════════════════════════════════════════ */

.timeline {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 0;
}

/* The Central Beam */
.timeline-line {
    position: absolute;
    right: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(50%);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.1);
    overflow: hidden;
}

.timeline-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, transparent, var(--neon-cyan), transparent);
    animation: beam-flow 3s linear infinite;
}

@keyframes beam-flow {
    0% {
        top: -30%;
    }

    100% {
        top: 130%;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The Glowing Node */
.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #000;
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
    transition: 0.5s;
}

.timeline-item:hover .timeline-dot {
    background: var(--neon-cyan);
    box-shadow: 0 0 40px var(--neon-cyan);
    transform: translateX(-50%) scale(1.5);
}

/* Holographic Cards */
.timeline-card {
    width: 42%;
    padding: 30px;
    background: rgba(10, 10, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    backdrop-filter: blur(15px);
    transition: 0.5s var(--ease-luxury);
    position: relative;
}

/* Colors based on data-hue */
.timeline-card[data-hue="pink"] {
    --card-color: #ff007a;
}

.timeline-card[data-hue="purple"] {
    --card-color: #9d00ff;
}

.timeline-card[data-hue="cyan"] {
    --card-color: #00f2ff;
}

.timeline-card[data-hue="blue"] {
    --card-color: #2563eb;
}

.timeline-card[data-hue="gold"] {
    --card-color: #fbbf24;
}

.timeline-card[data-hue="ruby"] {
    --card-color: #ef4444;
}

.timeline-card:hover {
    border-color: var(--card-color, var(--neon-cyan));
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 0 20px var(--card-color);
    transform: translateY(-5px);
}


.timeline-quarter {
    display: inline-block;
    background: linear-gradient(135deg, #ff4d00, #ff9100);
    /* Fire Gradient */
    border: 1px solid #ffbe0b;
    padding: 6px 18px;
    border-radius: 4px;
    /* Tactical squared corners */
    font-size: 0.85rem;
    color: #000;
    font-weight: 900;
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(255, 68, 0, 0.6);
    /* Fire Glow */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--card-color);
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* Alternating Layout */
.timeline-item:nth-child(odd) .timeline-card {
    margin-right: auto;
    text-align: right;
    border-right: 3px solid var(--card-color, var(--neon-cyan));
}

.timeline-item:nth-child(even) .timeline-card {
    margin-left: auto;
    text-align: left;
    border-left: 3px solid var(--card-color, var(--neon-cyan));
}


.timeline-desc {
    color: #b0c4de;
    /* LightSteelBlue - Metallic Tech Look */
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    filter: none;
    /* Remove previous saturation filters */
    opacity: 1;
}

.timeline-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: inherit;
}

.timeline-tags span {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-color);
    padding: 6px 14px;
    border-radius: 2px;
    /* Tech borders */
    font-size: 0.7rem;
    color: var(--card-color);
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .timeline-line {
        right: 20px;
    }

    .timeline-item {
        justify-content: flex-start !important;
    }

    .timeline-item .timeline-card {
        width: 85%;
        margin-right: 50px !important;
        margin-left: 0 !important;
        text-align: right !important;
    }

    .timeline-dot {
        right: 20px;
        transform: translateX(50%);
    }
}

/* DESKTOP FIX - ترسانة كاملة أمام العين */
@media (min-width: 1024px) {
    .products-carousel-container {
        width: 100%;
        margin: 0;
        overflow: visible;
        scroll-snap-type: none;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0;
    }

    .product-card {
        width: 100%;
        max-width: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CORPORATE TRUST & SECURITY - طبقة الموثوقية
   ═══════════════════════════════════════════════════════════════════════════ */

.trust-badge-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid rgba(0, 242, 255, 0.05);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--neon-cyan);
    font-size: 0.85rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    opacity: 1;
    text-shadow: 0 0 15px var(--neon-cyan);
}

.trust-badge i {
    font-size: 1.2rem;
}

.protocol-container {
    text-align: right;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-right: 3px solid var(--neon-blue);
    margin: 15px 0;
}

.protocol-intro {
    color: var(--neon-cyan);
    font-weight: 700;
    margin-bottom: 15px;
}

.protocol-list {
    list-style: none;
    padding: 0;
}

.protocol-list li {
    margin-bottom: 12px;
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.protocol-list li strong {
    color: var(--neon-blue);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ELITE PRESTIGE ENHANCEMENTS - لمسات الهيبة
   ═══════════════════════════════════════════════════════════════════════════ */

/* 1. Live Connectivity Indicator */
.connected-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.6rem;
    font-weight: 900;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    opacity: 0.8;
}

.blink-dot {
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* 2. Digital Signature Styling */
.signature-container {
    margin-top: 40px;
    text-align: right;
    width: 200px;
    margin-right: -40px;
    /* Aligned with mission-box */
}

.signature-svg {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 242, 255, 0.5));
}

.signature-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

.reveal.active .signature-path {
    animation: draw-signature 3s forwards ease-in-out;
}

@keyframes draw-signature {
    to {
        stroke-dashoffset: 0;
    }
}