/* ============================================
   THE SIXTY ONE — Ultra Modern Design
   Premium dark theme with smooth animations
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --dark: #0a0a0a;
    --dark-2: #111111;
    --dark-3: #1a1a1a;
    --gray-dark: #222222;
    --gray: #666666;
    --gray-light: #999999;
    --white: #ffffff;
    --accent: #006039;
    --accent-dim: rgba(0, 96, 57, 0.2);
    --accent-blue: #007ff5;
    --saga-color: #ff6b35;
    --eubiq-color: #3b82f6;
    --gler-color: #a855f7;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 48px;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* --- Cursor Glow --- */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 96, 57, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.cursor-glow.active {
    opacity: 1;
}

/* --- Floating Particles --- */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.15;
    animation: float 25s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.15;
    }
    90% {
        opacity: 0.15;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.2px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
}

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

.btn-primary {
    background: var(--accent);
    color: var(--black);
}

.btn-primary:hover {
    background: #007847;
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 96, 57, 0.4);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    font-size: 13px;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0, 96, 57, 0.1);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 12px;
}

.btn-full {
    width: 100%;
}

/* --- Typography --- */
.text-accent {
    color: var(--accent);
}

.section-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent);
}

.section-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -3px;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-light);
    max-width: 520px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-eyebrow::before {
    display: none;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 40px;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo-img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform var(--transition);
}

.nav-logo-video {
    height: 56px;
    width: auto;
    transition: transform var(--transition);
    filter: brightness(1.1);
    border-radius: 10px;
    overflow: hidden;
}

.nav-logo:hover .nav-logo-img,
.nav-logo:hover .nav-logo-video {
    transform: scale(1.05);
}

.logo-text {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-light);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
    .nav { padding: 0 20px; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-actions .btn { display: none; }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(32px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-link {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-cta {
    margin-top: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.35s;
}

.mobile-menu.active .mobile-cta {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.9) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(0, 96, 57, 0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 60%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to top, var(--black), transparent);
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 120px 40px 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(0, 96, 57, 0.15);
    border: 1px solid rgba(0, 96, 57, 0.4);
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(56px, 12vw, 140px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -6px;
    margin-bottom: 28px;
}

.hero-title .title-line {
    display: block;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.hero-title .title-line:nth-child(1) {
    animation-delay: 0.4s;
}

.hero-title .title-line:nth-child(2) {
    animation-delay: 0.6s;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-light);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-subtitle strong {
    color: var(--white);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease 1s forwards;
}

/* Hero Brand Logos */
.hero-brands {
    margin-top: 60px;
    opacity: 0;
    animation: fadeUp 0.8s ease 1.2s forwards;
}

.hero-brands-label {
    display: block;
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.hero-brands-logos {
    display: flex;
    justify-content: center;
    gap: 32px;
    align-items: center;
}

.hero-brand-logo {
    opacity: 0.5;
    transition: all var(--transition);
    padding: 12px;
}

.hero-brand-logo img {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
}

.hero-brand-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

.hero-brand-logo[data-brand="saga"]:hover {
    filter: none;
}

.hero-brand-logo[data-brand="saga"]:hover img {
    filter: invert(56%) sepia(75%) saturate(1543%) hue-rotate(344deg) brightness(99%) contrast(103%);
}

.hero-brand-logo[data-brand="gler"]:hover img {
    filter: invert(55%) sepia(52%) saturate(5165%) hue-rotate(251deg) brightness(101%) contrast(94%);
}

.hero-brand-logo[data-brand="eubiq"]:hover img {
    filter: invert(41%) sepia(98%) saturate(1432%) hue-rotate(202deg) brightness(101%) contrast(94%);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease 1.4s forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(8px); }
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease infinite;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item {
    padding: 24px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -3px;
    color: var(--white);
    display: inline;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--gray-light);
    margin-top: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item:nth-child(2)::after {
        display: none;
    }
    .stat-number {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-item::after {
        display: none;
    }
}

/* ============================================
   BRANDS
   ============================================ */
.brands {
    padding: 140px 0;
    background: var(--black);
}

.brand-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.brand-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition);
}

.brand-card:hover {
    transform: translateY(-12px);
}

.brand-card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 0;
}

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

.saga-glow {
    background: linear-gradient(135deg, var(--saga-color) 0%, transparent 60%);
}

.eubiq-glow {
    background: linear-gradient(135deg, var(--eubiq-color) 0%, transparent 60%);
}

.gler-glow {
    background: linear-gradient(135deg, var(--gler-color) 0%, transparent 60%);
}

.brand-card-inner {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
    border-radius: var(--radius-lg);
    padding: 36px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
}

.brand-card:hover .brand-card-inner {
    border-color: rgba(255, 255, 255, 0.12);
}

/* Featured Brand Badge */
.featured-brand {
    position: relative;
}

.brand-featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: linear-gradient(135deg, var(--gler-color) 0%, #7c3aed 100%);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.3);
}

.brand-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.brand-logo {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
}

.brand-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--gray);
}

/* Brand Video Preview */
.brand-video-preview {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--dark-3);
}

.brand-video-preview video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: all var(--transition);
}

.brand-card:hover .brand-video-preview video {
    opacity: 1;
    transform: scale(1.03);
}

.video-play-btn {
    display: none;
}

.brand-card:hover .video-play-btn {
    display: none;
}

.brand-name {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}

[data-brand="saga"] .brand-name { color: var(--saga-color); }
[data-brand="eubiq"] .brand-name { color: var(--eubiq-color); }
[data-brand="gler"] .brand-name { color: var(--gler-color); }

.brand-tagline {
    font-size: 13px;
    color: var(--gray-light);
    margin-bottom: 10px;
}

.brand-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.brand-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.spec {
    text-align: center;
}

.spec-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.spec-label {
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brand-price-tag {
    font-size: 14px;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.brand-price-tag strong {
    color: var(--accent);
    font-size: 18px;
}

.brand-actions {
    display: flex;
    gap: 12px;
}

.brand-actions .btn {
    flex: 1;
}

@media (max-width: 1024px) {
    .brand-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ============================================
   VIDEO SHOWCASE
   ============================================ */
.video-showcase {
    padding: 100px 0;
    background: var(--dark);
}

.video-showcase-header {
    text-align: center;
    margin-bottom: 48px;
}

.video-player-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--dark-2);
    aspect-ratio: 16 / 9;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay-play {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: all var(--transition);
}

.video-overlay-play.hidden {
    opacity: 0;
    visibility: hidden;
}

.play-icon-big {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 16px;
    transition: all var(--transition);
    backdrop-filter: blur(12px);
}

.video-overlay-play:hover .play-icon-big {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--black);
    transform: scale(1.1);
}

.video-overlay-play span {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================================
   ARABIC REELS SHOWCASE
   ============================================ */
.arabic-reels-section {
    padding: 100px 0;
    background: var(--dark-2);
}

.reels-container {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.reel-item {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    text-align: center;
}

.reel-video-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--dark-3);
    aspect-ratio: 9 / 16;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.reel-item:hover .reel-video-wrap {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.1);
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Reel Sound Button */
.reel-sound-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 10;
}

.reel-sound-btn:hover {
    background: rgba(212, 175, 55, 0.8);
    border-color: var(--accent);
    transform: scale(1.1);
}

.reel-sound-btn .sound-on {
    display: none;
}

.reel-sound-btn .sound-off {
    display: block;
}

.reel-item.playing .reel-sound-btn .sound-on {
    display: block;
}

.reel-item.playing .reel-sound-btn .sound-off {
    display: none;
}

.reel-item.playing .reel-sound-btn {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--black);
}

.reel-item.playing .reel-video-wrap {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(212, 175, 55, 0.3);
}

.reel-title {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .reels-container {
        gap: 20px;
    }
    
    .reel-item {
        min-width: 240px;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .arabic-reels-section {
        padding: 60px 0;
    }
    
    .reels-container {
        flex-direction: column;
        align-items: center;
    }
    
    .reel-item {
        width: 100%;
        max-width: 320px;
    }
    
    .reel-title {
        font-size: 16px;
        margin-top: 16px;
    }
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
    padding: 140px 0;
    background: var(--black);
}

.product-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.product-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: var(--gray-light);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

.tab-logo {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(0.6);
    transition: filter var(--transition);
}

.product-tab:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.product-tab:hover .tab-logo {
    filter: brightness(0) invert(1);
}

.product-tab.active {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.product-tab.active .tab-logo {
    filter: brightness(0);
}

.product-panel {
    display: none;
}

.product-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-card.featured {
    border-color: rgba(255, 255, 255, 0.15);
}

.product-card.featured:hover {
    border-color: rgba(255, 255, 255, 0.25);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    background: var(--accent);
    color: var(--black);
}

.product-visual {
    margin-bottom: 20px;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--dark-3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-video,
.product-img,
.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.9;
    transition: all var(--transition);
}

.product-card:hover .product-video,
.product-card:hover .product-img,
.product-card:hover .product-image {
    opacity: 1;
    transform: scale(1.05);
}

.product-visual-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.product-icon {
    width: 80px;
    height: 80px;
    color: var(--gray-light);
    transition: color var(--transition);
}

.product-card:hover .product-icon {
    color: var(--accent);
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.product-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.product-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--gray);
    margin-bottom: 16px;
    width: fit-content;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
}

.product-shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    margin-top: auto;
    transition: all var(--transition);
}

.product-shop-btn:hover {
    gap: 10px;
}

.products-cta {
    text-align: center;
    margin-top: 48px;
}

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

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   TECHNOLOGY
   ============================================ */
.technology {
    padding: 140px 0;
    background: var(--dark);
}

.tech-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tech-video-mini {
    position: relative;
    margin-top: 32px;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

.tech-video-mini video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tech Video Sound Button */
.tech-sound-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 10;
}

.tech-sound-btn:hover {
    background: rgba(212, 175, 55, 0.8);
    border-color: var(--accent);
    transform: scale(1.1);
}

.tech-sound-btn .sound-on {
    display: none;
}

.tech-sound-btn .sound-off {
    display: block;
}

.tech-video-mini.playing .tech-sound-btn .sound-on {
    display: block;
}

.tech-video-mini.playing .tech-sound-btn .sound-off {
    display: none;
}

.tech-video-mini.playing .tech-sound-btn {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--black);
}

.tech-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tech-step {
    display: flex;
    gap: 24px;
    padding: 28px;
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.tech-step:hover {
    border-color: var(--accent);
    transform: translateX(8px);
}

.step-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--gray-dark);
    letter-spacing: -2px;
    line-height: 1;
    transition: color var(--transition);
}

.tech-step:hover .step-number {
    color: var(--accent);
}

.step-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .tech-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* ============================================
   FEATURES
   ============================================ */
.features {
    padding: 140px 0;
    background: var(--black);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 40px 32px;
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 96, 57, 0.15);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    color: var(--gray-light);
    transition: color var(--transition);
}

.feature-card:hover .feature-icon {
    color: var(--accent);
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

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

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   APPLICATIONS
   ============================================ */
.applications {
    padding: 140px 0;
    background: var(--dark);
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 20px;
}

.app-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--dark-2);
    background-size: cover;
    background-position: center;
    transition: all var(--transition);
}

.app-card:hover {
    transform: scale(1.02);
}

.app-card-lg {
    grid-column: span 1;
    grid-row: span 2;
}

.app-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
}

.app-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
}

.app-icon {
    width: 36px;
    height: 36px;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

.app-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.app-card p {
    font-size: 13px;
    color: var(--gray-light);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .app-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .app-card-lg {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 250px;
    }
    .app-card {
        min-height: 180px;
    }
}

@media (max-width: 600px) {
    .app-grid {
        grid-template-columns: 1fr;
    }
    .app-card-lg {
        grid-column: span 1;
    }
}

/* ============================================
   PARTNERS MARQUEE
   ============================================ */
.partners {
    padding: 60px 0;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.partners-marquee {
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
}

.partners-track {
    display: flex;
    gap: 80px;
    animation: marquee 30s linear infinite;
}

.partner-logo {
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity var(--transition);
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-25%);
    }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 140px 0;
    background: var(--black);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: var(--gray-light);
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-label {
    display: block;
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-item a {
    font-size: 16px;
    color: var(--white);
}

.contact-item a:hover {
    color: var(--accent);
}

/* Quick Links */
.contact-quick-links {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-quick-links span {
    font-size: 13px;
    color: var(--gray);
}

.quick-link {
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition);
}

.quick-link.saga:hover {
    border-color: var(--saga-color);
    color: var(--saga-color);
    background: rgba(255, 107, 53, 0.1);
}

.quick-link.gler:hover {
    border-color: var(--gler-color);
    color: var(--gler-color);
    background: rgba(168, 85, 247, 0.1);
}

.quick-link.eubiq:hover {
    border-color: var(--eubiq-color);
    color: var(--eubiq-color);
    background: rgba(59, 130, 246, 0.1);
}

.contact-form-wrap {
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 15px;
    font-family: inherit;
    transition: all var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray);
}

.contact-form select {
    appearance: none;
    cursor: pointer;
    color: var(--gray);
}

.contact-form select:valid {
    color: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 96, 57, 0.15);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    text-align: center;
    color: var(--gray);
    font-size: 13px;
    margin-top: 16px;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 40px;
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-logo {
    display: block;
    margin-bottom: 20px;
}

.footer-logo-video {
    height: 64px;
    width: auto;
    filter: brightness(1.1);
    border-radius: 12px;
    overflow: hidden;
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    color: var(--gray-light);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--black);
}

.footer-col h5 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 12px;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray);
}

.made-with-love {
    display: flex;
    align-items: center;
    gap: 4px;
}

.made-with-love .heart-icon {
    color: #ff4757;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.made-with-love a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity var(--transition);
}

.made-with-love a:hover {
    opacity: 0.8;
}

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

.footer-badges {
    display: flex;
    gap: 12px;
}

.footer-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    background: rgba(0, 96, 57, 0.15);
    color: var(--accent);
    border: 1px solid rgba(0, 96, 57, 0.3);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-brand {
        grid-column: span 1;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 1;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.5;
        transform: scaleY(0.8);
    }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal */
.reveal-stagger {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-stagger.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Selection --- */
::selection {
    background: var(--accent);
    color: var(--black);
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray);
}

/* --- Focus States --- */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* --- Loading State --- */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}
