        /* ==================================================================
           Landing Page Specific Styles
           ================================================================== */

        /* Base Body Reset for Full Height */
        html, body {
            margin: 0;
            padding: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
            font-family: 'Varela Round', sans-serif;
        }

        /* Header */
        .landing-header {
            padding: 25px 8%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        .logo-container img {
            max-height: 55px;
            width: auto;
            transition: transform 0.3s ease;
            display: block;
        }

        .logo-container img:hover {
            transform: scale(1.03);
        }

        /* Top Login Button (Pill Shape) */
        .top-login-btn {
            display: inline-flex;
            align-items: center;
            padding: 12px 28px;
            background: var(--primary-blue);
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 1px;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(28, 59, 112, 0.2);
        }

        .top-login-btn i {
            margin-left: 8px;
            font-size: 18px;
        }

        .top-login-btn:hover {
            background: var(--primary-blue-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(28, 59, 112, 0.3);
            color: #fff;
        }

        /* Main Content Container */
        .landing-container {
            flex: 1; /* Pushes footer to the bottom */
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            z-index: 1;
            position: relative;
        }

        /* Welcome Glass Box */
        .welcome-box {
            max-width: 800px;
            width: 100%;
            text-align: center;
            padding: 50px;
            box-sizing: border-box;
            border-radius: 20px;
        }

        .welcome-box h1 {
            color: var(--primary-blue);
            margin: 0 0 15px 0;
            font-size: 38px;
            font-weight: 700;
            line-height: 1.3;
        }

        .subtitle {
            color: var(--text-muted);
            margin: 0 0 40px 0;
            font-size: 18px;
            font-weight: 500;
        }

        /* ==================================================================
           Improved Grid for Inspired List
           ================================================================== */
        .inspired-list {
            display: grid;
            grid-template-columns: none;
            gap: 15px;
            text-align: left;
        }

        .inspired-item {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.02);
        }

        .inspired-item:hover {
            background: rgba(255, 255, 255, 0.95);
            transform: translateY(-3px);
            border-color: rgba(232, 86, 37, 0.3);
            box-shadow: 0 6px 15px rgba(232, 86, 37, 0.1);
        }

        .feature-icon {
            width: 45px;
            height: 45px;
            background: rgba(232, 86, 37, 0.1);
            color: var(--primary-orange);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .inspired-item span {
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-orange);
        }

        .letter-highlight {
            color: #0f2245 !important;
            font-weight: 800 !important;
            font-size: 20px !important;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 25px 20px;
            color: var(--text-muted);
            font-size: 13px;
            z-index: 10;
            position: relative;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(5px);
        }

        footer a {
            color: var(--text-muted);
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s ease;
            font-weight: bold;
        }

        footer a:hover {
            color: var(--primary-blue);
        }

        /* ==================================================================
           Responsive Design (التجاوب المثالي مع كافة الشاشات)
           ================================================================== */
        
        /* Tablets & Small Laptops */
        @media (max-width: 992px) {
            .landing-header {
                padding: 20px 5%;
            }
            .welcome-box {
                padding: 40px 30px;
            }
            .welcome-box h1 {
                font-size: 32px;
            }
        }

        /* Mobile Devices */
        @media (max-width: 768px) {
            .landing-header {
                padding: 15px 20px;
                /* إبقاء الشعار وزر الدخول في نفس السطر وتصغيرهم قليلاً */
            }
            
            .logo-container img {
                max-height: 40px;
            }

            .top-login-btn {
                padding: 10px 20px;
                font-size: 13px;
            }
            .top-login-btn i {
                font-size: 15px;
            }

            .welcome-box {
                padding: 30px 20px;
                border-radius: 16px;
            }

            .welcome-box h1 {
                font-size: 26px;
                margin-bottom: 10px;
            }
            
            .subtitle {
                font-size: 15px;
                margin-bottom: 25px;
            }

            /* تحويل القائمة إلى عمود واحد */
            .inspired-list {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .inspired-item {
                padding: 12px 15px;
            }
            
            .inspired-item:hover {
                transform: translateX(5px); /* تغيير الحركة في الجوال لتكون أفقية */
            }

            .feature-icon {
                width: 38px;
                height: 38px;
                font-size: 16px;
            }
        }

        /* Very Small Screens (e.g., iPhone SE) */
        @media (max-width: 480px) {
            .landing-header {
                padding: 15px;
            }

            .logo-container img {
                max-height: 35px;
            }

            .top-login-btn {
                padding: 8px 16px;
                font-size: 12px;
            }

            .welcome-box {
                padding: 25px 15px;
            }

            .welcome-box h1 {
                font-size: 22px;
            }

            .subtitle {
                font-size: 13px;
                margin-bottom: 20px;
            }

            .inspired-item span {
                font-size: 14px;
            }
            
            .letter-highlight {
                font-size: 18px !important;
            }
        }