  /* --- CORE TYPOGRAPHY & THEME --- */
        :root {
            --primary-bg: #0f2027;
            --secondary-bg: #203a43;
            --accent-bg: #2c5364;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
            --highlight: #4facfe;
            --highlight-alt: #00f2fe;
            --text-light: #f8f9fa;
        }

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-light);
            overflow-x: hidden;
            position: relative;
        }

        /* --- ANIMATED BACKGROUND (SPECTACULAR EFFECT) --- */
        .bg-animation {
            position: fixed;
            top: 0; left: 0; width: 100vw; height: 100vh;
            z-index: -1;
            background: linear-gradient(135deg, var(--primary-bg), var(--secondary-bg), var(--accent-bg));
            overflow: hidden;
        }
        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            animation: float 20s infinite ease-in-out;
        }
        .orb-1 { width: 400px; height: 400px; background: var(--highlight); top: -100px; left: -100px; }
        .orb-2 { width: 300px; height: 300px; background: var(--highlight-alt); bottom: 10%; right: -50px; animation-delay: -5s; }
        .orb-3 { width: 250px; height: 250px; background: #2c5364; top: 40%; left: 40%; animation-delay: -10s; }

        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            33% { transform: translate(30px, -50px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
        }

        /* --- LIQUID GLASS COMPONENTS --- */
        .glass-panel {
            background: var(--glass-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
        }
        .glass-panel:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 12px 40px 0 rgba(79, 172, 254, 0.2);
            border-color: rgba(79, 172, 254, 0.3);
        }

        /* --- NAVBAR & MEGA MENU --- */
        .navbar-glass {
            background: rgba(15, 32, 39, 0.8) !important;
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
        }
        .navbar-brand span { color: var(--highlight); }
        .nav-link { color: #fff !important; font-weight: 500; font-size: 0.95rem; margin: 0 10px; transition: color 0.3s;}
        .nav-link:hover { color: var(--highlight) !important; }
        
        .dropdown-menu {
            background: rgba(15, 32, 39, 0.95);
            backdrop-filter: blur(15px);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            padding: 15px 0;
        }
        .dropdown-item { color: #ddd; transition: all 0.2s; padding: 8px 20px;}
        .dropdown-item:hover { background: rgba(79, 172, 254, 0.1); color: var(--highlight); }
        .dropdown-header { color: #888; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 10px;}

        /* --- TYPOGRAPHY & BUTTONS --- */
        .text-gradient {
            background: linear-gradient(to right, var(--highlight), var(--highlight-alt));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .btn-glow {
            background: linear-gradient(to right, var(--highlight), var(--highlight-alt));
            border: none; color: #000; font-weight: bold; border-radius: 30px;
            padding: 12px 30px; transition: all 0.3s;
        }
        .btn-glow:hover {
            box-shadow: 0 0 20px rgba(79, 172, 254, 0.6);
            transform: scale(1.05); color: #000;
        }

        .badge-glass {
            background: rgba(79, 172, 254, 0.15); border: 1px solid var(--highlight);
            color: var(--highlight); padding: 8px 16px; border-radius: 30px; font-weight: normal;
        }

        /* --- ICONS --- */
        .icon-lg { font-size: 2.5rem; color: var(--highlight); margin-bottom: 15px; display: inline-block;}

        /* --- RESPONSIVE TIMELINE (THE WOW EFFECT) --- */
        .timeline { position: relative; margin: 80px 0; padding: 20px 0; }
        .timeline::before {
            content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
            background: linear-gradient(to bottom, transparent, var(--highlight), transparent);
            transform: translateX(-50%);
        }

        .timeline-item { position: relative; width: 50%; padding: 20px 40px; opacity: 0; transition: all 0.8s ease; }
        .timeline-item.left { left: 0; transform: translateX(-50px); text-align: right; }
        .timeline-item.right { left: 50%; transform: translateX(50px); }
        .timeline-item.visible { opacity: 1; transform: translateX(0); }

        /* The glowing dots */
        .timeline-dot {
            position: absolute; top: 50%; width: 20px; height: 20px; border-radius: 50%;
            background: var(--primary-bg); border: 4px solid var(--highlight);
            box-shadow: 0 0 15px var(--highlight); transform: translateY(-50%); z-index: 2;
        }
        .timeline-item.left .timeline-dot { right: -10px; }
        .timeline-item.right .timeline-dot { left: -10px; }

        .timeline-content { position: relative; z-index: 1; padding: 30px; border-radius: 16px; }
        .step-number { font-size: 3rem; font-weight: bold; color: rgba(255,255,255,0.05); position: absolute; top: 10px; line-height: 1; }
        .timeline-item.left .step-number { left: 20px; }
        .timeline-item.right .step-number { right: 20px; }

        /* Mobile Timeline Fix */
        @media (max-width: 767.98px) {
            .timeline::before { left: 20px; transform: none; }
            .timeline-item { width: 100%; padding: 20px 15px 20px 50px; text-align: left !important; }
            .timeline-item.left, .timeline-item.right { left: 0; transform: translateX(-30px); }
            .timeline-item.visible { transform: translateX(0); }
            .timeline-item.left .timeline-dot, .timeline-item.right .timeline-dot { left: 10px; right: auto; }
            .timeline-item.left .step-number { right: 20px; left: auto; }
            
            .hero h1 { font-size: 2.5rem; }
        }

        footer { border-top: 1px solid var(--glass-border); background: rgba(0,0,0,0.3); }
        
        
/* TABURI START ++++++++++++ */
        .glass-tabs {
            border-bottom: none;
            gap: 10px;
            justify-content: center;
            margin-bottom: 30px;
        }
        .glass-tabs .nav-link {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass-border);
            color: var(--text-light) !important;
            border-radius: 30px;
            padding: 10px 25px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        .glass-tabs .nav-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }
        .glass-tabs .nav-link.active {
            background: linear-gradient(to right, var(--highlight), var(--highlight-alt));
            color: #000 !important;
            font-weight: bold;
            box-shadow: 0 0 20px rgba(79, 172, 254, 0.4);
            border-color: transparent;
        }
        .tab-pane-glass {
            padding: 40px;
            animation: fadeInTab 0.5s ease-in-out;
        }
        @keyframes fadeInTab {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        /* Asigură scroll orizontal pe mobil pentru tab-uri */
        @media (max-width: 768px) {
            .glass-tabs {
                flex-wrap: nowrap;
                overflow-x: auto;
                justify-content: flex-start;
                padding-bottom: 15px;
            }
            .glass-tabs::-webkit-scrollbar { height: 4px; }
            .glass-tabs::-webkit-scrollbar-thumb { background: var(--highlight); border-radius: 4px; }
            .tab-pane-glass { padding: 25px; }
        }
/* TABURI END ----------- */


/* MODAL START ++++++++++ */

.form-control-glass, .form-select-glass {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff;
        border-radius: 8px;
        padding: 12px 15px;
        transition: all 0.3s;
    }
    .form-control-glass:focus, .form-select-glass:focus {
        background: rgba(0, 0, 0, 0.4);
        border-color: var(--highlight);
        color: #fff;
        box-shadow: 0 0 10px rgba(79, 172, 254, 0.3);
        outline: none;
    }
    .form-select-glass option {
        background: #0f2027; /* Culoare solidă pentru opțiuni în dropdown */
        color: #fff;
    }
    .form-control-glass::placeholder {
        color: rgba(255, 255, 255, 0.3);
    }


/* MODAL END -------- */

    