/* ──────────── Stepper ──────────── */
.rgp-stepper-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 48px 16px 40px;
}

.rgp-stepper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.rgp-stepper-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 50%;
}

.rgp-stepper-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 10px;
    text-align: center;
}

.rgp-stepper-item.active .rgp-stepper-label,
.rgp-stepper-item.completed .rgp-stepper-label {
    font-weight: 600;
    color: var(--rgp-navy);
}

.rgp-stepper-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e5e5e5;
    color: #9ca3af;
}

.rgp-stepper-item.active .rgp-stepper-circle,
.rgp-stepper-item.completed .rgp-stepper-circle {
    background-color: var(--rgp-navy);
    color: white;
}

/* Stepper connecting lines */
.rgp-stepper-lines {
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    height: 2px;
    display: flex;
}

.rgp-stepper-line {
    background-color: #ddd;
}

.rgp-stepper-line-left {
    width: 25%;
}

.rgp-stepper-line-center-left {
    flex: 1;
}

.rgp-stepper-line-center {
    flex: 1;
}

.rgp-stepper-line-center-right {
    flex: 1;
}

.rgp-stepper-line-right {
    width: 25%;
}

.rgp-stepper-line.completed {
    background-color: var(--rgp-teal);
}

/* ──────────── Option Buttons (Step 1) ──────────── */
.rgp-option-btn {
    display: flex;
    align-items: center;
    width: 360px;
    height: 95px;
    background-color: var(--rgp-white);
    border: 1.5px solid var(--rgp-navy);
    border-radius: 18px;
    padding-left: 20px;
    padding-right: 26px;
    gap: 16px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--rgp-font);
}

.rgp-option-btn:hover {
    border-color: #0d1c2f;
    background-color: #f9f9f9;
}

.rgp-option-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--rgp-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rgp-option-label {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--rgp-navy);
}

/* ──────────── Wizard Step Visibility ──────────── */
.wizard-step {
    /* Visible by default for step 1 */
}

.wizard-step.d-none {
    display: none !important;
}
