/* NetBridge Form Styles */

.netbridge-form-container {
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Maison Neue', sans-serif;
}

.netbridge-form-fields-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.netbridge-btn-primary:focus{
    background-color: #B3E63C;
}
/* Header Button */
.netbridge-form-header-btn {
    background-color: #B3E63C;
    color: #200047;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 900;
    font-size: 15px;
    text-align: center;
    display: block;
    margin: 0 auto 30px;
    cursor: default;
    text-decoration: none;
    font-family: 'Maison Neue', sans-serif;
}
.netbridge-form-header-btn:hover{
    background-color: #B3E63C;
    color: #200047;
}
/* Progress Indicator */
.netbridge-progress-container {
    position: relative;
    margin-bottom: 50px;
    padding: 0;
    max-width: 448px;
    margin:  68px auto 45px auto;
}

.netbridge-progress-line {
    position: absolute;
    top: 50%;
    left: 12.5px;
    right: 12.5px;
    height: 5px;
    background-color: #e0e0e0;
    transform: translateY(-50%);
    z-index: 1;
}

.netbridge-progress-line-active {
    background-color: #B3E63C;
    height: 5px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    transition: width 0.3s ease, left 0.3s ease;
}

.netbridge-progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 3;
    padding: 0;
}

.netbridge-progress-step {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #e0e0e0;
    border: 2px solid #e0e0e0;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.netbridge-progress-step.active {
    background-color: #B3E63C;
    border-color: #B3E63C;
}

.netbridge-progress-step.completed {
    background-color: #B3E63C;
    border-color: #B3E63C;
}

/* Step Content */
.netbridge-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.netbridge-step.active {
    display: block;
}

/* Form Fields Wrapper - Text inputs only */
.netbridge-step .netbridge-form-fields-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

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

.netbridge-step-title {
    font-size: 30px;
    font-weight: 900;
    color: #200047;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Maison Neue', sans-serif;
}

.netbridge-step-subtitle {
    font-size: 18px;
    color: #200047;
    margin-bottom: 40px;
    text-align: center;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 25px;
    padding-right: 25px;
}

/* Form Fields */
.netbridge-form-group {
    margin-bottom: 25px;
}

.netbridge-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #200047;
    margin-bottom: 8px;
}

.netbridge-form-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.netbridge-form-input-wrapper .netbridge-form-input {
    padding-right: 50px !important;
}

.netbridge-form-input {
    width: 100% !important;
    padding: 20px !important;
    border: 1px solid #5E5E5E !important;
    border-radius: 8px !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #200047 !important;
    background-color: #fff !important;
    box-shadow: none !important;
    outline: none !important;
}

.netbridge-form-input:focus,
.netbridge-form-input:focus-visible,
.netbridge-form-input:active {
    outline: none !important;
    border: 1px solid #5E5E5E !important;
    box-shadow: none !important;
}

.netbridge-form-input:hover {
    border: 1px solid #5E5E5E !important;
}

.netbridge-form-input-icon {
    position: absolute;
    right: 16px;
    width: 20px;
    height: 20px;
    pointer-events: none;
    color: #666;
}

.netbridge-form-input-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* Radio Button Cards (Step 4 & 5) */
.netbridge-radio-group-wrapper {
    max-width: 1220px;
    margin: 0 auto;
}

.netbridge-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
    justify-content: center;
    width: 100%;
}

.netbridge-radio-group .netbridge-radio-card {
    width: 230px;
    height: 124px;
    flex: 0 0 230px;
    min-width: 230px;
    max-width: 230px;
}

.netbridge-radio-card {
    position: relative;
    border: 2px solid #5E5E5E;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
    width: 230px;
    height: 124px;
    min-height: 124px;
    max-height: 124px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.netbridge-radio-card:hover {
    border-color: #B3E63C;
    box-shadow: 0 4px 12px rgba(179, 230, 60, 0.15);
}

.netbridge-radio-card input[type="radio"],
.netbridge-radio-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Step 4 - Radio labels */
.netbridge-step[data-step="4"] .netbridge-radio-card-label {
    font-size: 16px;
    font-weight: 500;
    color: #200047;
    margin-bottom: auto;
    line-height: 1.4;
}

/* Step 5 - Radio labels */
.netbridge-step[data-step="5"] .netbridge-radio-card-label {
    font-size: 14px;
    font-weight: 500;
    color: #200047;
    margin-bottom: auto;
    line-height: 1.4;
}

.netbridge-radio-card-icon {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    color: rgba(0, 0, 0, 0.2);
    transition: color 0.3s ease;
}

.netbridge-radio-card-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* Step 5 - Green background when selected */
.netbridge-radio-card.step5-selected {
    background-color: #B3E63C;
    border-color: #B3E63C;
}

.netbridge-radio-card.step5-selected .netbridge-radio-card-label {
    color: #200047;
}

.netbridge-radio-card.step5-selected .netbridge-radio-card-icon {
    color: rgba(0, 0, 0, 0.2);
}

/* Step 6 - Purple background when selected */
.netbridge-radio-card.step6-selected {
    background-color: #200047;
    border-color: #200047;
}

.netbridge-radio-card.step6-selected .netbridge-radio-card-label {
    color: #fff;
}

.netbridge-radio-card.step6-selected .netbridge-radio-card-icon {
    color: rgba(0, 0, 0, 0.2);
}

/* Checkmark indicator */
.netbridge-radio-checkmark {
    position: absolute;
    top: -11px;
    right: 8px;
    width: 24px;
    height: 24px;
    background-color: #8ABD41;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.netbridge-radio-card.step5-selected .netbridge-radio-checkmark,
.netbridge-radio-card.step6-selected .netbridge-radio-checkmark {
    display: flex;
}

.netbridge-radio-card.step5-selected .netbridge-radio-checkmark {
    background-color: #200047;
}

.netbridge-radio-card.step5-selected .netbridge-radio-checkmark svg {
    fill: #fff;
}

.netbridge-radio-card.step6-selected .netbridge-radio-checkmark svg {
    fill: #200047;
}

.netbridge-datepicker-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
}

.netbridge-datepicker-wrapper .calendly-inline-widget {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* Buttons */
.netbridge-form-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.netbridge-btn {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.netbridge-btn-primary {
    background-color: #B3E63C;
    color: #200047;
}

.netbridge-btn-primary:hover {
    background-color: #9dd02a;
}
.netbridge-datepicker-wrapper iframe {
    min-height: 700px;
}
.netbridge-link-no-dates {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    background-color: #B3E63C;
    color: #200047;
    transition: background-color 0.3s ease;
    text-align: center;
}

.netbridge-link-no-dates:hover {
    background-color: #9dd02a;
    color: #200047;
    text-decoration: none;
}

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

.netbridge-btn-secondary {
    background-color: #f5f5f5;
    color: #200047;
    border: 1px solid #ddd;
}

.netbridge-btn-secondary:hover {
    background-color: #e8e8e8;
}

/* Error Messages */
.netbridge-form-error {
    color: #d32f2f;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.netbridge-form-group.has-error .netbridge-form-error {
    display: block;
}

.netbridge-form-group.has-error .netbridge-form-input {
    border-color: #d32f2f;
}

.netbridge-radio-group.has-error {
    border: 2px solid #d32f2f;
    border-radius: 8px;
    padding: 10px;
}

/* Success Message */
.netbridge-form-success {
    text-align: center;
    padding: 40px 20px;
    display: none;
}

.netbridge-form-success.active {
    display: block;
}

.netbridge-form-success h2 {
    color: #200047;
    font-size: 28px;
    margin-bottom: 15px;
}

.netbridge-form-success p {
    color: #666;
    font-size: 16px;
}


/* Responsive */
@media (max-width: 1300px) {
    .netbridge-radio-group {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .netbridge-step-title {
        font-size: 24px;
    }
    
    /* .netbridge-radio-group {
        flex-direction: column;
    } */
    
    .netbridge-radio-group .netbridge-radio-card {
        width: 230px;
        min-width: 230px;
        max-width: 230px;
    }
    
    .netbridge-form-actions {
        flex-direction: column;
    }
    
    .netbridge-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .netbridge-form-header-btn{
        font-size: 12px;
    }
}

@media (max-width: 350px) {
    .netbridge-form-header-btn{
        font-size: 10px;
    }
}
