:root {
            --primary-color: rgb(231, 182, 92);
            --primary-hover: #e8922f;
            --primary-light: rgba(249, 161, 65, 0.1);
            --primary-glow: rgba(249, 161, 65, 0.3);
            --bg-dark: #0c0a09;
            --bg-card: rgba(28, 25, 23, 0.7);
            --bg-secondary: #1a1a1a;
            --border-color: rgba(68, 64, 60, 0.5);
            --text-primary: #ffffff;
            --text-secondary: #a8a29e;
            --text-muted: #78716c;
            --input-bg: rgba(41, 37, 36, 0.5);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        

        body {
            font-family: 'Inter', sans-serif;
            min-height: 100vh;
            background: #000;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow-x: hidden;
        }

        .section {
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 20px;
        }

        .logo-image {
            height: 60px;
            width: auto;
        }

        .logo-text {

            font-size: 24px;
            font-weight: 800;
            letter-spacing: 0.05em;
        }

        /* Background Pattern */
        .bg-pattern {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(circle at 2px 2px, var(--primary-color) 1px, transparent 0);
            background-size: 48px 48px;
            opacity: 0.03;
            pointer-events: none;
        }

        /* Ambient Glows */
        .glow {
            position: fixed;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.1;
            pointer-events: none;
        }

        .glow-1 {
            top: 10%;
            left: -100px;
            background: var(--primary-color);
        }

        .glow-2 {
            bottom: 10%;
            right: -100px;
            background: var(--primary-color);
        }

        /* Main Container */
        .login-container {
            width: 100%;
            max-width: 420px;
            position: relative;
            z-index: 10;
        }

        /* Animations */
        .animate-fade-in {
            animation: fadeInDown 0.8s ease-out;
        }

        .animate-slide-up {
            animation: slideUpFade 0.8s ease-out 0.2s backwards;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        /* Logo Section */
        .logo-section {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .logo-icon {
            position: relative;
            display: inline-block;
            margin-bottom: 1.5rem;
            animation: logoFloat 3s ease-in-out infinite;
        }

        @keyframes logoFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .logo-icon img {
            width: 64px;
            height: 64px;
        }

        .logo-icon::after {
            content: '';
            position: absolute;
            inset: -10px;
            background: var(--primary-color);
            border-radius: 50%;
            filter: blur(20px);
            opacity: 0.3;
            z-index: -1;
            animation: glowPulse 2s ease-in-out infinite;
        }

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

        .brand-name {
            font-size: 1.75rem;
            font-weight: 300;
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
        }

        .brand-name .highlight {
            color: var(--primary-color);
            font-weight: 400;
            letter-spacing: 0.1em;
        }

        .brand-name .light {
            color: #fff;
            font-weight: 400;
            letter-spacing: 0.1em;
        }

        .brand-subtitle {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.2em;
        }

        .icon-white {
            color: #fff;
        }

        input[type="time"]::-webkit-calendar-picker-indicator {
            filter: invert(1); /* white icon */
            cursor: pointer;
        }

        /* Login Card */
        .login-card {
            background: rgba(21, 21, 21, 0.6);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
                        0 0 0 1px rgba(249, 161, 65, 0.05);
            position: relative;
            overflow: hidden;
        }

        .login-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
            opacity: 0.5;
        }

        .login-card-header {
            text-align: center;
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            position: relative;
        }

        .login-card-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
            border-radius: 10px;
        }

        .login-title {
            font-size: 1.75rem;
            font-weight: 400;
            color: var(--text-primary);
            margin-bottom: 0.75rem;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #ffffff 0%, #d4d4d4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .login-subtitle {
            font-size: 0.9rem;
            color: var(--text-secondary);
            font-weight: 400;
            margin-bottom: 0;
            letter-spacing: 0.01em;
        }

        /* Form Labels */
        .form-label {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.5rem;
            display: block;
        }

        /* Input Wrapper Animation */
        .input-wrapper {
            animation: inputFadeIn 0.5s ease-out backwards;
        }

        .input-wrapper:nth-child(1) { animation-delay: 0.3s; }
        .input-wrapper:nth-child(2) { animation-delay: 0.4s; }

        @keyframes inputFadeIn {
            from {
                opacity: 0;
                transform: translateX(-10px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Input Groups */
        .input-group-custom {
            position: relative;
        }
        

        .input-icon {
            position: absolute;
            width: 20px;
            height: 20px;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            transition: color 0.2s ease;
            z-index: 5;
        }

        /* Hide icon for select elements since they have their own custom arrow */
        select.form-control-custom + .input-icon {
            display: none;
        }

        .form-control-custom {
            width: 100%;
            background: rgba(10, 10, 10, 0.6);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 0.875rem 1rem 0.875rem 3rem;
            color: var(--text-primary);
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .form-control-custom.is-invalid {
            border-color: #ef4444;
            background: rgba(239, 68, 68, 0.05);
        }

        .form-control-custom.is-valid {
            border-color: #10b981;
        }

        .invalid-feedback {
            display: block;
            color: #ef4444;
            font-size: 0.75rem;
            margin-top: 0.375rem;
            margin-left: 0.25rem;
            animation: fadeIn 0.3s ease;
        }

        .form-control-custom::placeholder {
            color: var(--text-muted);
        }

        .form-control-custom:hover {
            border-color: rgba(249, 161, 65, 0.3);
            background: rgba(10, 10, 10, 0.8);
        }

        .form-control-custom:focus {
            outline: none;
            border-color: var(--primary-color);
            background: rgba(15, 15, 15, 0.9);
            box-shadow: 0 0 0 1px var(--primary-color),
                        0 10px 20px -5px rgba(0, 0, 0, 0.3);
            transform: translateY(-2px);
        }

        .form-control-custom:focus + .input-icon,
        .input-group-custom:focus-within .input-icon {
            color: var(--primary-color);
            
        }

        .password-input {
            padding-right: 3rem;
        }

        /* Password Toggle */
        .password-toggle {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--text-muted);
            cursor: pointer;
            padding: 0.25rem;
            transition: all 0.3s ease;
            z-index: 5;
            border-radius: 6px;
        }

        .password-toggle:hover {
            color: var(--primary-color);
            background: rgba(249, 161, 65, 0.1);
            transform: translateY(-50%) scale(1.1);
        }

        .password-toggle:active {
            transform: translateY(-50%) scale(0.95);
        }

        /* Custom Checkbox */
        .custom-checkbox {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            user-select: none;
        }

        .custom-checkbox input {
            display: none;
        }

        .checkmark {
            width: 18px;
            height: 18px;
            border: 1.5px solid var(--text-muted);
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .checkmark i {
            font-size: 11px;
            color: #000;
            opacity: 0;
            transform: scale(0) rotate(-45deg);
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .custom-checkbox:hover .checkmark {
            border-color: var(--primary-color);
            background: rgba(249, 161, 65, 0.1);
        }

        .custom-checkbox input:checked + .checkmark {
            background: var(--primary-color);
            border-color: var(--primary-color);
            transform: scale(1.1);
            box-shadow: 0 0 10px rgba(249, 161, 65, 0.3);
        }

        .custom-checkbox input:checked + .checkmark i {
            opacity: 1;
            transform: scale(1) rotate(0deg);
        }

        .custom-checkbox span {
            font-size: 0.875rem;
            font-weight: 400;
            color: var(--text-secondary);
            transition: color 0.2s ease;
        }

        .custom-checkbox span a {
            color: var(--primary-color);
            text-decoration: none;
            transition: opacity 0.2s ease;
        }

        .custom-checkbox span a:hover {
            opacity: 0.8;
            text-decoration: underline;
        }

        .custom-checkbox:hover span {
            color: var(--text-primary);
        }

        /* Forgot Password Link */
        .forgot-link {
            font-size: 0.875rem;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .forgot-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .forgot-link:hover {
            color: var(--primary-color);
        }

        .forgot-link:hover::after {
            width: 100%;
        }

        /* Submit Button */
        .btn-primary-custom {
            width: 100%;
            background: linear-gradient(135deg, var(--primary-color) 0%, #e8922f 100%);
            border: none;
            border-radius: 12px;
            padding: 1rem 1.5rem;
            color: #000;
            font-weight: 500;
            font-size: 1rem;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            box-shadow: 0 4px 15px -3px rgba(249, 161, 65, 0.4);
        }

        .btn-primary-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .btn-primary-custom:hover::before {
            left: 100%;
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px -5px rgba(249, 161, 65, 0.5),
                        0 5px 15px -5px rgba(0, 0, 0, 0.3);
        }

        .btn-primary-custom:active {
            transform: translateY(0);
            box-shadow: 0 5px 15px -3px rgba(249, 161, 65, 0.4);
        }

        .btn-primary-custom:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .btn-primary-custom .arrow-icon {
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 1.1rem;
        }

        .btn-primary-custom:hover .arrow-icon {
            transform: translateX(5px);
            animation: arrowBounce 0.8s ease-in-out infinite;
        }

        @keyframes arrowBounce {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(5px); }
        }

        .btn-primary-custom .spinner {
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Divider */
        .divider {
            position: relative;
            text-align: center;
            margin: 1.5rem 0;
        }

        .divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--border-color);
        }

        .divider span {
            position: relative;
            background: #1c1917;
            padding: 0 1rem;
            font-size: 0.7rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        /* SSO Buttons */
        .btn-sso {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1rem;
            background: var(--input-bg);
            border: 1px solid var(--border-color);
            border-radius: 0.75rem;
            color: var(--text-secondary);
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .btn-sso:hover {
            background: rgba(41, 37, 36, 0.8);
            border-color: var(--text-muted);
            color: var(--text-primary);
        }

        .btn-sso svg {
            width: 20px;
            height: 20px;
        }

        /* Footer */
        .login-footer {
            text-align: center;
            margin-top: 2rem;
            margin-bottom: 0;
            font-size: 0.875rem;
            color: var(--text-muted);
            animation: fadeIn 0.8s ease-out 0.6s backwards;
        }

        .login-footer a {
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            font-weight: 500;
        }

        .login-footer a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .login-footer a:hover {
            opacity: 1;
            color: var(--primary-hover);
        }

        .login-footer a:hover::after {
            width: 100%;
        }

        /* Responsive */
        @media (max-width: 480px) {
            .login-card {
                padding: 2rem 1.5rem;
            }

            .brand-name {
                font-size: 1.5rem;
            }

            .login-title {
                font-size: 1.25rem;
            }

            .btn-primary-custom {
                padding: 0.875rem 1.25rem;
            }
        }

        /* Accessibility - Reduced Motion */
        @media (prefers-reduced-motion: reduce) {
            .animate-fade-in,
            .animate-slide-up,
            .input-wrapper,
            .logo-icon,
            .logo-icon::after,
            .btn-primary-custom .arrow-icon {
                animation: none;
            }

            .form-control-custom:focus,
            .btn-primary-custom:hover,
            .checkmark,
            * {
                transition: none;
            }
        }

        

        /* Multi-Step Form Styles */
        .progress-indicator {
            display: flex;
            align-items: center;
            justify-content: space-between; 
            margin-bottom: 2.5rem;
            position: relative;
            background: rgba(0, 0, 0, 0.3);
            padding: 1.5rem;
            border-radius: 12px;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            z-index: 2;
            flex: 1;
        }

        .step-number {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(41, 37, 36, 0.5);
            border: 2px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.875rem;
            color: var(--text-muted);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .step-number::after {
            display: none;
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            opacity: 0;
            background: var(--primary-color);
            filter: blur(8px);
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .step.active .step-number {
            background: linear-gradient(135deg, var(--primary-color) 0%, #e8922f 100%);
            border-color: var(--primary-color);
            color: #000;
            transform: scale(1.15);
            box-shadow: 0 0 20px rgba(249, 161, 65, 0.5);
        }

        .step.active .step-number::after {
            opacity: 0.5;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 0.3;
                transform: scale(1);
            }
            50% {
                opacity: 0.6;
                transform: scale(1.2);
            }
        }

        .step.completed .step-number {
            background: rgba(249, 161, 65, 0.15);
            border-color: var(--primary-color);
            color: var(--primary-color);
            transform: scale(1.05);
        }

        .step.completed .step-number::before {
            content: '';
            position: absolute;
            text-size-adjust: 1%;
            font-size: 1rem;
            font-weight: bold;
        }

        .step-label {
            font-size: 0.65rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-weight: 600;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .step.active .step-label {
            color: var(--primary-color);
            font-weight: 700;
        }

        .step.completed .step-label {
            color: var(--text-secondary);
        }

        .step-line {
            flex: 1;
            height: 3px;
            background: linear-gradient(90deg, var(--border-color), rgba(68, 64, 60, 0.2), var(--border-color));
            margin: 0 0.75rem;
            position: relative;
            top: -12px;
            border-radius: 10px;
            overflow: hidden;
        }

        .step-line::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, var(--primary-color), #e8922f);
            transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 0 10px rgba(249, 161, 65, 0.6);
        }

        .step-line.completed::after {
            width: 100%;
        }

        .form-step {
            display: none;
            opacity: 0;
        }

        .form-step.active {
            display: block;
            animation: fadeInStep 0.5s ease-out forwards;
        }

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

        .section-heading {
            font-size: 1.05rem;
            color: var(--primary-color);
            font-weight: 600;
            letter-spacing: 0.02em;
            margin-top: 1.5rem;
            padding-left: 1rem;
            position: relative;
        }

        .section-heading::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 20px;
            background: linear-gradient(180deg, var(--primary-color), #e8922f);
            border-radius: 10px;
        }

        .btn-secondary-custom {
            background: rgba(41, 37, 36, 0.6);
            border: 1.5px solid var(--border-color);
            border-radius: 12px;
            padding: 1rem 1.75rem;
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-secondary-custom:hover {
            background: rgba(41, 37, 36, 0.9);
            border-color: var(--primary-color);
            color: var(--text-primary);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px -5px rgba(249, 161, 65, 0.2);
        }

        .btn-secondary-custom:active {
            transform: translateY(0);
        }

        .btn-secondary-custom i {
            transition: transform 0.3s ease;
        }

        .btn-secondary-custom:hover i {
            transform: translateX(-3px);
        }

        .availability-day {
            padding: 1.25rem;
            background: rgba(10, 10, 10, 0.5);
            border: 1.5px solid var(--border-color);
            border-radius: 12px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .availability-day::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(90deg, rgba(249, 161, 65, 0.1), transparent);
            transition: width 0.4s ease;
        }

        .availability-day:hover {
            border-color: rgba(249, 161, 65, 0.4);
            background: rgba(10, 10, 10, 0.7);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px -8px rgba(249, 161, 65, 0.3);
        }

        .availability-day:hover::before {
            width: 100%;
        }

        .time-inputs {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(249, 161, 65, 0.2);
        }

        .time-selector {
            display: flex;
            gap: 0.75rem;
            margin-top: 0.75rem;
            align-items: center;
        }

        .time-selector input {
            font-size: 0.8rem;
            padding: 0.5rem 0.75rem !important;
            background: rgba(0, 0, 0, 0.4);
            border-color: rgba(68, 64, 60, 0.6);
        }

        .time-selector input:focus {
            border-color: var(--primary-color);
            background: rgba(0, 0, 0, 0.6);
        }

        /* Quick Fill Section Styles */
        .quick-fill-section {
            background: rgba(249, 161, 65, 0.05);
            border: 1px solid rgba(249, 161, 65, 0.2);
            border-radius: 12px;
            padding: 1rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .quick-fill-section:hover {
            background: rgba(249, 161, 65, 0.08);
            border-color: rgba(249, 161, 65, 0.3);
        }

        .quick-fill-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .quick-fill-header i {
            width: 16px;
            height: 16px;
        }

        /* Address Tabs Styles */
        .address-tabs-wrapper {
            background: rgba(0, 0, 0, 0.3);
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            margin-bottom: 2rem;
        }

        .address-tabs {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 0;
        }

        .address-tab {
            flex: 1;
            background: transparent;
            border: none;
            border-bottom: 3px solid transparent;
            padding: 1rem 1.5rem;
            color: var(--text-muted);
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border-radius: 8px 8px 0 0;
        }

        .address-tab .tab-icon {
            width: 20px;
            height: 20px;
            opacity: 0.6;
            transition: all 0.3s ease;
        }

        .address-tab:hover {
            color: var(--text-secondary);
            background: rgba(249, 161, 65, 0.05);
        }

        .address-tab:hover .tab-icon {
            opacity: 0.8;
            transform: translateY(-2px);
        }

        .address-tab.active {
            color: var(--primary-color);
            background: rgba(249, 161, 65, 0.1);
            border-bottom-color: var(--primary-color);
        }

        .address-tab.active .tab-icon {
            opacity: 1;
        }

        .address-tab.filled:not(.active) {
            color: var(--text-secondary);
        }

        .address-tab.filled:not(.active)::after {
            content: '';
            position: absolute;
            top: 0.5rem;
            right: 0.5rem;
            width: 8px;
            height: 8px;
            background: var(--primary-color);
            border-radius: 50%;
            box-shadow: 0 0 8px rgba(249, 161, 65, 0.6);
        }

        .tab-indicator {
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary-color);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .address-tab.active .tab-indicator {
            transform: scaleX(1);
        }

        .address-tab-content {
            position: relative;
        }

        .address-section {
            display: none;
            animation: addressFadeIn 0.4s ease-out;
        }

        .address-section.active {
            display: block;
        }

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

        .address-header {
            margin-bottom: 1.5rem;
        }

        .address-header .section-heading {
            margin-top: 0;
            margin-bottom: 1rem;
        }

        .address-header .custom-checkbox {
            background: rgba(249, 161, 65, 0.08);
            padding: 0.75rem 1rem;
            border-radius: 8px;
            border: 1px solid rgba(249, 161, 65, 0.2);
            transition: all 0.3s ease;
        }

        .address-header .custom-checkbox:hover {
            background: rgba(249, 161, 65, 0.12);
            border-color: rgba(249, 161, 65, 0.3);
        }

        @media (max-width: 768px) {
            .address-tabs {
                flex-direction: column;
                gap: 0.25rem;
                border-bottom: none;
                border-left: 2px solid var(--border-color);
            }

            .address-tab {
                flex-direction: row;
                justify-content: flex-start;
                padding: 0.75rem 1rem;
                border-left: 3px solid transparent;
                border-bottom: none;
                border-radius: 0 8px 8px 0;
            }

            .address-tab.active {
                border-left-color: var(--primary-color);
                border-bottom-color: transparent;
            }

            .address-tab.filled:not(.active)::after {
                right: 1rem;
                top: 50%;
                transform: translateY(-50%);
            }

            .tab-indicator {
                bottom: 0;
                top: 0;
                left: -3px;
                right: auto;
                width: 3px;
                height: 100%;
            }
        }

        .time-selector input:focus {
            border-color: var(--primary-color);
            background: rgba(0, 0, 0, 0.6);
        }

        select.form-control-custom {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 20px;
            padding-left: 1rem;
            padding-right: 3.5rem;
            cursor: pointer;
        }

        /* Hide default select arrow in IE */
        select.form-control-custom::-ms-expand {
            display: none;
        }

        /* Style dropdown options */
        select.form-control-custom option {
            background-color: #1a1a1a !important;
            color: var(--text-primary) !important;
            padding: 0.75rem 1rem;
            border: none;
            font-size: 0.9rem;
            font-weight: 400;
        }

        select.form-control-custom option:hover {
            background-color: rgba(249, 161, 65, 0.15) !important;
            color: var(--primary-color) !important;
        }

        select.form-control-custom option:checked {
            background: linear-gradient(135deg, rgba(249, 161, 65, 0.25) 0%, rgba(232, 146, 47, 0.25) 100%) !important;
            color: var(--primary-color) !important;
            font-weight: 500;
        }

        select.form-control-custom option:disabled {
            color: var(--text-muted) !important;
            background-color: rgba(10, 10, 10, 0.5) !important;
        }

        select.form-control-custom option[value=""] {
            color: var(--text-muted) !important;
            font-style: italic;
            background-color: rgba(10, 10, 10, 0.8) !important;
        }

        /* Custom Dropdown Styles */
        .custom-dropdown {
            position: relative;
            width: 100%;
            background: rgba(10, 10, 10, 0.6);
        }

        .custom-dropdown-selected {
            background: rgba(10, 10, 10, 0.6);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 0.875rem 1rem;
            padding-right: 3rem;
            color: var(--text-primary);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            position: relative;
            backdrop-filter: blur(10px);
            font-size: 0.9375rem;
        }

        .custom-dropdown-selected.placeholder {
            color: var(--text-muted);
            font-style: italic;
        }

        .custom-dropdown-selected:hover {
            border-color: rgba(249, 161, 65, 0.5);
            background: rgba(10, 10, 10, 0.6);
        }

        .custom-dropdown-selected:focus,
        .custom-dropdown.active .custom-dropdown-selected {
            outline: none;
            border: 1px solid var(--primary-color);
            box-shadow: 0 0 0 1px var(--primary-color);
            background: rgba(10, 10, 10, 0.6);
        }

        .custom-dropdown-arrow {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            color: var(--text-secondary);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s;
            pointer-events: none;
        }

        .custom-dropdown.active .custom-dropdown-arrow {
            transform: translateY(-50%) rotate(180deg);
            color: var(--primary-color);
        }

        .custom-dropdown-options {
            position: absolute;
            top: calc(100% + 0.5rem);
            left: 0;
            right: 0;
            background: #1a1a1a;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            max-height: 200px;
            overflow-y: auto;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(249, 161, 65, 0.1);
            backdrop-filter: blur(10px);
        }

        .custom-dropdown.active .custom-dropdown-options {
            opacity: 1; 
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-search-wrapper {
            position: sticky;
            top: 0;
            background: rgba(28, 25, 23, 0.98);
            padding: 0.75rem;
            border-bottom: 1px solid var(--border-color);
            z-index: 10;
        }

        .selected-text {
            max-width: 100% ;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .dropdown-search-wrapper .dropdown-search {
            width: 100%;
            background: var(--input-bg);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 0.5rem 2.5rem 0.5rem 0.75rem;
            color: var(--text-primary);
            font-size: 0.875rem;
            outline: none;
            transition: all 0.2s ease;
        }

        .dropdown-search-wrapper .dropdown-search:focus {
            border-color: var(--primary-color);
            background: rgba(41, 37, 36, 0.8);
        }

        .dropdown-search-wrapper .dropdown-search::placeholder {
            color: var(--text-muted);
        }

        .dropdown-search-wrapper .search-icon {
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            width: 16px;
            height: 16px;
            color: var(--text-muted);
            pointer-events: none;
        }

        .custom-dropdown-option {
            padding: 0.875rem 1rem;
            color: var(--text-primary);
            cursor: pointer;
            transition: all 0.2s ease;
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(68, 64, 60, 0.3);
        }

        .custom-dropdown-option:last-child {
            border-bottom: none;
        }

        .custom-dropdown-option:hover {
            background: linear-gradient(135deg, rgba(249, 161, 65, 0.15) 0%, rgba(232, 146, 47, 0.15) 100%);
            color: var(--primary-color);
            padding-left: 1.25rem;
        }

        .custom-dropdown-option.selected {
            background: linear-gradient(135deg, rgba(249, 161, 65, 0.25) 0%, rgba(232, 146, 47, 0.25) 100%);
            color: var(--primary-color);
            font-weight: 500;
            position: relative;
        }

        .custom-dropdown-option.selected::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 60%;
            background: linear-gradient(180deg, var(--primary-color), var(--primary-hover));
            border-radius: 0 2px 2px 0;
        }

        .custom-dropdown-option.placeholder-option {
            color: var(--text-muted);
            font-style: italic;
            background: rgba(10, 10, 10, 0.5);
        }

        .custom-dropdown-option.placeholder-option:hover {
            background: rgba(10, 10, 10, 0.7);
            padding-left: 1rem;
            cursor: default;
        }

        .no-results-message {
            padding: 0.75rem 1rem;
            color: var(--text-muted);
            font-style: italic;
            text-align: center;
            cursor: default;
            pointer-events: none;
        }

        .no-results-message:hover {
            background: transparent;
        }

        /* Custom scrollbar for dropdown */
        .custom-dropdown-options::-webkit-scrollbar {
            width: 6px;
        }

        .custom-dropdown-options::-webkit-scrollbar-track {
            background: rgba(10, 10, 10, 0.5);
        }

        .custom-dropdown-options::-webkit-scrollbar-thumb {
            background: rgba(249, 161, 65, 0.3);
            border-radius: 3px;
        }

        .custom-dropdown-options::-webkit-scrollbar-thumb:hover {
            background: rgba(249, 161, 65, 0.5);
        }


        .time-selector .form-control-custom  {
            color: #fff;
        }

        @media (max-width: 768px) {
            .progress-indicator {
                overflow-x: auto;
                padding-bottom: 1rem;
            }

            .step-label {
                font-size: 0.6rem;
            }

            .step-number {
                width: 32px;
                height: 32px;
                font-size: 0.75rem;
            }

            .step-line {
                min-width: 20px;
            }
        }



        /* role selection css */

        .role-section {
            animation: fadeInUp 0.6s ease-out;
        }

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

        .header {
            margin-bottom: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.8s ease-out;
        }

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

        .title {
            font-size: 2.25rem;
            font-weight: 300;
            margin-bottom: 0.5rem;
            letter-spacing: -0.01em;
            color: var(--text-primary);
            background: linear-gradient(135deg, #ffffff 0%, #a8a29e 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .description {
            font-size: 0.95rem;
            color: var(--text-muted);
            font-weight: 300;
            letter-spacing: 0.02em;
        }

        .roles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
            margin-bottom: 3rem;
        }

        .role-card {
            position: relative;
            background: rgba(21, 21, 21, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(68, 64, 60, 0.3);
            border-radius: 16px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            color: var(--text-secondary);
            overflow: hidden;
            animation: slideIn 0.5s ease-out backwards;
        }

        .role-card:nth-child(1) { animation-delay: 0.1s; }
        .role-card:nth-child(2) { animation-delay: 0.2s; }
        .role-card:nth-child(3) { animation-delay: 0.3s; }

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

        .role-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(249, 161, 65, 0.1) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }

        .role-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(249, 161, 65, 0.15) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.6s ease;
            z-index: 0;
        }

        .role-card:hover {
            border-color: rgba(249, 161, 65, 0.5);
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px -10px rgba(249, 161, 65, 0.3),
                        0 0 0 1px rgba(249, 161, 65, 0.1);
        }

        .role-card:hover::before {
            opacity: 1;
        }

        .role-card:hover::after {
            opacity: 1;
        }

        .role-card:active {
            transform: translateY(-4px) scale(1.01);
        }

        .role-card-inner {
            position: relative;
            z-index: 2;
            padding: 2rem 1.75rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .role-icon-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .role-icon {
            width: 72px;
            height: 72px;
            border-radius: 18px;
            background: linear-gradient(135deg, rgba(15, 15, 15, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
            border: 1px solid rgba(68, 64, 60, 0.4);
            display: flex;
            align-items: center;
            color: var(--text-primary);
            justify-content: center;
            font-size: 2rem;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 2;
        }

        .icon-glow {
            position: absolute;
            width: 72px;
            height: 72px;
            border-radius: 18px;
            background: var(--primary-color);
            opacity: 0;
            filter: blur(20px);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
        }

        .role-card:hover .role-icon {
            background: linear-gradient(135deg, var(--primary-color) 0%, #e8922f 100%);
            border-color: var(--primary-color);
            transform: rotate(5deg) scale(1.1);
            color: #000;
            box-shadow: 0 10px 30px -5px rgba(249, 161, 65, 0.5);
        }

        .role-card:hover .icon-glow {
            opacity: 0.4;
            transform: scale(1.3);
        }

        .role-card:hover .role-icon i {
            animation: iconPulse 0.6s ease;
        }

        @keyframes iconPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .role-content {
            text-align: center;
            transition: transform 0.3s ease;
        }

        .role-card:hover .role-content {
            transform: translateY(-2px);
        }

        .role-title {
            font-size: 1.25rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
            letter-spacing: -0.01em;
            transition: color 0.3s ease;
        }

        .role-card:hover .role-title {
            color: var(--primary-color);
        }

        .role-description {
            font-size: 0.875rem;
            color: var(--text-muted);
            line-height: 1.5;
            font-weight: 300;
            transition: color 0.3s ease;
        }

        .role-card:hover .role-description {
            color: var(--text-secondary);
        }

        .role-arrow {
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            color: var(--primary-color);
            font-size: 1.25rem;
            margin-top: 0.5rem;
        }

        .role-card:hover .role-arrow {
            opacity: 1;
            transform: translateX(0);
        }

        .role-arrow i {
            animation: arrowSlide 1.5s ease-in-out infinite;
        }

        @keyframes arrowSlide {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(5px); }
        }

        .divider {
            height: 1px;
            background: var(--border);
            margin: 3rem 0;
        }

        .footer-text {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .footer-text a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-text a:hover {
            color: var(--primary);
        }

        @media (max-width: 768px) {
            .roles-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .role-card-inner {
                padding: 2rem 1.5rem;
            }

            .logo {
                font-size: 2rem;
            }

            .title {
                font-size: 1.75rem;
            }

            .header {
                margin-bottom: 2rem;
            }

            .role-icon {
                width: 64px;
                height: 64px;
                font-size: 1.75rem;
            }

            .icon-glow {
                width: 64px;
                height: 64px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .role-card,
            .role-icon,
            .role-arrow,
            .role-content {
                animation: none;
                transition: none;
            }
        }

/* ==================== FILE UPLOAD STYLES ==================== */
.file-upload-wrapper {
    position: relative;
}

.file-input {
    display: none;
}

.file-upload-area {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(10, 10, 10, 0.3);
}

.file-upload-area:hover {
    border-color: var(--primary-color);
    background: rgba(249, 161, 65, 0.05);
}

.file-upload-area.drag-over {
    border-color: var(--primary-color);
    background: rgba(249, 161, 65, 0.1);
    transform: scale(1.02);
}

.file-upload-icon {
    color: var(--text-muted);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.file-upload-area:hover .file-upload-icon {
    color: var(--primary-color);
    transform: translateY(-4px);
}

.file-upload-text {
    color: var(--text-secondary);
}

.file-upload-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.file-upload-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

.file-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: rgba(10, 10, 10, 0.3);
    margin-top: 0.75rem;
}

.file-preview-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 161, 65, 0.1);
    border-radius: 8px;
    color: var(--primary-color);
}

.file-preview-info {
    flex: 1;
    min-width: 0;
}

.file-preview-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-preview-size {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

.file-remove-btn {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border: none;
    border-radius: 8px;
    color: #ef4444;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-remove-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: scale(1.1);
}

.file-upload-error {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05) !important;
}

.file-error-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    font-size: 0.875rem;
    color: #ef4444;
}

@media (max-width: 768px) {
    .file-upload-area {
        padding: 1.5rem;
    }
    
    .file-preview {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .file-preview-icon {
        width: 40px;
        height: 40px;
    }
}

/* Form Validation Error Styles */
.error-indicator {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    z-index: 10;
    animation: shake 0.3s ease-in-out;
}

.error-indicator.show {
    display: flex;
}

.error-message {
    display: none;
    margin-top: 0.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #ef4444;
    /* animation: slideDown 0.3s ease-out; */
}

.error-message.show {
    display: block;
}

.form-control-custom.error,
.custom-dropdown.error .custom-dropdown-selected {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05) !important;
    animation: shake 0.3s ease-in-out;
}

.form-label.error {
    color: #ef4444 !important;
}

/* OTP Modal Styles */
.otp-verification-container {
    text-align: center;
    padding: 20px 0;
}

.otp-instruction {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.otp-input-group {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.otp-input {
    width: 42px;
    height: 48px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    background: var(--input-bg);
    color: var(--text-primary);
    outline: none;
    transition: all 0.2s ease;
}

.otp-input:focus {
    border-color: var(--primary-color);
    background: rgba(41, 37, 36, 0.8);
    box-shadow: 0 0 0 3px rgba(249, 161, 65, 0.15);
}

.otp-input.filled {
    border-color: var(--primary-color);
    background: rgba(249, 161, 65, 0.1);
}

.otp-error-message {
    text-align: center;
    font-size: 0.78rem;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 6px;
    padding: 6px 12px;
    margin-bottom: 15px;
    min-height: 20px;
}

.otp-resend-section {
    text-align: center;
    margin-bottom: 15px;
}

.otp-resend-text {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.btn-resend-otp {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0 4px;
    margin-left: 4px;
    transition: all 0.2s ease;
}

.btn-resend-otp:hover:not(:disabled) {
    text-decoration: underline;
    color: var(--primary-hover);
}

.btn-resend-otp:disabled {
    color: var(--text-muted);
    cursor: not-allowed;
    text-decoration: none;
}

.otp-timer-section {
    text-align: center;
}

.otp-timer-text {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Custom OTP Modal */
.custom-otp-modal {
    background: var(--bg-secondary) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
}

.otp-modal-container {
    backdrop-filter: blur(10px) !important;
}

/* Animations */
@keyframes shake {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    25% { transform: translateY(-50%) translateX(-5px); }
    75% { transform: translateY(-50%) translateX(5px); }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}