      :root {
            --primary: #F97316;
            --primary-dark: #EA580C;
            --action: #2563EB;
            --action-dark: #1D4ED8;
            --secondary: #F8FAFC;
            --secondary-dark: #F1F5F9;
            --text: #1E293B;
            --text-light: #64748B;
            --success: #22C55E;
            --white: #FFFFFF;
            --gradient-primary: linear-gradient(135deg, var(--action), var(--primary));
            --gradient-action: linear-gradient(135deg, var(--action),var(--primary));
            --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
            --radius: 12px;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Tajawal', sans-serif;
        }

        body {
            background-color: var(--white);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
        }

        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 1rem 5%;
            transition: var(--transition);
        }

        .navbar.scrolled {
            padding: 0.7rem 5%;
            box-shadow: var(--shadow-md);
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img {
            height: 40px;
        }

        .logo-text {
            font-weight: 800;
            font-size: 1.8rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }

        .logo-text::after {
            content: '';
            position: absolute;
            bottom: -5px;
            right: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        .navbar-links {
            display: flex;
            list-style: none;
            gap: 25px;
            align-items: center;
        }

        .navbar-links a,
        .user-actions a,
        .guest-actions a {
            text-decoration: none;
            color: var(--text);
            font-weight: 600;
            padding: 8px 12px;
            transition: var(--transition);
            border: none;
            background: none;
            position: relative;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .navbar-links a::before,
        .user-actions a::before,
        .guest-actions a::before {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .navbar-links a:hover::before,
        .user-actions a:hover::before,
        .guest-actions a:hover::before {
            width: 100%;
            left: 0;
            right: auto;
        }

        .navbar-links a:hover,
        .user-actions a:hover,
        .guest-actions a:hover {
            color: var(--primary);
        }

        .user-actions,
        .guest-actions {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .btn {
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
            border: none;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-action {
            background: var(--gradient-action);
            color: var(--white);
            box-shadow: var(--shadow-md);
        }

        .btn-action:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: var(--white);
        }

        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--text);
            transition: transform 0.3s ease;
        }

        .hero {
            position: relative;
            padding: 160px 5% 100px;
            background: linear-gradient(135deg, #9b9999 0% , #c2c2c4 100%);
            color: var(--white);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M0,224L48,213.3C96,203,192,181,288,160C384,139,480,117,576,122.7C672,128,768,160,864,170.7C960,181,1056,171,1152,165.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
            background-size: cover;
            background-position: center bottom;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero-text {
            flex: 1;
            max-width: 600px;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            background: linear-gradient(to right, #080808, #0e0e0f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            max-width: 90%;
        }

        .hero-actions {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .hero-image {
            flex: 1;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .mockup-container {
            position: relative;
            width: 100%;
            max-width: 500px;
            height: 500px;
        }

        .mockup {
            width: 100%;
            height: auto;
            border-radius: 24px;
            box-shadow: var(--shadow-lg);
            transform: perspective(1000px) rotateY(-10deg);
            transition: transform 0.5s ease;
        }

        .mockup:hover {
            transform: perspective(1000px) rotateY(0);
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .floating-element {
            position: absolute;
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 10%;
            left: -5%;
            animation-delay: 0s;
            background: var(--gradient-primary);
        }

        .floating-element:nth-child(2) {
            width: 60px;
            height: 60px;
            bottom: 20%;
            right: -5%;
            animation-delay: 2s;
            background: var(--gradient-action);
        }

        .floating-element:nth-child(3) {
            width: 70px;
            height: 70px;
            top: 50%;
            left: -10%;
            animation-delay: 4s;
            background: var(--success);
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        .features-section {
            padding: 100px 5%;
            background: var(--secondary);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--text);
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: var(--gradient-action);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section-title p {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .feature-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 30px;
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background: var(--gradient-primary);
            transition: height 0.5s ease;
        }

        .feature-card:hover::before {
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 20px;
            position: relative;
            z-index: 1;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--text);
            position: relative;
            z-index: 1;
        }

        .feature-card p {
            color: var(--text-light);
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        /* قسم الباقات */
        .packages-section {
            padding: 100px 5%;
            background: var(--white);
        }

        .packages-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .package-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
            position: relative;
        }

        .package-card.popular {
            transform: scale(1.05);
            border: 2px solid var(--primary);
            z-index: 2;
        }

        .package-card.popular::before {
            content: 'الأكثر شيوعاً';
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--action);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 3;
        }

        .package-header {
            background: var(--gradient-primary);
            color: white;
            padding: 25px;
            text-align: center;
        }

        .package-header h3 {
            font-size: 1.6rem;
            margin-bottom: 5px;
        }

        .package-body {
            padding: 30px;
        }

        .package-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin: 20px 0;
            text-align: center;
        }

        .package-price span {
            font-size: 1rem;
            color: var(--text-light);
            display: block;
            margin-top: 5px;
        }

        .package-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .package-features li {
            margin-bottom: 15px;
            position: relative;
            padding-right: 30px;
            display: flex;
            align-items: center;
        }

        .package-features li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--success);
            position: absolute;
            right: 0;
            font-size: 1.1rem;
        }

        .package-actions {
            text-align: center;
        }

        /* قسم كيف يعمل */
        .how-it-works {
            padding: 100px 5%;
            background: var(--secondary);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 60px auto 0;
        }

        .process-step {
            background: var(--white);
            border-radius: var(--radius);
            padding: 30px;
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
            position: relative;
        }

        .step-number::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px solid var(--primary);
            animation: pulse 2s infinite;
            opacity: 0.5;
        }

        .process-step h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--text);
        }

        .process-step p {
            color: var(--text-light);
        }

        /* قسم العملاء */
        .clients-section {
            padding: 80px 5%;
            background: var(--white);
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 50px auto 0;
            align-items: center;
        }

        .client-logo {
            text-align: center;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: var(--transition);
        }

        .client-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }

        .client-logo img {
            max-width: 150px;
            max-height: 80px;
            width: auto;
            height: auto;
        }

        /* قسم الدعم */
        .support-section {
            padding: 100px 5%;
            background: var(--gradient-primary);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .support-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,224C672,235,768,181,864,160C960,139,1056,149,1152,165.3C1248,181,1344,203,1392,213.3L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
            background-size: cover;
            background-position: center bottom;
        }

        .support-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .support-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .support-features {
            list-style: none;
            margin-top: 30px;
        }

        .support-features li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .support-features i {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .support-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .support-image img {
            max-width: 100%;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
        }

        /* قسم الدعوة للعمل */
        .cta-section {
            padding: 100px 5%;
            background: var(--secondary);
            text-align: center;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--text);
        }

        .cta-content p {
            color: var(--text-light);
            margin-bottom: 40px;
            font-size: 1.1rem;
        }

        /* الفوتر */
        .footer {
            background: var(--text);
            color: var(--white);
            padding: 80px 5% 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-col h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50px;
            height: 2px;
            background: var(--action);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a:hover {
            color: var(--action);
            transform: translateX(-5px);
        }

        .contact-info {
            list-style: none;
        }

        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

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

        .social-links a:hover {
            background: var(--action);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-light);
        }

        /* الرسائل */
        .alert-container {
            position: fixed;
            top: 100px;
            right: 20px;
            z-index: 9999;
            max-width: 400px;
        }

        .alert-custom {
            border: none;
            border-radius: var(--radius);
            padding: 15px 20px;
            box-shadow: var(--shadow-lg);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            animation: slideInRight 0.5s forwards, fadeOut 0.5s forwards 4.5s;
            position: relative;
            overflow: hidden;
            border-right: 4px solid;
        }

        .alert-custom .icon {
            font-size: 1.5rem;
            margin-left: 15px;
            flex-shrink: 0;
        }

        .alert-custom .content {
            flex-grow: 1;
        }

        .alert-custom .btn-close {
            padding: 0.5rem;
            background-size: 0.75rem;
            opacity: 0.7;
            transition: opacity 0.2s ease;
        }

        .alert-success {
            background-color: #F0FDF4;
            color: #166534;
            border-color: #22C55E;
        }

        .alert-info {
            background-color: #F0F9FF;
            color: #026AA2;
            border-color: #0EA5E9;
        }

        .alert-warning {
            background-color: #FFFBEB;
            color: #9A3412;
            border-color: #F59E0B;
        }

        .alert-danger {
            background-color: #FEF2F2;
            color: #B91C1C;
            border-color: #EF4444;
        }

        @keyframes slideInRight {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

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

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

        /* الوسائط المتجاوبة */
        @media (max-width: 1200px) {
            .hero-text h1 {
                font-size: 3rem;
            }
            
            .packages-container {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }

        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
                gap: 50px;
            }
            
            .hero-text {
                max-width: 100%;
            }
            
            .hero-text p {
                max-width: 100%;
            }
            
            .hero-actions {
                justify-content: center;
            }
            
            .support-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .support-features li {
                justify-content: center;
            }
            
            .navbar-links {
                position: fixed;
                top: 70px;
                right: -100%;
                background: var(--white);
                width: 80%;
                height: calc(100vh - 70px);
                flex-direction: column;
                align-items: flex-start;
                padding: 30px;
                box-shadow: var(--shadow-lg);
                transition: right 0.3s ease;
                z-index: 999;
            }
            
            .navbar-links.open {
                right: 0;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .user-actions, .guest-actions {
                flex-direction: column;
                align-items: flex-start;
                width: 100%;
                gap: 15px;
            }
        }

        @media (max-width: 768px) {
            .hero-text h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .feature-card, .process-step, .package-card {
                padding: 20px;
            }
            
            .package-card.popular {
                transform: scale(1);
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-col h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .footer-links a:hover {
                transform: translateX(0);
            }
            
            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .hero {
                padding: 130px 5% 80px;
            }
            
            .hero-text h1 {
                font-size: 2rem;
            }
            
            .hero-actions {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .features-grid, .packages-container, .process-steps {
                grid-template-columns: 1fr;
            }
            
            .clients-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }