.bg-custom-light-blue {
    background-color: #34c4fd24;
}

.custom-card-border {
    border: 5px solid #069EDB;
    border-radius: 11px;
}

html {
    scroll-behavior: smooth;
}


/* Modal Styling */
.modal-content {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: none;
    overflow: hidden;
    background: #ffffff;
}

.modal-header {
    background: linear-gradient(80deg, #0F75BC 0%, #069EDB 100%);
    color: #fff;
    border-bottom: none;
    padding: 20px 30px;
}

.modal-title {
    font-size: 24px;
    font-weight: 600;
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 30px;
}

/* Progress Bar */
.progress {
    height: 8px;
    border-radius: 5px;
    background: #e9ecef;
    margin-bottom: 30px;
}

.progress-bar {
    background: linear-gradient(80deg, #0F75BC 0%, #069EDB 100%);
    transition: width 0.3s ease-in-out;
}

/* Step Indicators */
.step-indicators {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    text-align: center;
}

.step-indicator {
    flex: 1;
    position: relative;
}

.step-indicator span {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background: #e9ecef;
    color: #666;
    font-weight: 600;
    transition: all 0.3s;
}

.step-indicator.active span {
    background: linear-gradient(80deg, #0F75BC 0%, #069EDB 100%);
    color: #fff;
}

.step-indicator p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}

/* Form Styling */
.form-step {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

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

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-step h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.form-label {
    font-weight: 500;
    color: #444;
    margin-bottom: 8px;
}

.form-control {
    border-radius: 0 8px 8px 0;
    border: 1px solid #ced4da;
    padding: 12px;
    transition: border-color 0.3s, box-shadow 0.3s;
    height: 48px;
}

.form-control:focus {
    border-color: #069EDB;
    box-shadow: 0 0 0 3px rgba(6, 158, 219, 0.2);
    outline: none;
}

.input-group-text {
    background: #f8f9fa;
    border: 1px solid #ced4da;
    border-right: none;
    border-radius: 8px 0 0 8px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    height: 48px;
}

.input-group-text i {
    color: #666;
    font-size: 16px;
}

.input-group {
    margin-bottom: 20px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(80deg, #0F75BC 0%, #069EDB 100%);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: linear-gradient(80deg, #0F75BC 0%, #069EDB 100%);
    filter: brightness(1.1);
}

.btn-secondary {
    background: #6c757d;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #5c636a;
}

/* Payment Section */
#payment-element {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    background: #f8f9fa;
}

#selected-plan,
#selected-price {
    font-weight: 600;
    color: #333;
}

#error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 576px) {
    .modal-dialog {
        margin: 10px;
    }

    .modal-body {
        padding: 20px;
    }

    .step-indicators {
        flex-direction: column;
        gap: 10px;
    }

    .step-indicator p {
        font-size: 12px;
    }
}


.form-step#step-3 {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin: 1rem 0;
}

.form-step#step-3 h4 {
    color: #1a1a1a;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.payment-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: center;
}

.payment-summary .plan-info,
.payment-summary .price-info {
    flex: 1;
    min-width: 200px;
}

.payment-summary .plan-info p,
.payment-summary .price-info p {
    margin: 0;
    font-size: 1.1rem;
    color: #4b5e71;
}

.payment-summary .plan-info span,
.payment-summary .price-info span {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    display: block;
    margin-top: 0.25rem;
}

.payment-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.payment-actions .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.payment-actions .btn-secondary {
    background-color: #6c757d;
    border: none;
    color: white;
}

.payment-actions .btn-secondary:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

.payment-actions .btn-primary {
    background-color: #007bff;
    border: none;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3);
}

.payment-actions .btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .form-step#step-3 {
        padding: 1.5rem;
    }

    .payment-summary {
        flex-direction: column;
        align-items: flex-start;
    }

    .payment-actions {
        flex-direction: column;
        width: 100%;
    }

    .payment-actions .btn {
        width: 100%;
        text-align: center;
    }
}