/* Vendor Registration Page Styles */
    .vendor-register-page {
        min-height: calc(100vh - 80px);
        background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    }

    .vendor-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: calc(100vh - 80px);
    }

    @media (max-width: 1024px) {
        .vendor-container {
            grid-template-columns: 1fr;
        }
    }

    /* Left Side - Testimonials */
    .testimonial-side {
        background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
        padding: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    @media (max-width: 1024px) {
        .testimonial-side {
            padding: 2rem;
            min-height: 500px;
        }
    }

    .testimonial-side::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
        pointer-events: none;
    }

    .testimonial-header {
        margin-bottom: 2rem;
        position: relative;
        z-index: 1;
    }

    .testimonial-header h2 {
        font-size: 2rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 0.5rem;
    }

    .testimonial-header p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1rem;
    }

    /* Testimonial Carousel */
    .testimonial-carousel {
        position: relative;
        z-index: 1;
    }

    .testimonial-slide {
        display: none;
        animation: fadeIn 0.5s ease-out;
    }

    .testimonial-slide.active {
        display: block;
    }

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

    .testimonial-card-v {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 1.5rem;
        padding: 2rem;
        position: relative;
    }

    .quote-mark {
        position: absolute;
        top: 1.5rem;
        right: 2rem;
        font-size: 4rem;
        color: rgba(99, 102, 241, 0.3);
        font-family: Georgia, serif;
        line-height: 1;
    }

    .testimonial-avatar {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid rgba(99, 102, 241, 0.5);
        margin-bottom: 1rem;
    }

    .testimonial-person {
        margin-bottom: 1.5rem;
    }

    .testimonial-name {
        color: #fff;
        font-weight: 700;
        font-size: 1.125rem;
        margin-bottom: 0.25rem;
    }

    .testimonial-role {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.875rem;
    }

    .testimonial-company {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .testimonial-company img {
        height: 24px;
        width: auto;
        border-radius: 4px;
    }

    .testimonial-company span {
        color: rgba(255, 255, 255, 0.8);
        font-weight: 600;
        font-size: 0.875rem;
    }

    .testimonial-quote {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .testimonial-metric {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .metric-value {
        font-size: 1.75rem;
        font-weight: 800;
        color: #6366f1;
    }

    .metric-label {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.875rem;
    }

    /* Carousel Dots */
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 2rem;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .carousel-dot.active {
        background: #6366f1;
        width: 30px;
        border-radius: 5px;
    }

    /* Right Side - Form */
    .form-side {
        padding: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: #fff;
    }

    @media (max-width: 1024px) {
        .form-side {
            padding: 2rem;
        }
    }

    .form-container {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .form-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .form-header h1 {
        font-size: 1.75rem;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 0.5rem;
    }

    .form-header p {
        color: #64748b;
        font-size: 0.95rem;
    }

    /* Step Indicator */
    .step-indicator {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .step {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .step-number {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 0.875rem;
        background: #e2e8f0;
        color: #64748b;
        transition: all 0.3s ease;
    }

    .step.active .step-number {
        background: #6366f1;
        color: #fff;
    }

    .step.completed .step-number {
        background: #10b981;
        color: #fff;
    }

    .step-label {
        font-size: 0.875rem;
        color: #64748b;
        font-weight: 500;
    }

    .step.active .step-label {
        color: #0f172a;
    }

    .step-line {
        width: 60px;
        height: 2px;
        background: #e2e8f0;
    }

    .step-line.active {
        background: #6366f1;
    }

    /* Form Styles */
    .registration-form {
        display: none;
    }

    .registration-form.active {
        display: block;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    @media (max-width: 640px) {
        .form-row {
            grid-template-columns: 1fr;
        }
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        display: block;
        font-size: 0.875rem;
        font-weight: 600;
        color: #374151;
        margin-bottom: 0.5rem;
    }

    .form-group label span.required {
        color: #ef4444;
    }

    .form-input {
        width: 100%;
        padding: 0.875rem 1rem;
        border: 1.5px solid #e2e8f0;
        border-radius: 0.75rem;
        font-size: 0.95rem;
        color: #0f172a;
        background: #f8fafc;
        transition: all 0.2s ease;
    }

    .form-input:focus {
        outline: none;
        border-color: #6366f1;
        background: #fff;
        box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    }

    .form-input::placeholder {
        color: #94a3b8;
    }

    .form-input.error {
        border-color: #ef4444;
    }

    .input-with-icon {
        position: relative;
    }

    .input-with-icon .icon {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: #94a3b8;
        pointer-events: none;
    }

    .input-with-icon .form-input {
        padding-left: 2.75rem;
    }

    /* Phone Input - Combined */
    .phone-input-combined {
        position: relative;
        display: flex;
        align-items: center;
        border: 1.5px solid #e2e8f0;
        border-radius: 0.75rem;
        background: #f8fafc;
        transition: all 0.2s ease;
    }

    .phone-input-combined:focus-within,
    .phone-input-combined.gl-phone-open {
        border-color: #6366f1;
        background: #fff;
        box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    }

    /* Trigger button */
    .gl-phone-trigger {
        display: flex;
        align-items: center;
        gap: 4px;
        padding: 0 10px 0 14px;
        height: 100%;
        min-height: 52px;
        background: transparent;
        border: none;
        border-right: 1.5px solid #e2e8f0;
        border-radius: 0.75rem 0 0 0.75rem;
        cursor: pointer;
        font-size: 0.95rem;
        color: #0f172a;
        white-space: nowrap;
        flex-shrink: 0;
        outline: none;
        transition: background 0.15s;
    }

    .gl-phone-trigger:hover {
        background: #eef2ff;
    }

    .gl-phone-trigger span:first-child {
        font-size: 20px;
        line-height: 1;
    }

    .gl-phone-caret {
        width: 14px;
        height: 14px;
        color: #94a3b8;
        flex-shrink: 0;
        transition: transform 0.2s;
    }

    .gl-phone-open .gl-phone-caret {
        transform: rotate(180deg);
    }

    .phone-input-combined .form-input {
        flex: 1;
        border: none;
        background: transparent;
        border-radius: 0 0.75rem 0.75rem 0;
        padding-left: 0.75rem;
    }

    .phone-input-combined .form-input:focus {
        outline: none;
        box-shadow: none;
    }

    /* Dropdown panel — opens upward */
    .gl-phone-dropdown {
        display: none;
        position: absolute;
        bottom: calc(100% + 6px);
        top: auto;
        left: 0;
        width: 280px;
        max-height: 260px;
        background: #fff;
        border: 1.5px solid #e2e8f0;
        border-radius: 0.75rem;
        box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.10);
        z-index: 10000;
        overflow: hidden;
        flex-direction: column;
    }

    .gl-phone-dropdown.open {
        display: flex;
        flex-direction: column;
    }

    /* Search */
    .gl-phone-search-wrap {
        padding: 10px 10px 8px;
        border-bottom: 1px solid #f1f5f9;
        flex-shrink: 0;
    }

    .gl-phone-search {
        width: 100%;
        padding: 8px 12px;
        border: 1.5px solid #e2e8f0;
        border-radius: 0.5rem;
        font-size: 0.875rem;
        color: #0f172a;
        background: #f8fafc;
        outline: none;
        font-family: inherit;
        box-sizing: border-box;
        transition: border-color 0.2s;
    }

    .gl-phone-search:focus {
        border-color: #6366f1;
        background: #fff;
    }

    /* Country list */
    .gl-phone-list {
        list-style: none;
        margin: 0;
        padding: 6px 0;
        overflow-y: auto;
        flex: 1;
    }

    .gl-phone-list li {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 9px 14px;
        cursor: pointer;
        font-size: 0.875rem;
        color: #374151;
        transition: background 0.15s;
    }

    .gl-phone-list li:hover,
    .gl-phone-list li.selected {
        background: #eef2ff;
        color: #4338ca;
    }

    .gl-phone-list li .glp-flag {
        font-size: 18px;
        line-height: 1;
        flex-shrink: 0;
    }

    .gl-phone-list li .glp-name {
        flex: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .gl-phone-list li .glp-dial {
        color: #94a3b8;
        font-size: 0.8rem;
        flex-shrink: 0;
    }

    .gl-phone-list li.glp-no-results {
        color: #94a3b8;
        cursor: default;
        font-style: italic;
    }

    .gl-phone-list li.glp-no-results:hover {
        background: transparent;
        color: #94a3b8;
    }

    /* Submit Button */
    .submit-btn {
        width: 100%;
        padding: 1rem 2rem;
        background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
        color: #fff;
        font-weight: 700;
        font-size: 1rem;
        border: none;
        border-radius: 0.75rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
    }

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
    }

    .submit-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none;
    }

    .submit-btn .spinner {
        width: 20px;
        height: 20px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-top-color: #fff;
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
    }

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

    /* Secondary Links */
    .form-footer {
        text-align: center;
        margin-top: 1.5rem;
        font-size: 0.875rem;
        color: #64748b;
    }

    .form-footer a {
        color: #6366f1;
        font-weight: 600;
        text-decoration: none;
    }

    .form-footer a:hover {
        text-decoration: underline;
    }

    .terms-text {
        text-align: center;
        font-size: 0.75rem;
        color: #94a3b8;
        margin-top: 1rem;
    }

    .terms-text a {
        color: #6366f1;
        text-decoration: none;
    }

    /* Success/Error Messages */
    .alert {
        padding: 1rem 1.25rem;
        border-radius: 0.75rem;
        margin-bottom: 1.5rem;
        font-size: 0.875rem;
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .alert-success {
        background: #ecfdf5;
        border: 1px solid #10b981;
        color: #047857;
    }

    .alert-error {
        background: #fef2f2;
        border: 1px solid #ef4444;
        color: #dc2626;
    }

    .alert-info {
        background: #eff6ff;
        border: 1px solid #3b82f6;
        color: #1d4ed8;
    }

    .alert svg {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
    }

    /* Thank You Screen */
    .thank-you-screen {
        display: none;
        text-align: center;
        padding: 2rem 0;
    }

    .thank-you-screen.active {
        display: block;
    }

    .thank-you-icon {
        width: 100px;
        height: 100px;
        margin: 0 auto 1.5rem;
    }

    .thank-you-screen h2 {
        font-size: 1.5rem;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 0.5rem;
    }

    .thank-you-screen p {
        color: #64748b;
        margin-bottom: 1rem;
    }

    .email-display {
        font-weight: 600;
        color: #0f172a;
    }

    /* Select2 Custom Styling */
    .select2-container {
        width: 100% !important;
    }

    .select2-container--default .select2-selection--multiple {
        border: 1.5px solid #e2e8f0;
        border-radius: 0.75rem;
        background: #f8fafc;
        min-height: 52px;
        padding: 0.375rem 0.75rem;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__rendered {
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field {
        margin-top: 0;
        height: 36px;
        font-size: 0.95rem;
        color: #0f172a;
    }

    .select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field::placeholder {
        color: #94a3b8;
    }

    .select2-container--default.select2-container--focus .select2-selection--multiple {
        border-color: #6366f1;
        background: #fff;
        box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice {
        background: #6366f1;
        border: none;
        border-radius: 0.5rem;
        color: #fff;
        padding: 0.375rem 0.75rem;
        margin: 0.25rem 0.25rem 0.25rem 0;
        font-size: 0.875rem;
        font-weight: 500;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
        color: rgba(255, 255, 255, 0.7);
        margin-right: 0.5rem;
        font-size: 1rem;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
        color: #fff;
        background: transparent;
    }

    .select2-dropdown {
        border: 1.5px solid #e2e8f0;
        border-radius: 0.75rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        margin-top: 4px;
    }

    .select2-container--default .select2-results__option {
        padding: 0.625rem 1rem;
        font-size: 0.95rem;
    }

    .select2-container--default .select2-results__option--highlighted[aria-selected] {
        background: #6366f1;
    }

    .select2-search--dropdown .select2-search__field {
        border: 1.5px solid #e2e8f0;
        border-radius: 0.5rem;
        padding: 0.625rem 0.875rem;
        font-size: 0.95rem;
    }

    .select2-search--dropdown .select2-search__field:focus {
        outline: none;
        border-color: #6366f1;
    }