﻿
        /* ============================================
                   RESET & BASE VARIABLES
                ============================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* الألوان الأساسية (Dark Mode) */
            --primary: #131464;
            --secondary: #12135e;
            --gold: #FFDFA1;
            --gold-rgb: 255, 178, 67;
            --text-light: #d0d5e0;
            --text-muted: #b5bdd6;
            --glass-bg: rgba(27, 28, 122, 0.45);
            --glass-border: rgba(255, 178, 67, 0.08);
            --body-bg: #131464;
            --text-main: #ffffff;
            --shadow-color: rgba(0, 0, 0, 0.3);
            --card-bg: rgba(27, 28, 122, 0.45);
        }

        [data-theme="light"] {
            --primary: #f8f9fc;
            --secondary: #eef0f5;
            --body-bg: #f4f6fa;
            --text-main: #131464;
            --text-light: #2d3361;
            --text-muted: #4a507a;
            --glass-bg: rgba(255, 255, 255, 0.7);
            --glass-border: rgba(19, 20, 100, 0.1);
            --shadow-color: rgba(0, 0, 0, 0.08);
            --card-bg: rgba(255, 255, 255, 0.7);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Cairo', sans-serif;
            background-color: var(--body-bg);
            color: var(--text-main);
            line-height: 1.7;
            overflow-x: hidden;
            min-height: 100vh;
            transition: background-color 0.3s ease, color 0.3s ease;
            cursor: none;
            /* لإخفاء الماوس العادي */
        }

        /* ============================================
                   CUSTOM CURSOR
                ============================================ */
        .cursor-dot {
            width: 20px;
            height: 20px;
            background: rgba(255, 215, 0, 0.4);
            border: 2px solid var(--gold);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 99999;
            transform: translate(-50%, -50%);
            transition: width 0.15s ease, height 0.15s ease, background 0.15s ease;
            backdrop-filter: blur(4px);
            box-shadow: 0 0 30px rgba(var(--gold-rgb), 0.2);
        }

        .cursor-dot.active {
            width: 50px;
            height: 50px;
            background: rgba(255, 215, 0, 0.15);
            border-width: 3px;
        }

        /* ============================================
                   PRELOADER
                ============================================ */
        .preloader {
            position: fixed;
            inset: 0;
            z-index: 999999;
            background: var(--primary);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .preloader .loader-logo {
            width: 200px;
            height: 200px;
            border-radius: 28px;
            animation: morph 1.5s infinite alternate ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 80px rgba(var(--gold-rgb), 0.3);
            overflow: hidden;
            background: transparent;
        }

        .preloader .loader-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        @keyframes morph {
            0% {
                border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
                transform: rotate(0deg);
            }
            100% {
                border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
                transform: rotate(30deg);
            }
        }

        .preloader p {
            margin-top: 25px;
            color: var(--gold);
            font-weight: 700;
            font-size: 1.2rem;
            letter-spacing: 3px;
            animation: pulse-text 1.2s infinite;
        }

        @keyframes pulse-text {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.3;
            }
        }

        /* ============================================
                   GENERAL STYLES
                ============================================ */
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 90px 0;
            position: relative;
            z-index: 1;
        }

        .section-title {
            font-size: 2.6rem;
            font-weight: 900;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            color: var(--text-main);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            right: 0;
            width: 80px;
            height: 4px;
            background: var(--gold);
            border-radius: 4px;
        }

        .section-title span {
            color: var(--gold);
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 600px;
            margin-bottom: 40px;
        }

        .text-center {
            text-align: center;
        }

        .text-center .section-title::after {
            right: 50%;
            transform: translateX(50%);
        }
        .text-center .section-subtitle {
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            display: inline-block;
            padding: 14px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-family: 'Cairo', sans-serif;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--gold), #e6b84c);
            z-index: -1;
            transition: opacity 0.3s ease;
            opacity: 1;
        }

        .btn-primary {
            color: var(--primary);
            box-shadow: 0 4px 20px rgba(var(--gold-rgb), 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 12px 40px rgba(var(--gold-rgb), 0.5);
        }

        .btn-outline {
            background: transparent;
            color: var(--gold);
            border: 2px solid var(--gold);
        }

        .btn-outline::before {
            display: none;
        }

        .btn-outline:hover {
            background: var(--gold);
            color: var(--primary);
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(var(--gold-rgb), 0.2);
        }

        /* ============================================
                   HEADER
                ============================================ */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            background: rgba(var(--body-bg), 0.82);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
            padding: 12px 0;
            transition: all 0.3s ease;
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .brand-group {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .logo img {
            height: 64px;
            width: auto;
            display: block;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .brand-name {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--text-main);
        }

        .brand-tagline {
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
        }

        .nav-links a {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-light);
            transition: color 0.3s ease;
            position: relative;
            padding: 4px 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            right: 0;
            width: 0;
            height: 2.5px;
            background: var(--gold);
            transition: width 0.3s ease;
            border-radius: 4px;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--text-main);
        }
        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links .btn-nav {
            padding: 10px 30px;
            border-radius: 50px;
            background: var(--gold);
            color: var(--primary);
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 4px 15px rgba(var(--gold-rgb), 0.25);
        }

        .nav-links .btn-nav:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(var(--gold-rgb), 0.4);
        }
        .nav-links .btn-nav::after {
            display: none;
        }

        /* أدوات التحكم (Dark Mode + Font Size) */
        .header-controls {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .header-controls button {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass-border);
            color: var(--text-light);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .header-controls button:hover {
            background: var(--gold);
            color: var(--primary);
            transform: translateY(-2px);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
            z-index: 1000;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--text-main);
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }

        /* ============================================
                   PARTICLES BACKGROUND
                ============================================ */
        #particles-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            opacity: 0.25;
        }

        /* ============================================
                   HERO
                ============================================ */
        .hero {
            padding: 90px 0 0;
            height: calc(100vh - 90px);
            min-height: 630px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: var(--primary);
        }

        .hero-video {
            position: absolute;
            top: 90px;
            left: 5%;
            width: 46%;
            height: calc(100% - 90px);
            object-fit: cover;
            z-index: -2;
            filter: brightness(1.06) contrast(1.06) saturate(1.03);
            border: 4px solid var(--primary);
            border-radius: 32px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
            overflow: hidden;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: transparent;
            z-index: 1;
        }

        .hero-bg-digital {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            opacity: 0.65;
            background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.22), transparent 14%),
                radial-gradient(circle at 85% 15%, rgba(255, 215, 0, 0.18), transparent 12%),
                linear-gradient(135deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
            background-size: 260px 260px, 200px 200px, 100% 100%;
            animation: shiftGrid 18s linear infinite;
        }

        .hero-bg-digital::before,
        .hero-bg-digital::after {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .hero-bg-digital::before {
            background: repeating-linear-gradient(90deg, rgba(255,255,255,0.12) 0px, rgba(255,255,255,0.12) 2px, transparent 2px, transparent 16px);
            opacity: 0.28;
            animation: slideLines 12s linear infinite;
        }

        .hero-bg-digital::after {
            background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.18), transparent 18%),
                radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.1), transparent 14%);
            opacity: 0.30;
            filter: none;
            animation: floatGlow 18s ease-in-out infinite alternate;
        }

        @keyframes shiftGrid {
            0% { background-position: 0 0, 0 0, 0 0; }
            100% { background-position: 220px 220px, -160px 160px, 0 0; }
        }

        @keyframes slideLines {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        @keyframes floatGlow {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(24px, -18px) scale(1.02); }
        }

        /* Simple right-half background for readable text */
        .hero-right-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(180deg, rgba(19,20,100,0.02), rgba(19,20,100,0.04));
            z-index: 0;
            pointer-events: none;
        }

        [data-theme="light"] .hero-overlay {
            /* Light theme: overlay only on left half */
            background: linear-gradient(90deg, rgba(248,249,252,0.95) 0%, rgba(248,249,252,0.95) 50%, rgba(248,249,252,0.00) 50%, rgba(248,249,252,0.00) 100%);
        }

        .hero .container {
            /* let the hero itself be the positioned ancestor so we can place content relative to viewport halves */
            position: static;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Place text content on the right half (fixed to viewport's right) so video stays on left */
        .hero-content {
            grid-column: 2;
            z-index: 2;
            position: absolute;
            top: 44%;
            right: 6%;
            transform: translateY(-44%);
            width: 44%;
            max-width: 640px;
            padding: 8px 12px;
            text-align: right;
        }

        .hero-content h1 {
            font-size: 4.6rem;
            font-weight: 900;
            line-height: 1.12;
            margin-bottom: 20px;
            color: var(--text-main);
        }

        /* Responsive: mobile -> stack, video becomes full-width background */
        @media (max-width: 980px) {
            .hero-video { width: 100%; left: 0; z-index: -2; }
            .hero-right-bg { display: none; }
            .hero-content {
                position: static;
                transform: none;
                width: auto;
                grid-column: 1;
                padding: 34px 30px;
                background: rgba(4, 11, 55, 0.82);
                border-radius: 36px;
                box-shadow: 0 45px 110px rgba(0, 0, 0, 0.28);
                border: 1px solid rgba(255, 255, 255, 0.08);
            }
            .hero-content h1 {
                color: #ffffff !important;
                text-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
            }
            .hero-content h2 {
                color: #ffffff !important;
                text-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
            }
            .hero-content p {
                color: #ffffff !important;
                text-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
            }
            .hero-content .btn {
                color: #131464;
                background: #ffffff;
            }
            .hero { min-height: 620px; }
            .cursor-dot {
                display: none !important;
            }
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 20px;
            color: var(--text-main);
        }

        .hero-content h1 span {
            color: var(--gold);
            position: relative;
        }

        .hero-content h1 span::after {
            content: '';
            position: absolute;
            bottom: 6px;
            right: 0;
            width: 100%;
            height: 10px;
            background: rgba(var(--gold-rgb), 0.15);
            border-radius: 4px;
        }

        .typing-wrapper {
            font-size: 1.5rem;
            color: var(--gold);
            font-weight: 700;
            min-height: 3.5rem;
        }

        .typing-wrapper .typed-cursor {
            color: var(--gold);
        }

        .typing-standalone {
            margin: 0 auto 40px;
            max-width: 560px;
            padding: 12px 18px;
            border: 1px solid rgba(var(--gold-rgb), 0.18);
            background: rgba(255, 255, 255, 0.04);
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .hero-content p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 520px;
            margin-bottom: 35px;
            line-height: 1.9;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-image img {
            max-width: 100%;
            border-radius: 28px;
            box-shadow: 0 40px 80px var(--shadow-color);
            border: 1px solid var(--glass-border);
            transition: all 0.5s ease;
            background: #1b1c7a;
        }

        .hero-image img:hover {
            transform: scale(1.02) translateY(-4px);
            border-color: var(--gold);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(var(--gold-rgb), 0.10);
            border: 1px solid rgba(var(--gold-rgb), 0.18);
            padding: 8px 24px;
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--gold);
            margin-bottom: 25px;
            backdrop-filter: blur(4px);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            color: var(--text-muted);
            font-size: 1.8rem;
            animation: bounce 2s infinite;
            cursor: pointer;
            opacity: 0.6;
        }

        @keyframes bounce {
            0%,
            100% {
                transform: translateX(-50%) translateY(0);
            }
            50% {
                transform: translateX(-50%) translateY(-15px);
            }
        }

        /* ============================================
                   BREADCRUMBS
                ============================================ */
        .breadcrumb {
            padding: 10px 0 0;
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .breadcrumb a {
            color: var(--gold);
            transition: color 0.3s;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: var(--text-muted);
        }

        /* ============================================
                   SECTIONS (About, Why, Stats, Services, etc.)
                ============================================ */
        .about {
            background: var(--secondary);
        }
        .why-us {
            background: var(--primary);
        }
        .stats {
            background: var(--primary);
            padding: 60px 0;
            border-top: 1px solid var(--glass-border);
            border-bottom: 1px solid var(--glass-border);
        }
        .services {
            background: var(--secondary);
        }
        .portfolio {
            background: var(--primary);
        }
        .testimonials {
            background: var(--secondary);
        }
        .pricing {
            background: var(--primary);
        }
        .faq {
            background: var(--secondary);
        }
        .contact {
            background: var(--primary);
            padding: 70px 0 40px;
            border-top: 1px solid var(--glass-border);
        }
        .timeline-section {
            background: var(--secondary);
        }
        .clients-section {
            background: var(--primary);
        }

        /* ============================================
                   ABOUT
                ============================================ */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image img {
            width: 100%;
            border-radius: 28px;
            box-shadow: 0 20px 60px var(--shadow-color);
            border: 1px solid var(--glass-border);
        }

        .about-content h2 {
            font-size: 2.4rem;
            font-weight: 900;
            margin-bottom: 20px;
            color: var(--text-main);
        }
        .about-content h2 span {
            color: var(--gold);
        }
        .about-content p {
            color: var(--text-light);
            margin-bottom: 18px;
            font-size: 1.05rem;
            line-height: 1.9;
        }

        .about-highlight {
            background: rgba(var(--gold-rgb), 0.06);
            border-right: 5px solid var(--gold);
            padding: 20px 25px;
            border-radius: 0 14px 14px 0;
            margin: 25px 0;
        }
        .about-highlight p {
            margin-bottom: 0;
            font-weight: 600;
        }

        /* ============================================
                   WHY US (4 Cards)
                ============================================ */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 10px;
        }

        .why-card {
            background: var(--card-bg);
            backdrop-filter: blur(8px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 35px 25px 30px;
            text-align: center;
            transition: all 0.4s ease;
        }

        .why-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: var(--gold);
            box-shadow: 0 20px 50px var(--shadow-color);
        }

        .why-card .why-icon {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            background: rgba(var(--gold-rgb), 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--gold);
            margin: 0 auto 18px;
            transition: all 0.3s ease;
        }

        .why-card:hover .why-icon {
            background: rgba(var(--gold-rgb), 0.18);
            transform: rotate(-4deg) scale(1.05);
        }

        .why-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 10px;
        }
        .why-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* ============================================
                   STATS
                ============================================ */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 3rem;
            font-weight: 900;
            color: var(--gold);
            margin-bottom: 5px;
        }
        .stat-item p {
            color: var(--text-light);
            font-weight: 600;
        }

        /* ============================================
                   SERVICES (3 Columns)
                ============================================ */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: 10px;
        }

        .service-card {
            background: var(--card-bg);
            backdrop-filter: blur(8px);
            padding: 32px 28px 28px;
            border-radius: 24px;
            border: 1px solid var(--glass-border);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            perspective: 800px;
        }

        .service-card .tilt-inner {
            transform-style: preserve-3d;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }
        .service-card:hover {
            transform: translateY(-8px);
            border-color: var(--gold);
            box-shadow: 0 15px 50px var(--shadow-color);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: rgba(var(--gold-rgb), 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7rem;
            color: var(--gold);
            margin-bottom: 18px;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            background: rgba(var(--gold-rgb), 0.18);
            transform: scale(1.05) rotate(-4deg);
        }

        .service-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-main);
        }
        .service-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ============================================
                   PORTFOLIO
                ============================================ */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: 25px;
        }

        .portfolio-card {
            background: var(--card-bg);
            backdrop-filter: blur(8px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 32px 28px;
            transition: all 0.4s ease;
        }

        .portfolio-card:hover {
            transform: translateY(-8px);
            border-color: var(--gold);
            box-shadow: 0 20px 50px var(--shadow-color);
        }

        .portfolio-badge {
            display: inline-block;
            padding: 8px 18px;
            border-radius: 50px;
            background: rgba(var(--gold-rgb), 0.10);
            color: var(--gold);
            font-weight: 700;
            font-size: 0.85rem;
            margin-bottom: 18px;
        }
        .portfolio-card h3 {
            color: var(--text-main);
            margin-bottom: 14px;
            font-size: 1.3rem;
        }
        .portfolio-card p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 18px;
        }
        .portfolio-result {
            color: var(--gold);
            font-weight: 700;
            font-size: 0.95rem;
        }

        /* ============================================
                   TESTIMONIALS
                ============================================ */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: 25px;
        }

        .testimonial-card {
            background: var(--card-bg);
            backdrop-filter: blur(8px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 32px 28px;
            transition: all 0.4s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-6px);
            border-color: var(--gold);
        }

        .testimonial-card p {
            font-size: 1rem;
            line-height: 1.9;
            margin-bottom: 18px;
            color: var(--text-light);
        }
        .client-name {
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 2px;
        }
        .client-role {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* ============================================
                   CLIENTS LOGOS (Press & Partners)
                ============================================ */
        .clients-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 40px;
            margin-top: 30px;
            padding: 20px;
            background: var(--card-bg);
            border-radius: 24px;
            border: 1px solid var(--glass-border);
        }

        .clients-grid .client-item {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-muted);
            opacity: 0.7;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .clients-grid .client-item i {
            color: var(--gold);
            font-size: 1.5rem;
        }

        .clients-grid .client-item:hover {
            opacity: 1;
            color: var(--gold);
            transform: scale(1.05);
        }

        /* ============================================
                   TIMELINE
                ============================================ */
        .timeline-grid {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 30px;
            position: relative;
            padding-right: 30px;
        }

        .timeline-grid::before {
            content: '';
            position: absolute;
            right: 8px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--gold);
            opacity: 0.3;
        }

        .timeline-item {
            display: flex;
            align-items: center;
            gap: 25px;
            background: var(--card-bg);
            padding: 20px 25px;
            border-radius: 16px;
            border: 1px solid var(--glass-border);
            transition: all 0.3s ease;
            position: relative;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            right: -26px;
            width: 14px;
            height: 14px;
            background: var(--gold);
            border-radius: 50%;
            border: 3px solid var(--primary);
            box-shadow: 0 0 20px rgba(var(--gold-rgb), 0.3);
        }

        .timeline-item:hover {
            border-color: var(--gold);
            transform: translateX(-5px);
        }

        .timeline-year {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--gold);
            min-width: 80px;
        }

        .timeline-content h4 {
            font-size: 1.1rem;
            color: var(--text-main);
            margin-bottom: 4px;
        }
        .timeline-content p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* ============================================
                   PRICING
                ============================================ */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 10px;
        }

        .pricing-card {
            background: var(--card-bg);
            backdrop-filter: blur(8px);
            border-radius: 24px;
            padding: 40px 30px 35px;
            border: 1px solid var(--glass-border);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            border-color: var(--gold);
            box-shadow: 0 20px 60px var(--shadow-color);
        }

        .pricing-card.popular {
            border-color: var(--gold);
            background: linear-gradient(160deg, rgba(27, 28, 122, 0.92), rgba(40, 42, 160, 0.92));
            color: var(--text-main);
        }

        [data-theme="light"] .pricing-card.popular {
            border-color: var(--gold) !important;
            background: linear-gradient(160deg, rgba(27, 28, 122, 0.92), rgba(40, 42, 160, 0.92)) !important;
            color: var(--text-main) !important;
        }

        .pricing-card.popular,
        .pricing-card.popular * {
            color: var(--text-main) !important;
        }

        .pricing-card.popular .pricing-price small,
        .pricing-card.popular .pricing-features li,
        .pricing-card.popular .pricing-notes li,
        .pricing-card.popular .pricing-card .btn,
        .pricing-card.popular .pricing-features li i {
            color: var(--text-main) !important;
        }

        .pricing-card.popular .pricing-features li {
            border-bottom-color: rgba(255, 255, 255, 0.08) !important;
        }

        .pricing-card.popular::before {
            content: 'الأكثر طلباً';
            position: absolute;
            top: -12px;
            right: 50%;
            transform: translateX(50%);
            background: var(--gold);
            color: var(--primary);
            font-size: 0.75rem;
            font-weight: 800;
            padding: 4px 24px;
            border-radius: 50px;
        }

        .pricing-name {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 4px;
        }

        .pricing-price {
            font-size: 2.6rem;
            font-weight: 900;
            color: var(--gold);
            margin: 10px 0 4px;
        }

        .pricing-price small {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-muted);
        }

        .pricing-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .pricing-features {
            flex: 1;
            margin: 10px 0 25px;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-light);
            font-size: 0.95rem;
            padding: 7px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }
        .pricing-features li:last-child {
            border-bottom: none;
        }
        .pricing-features li i {
            color: var(--gold);
            font-size: 0.8rem;
            min-width: 18px;
        }

        .pricing-card .btn {
            width: 100%;
            text-align: center;
            margin-top: auto;
        }

        .pricing-notes {
            margin-top: 40px;
            background: rgba(var(--gold-rgb), 0.04);
            border-radius: 20px;
            padding: 25px 30px;
            border: 1px solid var(--glass-border);
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px 30px;
        }

        .pricing-notes li {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-light);
            font-size: 0.95rem;
        }
        .pricing-notes li i {
            color: var(--gold);
            font-size: 0.9rem;
            min-width: 20px;
        }

        /* ============================================
                   ROI CALCULATOR
                ============================================ */
        .roi-calculator {
            margin-top: 40px;
            background: var(--card-bg);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 35px 30px;
            text-align: center;
        }

        .roi-calculator h3 {
            color: var(--gold);
            margin-bottom: 10px;
        }

        .roi-calculator .roi-input-group {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin: 20px 0;
        }

        .roi-calculator input {
            padding: 14px 20px;
            border-radius: 14px;
            border: 1px solid var(--glass-border);
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-main);
            font-size: 1.1rem;
            width: 250px;
            font-family: 'Cairo', sans-serif;
            text-align: center;
        }

        .roi-calculator input:focus {
            outline: none;
            border-color: var(--gold);
        }

        .roi-calculator .roi-result {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--gold);
            margin-top: 15px;
            min-height: 4rem;
        }

        /* ============================================
                   FAQ
                ============================================ */
        .faq-accordion {
            margin-top: 30px;
            display: grid;
            gap: 16px;
        }

        .faq-accordion-item {
            background: var(--card-bg);
            backdrop-filter: blur(8px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-accordion-item:hover {
            border-color: rgba(var(--gold-rgb), 0.15);
        }

        .faq-accordion-header {
            width: 100%;
            background: transparent;
            border: none;
            padding: 22px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            cursor: pointer;
            font-weight: 700;
            font-family: 'Cairo', sans-serif;
        }

        .faq-accordion-header h4 {
            margin: 0;
            font-size: 1.05rem;
            color: var(--gold);
        }

        .faq-accordion-header i {
            color: var(--gold);
            font-size: 1.1rem;
            transition: transform 0.3s ease;
        }

        .faq-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            padding: 0 28px;
        }

        .faq-accordion-content p {
            margin: 0 0 22px;
            color: var(--text-light);
            line-height: 1.8;
        }

        .faq-accordion-item.open .faq-accordion-header i {
            transform: rotate(45deg);
        }
        .faq-accordion-item.open .faq-accordion-content {
            max-height: 260px;
            padding: 0 28px 22px;
        }

        /* ============================================
                   CONTACT
                ============================================ */
        .contact-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .contact-info h2 {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 10px;
            color: var(--text-main);
        }
        .contact-info h2 span {
            color: var(--gold);
        }
        .contact-info p {
            color: var(--text-muted);
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .contact-details a {
            display: flex;
            align-items: center;
            gap: 14px;
            color: var(--text-light);
            font-size: 1rem;
            transition: color 0.3s ease;
        }
        .contact-details a:hover {
            color: var(--gold);
        }
        .contact-details i {
            width: 24px;
            color: var(--gold);
            font-size: 1.1rem;
        }

        .contact-social {
            display: flex;
            gap: 14px;
            margin-top: 20px;
        }

        .contact-social a {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--card-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 1.2rem;
            transition: all 0.3s ease;
            border: 1px solid var(--glass-border);
        }

        .contact-social a img {
            max-width: 24px;
            max-height: 24px;
            width: auto;
            height: auto;
            display: block;
        }

        .contact-social a.x-logo-link img {
            filter: none;
        }

        [data-theme="light"] .contact-social a.x-logo-link img {
            content: url('images/twitter-logo-02.png');
        }

        .contact-social a:hover {
            background: var(--gold);
            color: var(--primary);
            transform: translateY(-5px);
            border-color: var(--gold);
            box-shadow: 0 8px 30px rgba(var(--gold-rgb), 0.3);
        }

        .contact-map {
            background: var(--card-bg);
            backdrop-filter: blur(8px);
            border-radius: 24px;
            padding: 30px 25px;
            border: 1px solid var(--glass-border);
            text-align: center;
        }

        .contact-map i {
            font-size: 2.8rem;
            color: var(--gold);
            margin-bottom: 12px;
            display: block;
        }
        .contact-map h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 6px;
        }
        .contact-map p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
        }
        .contact-map img {
            width: 100%;
            border-radius: 16px;
            margin-top: 16px;
            border: 1px solid var(--glass-border);
        }

        .contact-form {
            margin-top: 25px;
            padding: 28px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
        }

        .contact-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-main);
        }

        .contact-form input,
        .contact-form textarea,
        .contact-form select {
            width: 100%;
            padding: 14px 18px;
            border-radius: 14px;
            border: 1px solid var(--glass-border);
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-main);
            margin-bottom: 16px;
            font-family: 'Cairo', sans-serif;
            resize: vertical;
            transition: border 0.3s ease;
        }

        .contact-form input:focus,
        .contact-form textarea:focus,
        .contact-form select:focus {
            outline: none;
            border-color: var(--gold);
        }
        .contact-form textarea {
            min-height: 130px;
        }
        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: rgba(255, 255, 255, 0.45);
        }

        .phone-support-room {
            background: rgba(19, 20, 100, 0.12);
            border: 1px solid rgba(255, 178, 67, 0.18);
            border-radius: 24px;
            padding: 24px;
            margin-bottom: 24px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }
        .phone-support-room h3 {
            margin: 0 0 10px;
            font-size: 1.4rem;
            color: var(--text-main);
        }
        .phone-support-room p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 18px;
        }
        .phone-support-room .btn {
            padding: 12px 28px;
            font-size: 0.95rem;
        }

        /* ============================================
                   NEWSLETTER
                ============================================ */
        .newsletter-box {
            margin-top: 30px;
            padding: 25px;
            background: rgba(var(--gold-rgb), 0.04);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
        }

        .newsletter-box input {
            flex: 1;
            min-width: 200px;
            padding: 14px 18px;
            border-radius: 14px;
            border: 1px solid var(--glass-border);
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-main);
            font-family: 'Cairo', sans-serif;
        }

        .newsletter-box input:focus {
            outline: none;
            border-color: var(--gold);
        }

        .newsletter-box .btn {
            padding: 14px 30px;
        }

        /* ============================================
                   FLOATING BUTTONS (WhatsApp, Chat, Share, Back to Top)
                ============================================ */
        .floating-btn {
            position: fixed;
            z-index: 10000;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: #fff;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            backdrop-filter: blur(4px);
        }

        .floating-btn:hover {
            transform: translateY(-5px) scale(1.05);
        }

        .whatsapp-float {
            bottom: 24px;
            right: 24px;
            background: #25D366;
        }

        .chat-float {
            bottom: 90px;
            right: 24px;
            background: var(--gold);
            color: var(--primary);
        }

        .share-float {
            bottom: 156px;
            right: 24px;
            background: var(--card-bg);
            color: var(--text-main);
            border: 1px solid var(--glass-border);
        }

        .back-to-top {
            bottom: 24px;
            left: 24px;
            background: var(--gold);
            color: var(--primary);
            display: none;
        }

        .back-to-top.visible {
            display: flex;
        }

        /* ============================================
                   EXIT-INTENT POPUP
                ============================================ */
        .pdf-preview {
            position: fixed;
            inset: 0;
            z-index: 999999;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .pdf-preview.active {
            display: flex;
        }

        .pdf-preview-content {
            background: var(--primary);
            border: 2px solid var(--gold);
            border-radius: 28px;
            padding: 30px;
            max-width: 950px;
            width: 100%;
            max-height: 90vh;
            overflow: hidden;
            position: relative;
            animation: slideUp 0.5s ease;
        }

        .pdf-preview-content h2 {
            margin-bottom: 10px;
            color: var(--text-main);
        }

        .pdf-preview-content p {
            color: var(--text-light);
            margin-bottom: 18px;
        }

        .pdf-frame-wrapper {
            width: 100%;
            height: calc(100% - 100px);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.12);
        }

        .pdf-frame-wrapper iframe {
            width: 100%;
            height: 100%;
        }

        .pdf-preview-content .close-popup {
            position: absolute;
            top: 18px;
            right: 18px;
        }

        .exit-popup {
            position: fixed;
            inset: 0;
            z-index: 999999;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .exit-popup.active {
            display: flex;
        }

        .exit-popup-content {
            background: var(--primary);
            border: 2px solid var(--gold);
            border-radius: 32px;
            padding: 50px 40px;
            max-width: 500px;
            width: 100%;
            text-align: center;
            position: relative;
            animation: slideUp 0.5s ease;
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .exit-popup-content .close-popup {
            position: absolute;
            top: 15px;
            left: 20px;
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 1.5rem;
            cursor: pointer;
        }

        .exit-popup-content h2 {
            font-size: 1.8rem;
            color: var(--gold);
            margin-bottom: 15px;
        }

        .exit-popup-content p {
            color: var(--text-light);
            margin-bottom: 25px;
        }

        .exit-popup-content .btn {
            width: 100%;
        }

        /* ============================================
                   LIVE VISITORS COUNTER
                ============================================ */
        .live-counter {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 9999;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
            padding: 6px 18px;
            border-radius: 50px;
            color: #fff;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            pointer-events: none;
        }

        .live-counter .dot {
            width: 10px;
            height: 10px;
            background: #4CAF50;
            border-radius: 50%;
            animation: blink 1.2s infinite;
        }

        @keyframes blink {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.2;
            }
        }

        /* ============================================
                   RESPONSIVE
                ============================================ */
        @media (max-width: 1024px) {
            .services-grid,
            .portfolio-grid,
            .testimonial-grid,
            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 900px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-content p {
                margin-left: auto;
                margin-right: auto;
            }
            .hero-buttons {
                justify-content: center;
            }
            .hero-image {
                order: -1;
            }
            .hero-image img {
                max-width: 70%;
                margin: 0 auto;
            }
            .hero-content h1 {
                font-size: 2.8rem;
            }
            .about-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .about-content .section-title::after {
                right: 50%;
                transform: translateX(50%);
            }
            .about-highlight {
                border-right: none;
                border-bottom: 4px solid var(--gold);
                border-radius: 0 0 14px 14px;
                padding: 20px;
            }
            .contact-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .contact-details a {
                justify-content: center;
            }
            .contact-social {
                justify-content: center;
            }
            .contact-map {
                max-width: 400px;
                margin: 0 auto;
            }
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 450px;
                margin: 0 auto;
            }
            .services-grid,
            .portfolio-grid,
            .testimonial-grid,
            .why-grid {
                grid-template-columns: 1fr;
                max-width: 450px;
                margin: 0 auto;
            }
            .timeline-item {
                flex-direction: column;
                align-items: flex-start;
                padding-right: 20px;
            }
            .timeline-item::before {
                right: -24px;
            }
            .header-controls button {
                width: 35px;
                height: 35px;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 75%;
                max-width: 320px;
                height: 100vh;
                background: var(--primary);
                backdrop-filter: blur(30px);
                flex-direction: column;
                padding: 90px 30px 30px;
                gap: 18px;
                transition: right 0.4s ease;
                border-left: 1px solid var(--glass-border);
                overflow-y: auto;
            }
            .nav-links.open {
                right: 0;
            }
            .hamburger {
                display: flex;
            }
            .hero {
                min-height: 600px;
                height: auto;
                padding: 130px 0 60px;
            }
            .hero-content h1 {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 1.9rem;
            }
            .hero-image img {
                max-width: 90%;
            }
            .pricing-card.popular::before {
                top: -10px;
                font-size: 0.65rem;
                padding: 3px 16px;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .live-counter {
                display: none;
            }
            .cursor-dot {
                display: none;
            }
            body {
                cursor: auto;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }
            .container {
                padding: 0 16px;
            }
            section {
                padding: 60px 0;
            }
            .pricing-card {
                padding: 30px 20px;
            }
            .stat-item h3 {
                font-size: 2.2rem;
            }
            .why-card {
                padding: 25px 18px;
            }
            .service-card {
                padding: 24px 18px;
            }
            .contact-map {
                padding: 20px;
            }
            .exit-popup-content {
                padding: 30px 20px;
            }
            .floating-btn {
                width: 48px;
                height: 48px;
                font-size: 1.2rem;
            }
            .whatsapp-float {
                bottom: 16px;
                right: 16px;
            }
            .chat-float {
                bottom: 74px;
                right: 16px;
            }
            .share-float {
                bottom: 132px;
                right: 16px;
            }
            .back-to-top {
                bottom: 16px;
                left: 16px;
            }
        }
        /* ============================================
                   HERO VIDEO (clear on desktop/tablet)
                ============================================ */
        .hero-video {
            transform: scale(1.02);
            transition: filter 220ms ease, transform 220ms ease;
            will-change: filter, transform;
            filter: brightness(1.06) contrast(1.06) saturate(1.03);
            -webkit-filter: brightness(1.06) contrast(1.06) saturate(1.03);
        }

        /* Mobile-only: add slight blur + overlay for better contrast on phones */
        @media (max-width: 480px) {
            .hero-video {
                filter: blur(4px) brightness(0.85) saturate(0.95);
                -webkit-filter: blur(4px) brightness(0.85) saturate(0.95);
                transform: scale(1.04);
            }
            .hero-overlay {
                background: linear-gradient(180deg, rgba(0,0,0,0.50), rgba(0,0,0,0.35));
                z-index: 1;
                pointer-events: none;
            }
            .hero-content {
                color: var(--text-main);
                text-shadow: 0 8px 28px rgba(0,0,0,0.45);
            }
            [data-theme="light"] .hero-overlay {
                background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.65));
            }
            [data-theme="light"] .hero-content {
                color: var(--text-main);
                text-shadow: 0 6px 16px rgba(255,255,255,0.6);
            }
        }
        /* Desktop/Tablet explicit override: ensure no blur applies */
        @media (min-width: 481px) {
            .hero-video {
                filter: brightness(1.06) contrast(1.06) saturate(1.03) !important;
                -webkit-filter: brightness(1.06) contrast(1.06) saturate(1.03) !important;
            }
            .hero-overlay {
                background: transparent !important;
            }
        }
    
