/* ==========================================================================
            Multi Step Form
            ========================================================================== */

.leads-container {
    background: #f2f5ff;
    padding: 40px 0;
}

.form-wrapper {
    overflow: hidden;
}

.sidebar {
    height: 100%;
    padding: 40px 30px;
    background: #f2f5ff;
}

.form-content {
    width: 100%;
    height: 100%;
    padding: 1.5em 1.25em;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 25px;
}

.form-content.form-content-first {
    padding: 1.5em 2.25em !important;
}

.step-indicator {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.step-number {
    background: #ea2086;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 2;
}

.step-text {
    font-weight: 500;
}

.step-title {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}

.step-item {
    padding: 15px 0;
    border-bottom: 1px solid #dee2e6;
    color: #6c757d;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-item:hover {
    padding-left: 5px;
}

.step-item:last-child {
    border-bottom: none;
}

.step-item.active {
    color: #050740;
    font-weight: 600;
}

.step-item.completed svg {
    color: #28a745;
}

.step-item svg {
    width: 20px;
    margin-right: 10px;
}

.form-step {
    display: none;
    width: 100%;
}

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

.form-step .row {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.form-step .col-lg-8,
.form-step .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
    padding-left: 15px;
    padding-right: 15px;
}

.form-step .col-lg-4,
.form-step .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    padding-left: 15px;
    padding-right: 15px;
}

#multiStepForm {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Form Controls */
.form-control,
.form-select {
    height: 48px;
    border-radius: 6px;
    border: 1px solid #ced4da;
    padding: 12px 16px;
    font-size: 14px;
}

.form-control:focus,
.form-select:focus {
    border-color: #ea2086;
    box-shadow: 0 0 0 0.2rem rgba(234, 32, 134, 0.15);
}

input[type="date"] {
    height: 48px;
}

.input-group .input-group-text {
    height: 48px;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-color: #ced4da;
}

/* Form Check Styling */
.form-check-container {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 15px;
    margin-top: 8px;
    height: 48px;
    display: flex;
    align-items: center;
}

.form-check {
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.form-check-input {
    margin-right: 8px;
    margin-top: 0;
}

/* Founders Club */
.founders-club {
    border: 2px solid #f0ad4e;
    background: linear-gradient(135deg, #fff9e6, #ffeaa7);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: sticky;
    top: 20px;
}

.founders-club.selected {
    border-color: #f0ad4e;
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
    transform: scale(1.02);
}

.btn-founders {
    background: #f0ad4e;
    border: none;
    color: #333;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-founders:hover {
    background: #ec971f;
    color: #333;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background: #ccc;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.toggle-switch.active {
    background: #ea2086;
}

.toggle-switch::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s;
}

.toggle-switch.active::after {
    left: 33px;
}

/* Service Cards */
.service-card {
    min-height: 120px;
    padding: 20px;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    user-select: none;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
}

.service-card:hover {
    border-color: #ea2086;
    box-shadow: 0 2px 8px rgba(234, 32, 134, 0.1);
    transform: translateY(-2px);
}

.service-card.selected {
    border-color: #ea2086;
    background: #fef7f7;
}

.service-card .service-checkbox {
    display: none;
}

/* Premium Options */
.premium-options {
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
    background: #f8f9fa;
}

.premium-option-card {
    height: 175px;
    padding: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: top;
    user-select: none;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
}

.premium-option-card:hover {
    border-color: #ea2086;
    box-shadow: 0 2px 8px rgba(234, 32, 134, 0.1);
    transform: translateY(-2px);
}

.premium-option-card.selected {
    border-color: #ea2086;
    background: #fef7f7;
}

.premium-option-card .form-check-input {
    display: none;
}

.premium-option-card .form-check {
    padding-left: 0;
}
.premium-option-card .form-check-label {
    font-size: 0.95rem !important;
}

.premium-option-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    flex-shrink: 0;
}

/* Breakdown Assistance */
.breakdown-assistance-card {
    background: #fff9e6;
    border: 2px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.breakdown-assistance-card::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #f0ad4e;
    border-radius: 4px;
    background: white;
    transition: all 0.3s ease;
}

.breakdown-assistance-card.selected::before {
    background: #28a745;
    border-color: #28a745;
}

.breakdown-assistance-card.selected::after {
    content: "✓";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.breakdown-assistance-card:hover {
    border-color: #f0ad4e;
    background: #fffbf0;
    transform: translateY(-2px);
}

.breakdown-assistance-card.selected {
    border-color: #28a745;
    background: #d4edda;
}

.breakdown-assistance-card svg {
    font-size: 2.75rem;
}

.breakdown-assistance-card.selected .fa-triangle-exclamation,
.breakdown-assistance-card.selected svg {
    color: #28a745 !important;
}

.breakdown-assistance-card .form-check {
    padding-left: 0 !important;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.breakdown-assistance-card .form-check-label {
    cursor: pointer;
    width: 100%;
    margin-left: 0;
    font-size: 0.95rem !important;
    padding-right: 40px; /* Space for checkbox */
}

.breakdown-assistance-card .form-check-input {
    display: none;
}

/* Confirmation Summary */
.confirmation-summary .summary-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.confirmation-summary .summary-section h4 {
    margin-bottom: 15px;
    color: #050740;
}

.confirmation-summary .summary-section ul {
    list-style: none;
    padding: 0;
}

.confirmation-summary .summary-section li {
    padding: 8px 0;
    border-bottom: 1px solid #dee2e6;
}

.confirmation-summary .summary-section li:last-child {
    border-bottom: none;
}

/* Misc */
.media .fa-lock {
    margin: 0.25em 0;
}

.current-step-mobile {
    padding: 12px 15px;
    text-align: center;
    font-weight: 600;
    color: #050740;
}

.current-step-mobile svg {
    margin-right: 8px;
}

.multi-form-btns {
    padding: 0 1em;
}

/* Services Info Alert */
.alert-info.services-speak-alert {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 2px solid #2196f3;
    border-radius: 12px;
    padding: 25px;
    position: relative;
}
.alert-info.services-speak-alert .alert-content {
    padding-left: 0;
}
.alert-info.services-speak-alert p {
    margin-bottom: 20px;
    color: #1565c0;
    font-size: 1rem;
    line-height: 1.6;
}

.services-speak-checkbox-wrapper {
    background: white;
    border: 2px solid #2196f3;
    border-radius: 8px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
}
.services-speak-checkbox-wrapper:hover {
    background: #f5f5f5;
    border-color: #1976d2;
    transform: translateX(4px);
}
.services-speak-checkbox-wrapper.selected {
    background: #4caf50;
    border-color: #4caf50;
    color: white;
}
.services-speak-checkbox-wrapper .form-check {
    margin-bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
}
.services-speak-checkbox-wrapper .form-check-input {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    cursor: pointer;
    border: 2px solid #2196f3;
}
.services-speak-checkbox-wrapper.selected .form-check-input {
    border-color: white;
    background-color: white;
}
.services-speak-checkbox-wrapper .form-check-label {
    cursor: pointer;
    margin-left: 15px;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1rem;
    color: #1565c0;
}
.services-speak-checkbox-wrapper.selected .form-check-label {
    color: white;
}
.services-speak-checkbox-wrapper::after {
    content: "→";
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    color: #2196f3;
    transition: all 0.3s ease;
}
.services-speak-checkbox-wrapper.selected::after {
    content: "✓";
    color: white;
}
.services-speak-checkbox-wrapper:hover::after {
    transform: translateX(4px);
}

/* Mobile responsiveness */
@media (max-width: 575.98px) {
    .current-step-mobile {
        padding: 12px 15px;
        text-align: center;
        font-weight: 600;
        color: #050740;
    }

    .current-step-mobile svg {
        margin-right: 8px;
    }
    .sidebar {
        border-bottom: none;
    }
    .form-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .sidebar {
        padding: 20px;
        border-right: none;
        border-bottom: 1px solid #dee2e6;
        width: 100%;
        flex: none;
    }

    .form-content {
        padding: 30px 20px;
        width: 100%;
        flex: none;
    }

    .premium-option-card {
        height: auto;
        min-height: 100px;
        flex-direction: column;
        text-align: center;
    }

    .premium-option-img {
        margin-bottom: 10px;
        margin-right: 0;
    }

    .service-card {
        min-height: 80px;
        padding: 15px;
    }

    .service-card .fa-2x {
        font-size: 1.5em;
    }
    .breakdown-assistance-card::before {
        right: 15px;
        width: 18px;
        height: 18px;
    }
    .breakdown-assistance-card.selected::after {
        right: 19px;
        font-size: 12px;
    }
    .alert-info.services-speak-alert::before {
        position: relative;
        display: block;
        margin-bottom: 15px;
        left: 0;
        top: 0;
    }
    .breakdown-assistance-card .media {
        flex-wrap: wrap;
    }
    .breakdown-assistance-card svg {
        width: 100%;
        margin-bottom: 0.25em;
        display: block;
    }
    .alert-info.services-speak-alert .alert-content {
        padding-left: 0;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .form-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .sidebar {
        padding: 20px;
        border-right: none;
        border-bottom: 1px solid #dee2e6;
        width: 100%;
        flex: none;
    }

    .form-content {
        padding: 30px 20px;
        width: 100%;
        flex: none;
    }

    .premium-option-card {
        height: auto;
        min-height: 100px;
        flex-direction: column;
        text-align: center;
    }

    .premium-option-img {
        margin-bottom: 10px;
        margin-right: 0;
    }

    .service-card {
        min-height: 80px;
        padding: 15px;
    }

    .service-card .fa-2x {
        font-size: 1.5em;
    }
    .current-step-mobile {
        padding: 12px 15px;
        text-align: center;
        font-weight: 600;
        color: #050740;
    }

    .current-step-mobile svg {
        margin-right: 8px;
    }
    .sidebar {
        border-bottom: none;
    }
    .breakdown-assistance-card::before {
        right: 15px;
        width: 18px;
        height: 18px;
    }

    .breakdown-assistance-card.selected::after {
        right: 19px;
        font-size: 12px;
    }

    .alert-info.services-speak-alert::before {
        position: relative;
        display: block;
        margin-bottom: 15px;
        left: 0;
        top: 0;
    }

    .alert-info.services-speak-alert .alert-content {
        padding-left: 0;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .premium-option-card {
        height: auto;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .premium-option-card {
        height: auto;
    }
}

@media (min-width: 1200px) {
}
