
        :root {
            --primary-blue: #213858;
            --primary-gold: #d9a43c;
            --secondary-blue: #003366;
            --light-blue: #e9f2fa;
            --light-gold: #fcf5e8;
            --text-dark: #333;
            --text-light: #fff;
            --accent-blue: #0056b3;
            --shadow: 0 5px 15px rgba(0, 34, 68, 0.15);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --night-mode: 0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Tajawal', 'Poppins', sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #000000, #000000);
            color: var(--text-dark);
            line-height: 1.8;
            overflow-x: hidden;
            min-height: 100vh;
            position: relative;
            transition: background 1.5s ease;
        }
        
        body.night-mode {
            background: linear-gradient(135deg, #0a1929, #0d1f33);
            color: #000000;
        }
        
        /* تأثير جسيمات الخلفية */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            opacity: 0.5;
        }
        
        /* تأثيرات خطوط متحركة */
        .moving-line {
            position: fixed;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
            box-shadow: 0 0 10px var(--primary-gold);
            animation: moveLine 8s infinite linear;
            z-index: 0;
        }
        
        @keyframes moveLine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 10;
        }
        
        /* رأس الصفحة - تصميم جديد */
        header {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
            transition: var(--transition);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--primary-gold);
        }
        
        .night-mode header {
            background: linear-gradient(135deg, #001020, #00152e);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            transition: var(--transition);
            position: relative;
        }
        
        .logo-text {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary-gold);
            margin-right: 10px;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
            position: relative;
        }
        
        .logo i {
            color: var(--primary-gold);
            font-size: 32px;
            animation: float 3s ease-in-out infinite;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 5px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        nav ul li {
            margin: 0 5px;
            position: relative;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--text-light);
            font-weight: 600;
            padding: 12px 18px;
            border-radius: 30px;
            transition: var(--transition);
            display: block;
            font-size: 16px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        nav ul li a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-gold);
            z-index: -1;
            transform: translateX(-100%);
            transition: transform 0.5s ease;
            border-radius: 30px;
        }
        
        nav ul li a:hover::before, 
        nav ul li a.active::before {
            transform: translateX(0);
        }
        
        nav ul li a:hover, 
        nav ul li a.active {
            color: var(--primary-blue);
            transform: translateY(-2px);
        }
        
        /* لغة التبديل */
        .language-switcher {
            display: flex;
            margin-right: 15px;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            background: rgba(255,255,255,0.1);
        }
        
        .lang-btn {
            background: transparent;
            border: none;
            color: white;
            padding: 8px 15px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .lang-btn:hover {
            background: rgba(255,255,255,0.2);
        }
        
        .lang-btn.active {
            background: var(--primary-gold);
            color: var(--primary-blue);
        }
        
        /* القسم الرئيسي - تصميم جديد */
        .hero {
            background: linear-gradient(rgba(0, 34, 68, 0.85), rgba(0, 34, 68, 0.9)), url('https://images.unsplash.com/photo-1503220317375-aaad61436b1b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: var(--text-light);
            text-align: center;
            padding: 140px 20px 100px;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .night-mode .hero {
            background: linear-gradient(rgba(10, 25, 41, 0.85), rgba(13, 31, 51, 0.9)), url('https://images.unsplash.com/photo-1503220317375-aaad61436b1b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, transparent 0%, rgba(0, 34, 68, 0.9) 100%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInUp 1.2s forwards 0.5s;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            font-weight: 800;
            line-height: 1.3;
            position: relative;
            display: inline-block;
        }
        
        .hero h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 0;
            width: 100%;
            height: 4px;
            background: var(--primary-gold);
            transform: scaleX(0);
            transform-origin: right;
            animation: expandLine 1.5s forwards 1.2s;
        }
        
        .hero p {
            font-size: 20px;
            margin: 0 auto 40px;
            color: var(--light-gold);
            max-width: 700px;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
            opacity: 0;
            animation: fadeIn 1s forwards 1s;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--primary-gold);
            color: var(--primary-blue);
            padding: 17px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            transition: var(--transition);
            border: 2px solid var(--primary-gold);
            box-shadow: 0 5px 15px rgba(217, 164, 60, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInUp 1s forwards 1.5s;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background-color: var(--primary-blue);
            transition: var(--transition);
            z-index: -1;
        }
        
        .cta-button:hover {
            color: var(--primary-gold);
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(217, 164, 60, 0.4);
        }
        
        .cta-button:hover::before {
            width: 100%;
        }
        
        .hero-stats {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 70px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .stat-item {
            text-align: center;
            position: relative;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s forwards;
            min-width: 150px;
            flex: 1 1 auto;
        }
        
        .stat-item:nth-child(1) { animation-delay: 1.8s; }
        .stat-item:nth-child(2) { animation-delay: 2.0s; }
        .stat-item:nth-child(3) { animation-delay: 2.2s; }
        .stat-item:nth-child(4) { animation-delay: 2.4s; }
        
        .stat-number {
            font-size: 42px;
            font-weight: 800;
            color: var(--primary-gold);
            margin-bottom: 5px;
            line-height: 1;
            position: relative;
            display: inline-block;
        }
        
        .stat-number::after {
            content: '+';
            position: absolute;
            right: -15px;
            top: 0;
            color: var(--primary-gold);
        }
        
        .stat-label {
            font-size: 16px;
            color: #fff;
            opacity: 0.9;
        }
        
        .stat-icon {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 34, 68, 0.7);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--primary-gold);
            box-shadow: 0 0 10px rgba(217, 164, 60, 0.5);
        }
        
        /* جسر بصري بين الأقسام */
        .bridge-effect {
            position: relative;
            height: 150px;
            width: 100%;
            overflow: hidden;
            margin: 50px 0;
        }
        
        .bridge {
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 50px;
            background: linear-gradient(to bottom, #d9a43c, #b8860b);
            border-radius: 50% 50% 0 0;
            animation: bridgeRise 1.5s ease-in-out forwards;
        }
        
        @keyframes bridgeRise {
            0% { transform: translateY(100%); }
            100% { transform: translateY(0); }
        }
        
        /* قسم الخدمات - تصميم جديد */
        .services {
            padding: 100px 0;
            background-color: var(--light-blue);
            position: relative;
            overflow: hidden;
        }
        
        .night-mode .services {
            background: linear-gradient(135deg, #0a1a2a, #0c2036);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            padding-bottom: 20px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s ease;
        }
        
        .section-title.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .section-title h2 {
            font-size: 38px;
            color: var(--primary-blue);
            margin-bottom: 15px;
            font-weight: 800;
            position: relative;
            display: inline-block;
        }
        
        .night-mode .section-title h2 {
            color: #fff;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            right: 50%;
            transform: translateX(50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-gold);
            border-radius: 2px;
        }
        
        .section-title p {
            max-width: 700px;
            margin: 25px auto 0;
            font-size: 18px;
            color: var(--text-dark);
            opacity: 0.8;
        }
        
        .night-mode .section-title p {
            color: #ddd;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
            position: relative;
            z-index: 1;
        }
        
        .service-card {
            background-color: var(--text-light);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            border: 1px solid rgba(0, 34, 68, 0.05);
            transform-style: preserve-3d;
            perspective: 1000px;
            opacity: 0;
            transform: translateY(50px) rotateX(20deg);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .service-card.visible {
            opacity: 1;
            transform: translateY(0) rotateX(0);
        }
        
        .service-card:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 20px 40px rgba(0, 34, 68, 0.25);
        }
        
        .service-icon {
            height: 180px;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--primary-gold);
            font-size: 60px;
            position: relative;
            overflow: hidden;
        }
        
        .service-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
            transform: rotate(30deg);
        }
        
        .service-content {
            padding: 30px;
            position: relative;
        }
        
        .service-content h3 {
            color: var(--primary-blue);
            margin-bottom: 20px;
            font-size: 24px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .night-mode .service-content h3 {
            color: #fff;
        }
        
        .service-content h3 i {
            color: var(--primary-gold);
            font-size: 22px;
        }
        
        .service-content p {
            margin-bottom: 20px;
            color: #555;
            font-size: 16px;
            line-height: 1.7;
        }
        
        .night-mode .service-content p {
            color: #ddd;
        }
        
        .service-content ul {
            list-style: none;
            margin-top: 15px;
        }
        
        .service-content ul li {
            padding: 10px 0;
            border-bottom: 1px dashed #eee;
            display: flex;
            align-items: center;
            transition: var(--transition);
        }
        
        .service-content ul li:hover {
            padding-right: 10px;
        }
        
        .service-content ul li:last-child {
            border-bottom: none;
        }
        
        .service-content ul li i {
            color: var(--primary-gold);
            margin-left: 10px;
            font-size: 14px;
        }
        
        /* تأثيرات خاصة للخدمات */
        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(255,255,255,0.3) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }
        
        .service-card:hover::after {
            opacity: 1;
        }
        
        /* قسم البارالاكس */
        .parallax-section {
            background: linear-gradient(rgba(0, 34, 68, 0.8), rgba(0, 34, 68, 0.9)), url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-attachment: fixed;
            background-position: center;
            padding: 150px 0;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .night-mode .parallax-section {
            background: linear-gradient(rgba(10, 25, 41, 0.8), rgba(13, 31, 51, 0.9)), url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
        }
        
        .parallax-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            transform: translateY(50px);
            opacity: 0;
            transition: all 1s ease;
        }
        
        .parallax-content.visible {
            transform: translateY(0);
            opacity: 1;
        }
        
        .parallax-content h2 {
            font-size: 42px;
            margin-bottom: 30px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        .parallax-content p {
            font-size: 20px;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* قسم المعلومات والاتصال */
        .info {
            padding: 100px 0;
            background-color: var(--light-gold);
            background-image: linear-gradient(135deg, rgba(217, 164, 60, 0.03) 0%, transparent 50%), 
                              radial-gradient(circle at 10% 20%, rgba(0, 34, 68, 0.03) 0%, transparent 40%);
            position: relative;
            overflow: hidden;
        }
        
        .night-mode .info {
            background: linear-gradient(135deg, #0c1d30, #0f253d);
        }
        
        .info-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 60px;
            align-items: center;
        }
        
        .location-map {
            height: 400px;
            background: linear-gradient(rgba(0, 34, 68, 0.2), rgba(0, 34, 68, 0.3)), url('https://images.unsplash.com/photo-1593692909680-61f48b1e5e56?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
            background-size: cover;
            background-position: center;
            border-radius: 16px;
            box-shadow: var(--shadow);
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            transform: translateX(-50px);
            opacity: 0;
            transition: all 1s ease;
        }
        
        .location-map.visible {
            transform: translateX(0);
            opacity: 1;
        }
        
        .location-map::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, transparent 40%, rgba(0, 34, 68, 0.7) 150%);
        }
        
        .map-overlay {
            background-color: rgba(0, 34, 68, 0.85);
            color: var(--text-light);
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            max-width: 90%;
            z-index: 2;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(217, 164, 60, 0.3);
        }
        
        .map-overlay h3 {
            color: var(--primary-gold);
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .map-overlay p {
            margin-bottom: 10px;
            line-height: 1.8;
        }
        
        .contact-info {
            padding: 20px;
            transform: translateX(50px);
            opacity: 0;
            transition: all 1s ease 0.2s;
        }
        
        .contact-info.visible {
            transform: translateX(0);
            opacity: 1;
        }
        
        .contact-info h3 {
            color: var(--primary-blue);
            margin-bottom: 30px;
            font-size: 32px;
            position: relative;
            padding-bottom: 20px;
            font-weight: 800;
        }
        
        .night-mode .contact-info h3 {
            color: #fff;
        }
        
        .contact-info h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 100px;
            height: 4px;
            background-color: var(--primary-gold);
            border-radius: 2px;
        }
        
        .contact-details {
            list-style: none;
            margin-top: 20px;
        }
        
        .contact-details li {
            margin-bottom: 25px;
            display: flex;
            align-items: flex-start;
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        .night-mode .contact-details li {
            background: rgba(255, 255, 255, 0.05);
        }
        
        .contact-details li:hover {
            transform: translateX(-10px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
        }
        
        .contact-details li i {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            color: var(--primary-gold);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-left: 15px;
            flex-shrink: 0;
            font-size: 20px;
            box-shadow: 0 0 10px rgba(0, 34, 68, 0.3);
        }
        
        .contact-details li div strong {
            display: block;
            color: var(--primary-blue);
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .night-mode .contact-details li div strong {
            color: #fff;
        }
        
        .contact-details li div p {
            color: #555;
            font-size: 16px;
        }
        
        .night-mode .contact-details li div p {
            color: #ddd;
        }
        
        .social-icons {
            display: flex;
            margin-top: 40px;
            gap: 15px;
        }
        
        .social-icons a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            color: var(--primary-gold);
            border-radius: 50%;
            font-size: 20px;
            transition: var(--transition);
            box-shadow: 0 4px 10px rgba(0, 34, 68, 0.2);
        }
        
        .social-icons a:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 20px rgba(0, 34, 68, 0.3);
            background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
            color: #fff;
        }
        
        /* قسم النشرة الإخبارية - تصميم جديد */
        .newsletter {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            padding: 80px 0;
            text-align: center;
            color: var(--text-light);
            position: relative;
            overflow: hidden;
        }
        
        .night-mode .newsletter {
            background: linear-gradient(135deg, #001020, #00152e);
        }
        
        .newsletter::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(217, 164, 60, 0.1) 0%, transparent 70%);
            transform: rotate(45deg);
            z-index: 1;
        }
        
        .newsletter-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            transform: translateY(30px);
            opacity: 0;
            transition: all 1s ease;
        }
        
        .newsletter-content.visible {
            transform: translateY(0);
            opacity: 1;
        }
        
        .newsletter h2 {
            font-size: 36px;
            margin-bottom: 20px;
            font-weight: 800;
        }
        
        .newsletter p {
            max-width: 600px;
            margin: 0 auto 40px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 18px;
        }
        
        .newsletter-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            background: white;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transform: scale(0.9);
            opacity: 0;
            transition: all 0.8s ease 0.3s;
        }
        
        .newsletter-form.visible {
            transform: scale(1);
            opacity: 1;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 20px 25px;
            border: none;
            font-size: 16px;
            outline: none;
            background: transparent;
        }
        
        .newsletter-form button {
            background-color: var(--primary-gold);
            color: var(--primary-blue);
            border: none;
            padding: 0 40px;
            font-weight: 700;
            font-size: 18px;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .newsletter-form button:hover {
            background-color: #e69a2c;
            padding: 0 45px;
        }
        
        /* التذييل - تصميم جديد */
        footer {
            background: linear-gradient(135deg, var(--primary-blue), #001933);
            color: var(--text-light);
            padding: 70px 0 20px;
            position: relative;
        }
        
        .night-mode footer {
            background: linear-gradient(135deg, #001020, #00152e);
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-gold), #e69a2c);
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            color: var(--primary-gold);
            margin-bottom: 30px;
            font-size: 24px;
            position: relative;
            padding-bottom: 15px;
            font-weight: 700;
        }
        
        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 60px;
            height: 3px;
            background-color: rgba(255, 255, 255, 0.3);
        }
        
        .footer-about p {
            margin-bottom: 25px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-links a i {
            color: var(--primary-gold);
            font-size: 14px;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--primary-gold);
            padding-right: 10px;
        }
        
        .footer-links a:hover i {
            transform: translateX(-5px);
        }
        
        /* قسم الشركة المطورة */
        .dev-company {
            margin-top: 20px;
            text-align: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            transition: all 0.4s ease;
        }
        
        .dev-company:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .dev-company a {
            display: block;
            color: var(--primary-gold);
            font-weight: 700;
            font-size: 22px;
            text-decoration: none;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }
        
        .dev-company a:hover {
            color: #fff;
            text-shadow: 0 0 10px rgba(217, 164, 60, 0.7);
        }
        
        .dev-company p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
            margin-top: 10px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 15px;
        }
        
        /* زر العودة للأعلى */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-gold);
            color: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            cursor: pointer;
            z-index: 100;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }
        
        .back-to-top.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        
        /* زر تبديل الوضع الليلي */
        .theme-toggle {
            position: fixed;
            bottom: 90px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-blue);
            color: var(--primary-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            cursor: pointer;
            z-index: 100;
            transition: all 0.4s ease;
        }
        
        .theme-toggle:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        
        /* زر تبديل اللغة */
        .language-switch {
            position: fixed;
            bottom: 150px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-gold);
            color: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            cursor: pointer;
            z-index: 100;
            transition: all 0.4s ease;
        }
        
        .language-switch:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        
        /* الرسوم المتحركة */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        @keyframes expandLine {
            0% { transform: scaleX(0); }
            100% { transform: scaleX(1); }
        }
        
        /* التصميم المتجاوب - تحسينات إضافية */
        @media (max-width: 1200px) {
            .hero-stats {
                gap: 30px;
            }
            
            .stat-item {
                min-width: 140px;
            }
            
            .stat-number {
                font-size: 36px;
            }
        }
        
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 38px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .info-container {
                gap: 40px;
            }
            
            .footer-container {
                gap: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: row;
                justify-content: space-between;
                padding: 10px 0;
            }
            
            nav {
                order: 3;
                width: 100%;
                margin-top: 15px;
            }
            
            nav ul {
                margin: 0;
                gap: 3px;
            }
            
            nav ul li a {
                padding: 10px 15px;
                font-size: 14px;
            }
            
            .language-switcher {
                margin-right: 0;
                margin-left: 10px;
            }
            
            .hero {
                padding: 100px 20px 60px;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .hero-stats {
                gap: 25px;
                margin-top: 50px;
            }
            
            .stat-number {
                font-size: 32px;
            }
            
            .services::before {
                display: none;
            }
            
            .newsletter-form {
                flex-direction: column;
                border-radius: 16px;
            }
            
            .newsletter-form input {
                border-radius: 16px 16px 0 0;
                padding: 18px;
            }
            
            .newsletter-form button {
                border-radius: 0 0 16px 16px;
                padding: 18px;
                justify-content: center;
                width: 100%;
            }
            
            .location-map {
                height: 300px;
            }
            
            .theme-toggle {
                bottom: 150px;
            }
            
            .language-switch {
                bottom: 210px;
            }
            
            .footer-section h3 {
                margin-bottom: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .logo-text {
                font-size: 22px;
            }
            
            .hero {
                padding: 80px 15px 40px;
            }
            
            .hero h1 {
                font-size: 28px;
            }
            
            .hero p {
                font-size: 15px;
            }
            
            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .stat-item {
                min-width: auto;
                padding: 10px;
            }
            
            .stat-number {
                font-size: 28px;
            }
            
            .stat-label {
                font-size: 14px;
            }
            
            .stat-icon {
                top: -15px;
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
            
            .cta-button {
                padding: 15px 35px;
                font-size: 16px;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
            
            .section-title p {
                font-size: 16px;
            }
            
            .service-content {
                padding: 25px 20px;
            }
            
            .service-content h3 {
                font-size: 22px;
            }
            
            .service-icon {
                height: 150px;
                font-size: 50px;
            }
            
            .parallax-section {
                padding: 100px 0;
            }
            
            .parallax-content h2 {
                font-size: 32px;
            }
            
            .parallax-content p {
                font-size: 17px;
            }
            
            .contact-info h3 {
                font-size: 26px;
            }
            
            .contact-details li {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .contact-details li i {
                margin-left: 0;
                margin-bottom: 15px;
            }
            
            .newsletter h2 {
                font-size: 28px;
            }
            
            .newsletter p {
                font-size: 16px;
            }
            
            .theme-toggle, .language-switch, .back-to-top {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
            
            .theme-toggle {
                bottom: 100px;
                right: 15px;
            }
            
            .language-switch {
                bottom: 160px;
                right: 15px;
            }
            
            .back-to-top {
                bottom: 15px;
                right: 15px;
            }
        }
        
        @media (max-width: 400px) {
            .logo-text {
                font-size: 20px;
            }
            
            .hero h1 {
                font-size: 24px;
            }
            
            .hero-stats {
                gap: 10px;
            }
            
            .stat-number {
                font-size: 24px;
            }
            
            .stat-label {
                font-size: 12px;
            }
            
            .section-title h2 {
                font-size: 26px;
            }
            
            .services-grid {
                gap: 20px;
            }
            
            .footer-section h3 {
                font-size: 20px;
            }
        }
    