        /* ===== CSS Variables & Theme ===== */
        :root {
            --primary: #1B3A5C;
            --primary-light: #2A5F8F;
            --primary-dark: #0F2440;
            --accent: #C9A84C;
            --accent-light: #E0C472;
            --accent-dark: #A68A3A;
            --bg-dark: #0A1628;
            --bg-section: #0E1F38;
            --bg-card: rgba(26, 58, 92, 0.3);
            --text-white: #FFFFFF;
            --text-light: #B8CCE4;
            --text-muted: #7A92B5;
            --gradient-gold: linear-gradient(135deg, #C9A84C 0%, #E0C472 50%, #C9A84C 100%);
            --gradient-blue: linear-gradient(135deg, #0A1628 0%, #1B3A5C 50%, #0F2440 100%);
            --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.3);
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --font-heading: 'Cairo', sans-serif;
            --font-body: 'Tajawal', sans-serif;
        }

        /* ===== Reset & Base ===== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; font-size: 16px; }
        body {
            font-family: var(--font-body);
            background: var(--bg-dark);
            color: var(--text-white);
            overflow-x: hidden;
            line-height: 1.7;
        }

        /* ===== Scrollbar ===== */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--bg-dark); }
        ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

        /* ===== Loading Screen ===== */
        .loader {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: var(--bg-dark); display: flex; flex-direction: column;
            align-items: center; justify-content: center; z-index: 99999;
            transition: opacity 0.6s, visibility 0.6s;
        }
        .loader.hidden { opacity: 0; visibility: hidden; }
        .loader-logo {
            width: 120px; height: 120px; border-radius: 50%; object-fit: cover;
            border: 3px solid var(--accent); animation: pulse-glow 1.5s ease-in-out infinite; margin-bottom: 20px;
        }
        .loader-spinner {
            width: 50px; height: 50px; border: 3px solid rgba(201,168,76,0.2);
            border-top-color: var(--accent); border-radius: 50%; animation: spin 0.8s linear infinite;
        }
        @keyframes spin { to { transform: rotate(360deg); } }
        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 20px rgba(201,168,76,0.3); }
            50% { box-shadow: 0 0 40px rgba(201,168,76,0.6); }
        }

        /* ===== Particles ===== */
        .particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; overflow: hidden; }
        .particle {
            position: absolute; width: 3px; height: 3px; background: var(--accent);
            border-radius: 50%; opacity: 0; animation: float-particle linear infinite;
        }
        @keyframes float-particle {
            0% { transform: translateY(100vh) scale(0); opacity: 0; }
            10% { opacity: 0.6; }
            90% { opacity: 0.6; }
            100% { transform: translateY(-10vh) scale(1); opacity: 0; }
        }

        /* ===== Navigation ===== */
        .navbar {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            padding: 15px 0; transition: var(--transition);
        }
        .navbar.scrolled {
            background: rgba(10,22,40,0.95); backdrop-filter: blur(20px);
            padding: 10px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.3);
            border-bottom: 1px solid rgba(201,168,76,0.15);
        }
        .nav-container { max-width: 1200px; margin: 0 auto; padding: 0 30px; display: flex; align-items: center; justify-content: space-between; }
        .nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
        .nav-logo { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); transition: var(--transition); }
        .nav-brand:hover .nav-logo { transform: scale(1.1); box-shadow: var(--shadow-gold); }
        .nav-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .nav-links { display: flex; gap: 30px; list-style: none; }
        .nav-links a { color: var(--text-light); text-decoration: none; font-size: 0.95rem; font-weight: 500; position: relative; padding: 5px 0; transition: var(--transition); }
        .nav-links a::after { content: ''; position: absolute; bottom: 0; right: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.3s ease; }
        .nav-links a:hover { color: var(--accent); }
        .nav-links a:hover::after { width: 100%; }
        .nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
        .nav-toggle span { width: 28px; height: 3px; background: var(--accent); border-radius: 2px; transition: var(--transition); }
        .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
        .nav-toggle.active span:nth-child(2) { opacity: 0; }
        .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

        /* ===== SVG Icon Base ===== */
        .icon-svg { width: 28px; height: 28px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
        .feature-icon .icon-svg { width: 30px; height: 30px; }
        .proposal-feature-icon .icon-svg { width: 24px; height: 24px; }

        /* ===== Hero Section ===== */
        .hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: var(--gradient-blue); }
        .hero::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 50%),
                        radial-gradient(ellipse at 80% 20%, rgba(42,95,143,0.15) 0%, transparent 50%),
                        radial-gradient(ellipse at 50% 80%, rgba(201,168,76,0.05) 0%, transparent 50%);
            z-index: 1;
        }
        .hero-content { position: relative; z-index: 2; text-align: center; padding: 0 30px; max-width: 900px; }
        .hero-logo-wrapper { position: relative; display: inline-block; margin-bottom: 30px; }
        .hero-logo { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; border: 4px solid var(--accent); box-shadow: 0 0 60px rgba(201,168,76,0.3); animation: float 4s ease-in-out infinite; }
        .hero-logo-ring { position: absolute; top: -15px; left: -15px; right: -15px; bottom: -15px; border: 2px solid rgba(201,168,76,0.3); border-radius: 50%; animation: rotate-ring 12s linear infinite; }
        .hero-logo-ring::before { content: ''; position: absolute; top: -4px; left: 50%; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 10px var(--accent); }
        @keyframes rotate-ring { to { transform: rotate(360deg); } }
        @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
        .hero-title { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 900; margin-bottom: 15px; line-height: 1.3; }
        .hero-title .gold { background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .hero-subtitle { font-size: 1.4rem; color: var(--text-light); margin-bottom: 10px; font-weight: 300; }
        .hero-taglines { margin: 25px 0 40px; display: flex; flex-direction: column; gap: 12px; align-items: center; }
        .hero-tagline {
            font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700;
            padding: 12px 35px; background: var(--gradient-gold);
            color: var(--bg-dark); display: inline-block; border-radius: 50px;
            animation: shimmer 3s ease-in-out infinite;
        }
        .hero-tagline:nth-child(1) { animation-delay: 0s; font-size: 1.6rem; padding: 14px 40px; }
        .hero-tagline:nth-child(2) { animation-delay: 0.5s; }
        .hero-tagline:nth-child(3) { animation-delay: 1s; }
        @keyframes shimmer {
            0%, 100% { box-shadow: 0 5px 30px rgba(201,168,76,0.3); }
            50% { box-shadow: 0 5px 50px rgba(201,168,76,0.6); }
        }
        .hero-cta {
            display: inline-flex; align-items: center; gap: 10px; padding: 16px 40px;
            background: transparent; border: 2px solid var(--accent); color: var(--accent);
            font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700;
            border-radius: 50px; cursor: pointer; text-decoration: none; transition: var(--transition);
        }
        .hero-cta:hover { background: var(--accent); color: var(--bg-dark); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
        .scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; animation: bounce 2s ease-in-out infinite; }
        .scroll-indicator div { width: 30px; height: 50px; border: 2px solid var(--accent); border-radius: 25px; position: relative; }
        .scroll-indicator div::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); animation: scroll-dot 2s ease-in-out infinite; }
        @keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }
        @keyframes scroll-dot { 0%, 100% { top: 8px; opacity: 1; } 100% { top: 28px; opacity: 0; } }

        /* ===== Section Styles ===== */
        .section { padding: 100px 0; position: relative; z-index: 1; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 30px; }
        .section-header { text-align: center; margin-bottom: 60px; }
        .section-badge { display: inline-block; padding: 8px 25px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); border-radius: 50px; color: var(--accent); font-size: 0.9rem; font-weight: 600; margin-bottom: 20px; }
        .section-title { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 900; margin-bottom: 15px; }
        .section-title .gold { background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .section-line { width: 80px; height: 4px; background: var(--gradient-gold); margin: 15px auto 0; border-radius: 2px; }
        .section-desc { color: var(--text-light); font-size: 1.1rem; max-width: 700px; margin: 20px auto 0; line-height: 1.8; }
        .section-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent); margin: 0; }
        .ornament { display: flex; align-items: center; justify-content: center; gap: 15px; margin: 0 auto; padding: 0 0 15px; }
        .ornament-line { width: 60px; height: 1px; background: var(--gradient-gold); }
        .ornament-diamond { width: 10px; height: 10px; background: var(--accent); transform: rotate(45deg); }

        /* ===== Brand Section ===== */
        .brand-section { background: var(--bg-dark); }
        .brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
        .brand-card {
            padding: 20px; border-radius: 20px; border: 1px solid rgba(201,168,76,0.2);
            background: var(--bg-card); text-align: center; cursor: pointer; transition: var(--transition);
        }
        .brand-card:hover { transform: translateY(-8px); border-color: var(--accent); box-shadow: var(--shadow-gold); }
        .brand-image-frame { height: 210px; display: flex; align-items: center; justify-content: center; border-radius: 14px; overflow: hidden; margin-bottom: 15px; }
        .brand-image-frame img { width: 100%; height: 100%; object-fit: contain; }
        .brand-card > span { color: var(--accent-light); font-family: var(--font-heading); font-weight: 700; }
        .brand-card-primary, .brand-card-emblem { background: rgba(10,22,40,0.75); }
        .brand-card-light { background: rgba(248,248,248,0.96); }
        .brand-card-light > span { color: var(--primary); }

        /* ===== About Section ===== */
        .about { background: var(--bg-section); }
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .about-image { position: relative; border-radius: 20px; overflow: hidden; }
        .about-image img { width: 100%; height: 400px; object-fit: cover; border-radius: 20px; transition: transform 0.6s ease; }
        .about-image:hover img { transform: scale(1.05); }
        .about-image::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to top, rgba(10,22,40,0.6) 0%, transparent 50%); border-radius: 20px; }
        .about-content h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 20px; color: var(--accent); }
        .about-content p { color: var(--text-light); font-size: 1.05rem; margin-bottom: 15px; line-height: 1.9; }
        .about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; }
        .stat-card { text-align: center; padding: 25px 15px; background: var(--bg-card); border: 1px solid rgba(201,168,76,0.15); border-radius: 15px; transition: var(--transition); }
        .stat-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: var(--shadow-gold); }
        .stat-number { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 900; background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .stat-label { color: var(--text-muted); font-size: 0.9rem; margin-top: 5px; }

        /* ===== Features Section ===== */
        .features { background: var(--bg-dark); }
        .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .feature-card {
            padding: 40px 30px; background: var(--bg-card);
            border: 1px solid rgba(201,168,76,0.1); border-radius: 20px;
            transition: var(--transition); position: relative; overflow: hidden;
        }
        .feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-gold); transform: scaleX(0); transition: transform 0.4s ease; }
        .feature-card:hover { transform: translateY(-8px); border-color: rgba(201,168,76,0.3); box-shadow: var(--shadow-card); }
        .feature-card:hover::before { transform: scaleX(1); }
        .feature-icon {
            width: 60px; height: 60px; background: rgba(201,168,76,0.08);
            border: 1px solid rgba(201,168,76,0.2); border-radius: 15px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 20px; transition: var(--transition);
        }
        .feature-card:hover .feature-icon { background: rgba(201,168,76,0.15); transform: scale(1.1); }
        .feature-card h4 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 12px; font-weight: 700; }
        .feature-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.8; }
        .features-compact { padding: 55px 0; }
        .compact-section-header { margin-bottom: 24px; }
        .compact-section-header .section-badge { margin-bottom: 8px; padding: 5px 16px; font-size: 0.78rem; }
        .compact-section-header .section-title { margin-bottom: 0; font-size: 1.8rem; }
        .features-grid.features-grid-compact { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
        .features-grid-compact .feature-card { display: flex; align-items: center; gap: 12px; min-height: 78px; padding: 14px 16px; border-radius: 14px; }
        .features-grid-compact .feature-card::before { height: 2px; }
        .features-grid-compact .feature-card:hover { transform: translateY(-3px); }
        .features-grid-compact .feature-icon { width: 42px; height: 42px; min-width: 42px; margin: 0; border-radius: 11px; }
        .features-grid-compact .feature-icon .icon-svg { width: 22px; height: 22px; }
        .features-grid-compact .feature-card h4 { margin: 0; font-size: 0.95rem; line-height: 1.4; }

        /* ===== Registration Section ===== */
        .registration { background: var(--bg-section); }
        .reg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
        .reg-card { position: relative; border-radius: 20px; overflow: hidden; cursor: pointer; transition: var(--transition); }
        .reg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-gold); }
        .reg-card img { width: 100%; height: auto; max-height: 350px; object-fit: contain; display: block; border-radius: 20px; transition: transform 0.6s ease; }
        .reg-card:hover img { transform: scale(1.05); }

        /* ===== Staff Section ===== */
        .staff { background: var(--bg-dark); }
        .staff-main { margin-bottom: 50px; }
        .staff-main-card { position: relative; border-radius: 20px; overflow: hidden; max-width: 600px; margin: 0 auto; border: 2px solid rgba(201,168,76,0.2); transition: var(--transition); }
        .staff-main-card:hover { border-color: var(--accent); box-shadow: var(--shadow-gold); }
        .staff-main-card img { width: 100%; height: auto; max-height: 450px; object-fit: contain; display: block; border-radius: 20px; }
        .staff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
        .staff-card { position: relative; border-radius: 15px; overflow: hidden; cursor: pointer; border: 1px solid rgba(201,168,76,0.1); transition: var(--transition); }
        .staff-card:hover { transform: translateY(-8px); border-color: var(--accent); box-shadow: var(--shadow-gold); }
        .staff-card img { width: 100%; height: auto; max-height: 300px; object-fit: contain; display: block; transition: transform 0.6s ease; }
        .staff-card:hover img { transform: scale(1.05); }

        /* ===== Video Section ===== */
        .video-section { background: var(--bg-section); }
        .video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 25px; }
        .video-card { min-width: 0; }
        .video-grid .video-wrapper { max-width: none; height: 100%; }
        .video-grid .video-wrapper video { aspect-ratio: 16 / 9; object-fit: contain; background: #050B16; }
        .video-wrapper { position: relative; max-width: 900px; margin: 0 auto; border-radius: 20px; overflow: hidden; border: 2px solid rgba(201,168,76,0.2); box-shadow: 0 20px 60px rgba(0,0,0,0.5); transition: var(--transition); }
        .video-wrapper:hover { border-color: var(--accent); box-shadow: 0 20px 80px rgba(201,168,76,0.2); }
        .video-wrapper video { width: 100%; display: block; border-radius: 20px; }
        .video-wrapper::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 100px; background: linear-gradient(to bottom, rgba(10,22,40,0.3) 0%, transparent 100%); border-radius: 20px 20px 0 0; pointer-events: none; z-index: 1; }
        .video-badge { position: absolute; top: 20px; right: 20px; z-index: 2; padding: 10px 25px; background: var(--gradient-gold); color: var(--bg-dark); font-family: var(--font-heading); font-weight: 700; border-radius: 50px; }

        /* ===== Proposal Section ===== */
        .proposal { background: var(--bg-dark); position: relative; }
        .proposal::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at 10% 20%, rgba(201,168,76,0.05) 0%, transparent 50%), radial-gradient(ellipse at 90% 80%, rgba(42,95,143,0.08) 0%, transparent 50%); z-index: 0; }
        .proposal .container { position: relative; z-index: 1; }
        .proposal-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; margin-top: 40px; }
        .proposal-feature-item { display: flex; align-items: flex-start; gap: 15px; padding: 25px; background: var(--bg-card); border: 1px solid rgba(201,168,76,0.1); border-radius: 15px; transition: var(--transition); }
        .proposal-feature-item:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); box-shadow: var(--shadow-card); }
        .proposal-feature-icon {
            width: 50px; height: 50px; min-width: 50px;
            background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2);
            border-radius: 12px; display: flex; align-items: center; justify-content: center;
        }
        .proposal-feature-text h5 { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 5px; color: var(--accent-light); }
        .proposal-feature-text p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

        /* ===== CTA Section ===== */
        .cta-section { background: var(--bg-dark); padding: 80px 0; text-align: center; }
        .cta-box {
            max-width: 800px; margin: 0 auto; padding: 60px 40px;
            background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, rgba(42,95,143,0.1) 100%);
            border: 1px solid rgba(201,168,76,0.2); border-radius: 30px;
            position: relative; overflow: hidden;
        }
        .cta-box::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: conic-gradient(from 0deg, transparent, rgba(201,168,76,0.05), transparent 30%); animation: rotate-bg 10s linear infinite; }
        @keyframes rotate-bg { to { transform: rotate(360deg); } }
        .cta-box h3 { font-family: var(--font-heading); font-size: 2.2rem; margin-bottom: 15px; position: relative; }
        .cta-box p { color: var(--text-light); font-size: 1.1rem; margin-bottom: 30px; position: relative; }
        .cta-btn {
            display: inline-flex; align-items: center; gap: 10px; padding: 16px 40px;
            background: var(--gradient-gold); color: var(--bg-dark);
            font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700;
            border: none; border-radius: 50px; cursor: pointer; text-decoration: none; transition: var(--transition); position: relative;
        }
        .cta-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }

        /* ===== Footer ===== */
        .footer { background: var(--primary-dark); border-top: 1px solid rgba(201,168,76,0.15); padding: 60px 0 30px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
        .footer-brand img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); }
        .footer-brand h4 { font-family: var(--font-heading); font-size: 1.2rem; background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .footer-about { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }
        .footer h5 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 20px; color: var(--accent); }
        .footer-contact-group { margin-bottom: 20px; }
        .footer-contact-group:last-child { margin-bottom: 0; }
        .footer-contact-group h6 { color: var(--accent-light); font-family: var(--font-heading); font-size: 1rem; margin-bottom: 6px; }
        .footer-contact-group p { color: var(--text-light); font-size: 0.92rem; line-height: 1.7; margin-bottom: 4px; }
        .footer-phone { color: var(--text-muted) !important; direction: ltr; text-align: right; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; transition: var(--transition); font-size: 0.95rem; }
        .footer-links a:hover { color: var(--accent); padding-right: 5px; }
        .footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(201,168,76,0.1); color: var(--text-muted); font-size: 0.9rem; }
        .footer-bottom .gold { color: var(--accent); }

        /* ===== Lightbox ===== */
        .lightbox { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.95); z-index: 10000; display: none; align-items: center; justify-content: center; padding: 30px; cursor: pointer; }
        .lightbox.active { display: flex; }
        .lightbox img { max-width: 90%; max-height: 90vh; object-fit: contain; border-radius: 10px; box-shadow: 0 0 60px rgba(201,168,76,0.2); animation: zoomIn 0.3s ease; }
        @keyframes zoomIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
        .lightbox-close { position: absolute; top: 20px; left: 20px; width: 50px; height: 50px; background: rgba(201,168,76,0.2); border: 2px solid var(--accent); border-radius: 50%; color: var(--accent); font-size: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
        .lightbox-close:hover { background: var(--accent); color: var(--bg-dark); }

        /* ===== Scroll Animations ===== */
        .reveal { opacity: 0; transform: translateY(50px); transition: opacity 0.8s ease, transform 0.8s ease; }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }
        .reveal-left { opacity: 0; transform: translateX(50px); transition: opacity 0.8s ease, transform 0.8s ease; }
        .reveal-left.visible { opacity: 1; transform: translateX(0); }
        .reveal-right { opacity: 0; transform: translateX(-50px); transition: opacity 0.8s ease, transform 0.8s ease; }
        .reveal-right.visible { opacity: 1; transform: translateX(0); }

        /* ===== Registration Modal ===== */
        .reg-modal {
            position: fixed; top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.85); z-index: 10001;
            display: none; align-items: center; justify-content: center;
            padding: 20px; overflow-y: auto;
        }
        .reg-modal.active { display: flex; }
        .reg-modal-content {
            background: var(--bg-section); border: 1px solid rgba(201,168,76,0.2);
            border-radius: 20px; padding: 40px; max-width: 500px; width: 100%;
            position: relative; animation: zoomIn 0.3s ease;
            max-height: 90vh; overflow-y: auto;
        }
        .reg-modal-close {
            position: absolute; top: 15px; left: 15px;
            width: 40px; height: 40px; background: rgba(201,168,76,0.15);
            border: 1px solid rgba(201,168,76,0.3); border-radius: 50%;
            color: var(--accent); font-size: 1.2rem; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: var(--transition);
        }
        .reg-modal-close:hover { background: var(--accent); color: var(--bg-dark); }
        .reg-modal-header { text-align: center; margin-bottom: 30px; }
        .reg-modal-logo { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); margin-bottom: 15px; }
        .reg-modal-header h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--accent); margin-bottom: 5px; }
        .reg-modal-header p { color: var(--text-muted); font-size: 0.9rem; }
        .reg-form-group { margin-bottom: 18px; }
        .reg-form-group label { display: block; font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; color: var(--text-light); }
        .reg-form-group input, .reg-form-group select, .reg-form-group textarea {
            width: 100%; padding: 12px 16px; background: rgba(10,22,40,0.6);
            border: 1px solid rgba(201,168,76,0.2); border-radius: 10px;
            color: var(--text-white); font-family: var(--font-body); font-size: 1rem;
            transition: var(--transition); outline: none;
        }
        .reg-form-group input:focus, .reg-form-group select:focus, .reg-form-group textarea:focus {
            border-color: var(--accent); box-shadow: 0 0 15px rgba(201,168,76,0.15);
        }
        .reg-form-group select { cursor: pointer; appearance: none; -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23C9A84C' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat; background-position: left 15px center;
        }
        .reg-form-group select option { background: var(--bg-dark); color: var(--text-white); }
        .reg-form-group textarea { resize: vertical; min-height: 80px; }
        .reg-submit-btn {
            width: 100%; padding: 14px; background: var(--gradient-gold); color: var(--bg-dark);
            font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700;
            border: none; border-radius: 10px; cursor: pointer; transition: var(--transition);
            margin-top: 10px;
        }
        .reg-submit-btn:hover { box-shadow: var(--shadow-gold); transform: translateY(-2px); }
        .reg-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
        .reg-success-icon {
            width: 70px; height: 70px; background: var(--gradient-gold); color: var(--bg-dark);
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            font-size: 2rem; font-weight: 900; margin: 0 auto 20px;
        }
        #regSuccess { text-align: center; }
        #regSuccess h4 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--accent); margin-bottom: 10px; }
        #regSuccess p { color: var(--text-muted); margin-bottom: 20px; }
        #regSuccess .reg-submit-btn { max-width: 200px; margin: 0 auto; display: block; }

        .footer-contact-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(201,168,76,0.08); font-size: 0.95rem; }
        .footer-contact-row:last-child { border-bottom: none; }
        .footer-contact-row span:first-child { color: var(--text-light); font-weight: 500; direction: ltr; }
        .footer-contact-label { color: var(--text-muted); font-size: 0.85rem; }

        /* ===== Back to Top ===== */
        .back-to-top { position: fixed; bottom: 30px; left: 30px; width: 50px; height: 50px; background: var(--gradient-gold); color: var(--bg-dark); border: none; border-radius: 50%; font-size: 1.2rem; cursor: pointer; z-index: 999; opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition); display: flex; align-items: center; justify-content: center; }
        .back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
        .back-to-top:hover { transform: translateY(-5px); box-shadow: var(--shadow-gold); }

        /* ===== Cursor Glow ===== */
        .cursor-glow { position: fixed; width: 300px; height: 300px; background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%); border-radius: 50%; pointer-events: none; z-index: 0; transform: translate(-50%, -50%); transition: transform 0.1s; }

        /* ===== Responsive ===== */
        @media (max-width: 968px) {
            .about-grid { grid-template-columns: 1fr; gap: 30px; }
            .reg-grid { grid-template-columns: 1fr; }
            .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            .hero-title { font-size: 2.5rem; }
            .section-title { font-size: 2.2rem; }
        }
        @media (max-width: 768px) {
            .nav-links { position: fixed; top: 0; right: -100%; width: 75%; max-width: 300px; height: 100vh; background: rgba(10,22,40,0.98); backdrop-filter: blur(20px); flex-direction: column; padding: 100px 40px; gap: 20px; transition: right 0.4s ease; border-left: 1px solid rgba(201,168,76,0.15); }
            .nav-links.open { right: 0; }
            .nav-toggle { display: flex; }
            .hero-title { font-size: 2rem; }
            .hero-tagline { font-size: 1.3rem; padding: 12px 25px; }
            .section { padding: 60px 0; }
            .about-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .stat-card { padding: 15px 10px; }
            .stat-number { font-size: 1.6rem; }
            .features-grid { grid-template-columns: 1fr; }
            .features-compact { padding: 40px 0; }
            .features-grid.features-grid-compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .compact-section-header .section-title { font-size: 1.5rem; }
            .brand-grid { grid-template-columns: 1fr; }
            .video-grid { grid-template-columns: 1fr; }
            .brand-image-frame { height: 180px; }
            .staff-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
            .staff-main-card img { height: auto; max-height: 300px; }
            .cta-box { padding: 40px 25px; }
            .cta-box h3 { font-size: 1.6rem; }
            .proposal-features-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .hero-title { font-size: 1.7rem; }
            .hero-subtitle { font-size: 1rem; }
            .hero-tagline { font-size: 1.1rem; padding: 10px 20px; }
            .hero-tagline:nth-child(1) { font-size: 1.2rem; padding: 12px 25px; }
            .hero-logo { width: 130px; height: 130px; }
            .section-title { font-size: 1.8rem; }
            .features-grid.features-grid-compact { grid-template-columns: 1fr; }
            .features-grid-compact .feature-card { min-height: 68px; }
            .reg-card img { height: auto; max-height: 250px; }
        }

/* Al Awael CSP-safe additions */
body.modal-open { overflow: hidden; }
.is-hidden { display: none !important; }
.registration-cta-wrap { margin-top: 25px; }
.cta-btn-compact { font-size: 1rem; padding: 12px 30px; }
.reg-form-group input[type="checkbox"] {
    width: auto; min-height: auto; margin: 0 8px 0 0; accent-color: var(--accent);
}
.reg-consent {
    display: flex !important; align-items: flex-start; gap: 8px; line-height: 1.6;
    cursor: pointer;
}
.reg-btn-loading { display: inline; }
.reg-consent input { flex: 0 0 auto; margin-top: 5px; }

