/* ===========================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   =========================================== */
:root {
    --everfast-blue: #06579E;
    --off-white: #e0e3e6;
    --bg-button-gold:  linear-gradient(to right top, #ce7500, #d78721, #e19939, #eaab4f, #f3bd65, #f4bf66, #f6c066, #f7c267, #f1b552, #eba73d, #e59925, #df8b00);
    --hero-bg-overlay: linear-gradient(rgba(0, 80, 160, 0.5), rgba(0, 80, 160, 0.5));
    --text-gold: #EAAF46;
}

/* ===========================================
   GLOBAL STYLES
   =========================================== */
body {
    background: 
        radial-gradient(circle at 30% 20%, rgba(6, 87, 158, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(234, 175, 70, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%) !important;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(6, 87, 158, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(234, 175, 70, 0.4) 2px, transparent 2px);
    background-size: 30px 30px, 45px 45px;
    background-position: 0 0, 15px 15px;
    pointer-events: none;
    z-index: -999;
    opacity: 1;
}

main {
    background: transparent;
    min-height: 100vh;
    position: relative;
}

/* ===========================================
   HEADER / NAVIGATION
   =========================================== */
header, 
.bg-blue {
    background-color: var(--everfast-blue);
}

.navbar-brand img {
    width: 10rem;
}

.navbar-toggler {
    background-color: var(--text-gold);
}


.header-nav-link {
    font-family: "Roboto";
    font-size: .875rem;
}

/* Dropdown hover styles for navigation */
.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
}

.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
    margin-top: 0;
}

/* Ensure dropdown works on mobile touch devices */
@media (max-width: 991px) {
    .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        background: transparent;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}


.btn-style {
    background-image: var(--bg-button-gold);
    color: black;
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 0.875rem;
    border: 1px solid var(--text-gold);
    border-radius: 1.5625rem;
    min-width: 8rem;
    padding: 0.5rem 1rem;
}

/* ===========================================
   FOOTER SECTION
   =========================================== */
.footer-wrapper {
    background-color: var(--everfast-blue);
}

.footer-title,
.footer-list-title {
    font-family: 'Roboto', 'sans-serif';
    color: white;
}

.footer-text,
.footer-list-item {
    font-family: 'Roboto', 'sans-serif';
    color: white;
}

.footer-link {
    text-decoration: none;
}

.footer-disclaimer,
.copyright {
    font-family: 'Roboto', 'sans-serif';
    font-size: 12px;
    color: white;
}

.footer-social-icon {
    font-size: 32px;
    color: white;
}

.lower-footer {
    border-top: 2px solid #1863A5;
}



/* Wizard Layout Styles */
.wizard-container-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
    min-height: 80vh;
}

.wizard-content {
    min-width: 0; /* Prevents grid overflow */
}

.wizard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    min-height: 80vh;
}


/* Progress Tracker */
.wizard-progress {
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(234, 175, 70, 0.2);
}

.progress-bar-container .progress {
    background-color: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-bar-container .progress-bar {
    background: var(--bg-button-gold) !important;
    transition: width 0.6s ease;
    position: relative;
}

.progress-bar-container .progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.progress-steps .step {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto';
    font-weight: 700;
    color: #6c757d;
    position: relative;
    border: 3px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    user-select: none;
}

.progress-steps .step::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: var(--bg-button-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.progress-steps .step.active {
    background: var(--everfast-blue);
    color: white;
    border-color: var(--everfast-blue);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(6, 87, 158, 0.4);
}

.progress-steps .step.active::before {
    opacity: 1;
}

.progress-steps .step.completed {
    background: var(--text-gold);
    color: var(--everfast-blue);
    border-color: var(--text-gold);
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(234, 175, 70, 0.4);
}

.progress-steps .step.completed::after {
    content: '✓';
    font-size: 1.2rem;
}

/* Clickable step hover effects */
.progress-steps .step:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Enhanced hover for completed/active steps (clickable) */
.progress-steps .step.completed:hover,
.progress-steps .step.active:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(6, 87, 158, 0.4);
}

/* Subtle animation for future steps (not clickable yet) */
.progress-steps .step:not(.completed):not(.active) {
    opacity: 0.7;
    cursor: default;
}

.progress-steps .step:not(.completed):not(.active):hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: default;
}

/* Wizard Steps */
.wizard-steps {
    margin-bottom: 3rem;
}

.wizard-step {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.wizard-step.active{
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Step Content Styling */
.wizard-step h2 {
    font-family: 'Newsreader', 'sans-serif';
    font-weight: 500;
    color: var(--everfast-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.wizard-step h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--bg-button-gold);
    margin: 1rem auto;
    border-radius: 2px;
}

.wizard-step p {
    font-family: 'Roboto';
    color: #6c757d;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.wizard-step .container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(234, 175, 70, 0.2);
    position: relative;
    overflow: visible;
}

.wizard-step .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-button-gold);
    opacity: 0.8;
}

/* ===========================================
   CONTACT FORM STYLING (Step 5)
   =========================================== */

/* Enhanced Card Styling for Contact Form */
#step-6 .card {
    border: 2px solid rgba(234, 175, 70, 0.3);
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 35px, rgba(0, 0, 0, 0.1) 0px 5px 15px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    overflow: hidden;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

#step-6 .card:hover {
    transform: translateY(-3px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 40px, rgba(0, 0, 0, 0.15) 0px 8px 20px;
    border-color: var(--text-gold);
}

/* Card Headers with EverFast Styling */
#step-6 .card-header {
    background: linear-gradient(135deg, var(--everfast-blue) 0%, #0a4e7d 100%) !important;
    border: none !important;
    padding: 1.5rem 2rem;
    position: relative;
}

#step-6 .card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bg-button-gold);
}

#step-6 .card-header .card-title {
    font-family: 'Newsreader', 'sans-serif';
    font-weight: 500;
    font-size: 1.25rem;
    color: white !important;
    margin: 0;
    display: flex;
    align-items: center;
}

#step-6 .card-header i {
    color: var(--text-gold);
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

#step-6 .card-header .text-muted {
    color: rgba(234, 175, 70, 0.8) !important;
    font-style: italic;
}

/* Card Body Styling */
#step-6 .card-body {
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

/* Form Labels */
#step-6 .form-label {
    font-family: 'Roboto';
    font-weight: 600;
    color: var(--everfast-blue);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

#step-6 .text-danger {
    color: #dc3545 !important;
}

/* Form Help Text */
#step-6 .form-text {
    font-family: 'Roboto', 'sans-serif';
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Special Styling for Identity Verification Info */
#step-6 .card-body > p.text-muted {
    background: rgba(6, 87, 158, 0.05);
    border: 1px solid rgba(6, 87, 158, 0.1);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-family: 'Roboto';
    color: var(--everfast-blue) !important;
}

#step-6 .card-body > p.text-muted i {
    color: var(--text-gold);
    margin-right: 0.75rem;
}

/* ===========================================
   PERSONAL INFORMATION FORM STYLING (Step 2)
   =========================================== */

/* Enhanced Card Styling for Personal Information Form */
#step-2 .card {
    border: 2px solid rgba(234, 175, 70, 0.3);
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 35px, rgba(0, 0, 0, 0.1) 0px 5px 15px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    overflow: hidden;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

#step-2 .card:hover {
    transform: translateY(-3px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 40px, rgba(0, 0, 0, 0.15) 0px 8px 20px;
    border-color: var(--text-gold);
}

/* Card Headers with EverFast Styling */
#step-2 .card-header {
    background: linear-gradient(135deg, var(--everfast-blue) 0%, #0a4e7d 100%) !important;
    border: none !important;
    padding: 1.5rem 2rem;
    position: relative;
}

#step-2 .card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bg-button-gold);
}

#step-2 .card-header .card-title {
    font-family: 'Newsreader', 'sans-serif';
    font-weight: 500;
    font-size: 1.25rem;
    color: white !important;
    margin: 0;
    display: flex;
    align-items: center;
}

#step-2 .card-header i {
    color: var(--text-gold);
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

#step-2 .card-header .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.875rem;
}

#step-2 .card-body {
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

#step-2 .form-label {
    font-family: 'Roboto', 'sans-serif';
    font-weight: 600;
    color: var(--everfast-brand-blue);
    font-size: 0.95rem;
}

#step-2 .text-danger {
    color: #dc3545 !important;
    font-weight: 600;
}

#step-2 .form-text {
    color: #6c757d;
    font-size: 0.875rem;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Enhanced styling for card descriptions */
#step-2 .card-body > p.text-muted {
    background: linear-gradient(135deg, rgba(234, 175, 70, 0.1) 0%, rgba(6, 87, 158, 0.05) 100%);
    border-left: 4px solid var(--text-gold);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    font-style: italic;
}

#step-2 .card-body > p.text-muted i {
    color: var(--text-gold);
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* ===========================================
   PERSONAL INFORMATION FORM STYLING (Step 2 - Business)
   =========================================== */

/* Enhanced Card Styling for Business Personal Info Form (duplicated from Step 3) */
#step-2 .card:not(.perk-card-premium) {
    border: 2px solid rgba(234, 175, 70, 0.3);
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 35px, rgba(0, 0, 0, 0.1) 0px 5px 15px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    overflow: hidden;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

#step-2 .card:not(.perk-card-premium):hover {
    transform: translateY(-3px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 40px, rgba(0, 0, 0, 0.15) 0px 8px 20px;
    border-color: var(--text-gold);
}

/* Card Headers with EverFast Styling */
#step-2 .card:not(.perk-card-premium) .card-header {
    background: linear-gradient(135deg, var(--everfast-blue) 0%, #0a4e7d 100%) !important;
    border: none !important;
    padding: 1.5rem 2rem;
    position: relative;
}

#step-2 .card:not(.perk-card-premium) .card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bg-button-gold);
}

#step-2 .card:not(.perk-card-premium) .card-header .card-title {
    font-family: 'Newsreader', 'sans-serif';
    font-weight: 500;
    font-size: 1.25rem;
    color: white !important;
    margin: 0;
    display: flex;
    align-items: center;
}

#step-2 .card:not(.perk-card-premium) .card-header i {
    color: var(--text-gold);
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

#step-2 .card:not(.perk-card-premium) .card-header .text-muted {
    color: rgba(234, 175, 70, 0.8) !important;
    font-style: italic;
}

/* Card Body Styling */
#step-2 .card:not(.perk-card-premium) .card-body {
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

/* Form Labels */
#step-2 .form-label {
    font-family: 'Roboto';
    font-weight: 600;
    color: var(--everfast-blue);
    font-size: 0.95rem;
}

#step-2 .text-danger {
    color: #dc3545 !important;
}

/* Form Help Text */
#step-2 .form-text {
    font-family: 'Roboto', 'sans-serif';
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Special Styling for Identity Verification Info */
#step-2 .card:not(.perk-card-premium) .card-body > p.text-muted {
    background: rgba(6, 87, 158, 0.05);
    border: 1px solid rgba(6, 87, 158, 0.1);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-family: 'Roboto';
    color: var(--everfast-blue) !important;
}

#step-2 .card:not(.perk-card-premium) .card-body > p.text-muted i {
    color: var(--text-gold);
    margin-right: 0.75rem;
}

/* ===========================================
   CONTACT FORM STYLING (Step 4 - Business)
   =========================================== */

/* Enhanced Card Styling for Business Contact Form (not plan selection cards) */
#step-4 .card:not(.perk-card-premium) {
    border: 2px solid rgba(234, 175, 70, 0.3);
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 35px, rgba(0, 0, 0, 0.1) 0px 5px 15px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    overflow: hidden;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}


#step-4 .card:not(.perk-card-premium):hover {
    transform: translateY(-3px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 40px, rgba(0, 0, 0, 0.15) 0px 8px 20px;
    border-color: var(--text-gold);
}

/* Card Headers with EverFast Styling */
#step-4 .card:not(.perk-card-premium) .card-header {
    background: linear-gradient(135deg, var(--everfast-blue) 0%, #0a4e7d 100%) !important;
    border: none !important;
    padding: 1.5rem 2rem;
    position: relative;
}

#step-4 .card:not(.perk-card-premium) .card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bg-button-gold);
}

#step-4 .card:not(.perk-card-premium) .card-header .card-title {
    font-family: 'Newsreader', 'sans-serif';
    font-weight: 500;
    font-size: 1.25rem;
    color: white !important;
    margin: 0;
    display: flex;
    align-items: center;
}

#step-4 .card:not(.perk-card-premium) .card-header i {
    color: var(--text-gold);
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

#step-4 .card:not(.perk-card-premium) .card-header .text-muted {
    color: rgba(234, 175, 70, 0.8) !important;
    font-style: italic;
}

/* Card Body Styling */
#step-4 .card:not(.perk-card-premium) .card-body {
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

/* Form Labels */
#step-4 .form-label {
    font-family: 'Roboto';
    font-weight: 600;
    color: var(--everfast-blue);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

#step-4 .text-danger {
    color: #dc3545 !important;
}

/* Form Help Text */
#step-4 .form-text {
    font-family: 'Roboto', 'sans-serif';
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Special Styling for Identity Verification Info */
#step-4 .card:not(.perk-card-premium) .card-body > p.text-muted {
    background: rgba(6, 87, 158, 0.05);
    border: 1px solid rgba(6, 87, 158, 0.1);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-family: 'Roboto';
    color: var(--everfast-blue) !important;
}

#step-4 .card:not(.perk-card-premium) .card-body > p.text-muted i {
    color: var(--text-gold);
    margin-right: 0.75rem;
}

/* Calendar Full Width */
.appointment-scheduler {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 991px) {
    .appointment-scheduler {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.calendar {
    width: 100%;
    max-width: none;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.calendar-days div {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation - now inside wizard-steps */
.wizard-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem;
    border-top: 3px solid var(--text-gold);
    margin-top: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.wizard-navigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-button-gold);
    border-radius: 20px 20px 0 0;
}

.wizard-navigation .btn {
    font-family: 'Roboto';
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    border: 2px solid;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.wizard-navigation .btn-secondary {
    background: transparent;
    border-color: var(--everfast-blue);
    color: var(--everfast-blue);
}

.wizard-navigation .btn-secondary:hover:not(:disabled) {
    background: var(--everfast-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(6, 87, 158, 0.3);
}

.wizard-navigation .btn-primary {
    background: var(--bg-button-gold);
    border-color: var(--text-gold);
    color: var(--everfast-blue);
    font-weight: 700;
}

.wizard-navigation .btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 175, 70, 0.4);
    background: linear-gradient(135deg, #f3bd65 0%, #df8b00 100%);
}

.wizard-navigation .btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-color: #28a745;
    color: white;
    font-weight: 700;
}

.wizard-navigation .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #218838 0%, #1dc5a3 100%);
}

.wizard-navigation .btn:disabled,
.wizard-navigation .btn.btn-disabled-state {
    opacity: 0.5;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
    pointer-events: none !important;
    filter: grayscale(0.3);
}

.wizard-navigation .btn:disabled:hover,
.wizard-navigation .btn.btn-disabled-state:hover {
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Override for enabled buttons */
.wizard-navigation .btn:not(:disabled):not(.btn-disabled-state) {
    cursor: pointer !important;
    opacity: 1 !important;
    filter: none !important;
    pointer-events: auto !important;
}

.wizard-navigation .btn:not(:disabled):not(.btn-disabled-state):hover {
    cursor: pointer !important;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .wizard-container {
        padding: 1rem 0.5rem;
    }

    .wizard-progress {
        padding: 1rem;
        margin-bottom: 2rem;
    }

    .progress-steps .step {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    .wizard-step h2 {
        font-size: 1.75rem;
    }

    .wizard-step .container {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }

    .wizard-navigation {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        border-radius: 15px;
    }

    .wizard-navigation .btn {
        width: 100%;
        min-width: auto;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ===========================================
   PLAN SUMMARY SIDEBAR (EverFast Style)
   =========================================== */

.plan-summary-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid var(--text-gold);
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.plan-summary-sidebar:hover {
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 22px 45px, rgba(0, 0, 0, 0.25) 0px 18px 15px;
}

.sidebar-content {
    padding: 2rem;
    position: relative;
}

.sidebar-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-button-gold);
    border-radius: 25px 25px 0 0;
}

.sidebar-title {
    font-family: 'Newsreader', 'sans-serif';
    font-weight: 500;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--everfast-blue);
    display: flex;
    align-items: center;
    text-transform: capitalize;
}

.summary-section {
    margin-bottom: 1.5rem;
    background: rgba(6, 87, 158, 0.05);
    border-radius: 15px;
    padding: 1.25rem;
    border: 1px solid rgba(234, 175, 70, 0.3);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(234, 175, 70, 0.2);
    transition: all 0.2s ease;
}

.summary-item:hover {
    background: rgba(234, 175, 70, 0.1);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-radius: 8px;
    margin: 0 -0.5rem;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    font-family: 'Roboto';
    font-weight: 600;
    color: var(--everfast-blue);
    font-size: 0.95rem;
}

.summary-value {
    font-family: 'Roboto', 'sans-serif';
    font-weight: 700;
    color: var(--text-gold);
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.summary-divider {
    border: none;
    border-top: 3px solid var(--text-gold);
    margin: 1.5rem 0;
    opacity: 0.6;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.25rem;
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--everfast-blue) 0%, #0a4e7d 100%);
    border-radius: 15px;
    margin: -0.5rem -1rem 0 -1rem;
    box-shadow: 0 4px 15px rgba(6, 87, 158, 0.3);
    transition: all 0.3s ease;
}

.summary-total:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(6, 87, 158, 0.4);
}

.summary-total .summary-label {
    font-family: 'Roboto';
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-total .summary-value {
    font-family: 'Roboto', 'sans-serif';
    color: var(--text-gold);
    font-size: 1.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.summary-footer {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(234, 175, 70, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(234, 175, 70, 0.3);
    text-align: center;
    margin-left: -1rem;
    margin-right: -1rem;
}

.summary-footer small {
    font-family: 'Roboto', 'sans-serif';
    font-weight: 500;
    color: var(--everfast-blue);
    font-size: 0.8rem;
}

.summary-footer i {
    color: var(--text-gold);
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .wizard-container-with-sidebar {
        grid-template-columns: 1fr 280px;
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .wizard-container-with-sidebar {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plan-summary-sidebar {
        order: -1; /* Show above wizard on tablet/mobile */
        position: static;
        margin-bottom: 2rem;
        border-radius: 20px;
    }
    
    .sidebar-content {
        padding: 1.5rem;
    }
    
    .sidebar-title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .summary-section {
        padding: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .summary-item {
        padding: 0.75rem 0;
    }
    
    .summary-total {
        padding: 1.25rem 1rem;
        margin: -0.25rem -0.5rem 0 -0.5rem;
    }
    
    .summary-footer {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        padding: 0.875rem 1rem;
    }
}

@media (max-width: 768px) {
    .plan-summary-sidebar {
        border-radius: 18px;
        box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.18) 0px 10px 10px;
    }
    
    .sidebar-content {
        padding: 1.25rem;
    }
    
    .sidebar-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .summary-section {
        padding: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .summary-item {
        padding: 0.625rem 0;
    }
    
    .summary-item:hover {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
        margin: 0 -0.25rem;
    }
    
    .summary-label {
        font-size: 0.85rem;
    }
    
    .summary-value {
        font-size: 0.9rem;
    }
    
    .summary-total {
        font-size: 1rem;
        padding: 1rem 0.875rem;
        margin: -0.125rem -0.25rem 0 -0.25rem;
    }
    
    .summary-total .summary-label {
        font-size: 0.9rem;
    }
    
    .summary-total .summary-value {
        font-size: 1.25rem;
    }
    
    .summary-footer {
        margin-left: -0.25rem;
        margin-right: -0.25rem;
        padding: 0.75rem 0.875rem;
    }
    
    .summary-footer small {
        font-size: 0.75rem;
    }
}

/* ===========================================
   COLLAPSIBLE SIDEBAR FUNCTIONALITY
   =========================================== */

/* Collapsible Sidebar Styles */
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    cursor: pointer;
    user-select: none;
}

.sidebar-title {
    margin: 0;
}

.sidebar-toggle {
    background: none;
    border: none;
    color: var(--everfast-blue);
    font-size: 1.25rem;
    padding: 0.25rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-left: 0.75rem;
    cursor: pointer;
    /* Mobile touch improvements */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
}

.sidebar-toggle:hover {
    background-color: rgba(6, 87, 158, 0.1);
    color: var(--text-gold);
    transform: scale(1.1);
}

.sidebar-toggle i {
    transition: transform 0.3s ease;
}

.sidebar-toggle.collapsed i {
    transform: rotate(180deg);
}

.sidebar-collapsed-total {
    display: none;
    margin-bottom: 1rem;
}

.sidebar-collapsible {
    transition: all 0.3s ease;
    overflow: visable;
}

/* Desktop: Always expanded, hide toggle and collapsed total */
@media (min-width: 1025px) {
    .sidebar-toggle {
        display: none;
    }

    .sidebar-collapsed-total {
        display: none !important;
    }

    .sidebar-collapsible {
        max-height: none !important;
        opacity: 1 !important;
    }
}

/* Mobile: Show toggle, manage collapsed state */
@media (max-width: 1024px) {
    .sidebar-header {
        margin-bottom: 0.75rem;
        /* Enhanced mobile touch */
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        padding: 0.5rem 0;
    }

    .sidebar-title {
        font-size: 1.1rem;
    }

    .sidebar-toggle {
        display: flex;
        /* Larger touch target for mobile */
        min-width: 44px;
        min-height: 44px;
        width: 44px;
        height: 44px;
    }

    /* When collapsed on mobile */
    .plan-summary-sidebar.mobile-collapsed .sidebar-collapsible {
        max-height: 0;
        opacity: 0;
        margin-top: 0;
        padding-top: 0;
        margin-bottom: 0;
    }

    .plan-summary-sidebar.mobile-collapsed .sidebar-collapsed-total {
        display: block;
    }

    .plan-summary-sidebar.mobile-collapsed .sidebar-toggle i {
        transform: rotate(180deg);
    }

    /* When expanded on mobile */
    .plan-summary-sidebar:not(.mobile-collapsed) .sidebar-collapsed-total {
        display: none;
    }
}