
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
    
    html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-family: sans-serif;
  }

        html, body {
            font-family: 'Plus Jakarta Sans', sans-serif !important;
            background: var(--light-bg);
     
        }
        
        
        h1,h2,h3,h4,h5,h6{
            font-family: 'Plus Jakarta Sans', sans-serif !important;
        }
        p{
            font-family: 'Plus Jakarta Sans', sans-serif !important;
        }
        .navbar-custom {
            background: white;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: #000 !important;
        }
        
        .nav-link {
            font-weight: 500;
            color: #6b7280 !important;
        }
        
        .nav-link:hover {
            color: #000 !important;
        }
        
        .btn-primary {
            background: #000;
            border: none;
        }
        
        .btn-primary:hover {
            background: #333;
        }
        
        .request-card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .request-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border-color: #000;;
        }
        
        .asset-tag {
            display: inline-block;
            background: #eff6ff;
            color: #1e40af;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
            margin: 0 4px 8px 0;
        }
        
        .deal-badge {
            background: var(--secondary-color);
            color: white;
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            display: inline-block;
        }
        
        .stats-row {
            display: flex;
            gap: 1rem;
            color: #6b7280;
            font-size: 0.875rem;
            padding-top: 1rem;
            border-top: 1px solid var(--border-color);
            margin-top: 1rem;
        }
        
        .me-too-btn {
            border: 2px solid #000!important;
            color: #000;;
            background: white;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .me-too-btn:hover {
            background: #000!important;
            color: white;
        }
        
        .me-too-btn.active {
            background: #000;;
            color: white;
        }
        
        .custom-toast {
            position: fixed;
            top: 90px;
            right: 20px;
            min-width: 300px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transform: translateX(400px);
            transition: transform 0.3s ease;
            z-index: 9999;
        }
        
        .custom-toast.show {
            transform: translateX(0);
        }
        
        .custom-toast.success {
            border-left: 4px solid var(--secondary-color);
        }
        
        .custom-toast.error {
            border-left: 4px solid #ef4444;
        }
        
        .btn:focus,
            input:focus,
            textarea:focus {
              outline: none !important;
              box-shadow: none !important; /* For Bootstrap v4+ */
            }
        /* Progress Steps */
        .progress-steps {
            display: flex;
            justify-content: space-between;
            margin-bottom: 2rem;
            position: relative;
        }
        
        .progress-steps::before {
            content: '';
            position: absolute;
            top: 30px;
            left: 0;
            width: 100%;
            height: 1px;
            background: #424242;
            opacity: 0.5;
            z-index: 1;
        }
        
        .progress-line {
            position: absolute;
            top: 30px;
            left: 0;
            height: 2px;
            background: var(--primary-color);
            z-index: 2;
            transition: width 0.3s ease;
        }
        
        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 3;
            flex: 1;
        }
        
        .step-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: white;
            border: 2px solid #9ca3af;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 400;
            color: #9ca3af;
            transition: all 0.3s ease;
        }
        
        .step.active .step-circle {
            border-color: var(--primary-color);
            background: var(--primary-color);
            color: white;
            transform: scale(1.1);
        }
        
        .step.completed .step-circle {
            border-color: var(--secondary-color);
            background: var(--secondary-color);
            color: white;
        }
        
        .step-label {
            margin-top: 0.75rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: #6b7280;
            text-align: center;
        }
        
        .step.active .step-label {
            color: var(--primary-color);
        }
        
        .form-card {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        
        .form-section {
            display: none;
        }
        
        .form-section.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .section-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 1.5rem;
        }
        
        .form-label {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 0.5rem;
            font-size: 0.875rem;
        }
        
        .form-control, .form-select {
            border-radius: 8px;
            border: 1px solid var(--border-color);
            /*padding: 0.75rem 1rem;*/
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
        }
        
        .form-check-input:checked {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .checkbox-card {
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 0.75rem 1rem;
            margin-bottom: 0.75rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .checkbox-card:hover {
            background: var(--light-bg);
            border-color: var(--primary-color);
        }
        
        .buyer-request-banner {
            background: #333333;
background: linear-gradient(90deg,rgba(51, 51, 51, 1) 0%, rgba(18, 26, 20, 1) 50%, rgba(0, 0, 0, 1) 100%);
            color: white;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            animation: slideDown 0.5s ease;
        }
        
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .asset-tag {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            padding: 6px 12px;
            border-radius: 6px;
            margin: 5px 5px 0 0;
            font-size: 0.875rem;
        }
        
        .payment-option {
            border: 1px solid #424242;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .payment-option:hover {
            border-color: var(--primary-color);
            box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
            transform: translateY(-2px);
        }
        
        .payment-icon {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }
        
        #stripe-payment-form {
            display: none;
            margin-top: 1.5rem;
            padding: 1.5rem;
            background: var(--light-bg);
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }
        
        #stripe-payment-form.show {
            display: block;
            animation: fadeIn 0.3s ease;
        }
        
        .btn-custom-primary {
            background: var(--primary-color);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
        }
        
        .btn-custom-primary:hover:not(:disabled) {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
            color: white;
        }
        
        .btn-custom-primary:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .btn-custom-secondary {
            background: #e5e7eb;
            color: var(--dark-color);
            padding: 0.75rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            border: none;
        }
        
        .btn-custom-secondary:hover {
            background: #d1d5db;
        }
        
        /* Custom Toast */
        .custom-toast {
            position: fixed;
            top: 90px;
            right: 20px;
            min-width: 300px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transform: translateX(400px);
            transition: transform 0.3s ease;
            z-index: 9999;
        }
        
        .custom-toast.show {
            transform: translateX(0);
        }
        
        .custom-toast.success {
            border-left: 4px solid var(--secondary-color);
        }
        
        .custom-toast.error {
            border-left: 4px solid var(--danger-color);
        }
        
        .toast-icon {
            font-size: 1.5rem;
        }
        
        .toast-content {
            flex: 1;
        }
        
        .toast-title {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }
        
        .toast-message {
            font-size: 0.875rem;
            color: #6b7280;
        }
        
        .toast-close {
            background: none;
            border: none;
            font-size: 1.25rem;
            color: #9ca3af;
            cursor: pointer;
            padding: 0;
        }
        
        /* Spinner Overlay */
        .spinner-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9998;
        }
        
        .spinner-overlay.show {
            display: flex;
        }
        
        .spinner-content {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
        }
        
        .spinner-border-custom {
            width: 3rem;
            height: 3rem;
            border: 4px solid var(--border-color);
            border-top-color: var(--primary-color);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .form-card {
                padding: 1.5rem;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .progress-steps {
                flex-direction: column;
                gap: 1rem;
            }
            
            .progress-steps::before,
            .progress-line {
                display: none;
            }
            
            .step {
                flex-direction: row;
                justify-content: flex-start;
            }
            
            .step-label {
                margin-top: 0;
                margin-left: 1rem;
                text-align: left;
            }
            
            .custom-toast {
                right: 10px;
                left: 10px;
                min-width: auto;
            }
        }
        :placeholder {
          font-size: 0.9rem;  
          color: #9ca3af;
          opacity: 1; 
        }