.reveal { opacity: 0; transform: translateY(30px); transition: all 0.6s ease-out; }
        .reveal.active { opacity: 1; transform: translateY(0); }
        
        .glass-nav {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }

        /* Floating Label Styles */
        .form-group-floating { position: relative; }
        .floating-input {
            width: 100%;
            padding: 1.5rem 1rem 0.5rem;
            background: #f8f9fa;
            border: 2px solid transparent;
            border-bottom: 2px solid #e5e7eb;
            border-radius: 8px 8px 0 0;
            font-weight: 600;
            transition: all 0.3s;
            outline: none;
        }
        .floating-input:focus {
            background: #fff;
            border-bottom-color: #17139E;
        }
        .floating-label {
            position: absolute;
            left: 1rem;
            top: 1rem;
            color: #9ca3af;
            font-size: 0.875rem;
            font-weight: 600;
            pointer-events: none;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            z-index: 5;
        }
        .floating-input:focus + .floating-label,
        .floating-input:not(:placeholder-shown) + .floating-label,
        .has-value + .floating-label {
            top: 0.4rem;
            font-size: 0.65rem;
            color: #17139E;
        }

        /* Select2 Theme Customization */
        .select2-container--default .select2-selection--single {
            height: 3.8rem;
            background: #f8f9fa;
            border: 2px solid transparent;
            border-bottom: 2px solid #e5e7eb;
            border-radius: 8px 8px 0 0;
            display: flex;
            align-items: flex-end;
            padding-bottom: 0.5rem;
            outline: none !important;
        }
        .select2-container--default.select2-container--focus .select2-selection--single {
            background: #fff;
            border-bottom-color: #17139E;
        }
        .select2-container--default .select2-selection--single .select2-selection__rendered {
            color: #232230;
            font-weight: 700;
            font-size: 0.875rem;
            padding-left: 1rem;
        }
        .select2-container--default .select2-selection--single .select2-selection__placeholder {
            color: #9ca3af;
        }
        .select2-container--default .select2-selection--single .select2-selection__arrow {
            height: 3.8rem;
            right: 1rem;
        }
        .select2-container--default .select2-selection--single .select2-selection__arrow b {
            border-color: #17139E transparent transparent transparent;
        }
        .select2-dropdown {
            border: none;
            box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
            border-radius: 12px;
            overflow: hidden;
            z-index: 9999;
            margin-top: 4px;
        }
        .select2-search--dropdown .select2-search__field {
            border: 1px solid #e5e7eb;
            border-radius: 6px;
            padding: 8px;
            outline: none;
        }
        .select2-results__option--highlighted[aria-selected] {
            background-color: #17139E !important;
        }
        .select2-results__option {
            padding: 12px 16px;
            font-size: 14px;
            font-weight: 600;
        }

        /* Error States for Select2 */
        .select2-error-border .select2-selection--single {
            border-bottom-color: #CE033A !important;
            background: #fff1f2 !important;
        }

        .error-border { border-bottom-color: #CE033A !important; background: #fff1f2 !important; }
        .error-text { color: #CE033A; font-size: 0.65rem; font-weight: 800; text-transform: uppercase; margin-top: 0.25rem; display: none; }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #f1f1f1; }
        ::-webkit-scrollbar-thumb { background: #17139E; border-radius: 10px; }