
        :root {
            --primary-dark: #1e1b4b;
            --primary: #4f46e5;
            --primary-light: #c7d2fe;
            --secondary: #6ee7b7;
            --background: #0f172a;
            --background-secondary: #1e293b;
            --dark-bg: #0f172a;
            --text-dark: #f1f5f9;
            --text-light: #94a3b8;
            --card-bg: #1e293b;
            --border-color: #334155;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Tajawal', sans-serif;
            background-color: var(--background);
            color: var(--text-dark);
        }


        .notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

    .notification.show {
    transform: translateX(0);
    }

.notification.success {
    background: #10b981;
}

.notification.error {
    background: #ef4444;
}

.notification.info {
    background: #3b82f6;
}

        /* Holland Assessment Page Styles */
        .holland-assessment-page {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0f172a, #1e293b);
            z-index: 1001;
            overflow-y: auto;
        }
        
        .holland-assessment-page.active {
            display: block;
        }
        
        .holland-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .holland-header {
            text-align: center;
            margin-bottom: 2rem;
        }


        .admin-table-select {
    background-color: #374151; /* لون خلفية غامق */
    color: #ffffff; /* لون نص أبيض */
    border: 1px solid #4b5563; /* لون حدود */
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 14px;
}

.admin-table-select {
    background-color: var(--background);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 14px;
    min-width: 120px;
}

.admin-table-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1);
}

.session-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.session-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
        
        .holland-progress {
            width: 100%;
            height: 8px;
            background: #334155;
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 2rem;
        }
        
        .holland-progress-fill {
            height: 100%;
            background: linear-gradient(135deg, var(--primary), #6366f1);
            transition: width 0.3s ease;
            border-radius: 4px;
        }
        
        .holland-question-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            margin-bottom: 2rem;
            border: 1px solid var(--border-color);
        }
        
        .holland-question {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .holland-options {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }
        
        .holland-option {
            background: var(--background);
            border: 2px solid var(--border-color);
            border-radius: 12px;
            padding: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            font-weight: 500;
            color: var(--text-dark);
        }
        
        .holland-option:hover {
            border-color: var(--primary);
            background: rgba(79, 70, 229, 0.1);
        }
        
        .holland-option.selected {
            border-color: var(--primary);
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(99, 102, 241, 0.1));
            color: var(--primary-light);
        }
        
        .holland-navigation {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .holland-results {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            text-align: center;
            border: 1px solid var(--border-color);
        }
        
        .holland-type-card {
            background: linear-gradient(135deg, var(--background), var(--background-secondary));
            border-radius: 16px;
            padding: 1.5rem;
            margin: 1rem 0;
            border: 2px solid var(--border-color);
        }
        
        .holland-type-card.primary {
            background: linear-gradient(135deg, var(--primary), #6366f1);
            color: white;
            border-color: var(--primary);
        }
        
        .holland-type-score {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
        }

        /* Login Modal Styles */
        /* style.css */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    /* --- ✅ START: Scroll Fix --- */
    overflow-y: auto; /* Alows the entire modal wrapper to scroll */
    padding: 5vh 0; /* Adds some space at the top and bottom */
    align-items: flex-start; /* Aligns the content box to the top */
    justify-content: center;
    /* --- ✅ END: Scroll Fix --- */
}
        
        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 20px;
            width: 90%;
            max-width: 400px;
            position: relative;
            animation: modalSlideIn 0.3s ease-out;
            border: 1px solid var(--border-color);
        }
        
        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            left: 15px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-light);
        }
        
        .close-modal:hover {
            color: var(--text-dark);
        }

        /* Enhanced Admin Panel Styles */
        .admin-panel {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--background);
            z-index: 999;
            overflow: hidden;
        }
        
        .admin-panel.active {
            display: flex;
        }
        
        .admin-sidebar {
            width: 280px;
            background: linear-gradient(135deg, var(--dark-bg), #1e293b);
            height: 100vh;
            position: fixed;
            right: 0;
            top: 0;
            padding: 2rem 1rem;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            overflow-y: auto;
            box-shadow: -5px 0 20px rgba(0,0,0,0.3);
        }
        
        .admin-sidebar.active {
            transform: translateX(0);
        }
        
        .admin-content {
            margin-right: 0;
            padding: 2rem;
            transition: margin-right 0.3s ease;
            flex: 1;
            height: 100vh;
            overflow-y: auto;
            background: var(--background);
        }
        
        .admin-content.with-sidebar {
            margin-right: 280px;
        }
        
        .admin-card {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }
        
        .admin-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
            transform: translateY(-2px);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .stat-card {
            background: linear-gradient(135deg, var(--primary), #6366f1);
            color: white;
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            transform: translate(30px, -30px);
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(79, 70, 229, 0.3);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 1;
        }
        
        .stat-label {
            font-size: 1.1rem;
            font-weight: 600;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }
        
        .admin-nav-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            margin-bottom: 8px;
            border-radius: 12px;
            transition: all 0.3s ease;
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }
        
        .admin-nav-item::before {
            content: '';
            position: absolute;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: right 0.5s ease;
        }
        
        .admin-nav-item:hover {
            background: rgba(255,255,255,0.1);
            color: white;
            transform: translateX(-5px);
        }
        
        .admin-nav-item:hover::before {
            right: 100%;
        }
        
        .admin-nav-item.active {
            background: rgba(255,255,255,0.15);
            color: white;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .admin-nav-item i {
            width: 20px;
            text-align: center;
            font-size: 1.1rem;
        }
        
        .admin-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            border: 1px solid var(--border-color);
        }
        
        .admin-table th {
            background: linear-gradient(135deg, var(--background), var(--background-secondary));
            padding: 1rem;
            text-align: right;
            font-weight: 700;
            color: var(--text-dark);
            border-bottom: 2px solid var(--border-color);
        }
        
        .admin-table td {
            padding: 1rem;
            border-bottom: 1px solid var(--border-color);
            text-align: right;
            color: var(--text-dark);
        }
        
        .admin-table tbody tr:hover {
            background: var(--background);
        }
        
        .status-badge {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-align: center;
            display: inline-block;
            min-width: 80px;
        }
        
        .status-active {
            background: rgba(16, 185, 129, 0.2);
            color: #10b981;
            border: 1px solid rgba(16, 185, 129, 0.3);
        }
        
        .status-inactive {
            background: rgba(239, 68, 68, 0.2);
            color: #ef4444;
            border: 1px solid rgba(239, 68, 68, 0.3);
        }
        
        .status-pending {
            background: rgba(245, 158, 11, 0.2);
            color: #f59e0b;
            border: 1px solid rgba(245, 158, 11, 0.3);
        }
        
        .status-completed {
            background: rgba(59, 130, 246, 0.2);
            color: #3b82f6;
            border: 1px solid rgba(59, 130, 246, 0.3);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary), #6366f1);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
        }
        
        .btn-secondary {
            background: linear-gradient(135deg, #6ee7b7, #34d399);
            color: var(--dark-bg);
            border: none;
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .btn-secondary:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(110, 231, 183, 0.3);
        }
        
        .btn-danger {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .btn-danger:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-dark);
        }
        
        .form-control {
            width: 100%;
            padding: 12px;
            border: 2px solid var(--border-color);
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--background);
            color: var(--text-dark);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
            background: var(--card-bg);
        }
        
        .search-box {
            position: relative;
            margin-bottom: 2rem;
        }
        
        .search-box input {
            padding-right: 50px;
        }
        
        .search-box i {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-light);
        }
        
        .filter-tabs {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            border-bottom: 2px solid var(--border-color);
        }
        
        .filter-tab {
            padding: 12px 24px;
            background: none;
            border: none;
            font-weight: 600;
            color: var(--text-light);
            cursor: pointer;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }
        
        .filter-tab.active {
            color: var(--primary);
            border-bottom-color: var(--primary);
        }
        
        .chart-container {
            position: relative;
            height: 400px;
            margin-bottom: 2rem;
        }
        
        .notification-item {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 1rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
            position: relative;
            color: var(--text-dark);
        }
        
        .notification-item:hover {
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            transform: translateY(-2px);
        }
        
        .notification-item.unread {
            border-right: 4px solid var(--primary);
            background: linear-gradient(135deg, var(--card-bg), rgba(79, 70, 229, 0.05));
        }
        
        .export-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        
        .quick-actions {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }
        
        .quick-action-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--text-dark);
        }
        
        .quick-action-card:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            transform: translateY(-5px);
        }
        
        .quick-action-card i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .progress-bar {
            width: 100%;
            height: 8px;
            background: var(--border-color);
            border-radius: 4px;
            overflow: hidden;
        }
        
        .progress-fill {
            height: 100%;
            background: linear-gradient(135deg, var(--primary), #6366f1);
            transition: width 0.3s ease;
        }

        /* Add/Edit Modal Styles */
        .admin-modal {
            display: none;
            position: fixed;
            z-index: 1002;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.8);
            backdrop-filter: blur(5px);
        }
        
        .admin-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .admin-modal-content {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 20px;
            width: 90%;
            max-width: 600px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: modalSlideIn 0.3s ease-out;
            border: 1px solid var(--border-color);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .admin-sidebar {
                width: 100%;
                transform: translateX(100%);
            }
            
            .admin-content.with-sidebar {
                margin-right: 0;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .admin-card {
                padding: 1.5rem;
            }
            
            .admin-table {
                font-size: 0.9rem;
            }
            
            .admin-table th,
            .admin-table td {
                padding: 0.8rem;
            }
            
            .quick-actions {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .holland-container {
                padding: 1rem;
            }
            
            .holland-question-card {
                padding: 1.5rem;
            }
        }

        /* Original styles continue here... */
        #mobile-menu {
            transition: opacity 0.3s ease-in-out;
        }
        
        #mobile-menu.hidden {
            opacity: 0;
            pointer-events: none;
        }
        
        body.overflow-hidden {
            overflow: hidden;
        }
        
        .highlight-accent {
            background-image: linear-gradient(120deg, var(--secondary) 0%, #a7f3d0 100%);
            background-repeat: no-repeat;
            background-size: 100% 30%;
            background-position: 0 88%;
            transition: background-size 0.25s ease-in;
        }
        
        .highlight-accent:hover {
            background-size: 100% 88%;
        }
        
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .tab-button {
            position: relative;
            transition: color 0.3s ease;
            color: var(--text-light);
        }
        
        .tab-button::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        .tab-button.active {
            color: var(--primary);
            font-weight: 700;
        }
        
        .tab-button.active::after {
            width: 70%;
        }
        
        .tab-content { 
            display: none; 
        }
        
        .tab-content.active { 
            display: flex; 
        }
        
        .testimonial-stack { 
            position: relative; 
            width: 100%; 
            min-height: 250px; 
        }
        
        .testimonial-card {
            position: absolute; 
            width: 100%; 
            padding: 1.5rem; 
            border-radius: 1.5rem; 
            background: var(--card-bg);
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3), 0 4px 6px -2px rgba(0,0,0,0.2);
            transition: transform 0.5s ease, opacity 0.5s ease, z-index 0s;
            display: flex; 
            flex-direction: column; 
            justify-content: center; 
            align-items: center; 
            text-align: center;
            border: 1px solid var(--border-color);
        }
        
        .testimonial-card.active { 
            z-index: 10; 
            transform: translateY(0) scale(1); 
            opacity: 1; 
            transition-delay: 0.2s; 
        }
        
        .testimonial-card.prev { 
            z-index: 9; 
            transform: translateX(30px) scale(0.95); 
            opacity: 0.5; 
        }
        
        .testimonial-card.next { 
            z-index: 8; 
            transform: translateX(-30px) scale(0.95); 
            opacity: 0.5; 
        }
        
        .testimonial-card.hidden-card { 
            transform: scale(0.85); 
            opacity: 0; 
            z-index: 7; 
        }


        
        
        .testimonial-avatar {
            width: 40px; 
            height: 40px; 
            border-radius: 9999px; 
            background-color: var(--primary); 
            color: white;
            display: flex; 
            align-items: center; 
            justify-content: center; 
            font-weight: bold;
            position: absolute; 
            bottom: -20px; 
            left: 50%; 
            transform: translateX(-50%); 
            border: 4px solid var(--card-bg);
        }
        
        .testimonial-card-gradient { 
            background: linear-gradient(135deg, var(--card-bg), rgba(79, 70, 229, 0.1)); 
        }
        
        .section-title { 
            font-size: 2rem; 
            line-height: 2.25rem; 
            font-weight: 900; 
            color: var(--text-dark);
        }
        
        @media (min-width: 768px) {
            .section-title { 
                font-size: 3rem; 
                line-height: 1; 
            }
        }

        /* Enhanced Mobile Package Styles */
        .mobile-package-card {
            background: var(--card-bg);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--border-color);
        }
        
        .mobile-package-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }
        
        .mobile-package-card.featured {
            background: linear-gradient(135deg, #1e1b4b 0%, #4f46e5 100%);
            color: white;
            transform: scale(1.05);
        }
        
        .mobile-package-card.featured::before {
            content: 'الأكثر طلباً';
            position: absolute;
            top: 15px;
            right: -30px;
            background: linear-gradient(45deg, #6ee7b7, #34d399);
            color: #1e1b4b;
            padding: 5px 40px;
            font-size: 12px;
            font-weight: bold;
            transform: rotate(45deg);
        }
        
        .mobile-package-price {
            font-size: 2.5rem;
            font-weight: 900;
            line-height: 1;
        }
        
        .mobile-package-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .mobile-package-card:not(.featured) .mobile-package-feature {
            border-bottom: 1px solid var(--border-color);
        }
        
        .mobile-package-feature:last-child {
            border-bottom: none;
        }
        
        .mobile-package-feature svg {
            width: 20px;
            height: 20px;
            color: #6ee7b7;
            flex-shrink: 0;
        }
        
        .mobile-package-button {
            width: 100%;
            padding: 16px;
            border-radius: 12px;
            font-weight: bold;
            text-align: center;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }
        
        .mobile-package-button:hover {
            transform: translateY(-2px);
        }
        
        .mobile-package-button.primary {
            background: linear-gradient(135deg, #4f46e5, #6366f1);
            color: white;
        }
        
        .mobile-package-button.secondary {
            background: linear-gradient(135deg, #6ee7b7, #34d399);
            color: #1e1b4b;
        }

        /* Continue with all other original styles... */
        .mobile-detailed-view {
            padding: 20px;
        }
        
        .mobile-package-selector {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 16px;
            margin-bottom: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            border: 2px solid var(--border-color);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .mobile-package-selector:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.4);
        }
        
        .mobile-package-selector.active {
            border-color: var(--primary);
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(99, 102, 241, 0.05));
            transform: scale(1.02);
        }
        
        .mobile-mentor-card {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 16px;
            margin-bottom: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }
        
        .mobile-mentor-card:hover {
            box-shadow: 0 8px 20px rgba(0,0,0,0.4);
        }
        
        .mobile-mentor-header {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
        }
        
        .mobile-mentor-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--border-color);
        }
        
        .mobile-mentor-info h4 {
            font-weight: bold;
            color: var(--text-dark);
            margin-bottom: 4px;
        }
        
        .mobile-mentor-info p {
            font-size: 14px;
            color: var(--text-light);
        }
        
        .mobile-mentor-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 16px;
        }
        
        .mobile-mentor-card.open .mobile-mentor-body {
            max-height: 200px;
            padding: 16px;
        }
        
        .mobile-mentor-card.open .arrow-icon {
            transform: rotate(180deg);
        }
        
        .arrow-icon {
            transition: transform 0.3s ease;
            width: 20px;
            height: 20px;
            color: var(--text-light);
        }
        
        .mobile-sticky-header {
            position: sticky;
            top: 0;
            z-index: 40;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            padding: 16px 20px;
        }
        
        .mobile-back-button {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .mobile-back-button:hover {
            transform: translateX(5px);
        }
        
        .mobile-video-container {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 24px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        }
        
        .mobile-video-container iframe {
            width: 100%;
            height: 200px;
            border: none;
        }
        
        .mobile-package-details {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 20px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.3);
            border: 1px solid var(--border-color);
        }
        
        .mobile-package-details h2 {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--text-dark);
            margin-bottom: 16px;
        }
        
        .mobile-package-details .price-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding: 16px;
            background: linear-gradient(135deg, var(--background), var(--background-secondary));
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }
        
        .mobile-package-details .price-section .price {
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary);
        }
        
        .mobile-package-details .description {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 24px;
        }
        
        .mobile-service-list {
            margin-bottom: 24px;
        }
        
        .mobile-service-list h3 {
            font-size: 1.125rem;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 12px;
            padding: 8px 16px;
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(99, 102, 241, 0.05));
            border-radius: 20px;
            display: inline-block;
            border: 1px solid rgba(79, 70, 229, 0.2);
        }
        
        .mobile-service-list ul {
            list-style: none;
            padding: 0;
        }
        
        .mobile-service-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 8px 0;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-dark);
        }
        
        .mobile-service-list li:last-child {
            border-bottom: none;
        }
        
        .mobile-service-list li::before {
            content: '✓';
            color: #6ee7b7;
            font-weight: bold;
            font-size: 18px;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(110, 231, 183, 0.2);
            border-radius: 50%;
            flex-shrink: 0;
        }
        
        @media (max-width: 768px) {
            .mobile-package-card {
                margin-bottom: 20px;
            }
            
            .mobile-detailed-view {
                padding: 16px;
            }
            
            .mobile-package-details {
                padding: 20px;
            }
            
            .mobile-package-details h2 {
                font-size: 1.25rem;
            }
            
            .mobile-package-details .price-section .price {
                font-size: 1.75rem;
            }
            
            .mobile-video-container iframe {
                height: 180px;
            }
        }
        
        .view-transition {
            transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
        }
        
        .view-hidden {
            opacity: 0;
            transform: scale(0.98);
            pointer-events: none;
            position: absolute;
            width: 100%;
        }
        
        .view-visible {
            opacity: 1;
            transform: scale(1);
            position: static;
        }
        
        .mentors-gradient-text {
            background: linear-gradient(90deg, #a5b4fc, var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        @media (max-width: 768px) {
            .tab-content { 
                flex-direction: column-reverse; 
                gap: 2rem; 
            }
            
            .holland-grid { 
                grid-template-columns: repeat(2, 1fr); 
                gap: 1rem; 
            }
            
            #packages-grid-view .grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            #packages-detailed-view .grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            #mentors-panel {
                order: 2;
            }
            
            #details-panel {
                order: 1;
            }
            
            #packages-panel {
                order: 3;
            }
        }
        
        .loading-spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 2px solid var(--border-color);
            border-top: 2px solid #4f46e5;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .btn-gradient {
            background: linear-gradient(135deg, #4f46e5, #6366f1);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        
        .btn-gradient:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
        }

        /* Purchase Page Styles */
        .purchase-page {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--background);
            z-index: 998;
            overflow-y: auto;
        }
        
        .purchase-page.active {
            display: block;
        }
        
        .purchase-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        .purchase-header {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
            border: 1px solid var(--border-color);
        }
        
        .purchase-form {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
            border: 1px solid var(--border-color);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-dark);
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
            background: var(--background);
            color: var(--text-dark);
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: var(--card-bg);
        }
        
        .payment-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }
        
        .payment-method {
            border: 2px solid var(--border-color);
            border-radius: 12px;
            padding: 1rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: var(--card-bg);
            color: var(--text-dark);
        }
        
        .payment-method:hover {
            border-color: var(--primary);
            background: rgba(79, 70, 229, 0.05);
        }
        
        .payment-method.selected {
            border-color: var(--primary);
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(99, 102, 241, 0.05));
        }

        /* START: Styles for Tree Plan Section (Modal) */
        .tree-plan-page { 
            display: none; 
            position: fixed; 
            top: 0; 
            left: 0; 
            width: 100%; 
            height: 100%; 
            background: linear-gradient(135deg, var(--background) 0%, var(--background-secondary) 100%); 
            z-index: 1005; /* Higher z-index */ 
            overflow-y: auto; 
        }
        
        .tree-plan-page.active { 
            display: block; 
            animation: fadeIn 0.3s ease-out; 
        }
        
        @keyframes fadeIn { 
            from { opacity: 0; } 
            to { opacity: 1; } 
        }
        
        .tree-plan-container { 
            max-width: 1200px; 
            margin: 0 auto; 
            padding: 2rem; 
            min-height: 100vh; 
        }
        
        .tree-plan-header { 
            text-align: center; 
            margin-bottom: 2rem; 
            position: relative; 
        }
        
        .close-tree-plan { 
            position: absolute; 
            top: 0; 
            left: 0; 
            background: var(--card-bg); 
            border: 1px solid var(--border-color);
            border-radius: 50%; 
            width: 50px; 
            height: 50px; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            cursor: pointer; 
            transition: all 0.3s ease; 
            box-shadow: 0 4px 15px rgba(0,0,0,0.3); 
            color: var(--text-dark);
        }
        
        .close-tree-plan:hover { 
            transform: scale(1.1) rotate(90deg); 
        }
        
        .ai-input-section { 
            background: rgba(30, 41, 59, 0.95); 
            backdrop-filter: blur(10px); 
            border-radius: 24px; 
            padding: 2.5rem; 
            margin-bottom: 3rem; 
            box-shadow: 0 20px 40px rgba(0,0,0,0.4); 
            border: 1px solid var(--border-color);
        }
        
        .specialty-input { 
            width: 100%; 
            padding: 1.2rem 1.5rem; 
            border: 2px solid var(--border-color); 
            border-radius: 16px; 
            font-size: 1.1rem; 
            transition: all 0.3s ease; 
            background: var(--background);
            color: var(--text-dark);
        }
        
        .specialty-input:focus { 
            outline: none; 
            border-color: var(--primary); 
            box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1); 
            background: var(--card-bg);
        }
        
        .build-plan-button { 
            background: linear-gradient(135deg, var(--primary), #6366f1); 
            color: white; 
            border: none; 
            padding: 1.2rem 2.5rem; 
            border-radius: 16px; 
            font-weight: 700; 
            font-size: 1.1rem; 
            cursor: pointer; 
            transition: all 0.3s ease; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            gap: 8px; 
        }
        
        .build-plan-button:hover { 
            transform: translateY(-3px); 
            box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3); 
        }
        
        .build-plan-button:disabled { 
            background: #6b7280; 
            cursor: not-allowed; 
            transform: none; 
            box-shadow: none; 
        }
        
        .ai-loading { 
            display: none; 
            text-align: center; 
            padding: 3rem; 
        }
        
        .ai-loading.active { 
            display: block; 
        }
        
        .tree-result-container { 
            opacity: 0; 
            transform: translateY(20px); 
            transition: all 0.5s ease; 
        }
        
        .tree-result-container.visible { 
            opacity: 1; 
            transform: translateY(0); 
        }
        
        .learning-path { 
            display: flex; 
            flex-direction: column; 
            gap: 3rem; 
            max-width: 1200px; 
            margin: 0 auto; 
        }
        
        .path-level { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            position: relative; 
        }
        
        .level-header { 
            background: linear-gradient(135deg, var(--primary), #6366f1); 
            color: white; 
            padding: 1rem 2rem; 
            border-radius: 50px; 
            font-size: 1.25rem; 
            font-weight: 800; 
            margin-bottom: 2rem; 
            box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3); 
            z-index: 10; 
        }
        
        .courses-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
            gap: 1.5rem; 
            width: 100%; 
        }
        
        .course-card { 
            background: var(--card-bg); 
            border-radius: 16px; 
            padding: 1.5rem; 
            box-shadow: 0 8px 25px rgba(0,0,0,0.3); 
            border: 1px solid var(--border-color); 
            transition: all 0.3s ease; 
            text-decoration: none; 
            color: inherit; 
            display: block; 
        }
        
        .course-card:hover { 
            transform: translateY(-8px); 
            box-shadow: 0 15px 30px rgba(0,0,0,0.4); 
            border-color: var(--primary); 
        }
        
        .course-title { 
            font-size: 1.1rem; 
            font-weight: 700; 
            color: var(--text-dark); 
            margin-bottom: 0.5rem; 
        }
        
        .course-description { 
            font-size: 0.9rem; 
            color: var(--text-light); 
        }
        
        .level-connector { 
            position: absolute; 
            bottom: -1.5rem; 
            left: 50%; 
            transform: translateX(-50%); 
            width: 3px; 
            height: 3rem; 
            background-color: var(--primary-light); 
        }
        
        .path-level:last-child .level-connector { 
            display: none; 
        }
        
        .error-message { 
            background: rgba(239, 68, 68, 0.1); 
            border: 1px solid rgba(239, 68, 68, 0.3); 
            color: #ef4444; 
            padding: 1rem; 
            border-radius: 12px; 
            margin-top: 1rem; 
            text-align: center; 
        }
        
        .error-message pre { 
            background-color: rgba(239, 68, 68, 0.05); 
            padding: 10px; 
            border-radius: 8px; 
            margin-top: 10px; 
            white-space: pre-wrap; 
            word-wrap: break-word; 
            text-align: left; 
            direction: ltr; 
            font-size: 0.8rem;
        }
        /* END: Styles for Tree Plan Section (Modal) */

        /* Update specific text colors for better contrast */
        h1, h2, h3, h4, h5, h6 {
            color: var(--text-dark);
        }

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

        /* Update navigation colors */
        nav a {
            color: var(--text-dark);
        }

        nav a:hover {
            color: var(--primary);
        }

        /* Update button styles for dark theme */
        .btn-secondary {
            background: linear-gradient(135deg, #6ee7b7, #34d399);
            color: var(--dark-bg);
        }

        /* Update card backgrounds and borders */
        .bg-white {
            background: var(--card-bg) !important;
        }

        .bg-slate-50 {
            background: var(--background-secondary) !important;
        }

        .border-slate-200 {
            border-color: var(--border-color) !important;
        }

        /* Update text colors */
        .text-slate-800 {
            color: var(--text-dark) !important;
        }

        .text-slate-600 {
            color: var(--text-light) !important;
        }

        .text-slate-700 {
            color: var(--text-dark) !important;
        }

        .text-slate-500 {
            color: var(--text-light) !important;
        }

        .text-slate-400 {
            color: var(--text-light) !important;
        }

        /* Update shadow colors */
        .shadow-lg {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2) !important;
        }

        .shadow-md {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2) !important;
        }

        /* Holland grid cards */
        .holland-grid .bg-white {
            background: var(--card-bg) !important;
            border: 1px solid var(--border-color);
        }

        /* Footer specific styling */
        footer {
            background: var(--dark-bg) !important;
        }

        /* Header styling */
        header {
            background: rgba(15, 23, 42, 0.8) !important;
        }

        header .bg-white\/80 {
            background: rgba(30, 41, 59, 0.8) !important;
        }

        /* Mobile menu */
        #mobile-menu {
            background: var(--background) !important;
        }

        /* Notification styles */
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            color: white;
            font-weight: 600;
            z-index: 9999;
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }

        .notification.show {
            transform: translateX(0);
        }

        .notification.success {
            background: linear-gradient(135deg, #10b981, #059669);
        }

        .notification.error {
            background: linear-gradient(135deg, #ef4444, #dc2626);
        }

        .notification.info {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
        }
   


        /* تصميم جديد لأزرار تغيير الحالة في لوحة التحكم */
.admin-table-select {
    background-color: #4f46e5; /* لون بنفسجي جذاب */
    color: white;
    border: none;
    border-radius: 8px; /* حواف دائرية أكثر */
    padding: 8px 16px;
    font-weight: bold;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' width='18px' height='18px'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 0.7rem center;
    padding-left: 2.5rem; /* مساحة أكبر للأيقونة */
    transition: background-color 0.2s ease; /* تأثير عند تمرير الماوس */
}

.admin-table-select:hover {
    background-color: #4338ca; /* لون أغمق عند التمرير */
}


@media (max-width: 600px) {
  .mobile-package-card, .admin-card, .purchase-header, .purchase-form {
    padding: 0.9rem !important;
    border-radius: 10px !important;
  }
  .mobile-package-price {
    font-size: 1.5rem !important;
  }
  .mobile-package-feature {
    font-size: 13px !important;
    gap: 4px !important;
    padding: 3px 0 !important;
  }
  .mobile-package-card h3, .mobile-package-card .price-section .price {
    font-size: 1rem !important;
  }
  .mobile-package-button {
    padding: 10px !important;
    font-size: 14px !important;
  }
  .mobile-mentor-card { padding: 8px !important; }
  
  /* تحسينات إضافية للهاتف */
  .section-title {
    font-size: 1.4rem !important;
  }
  .step-card {
    padding: 1rem !important;
  }
  .step-icon {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.3rem !important;
  }
  .step-title {
    font-size: 1.1rem !important;
  }
  .step-description {
    font-size: 0.85rem !important;
  }
}

.highlight-box {
  background: #fde68a;
  color: #92400e;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 10px;
  margin-bottom: 16px;
  text-align: center;
  font-size: 17px;
}

/* Add these new styles to your existing style.css file */

/* How It Works Section */
.step-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
}
.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}
.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #6366f1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}
.step-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}
.step-description {
    color: var(--text-light);
    line-height: 1.6;
}


/* Multi-Step Purchase Form */
.form-step {
    display: none;
    animation: stepFadeIn 0.5s ease;
}
.form-step.active {
    display: block;
}
@keyframes stepFadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background-color: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}
.progress-bar-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--primary), #6366f1);
    transition: width 0.4s ease-in-out;
}


/* Mobile Responsiveness Improvements */
@media (max-width: 768px) {
    /* Make packages more compact */
    .mobile-package-card {
        transform: none !important; /* Reset featured transform */
        margin-bottom: 1.5rem;
    }
    .mobile-package-card .p-6, .mobile-package-card .p-8 {
        padding: 1rem !important;
    }
    .mobile-package-price {
        font-size: 1.8rem !important;
    }
    .mobile-package-card h3 {
        font-size: 1.1rem !important;
    }
    .mobile-package-card .text-sm {
        font-size: 0.85rem !important;
    }
    .mobile-package-feature {
        padding: 5px 0 !important;
        font-size: 0.85rem !important;
    }
    .mobile-package-feature svg {
        width: 16px !important;
        height: 16px !important;
    }
    .mobile-package-button {
        padding: 10px !important;
        font-size: 0.95rem !important;
    }
    
    /* تحسين عرض الباقات على الهاتف */
    #packages .grid {
        gap: 1rem !important;
    }
    
    .mobile-package-card .w-12 {
        width: 2.5rem !important;
        height: 2.5rem !important;
    }
    
    .mobile-package-card .w-12 svg {
        width: 1.25rem !important;
        height: 1.25rem !important;
    }

    /* Adjust Admin Table Currency */
    #admin-financial .font-bold.text-purple-600 {
        font-size: 0.9rem;
    }
    
    /* تحسين النموذج متعدد الخطوات */
    .modal-content {
        width: 95% !important;
        padding: 1.25rem !important;
    }
    
    .form-step h3 {
        font-size: 1.3rem !important;
    }
    
    .form-step .form-group label {
        font-size: 0.9rem !important;
    }
    
    /* إصلاح قائمة الملف الشخصي على الهاتف */
    #userDropdown {
        position: fixed !important;
        left: auto !important;
        right: 10px !important;
        top: 60px !important;
        width: calc(100% - 20px) !important;
        max-width: 300px !important;
        z-index: 9999 !important;
        background: var(--card-bg) !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.5) !important;
    }
    
    /* تحسين لوحة التحكم للهاتف */
    .admin-panel {
        flex-direction: column !important;
    }
    
    .admin-sidebar {
        width: 100% !important;
        height: auto !important;
        position: relative !important;
        transform: none !important;
        padding: 1rem !important;
    }
    
    .admin-content {
        margin-right: 0 !important;
        padding: 1rem !important;
    }
    
    /* تحسين بطاقات الباقات في الادمن */
    #packagesGrid > div {
        padding: 1rem !important;
    }
    
    #packagesGrid h4 {
        font-size: 1rem !important;
    }
    
    #packagesGrid .flex.gap-2 {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    #packagesGrid button {
        width: 100% !important;
        font-size: 0.85rem !important;
        padding: 8px !important;
    }
    
    /* تحسين الجداول في الادمن */
    .admin-table {
        font-size: 0.85rem !important;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 0.5rem !important;
    }
    
    /* تحسين stat cards */
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .stat-card {
        padding: 1.25rem !important;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
    
    /* تحسين admin cards */
    .admin-card {
        padding: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* تحسين session cards */
    .session-card {
        padding: 1rem !important;
    }
    
    .session-card h4 {
        font-size: 1rem !important;
    }
    
    .session-card .grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
    
    /* تحسين النوافذ المنبثقة في الادمن */
    .admin-modal-content {
        width: 95% !important;
        max-width: 95% !important;
        padding: 1.25rem !important;
    }
    
    .admin-modal-content h2 {
        font-size: 1.3rem !important;
    }
    
    .admin-modal-content .form-group label {
        font-size: 0.9rem !important;
    }
    
    .admin-modal-content .form-control {
        font-size: 0.9rem !important;
        padding: 0.6rem !important;
    }
}


/* Keep all your original styles below this line */
:root {
    --primary-dark: #1e1b4b;
    --primary: #4f46e5;
    --primary-light: #c7d2fe;
    --secondary: #6ee7b7;
    --background: #0f172a;
    --background-secondary: #1e293b;
    --dark-bg: #0f172a;
    --text-dark: #f1f5f9;
    --text-light: #94a3b8;
    --card-bg: #1e293b;
    --border-color: #334155;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--background);
    color: var(--text-dark);
}
/* ... etc. */

@media (max-width: 600px) {
  .testimonial-card { padding: 1rem !important; }
  .testimonial-avatar { width: 32px; height: 32px; font-size: 16px; }
}

/* --- START: Golden Package Styles --- */
.mobile-package-card.golden-package {
    background: linear-gradient(135deg, #4a3f24 0%, #a58c4c 50%, #d4bf7a 100%);
    color: #1a1a1a;
    transform: scale(1.05);
    border: 2px solid #fde68a;
    box-shadow: 0 15px 40px rgba(253, 230, 138, 0.2);
}

.mobile-package-card.golden-package::before {
    content: 'تجربة مجانية';
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(45deg, #1e1b4b, #312e69);
    color: #fde68a;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.mobile-package-card.golden-package h3,
.mobile-package-card.golden-package .mobile-package-price,
.mobile-package-card.golden-package .mobile-package-feature span {
    color: #1f2937; /* لون نص غامق للوضوح */
}

.mobile-package-card.golden-package p,
.mobile-package-card.golden-package span:not(.mobile-package-price) {
    color: #4b5563; /* لون نص ثانوي أغمق */
}

.mobile-package-card.golden-package .mobile-package-feature svg {
    color: #854d0e; /* لون أيقونة الصح */
}

.mobile-package-card.golden-package .w-12 {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-package-card.golden-package .w-12 svg {
    color: #1f2937;
}

.mobile-package-card.golden-package .mobile-package-button {
    background: linear-gradient(135deg, #1e1b4b, #312e69);
    color: #fde68a;
}



/* --- START: Elegant Plan Card Redesign --- */

.elegant-plan-card {
    position: relative; /* مهم للتأثيرات الداخلية */
    overflow: hidden; /* لإخفاء أجزاء التأثيرات الخارجة عن الإطار */
    display: flex;
    flex-direction: column;
    align-items: center; /* توسيط المحتوى أفقيًا */
    text-align: center; /* توسيط النصوص */
    background: linear-gradient(160deg, var(--background-secondary) 0%, var(--dark-bg) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 4rem 2rem;
    margin: 4rem auto; /* لترك مسافة حول القسم */
    max-width: 900px; /* تحديد عرض أقصى للقسم */
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.elegant-plan-content {
    z-index: 2; /* للتأكد من أن المحتوى فوق تأثيرات الإضاءة */
    position: relative;
    max-width: 700px; /* لتحسين قراءة النص */
}

.elegant-plan-content .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(79, 70, 229, 0.3);
}

.elegant-plan-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.plan-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap; /* للسماح بالالتفاف على الشاشات الصغيرة */
}

.plan-feature-item {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.plan-feature-item:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.plan-feature-item i {
    color: var(--secondary);
}

.plan-feature-item:hover i {
    color: white;
}

/* --- تأثيرات الإضاءة والنجوم --- */
.light-effect {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    animation: moveLight 20s infinite linear;
}

.light-effect:nth-child(2) {
    background: radial-gradient(circle, rgba(110, 231, 183, 0.1) 0%, transparent 60%);
    animation: moveLight 25s infinite linear reverse;
}

@keyframes moveLight {
    0% { transform: translate(-40%, -40%); }
    25% { transform: translate(40%, -30%); }
    50% { transform: translate(30%, 40%); }
    75% { transform: translate(-30%, 30%); }
    100% { transform: translate(-40%, -40%); }
}

.magic-sparkle {
    position: absolute;
    display: block;
    color: var(--primary-light);
    font-size: 1.2rem;
    z-index: 1;
    animation: sparkle 5s infinite;
    opacity: 0;
    text-shadow: 0 0 10px var(--primary-light);
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
    25% { opacity: 1; transform: scale(1.2) rotate(90deg); }
    75% { opacity: 0.5; transform: scale(0.8) rotate(-90deg); }
}

.magic-sparkle:nth-child(3) { top: 20%; left: 15%; animation-delay: 0s; }
.magic-sparkle:nth-child(4) { top: 40%; left: 80%; animation-delay: 1.5s; font-size: 0.8rem; }
.magic-sparkle:nth-child(5) { top: 75%; left: 25%; animation-delay: 3s; }

/* --- END: Elegant Plan Card Redesign --- */
/* --- END: Golden Package Styles --- */


/* style.css */

/* --- START: Multi-Step Form Selection Fix --- */
.radio-label.selected-option {
    border-color: var(--primary) !important;
    background-color: rgba(79, 70, 229, 0.1);
}

.payment-option.selected-option {
    border-color: var(--primary) !important;
    background-color: rgba(79, 70, 229, 0.1);
}
/* --- END: Multi-Step Form Selection Fix --- */


/* style.css */

/* --- START: Predefined Plans Styles --- */
.plan-categories-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    background-color: var(--background);
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
}

.plan-category-tab {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background-color: transparent;
    border: none;
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-category-tab:hover {
    background-color: var(--card-bg);
    color: var(--text-dark);
}

.plan-category-tab.active {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.predefined-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.plan-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: right;
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.plan-card-icon {
    font-size: 1.75rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.plan-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.plan-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.separator-text {
    text-align: center;
    margin: 3rem 0;
    color: var(--text-light);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.separator-text::before,
.separator-text::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.separator-text span {
    padding: 0 1rem;
}

.custom-ai-section {
    max-width: 800px;
    margin: 0 auto;
}
/* --- END: Predefined Plans Styles --- */


/* --- START: Tree Plan Breadcrumbs Styles --- */
#tree-plan-breadcrumbs {
    flex-wrap: wrap;
}

.breadcrumb-item {
    color: var(--text-light);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.breadcrumb-item:hover {
    color: var(--primary);
    background-color: var(--card-bg);
}

#tree-plan-breadcrumbs a:last-child {
    color: var(--text-dark);
    font-weight: bold;
}
/* --- END: Tree Plan Breadcrumbs Styles --- */


/* تصميم العنوان الفرعي بالستايل الجديد */
.stylish-subtitle {
  font-family: 'Changa', sans-serif; /* تطبيق الخط الجديد */
  color: #82D8D5;                    /* تطبيق اللون الأخضر المميز */
  font-size: 28px;                    /* حجم خط مناسب، يمكنك تعديله */
  font-weight: 700;                   /* وزن الخط (Bold) ليتطابق مع الصورة */
  margin-top: 10px;
  /* يمكنك إضافة تأثير توهج خفيف إذا أردت لمسة إضافية */
  text-shadow: 0 0 5px rgba(130, 216, 213, 0.3);
}

/* لا تنسَ إبقاء تصميم العنوان الرئيسي كما هو */
.main-title {
  color: #EAEAFB;
  font-size: 48px;
  font-weight: 700;
  margin: 0;
}

.title-container {
  text-align: center;
  margin-bottom: 40px;
}



/* --- START: FAQ Section Styles --- */
.accordion-item {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active {
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.accordion-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    text-align: right;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    background: transparent;
    border: none;
    cursor: pointer;
}

.accordion-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--background);
    transition: transform 0.3s ease, background-color 0.3s ease;
    color: var(--text-light);
}

.accordion-item.active .accordion-icon {
    transform: rotate(135deg);
    background-color: var(--primary);
    color: white;
}

.accordion-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.accordion-answer p {
    color: var(--text-light);
}
/* --- END: FAQ Section Styles --- */



/* ======================================== */
/* START: AI Interview Coach Styles         */
/* ======================================== */

.holland-assessment-page {
    /* ... (هذا التنسيق موجود لديك بالفعل، سيعمل مع النافذة الجديدة) ... */
}

/* يمكنك إعادة استخدام نفس تنسيقات هولاند أو تخصيصها */
#coach-setup-step,
#coach-interview-step {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

#coach-question-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.6;
}

#coach-user-answer {
    min-height: 120px;
}

#coach-feedback-box {
    animation: stepFadeIn 0.5s ease;
}

#coach-report-step {
    /* ... (سيستخدم نفس تنسيقات holland-results الموجودة لديك) ... */
}

/* ======================================== */
/* END: AI Interview Coach Styles           */
/* ======================================== */

/* لإضافة التصميم الأخضر للميزة الأولى كما في الصورة */
#green-feature-pill {
    background: rgba(110, 231, 183, 0.1) !important;
    border-color: var(--secondary) !important;
}


/* ============================================
   قسم السيرة الذاتية المجانية - ألوان الموقع
   ============================================ */

.cv-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #2c3e50 0%, #34495e 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.cv-hero-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* الدوائر الزخرفية */
.cv-decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    z-index: 1;
}

.cv-circle-1 {
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #a78bfa, #2c3e50);
}

.cv-circle-2 {
    bottom: 100px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #6ee7b7, #2c3e50);
}

/* المحتوى */
.cv-hero-content {
    color: #f0f0f0;
}

.cv-new-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(167, 139, 250, 0.3);
}

.cv-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 0 24px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cv-hero-description {
    font-size: 18px;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* قائمة المميزات */
.cv-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.cv-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #f1f5f9;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cv-features-list li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cv-features-list li svg {
    width: 22px;
    height: 22px;
    fill: #6ee7b7;
    flex-shrink: 0;
}

/* زر الحجز */
.cv-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(167, 139, 250, 0.4);
}

.cv-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(167, 139, 250, 0.5);
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.cv-cta-button svg {
    transition: transform 0.3s ease;
}

.cv-cta-button:hover svg {
    transform: translateX(-4px);
}

.cv-offer-text {
    margin-top: 20px;
    font-size: 15px;
    color: #cbd5e1;
}

.cv-offer-text strong {
    color: #f1f5f9;
}

/* معاينة السيرة الذاتية */
.cv-hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.cv-preview {
    background: #ffffff;
    color: #000000;
    width: 100%;
    max-width: 400px;
    height: 560px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    padding: 30px;
    transform: rotate(-3deg);
    transition: transform 0.4s ease;
    direction: ltr;
    position: relative;
}

.cv-preview::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #a78bfa, #6ee7b7);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(20px);
}

.cv-preview:hover {
    transform: rotate(0deg) scale(1.05);
}

.cv-header {
    text-align: center;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.cv-header h3 {
    margin: 0;
    font-size: 22px;
    color: #1f2937;
}

.cv-header p {
    margin: 8px 0 0 0;
    font-size: 13px;
    color: #6b7280;
}

.cv-section {
    margin-bottom: 24px;
}

.cv-section h4 {
    font-size: 15px;
    color: #8b5cf6;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 6px;
    margin: 0 0 12px 0;
    font-weight: 700;
}

.cv-section p {
    font-size: 12px;
    color: #374151;
    margin: 0 0 8px 0;
}

.cv-line {
    height: 8px;
    background: #f3f4f6;
    border-radius: 4px;
    margin-bottom: 8px;
}

.cv-line.short {
    width: 65%;
}

/* ============================================
   النموذج المنبثق
   ============================================ */

.cv-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cv-modal.active {
    display: flex;
}

.cv-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    animation: cvFadeIn 0.3s ease;
}

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

.cv-modal-content {
    position: relative;
    background: white;
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: cvSlideUp 0.4s ease;
}

@keyframes cvSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cv-modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f4f6;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cv-modal-close:hover {
    background: #e5e7eb;
    transform: rotate(90deg);
}

.cv-modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.cv-modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(167, 139, 250, 0.3);
}

.cv-modal-title {
    font-size: 28px;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.cv-modal-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

/* النموذج */
.cv-booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cv-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cv-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cv-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.cv-label span {
    font-size: 16px;
}

.cv-input {
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Tajawal', sans-serif;
}

.cv-input:focus {
    outline: none;
    border-color: #a78bfa;
    box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.1);
}

.cv-textarea {
    resize: vertical;
    min-height: 100px;
}

/* رفع الملف */
.cv-file-upload {
    position: relative;
}

.cv-file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cv-file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 32px 20px;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.cv-file-label:hover {
    border-color: #a78bfa;
    background: #f3f4f6;
}

.cv-file-types {
    font-size: 12px;
    color: #9ca3af;
}

/* زر الإرسال */
.cv-submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(167, 139, 250, 0.4);
}

.cv-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(167, 139, 250, 0.5);
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* تذييل النموذج */
.cv-modal-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.cv-trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cv-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
}

.cv-trust-badge span:first-child {
    font-size: 18px;
}

/* نظام الإشعارات */
.cv-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: none;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    animation: cvSlideIn 0.3s ease;
    font-weight: 600;
}

.cv-notification.show {
    display: flex;
}

.cv-notification.success {
    border-right: 4px solid #6ee7b7;
    color: #065f46;
}

.cv-notification.error {
    border-right: 4px solid #f87171;
    color: #991b1b;
}

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

/* استجابة للموبايل */
@media (max-width: 992px) {
    .cv-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .cv-hero-title {
        font-size: 36px;
    }

    .cv-features-list {
        justify-content: center;
    }

    .cv-preview {
        transform: rotate(0deg);
        max-width: 350px;
        height: 490px;
    }

    .cv-form-row {
        grid-template-columns: 1fr;
    }

    .cv-modal-content {
        padding: 24px;
    }

    .cv-trust-badges {
        flex-direction: column;
        gap: 12px;
    }

    .cv-cta-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cv-hero-title {
        font-size: 32px;
    }

    .cv-hero-description {
        font-size: 16px;
    }

    .cv-features-list li {
        font-size: 14px;
    }
}


/* style.css */
/* ... (جميع التنسيقات الموجودة لديك تبقى كما هي) ... */

/* --- START: Golden Package Styles --- */
.mobile-package-card.golden-package {
    background: linear-gradient(135deg, #4a3f24 0%, #a58c4c 50%, #d4bf7a 100%);
    color: #1a1a1a;
    transform: scale(1.05);
    border: 2px solid #fde68a;
    box-shadow: 0 15px 40px rgba(253, 230, 138, 0.2);
}

.mobile-package-card.golden-package::before {
    /* --- ✅ التعديل هنا --- */
    content: 'عرض محدود!'; /* تم تغيير النص من "تجربة مجانية" */
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(45deg, #1e1b4b, #312e69);
    color: #fde68a;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* ... (باقي تنسيقات .golden-package كما هي) ... */