/* Specific styles for the multi-step form */

.multi-step-form {
    padding: 80px 0;
    background: var(--light-beige);
}

/* Bootstrap Stepper Progress Indicator - Improved UX Design */

.stepper-progress-wrapper {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 2px 12px var(--shadow-sm);
    margin-bottom: 30px;
}

.stepper-progress-container {
    position: relative;
}

.stepper-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 25px;
}

.stepper-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stepper-step:hover .stepper-step-circle {
    transform: scale(1.08);
}

.stepper-step.locked {
    cursor: not-allowed;
    opacity: 0.5;
}

.stepper-step.locked:hover .stepper-step-circle {
    transform: scale(1);
}

.stepper-step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-quaternary);
    border: 3px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 12px;
}

.stepper-step-number {
    display: block;
}

.stepper-step-check {
    display: none;
    color: var(--text-white);
    font-size: 1.1rem;
}

/* Active step - use brand orange */

.stepper-step.active .stepper-step-circle {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--text-on-accent);
    transform: scale(1.1);
    box-shadow: 0 4px 12px var(--color-accent-shadow);
}

/* Completed step - subtle orange tint instead of green */

.stepper-step.completed .stepper-step-circle {
    background: var(--color-accent-bg-medium);
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.stepper-step.completed .stepper-step-number {
    display: none;
}

.stepper-step.completed .stepper-step-check {
    display: block;
    color: var(--color-accent);
}

.stepper-step-label {
    text-align: center;
    margin-top: 8px;
}

.stepper-step-label strong {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: block;
    font-weight: 500;
    transition: all 0.3s ease;
}

.stepper-step.active .stepper-step-label strong {
    color: var(--color-accent);
    font-weight: 600;
}

.stepper-step.completed .stepper-step-label strong {
    color: var(--dark);
    font-weight: 500;
}

.stepper-connector {
    flex: 1;
    height: 2px;
    background: var(--border-dark);
    margin: 0 15px;
    margin-top: -30px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.stepper-step.completed + .stepper-connector {
    background: var(--color-accent);
    opacity: 0.4;
}

.stepper-step.active + .stepper-connector {
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--border-dark) 100%);
}

.stepper-progress-bar {
    height: 4px;
    border-radius: 10px;
    background: var(--bg-quinary);
    overflow: hidden;
}

.stepper-progress-fill {
    background: var(--color-accent);
    transition: width 0.5s ease;
    border-radius: 10px;
    box-shadow: 0 0 8px var(--color-accent-shadow);
}

/* Step Cards - Improved Design */

.step-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.step-card:hover {
    box-shadow: 0 4px 16px var(--shadow-md) !important;
    border-color: var(--border-dark);
}

.step-header {
    padding: 22px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--bg-quinary) !important;
}

.step-header:hover {
    background: var(--color-secondary-light) !important;
}

.step-header.active {
    background: var(--bg-primary) !important;
    border-bottom: 2px solid var(--color-accent) !important;
}

.step-header.active .step-icon-wrapper {
    background: var(--color-accent);
    color: var(--text-white);
}

.step-header.active .step-icon-wrapper i,
.step-header.active h4 {
    color: var(--text-white) !important;
}

.step-header.active small {
    color: var(--text-secondary) !important;
}

.step-header.completed {
    background: var(--bg-primary) !important;
    border-left: 3px solid var(--color-accent);
}

.step-header.completed .step-icon-wrapper {
    background: var(--color-accent-bg);
    color: var(--color-accent);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon-wrapper {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--color-accent-bg-light);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.step-header.active .step-icon-wrapper {
    background: var(--color-accent);
    color: var(--text-white);
}

.step-toggle-icon {
    transition: transform 0.3s ease;
}

.step-header[aria-expanded="true"] .step-toggle-icon {
    transform: rotate(180deg);
}

.step-body {
    background: var(--bg-primary);
    transition: all 0.3s ease;
}

/* Step Status */

.step-status {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gray);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.step-header.completed .step-number {
    background: var(--color-success);
    animation: stepCompleted 0.6s ease-out;
}

.step-header.locked .step-number {
    background: var(--gray);
    opacity: 0.5;
}

.step-completion-status {
    display: flex;
    align-items: center;
}

.step-completed-icon {
    font-size: 1.5rem;
    color: var(--color-success);
}

.step-incomplete-icon {
    font-size: 1.5rem;
    color: var(--color-danger);
}

.step-locked-icon {
    font-size: 1.5rem;
    color: var(--text-muted-dark);
}

.step-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.step-title {
    flex: 1;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.step-title i {
    font-size: 1.2rem;
    color: var(--color-accent);
    transition: all 0.3s ease;
}

.step-header.active .step-title i {
    color: var(--text-white);
}

.step-icon,
.step-edit-icon {
    font-size: 1.1rem;
    color: var(--gray);
    transition: all 0.3s ease;
}

.step-header.active .step-icon,
.step-header.active .step-edit-icon {
    color: var(--text-white);
}

.step-header.completed .step-edit-icon {
    color: var(--success);
}

.step-header[aria-expanded="true"] .step-icon {
    transform: rotate(180deg);
}

.step-body {
    padding: 30px;
    border-top: none;
}

/* Step completion animations */

.step-header.completed {
    animation: stepCompleted 0.5s ease-out;
}

@keyframes stepCompleted {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.step-completed-icon {
    animation: iconPop 0.3s ease-out;
}

@keyframes iconPop {

    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Step validation states */

.step-header.validation-error {
    border-left: 4px solid var(--color-danger);
    background: var(--color-danger-bg-light);
}

.step-header.validation-error .step-title {
    color: var(--color-danger-text);
}

.step-header.validation-error .step-incomplete-icon {
    color: var(--color-danger);
}

/* Step progress indicator */

.step-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.step-header.completed .step-progress {
    background: var(--color-success);
}

/* Responsive adjustments for step status */
@media (width <= 768px) {

    .step-header {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .step-status {
        order: 1;
    }

    .step-title {
        order: 2;
        margin-left: 0;
        justify-content: center;
    }

    .step-controls {
        order: 3;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .step-title i {
        font-size: 1.5rem;
        margin-right: 10px;
    }
}

@media (width <= 576px) {

    .step-header {
        padding: 15px;
        gap: 10px;
    }

    .step-status {
        gap: 10px;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .step-title i {
        font-size: 1.3rem;
        margin-right: 8px;
    }

    .step-completed-icon,
    .step-incomplete-icon,
    .step-locked-icon {
        font-size: 1.3rem;
    }
}

.form-label {
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
    display: block;
}

.form-control,
.form-select {
    border: 2px solid var(--border-light);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 0.2rem var(--color-accent-shadow-light);
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

/* Circuit selection card sizing and visuals */

.circuit-card-selectable {
    border: 2px solid var(--border-light);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    background: var(--bg-primary);
}

.circuit-card-selectable img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.circuit-card-selectable .circuit-card-content {
    padding: 16px;
}

.circuit-card-selectable .circuit-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.circuit-card-selectable .price {
    color: var(--color-accent);
    font-weight: 700;
}

.circuit-card-selectable.selected {
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px var(--color-accent-shadow);
}

/* Accommodation cards carousel and cards */

.night-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 16px;
}

.night-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    cursor: pointer;
    background: var(--light-beige);
}

.night-title {
    margin: 0;
    font-weight: 600;
}

.accommodation-carousel-container {
    position: relative;
}

.accommodation-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 16px;
    scroll-behavior: smooth;
}

.accommodation-card {
    min-width: 240px;
    max-width: 240px;
    background: var(--bg-primary);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
    cursor: pointer;
}

.accommodation-card:hover {
    transform: translateY(-3px);
    border-color: var(--orange);
}

.accommodation-card.selected {
    border-color: var(--orange);
    box-shadow: 0 10px 30px rgb(234 139 44 / 20%);
}

.accommodation-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.accommodation-info {
    padding: 12px;
}

.accommodation-info h6 {
    margin: 0 0 6px;
    font-weight: 600;
}

.accommodation-info .stars {
    color: var(--color-warning);
    margin-bottom: 6px;
}

.accommodation-info .price {
    color: var(--orange);
    font-weight: 700;
}

.feature-tag {
    display: inline-block;
    background: var(--light-beige);
    border-radius: 12px;
    padding: 3px 8px;
    font-size: 0.8rem;
    margin: 2px 4px 0 0;
}

/* Mobile adjustments for step 2 cards */
@media (width <= 576px) {

    .accommodation-card {
        min-width: 220px;
        max-width: 220px;
    }

    .accommodation-card img {
        height: 120px;
    }

    .circuit-card-selectable img {
        height: 160px;
    }

    .night-header {
        padding: 10px 12px;
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn.prev {
    left: 8px;
}

.carousel-btn.next {
    right: 8px;
}

.selected-hotel-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.selected-hotel-image {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
}

.selected-hotel-name {
    font-weight: 600;
}

.selected-hotel-price {
    color: var(--orange);
    font-weight: 700;
}

.activity-option {
    position: relative;
}

.activity-checkbox {
    display: none;
}

.activity-label-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    border: 2px solid var(--border-dark);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-primary);
    box-shadow: 0 2px 10px var(--shadow-sm);
}

.activity-label-modern:hover {
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--color-accent-shadow-light);
}

.activity-checkbox:checked + .activity-label-modern {
    border-color: var(--color-accent);
    background: var(--color-accent-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--color-accent-shadow);
}

.activity-label-modern i {
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.activity-checkbox:checked + .activity-label-modern i {
    transform: scale(1.1);
}

.activity-label-modern span {
    font-weight: 500;
    color: var(--dark);
    font-size: 0.9rem;
}

.circuit-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
    align-items: stretch;
}

.circuit-card-selectable {
    border: 2px solid var(--border-light);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 20px var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.circuit-card-selectable:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.circuit-card-selectable.selected {
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px var(--color-accent-shadow);
    background-color: var(--color-accent-bg-light);
}

.circuit-card-selectable img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    flex-shrink: 0;
}

.circuit-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.circuit-card-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    min-height: 3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.circuit-card-content p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 15px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.circuit-card-content .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
}

.accommodation-per-night {
    background: var(--color-dominant-tertiary);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid var(--border-light);
}

.accommodation-per-night h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.accommodation-option {
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.accommodation-option:hover {
    border-color: var(--color-accent);
}

.accommodation-option.selected {
    border-color: var(--color-accent);
    background-color: var(--color-accent-bg);
}

.accommodation-option input[type="radio"] {
    margin-right: 10px;
}

.payment-options .payment-option {
    border: 2px solid var(--border-light);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-options .payment-option:hover,
.payment-options .payment-option.selected {
    border-color: var(--color-accent);
    background: var(--color-accent-bg);
}

.payment-options .payment-option input[type="radio"] {
    margin-right: 10px;
}

/* Custom Modal Styles */

.custom-modal-header {
    background-color: var(--orange);
    color: var(--text-white);
    border-bottom: none;
    border-top-left-radius: calc(0.5rem - 1px);
    border-top-right-radius: calc(0.5rem - 1px);
}

.custom-modal-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.custom-modal-body {
    padding: 2rem;
    text-align: center;
}

.custom-modal-body .fas {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.custom-modal-footer {
    border-top: none;
    padding: 1rem 2rem 2rem;
    justify-content: center;
}

/* Booking Summary Styles */

.booking-summary {
    background: var(--color-dominant-tertiary);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid var(--border-light);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

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

.summary-item.summary-total {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-accent);
    border-top: 2px solid var(--orange);
    margin-top: 15px;
    padding-top: 15px;
}

/* User Pages Styles */

.user-page {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px var(--shadow-lg);
}

.account-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
}

/* Responsive adjustments */
@media (width <= 768px) {

    .stepper-progress-wrapper {
        padding: 25px 15px;
    }

    .stepper-step-circle {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .stepper-step-label strong {
        font-size: 0.75rem;
    }

    .stepper-connector {
        margin-top: -30px;
    }

    .step-header {
        padding: 15px;
    }

    .step-header h4 {
        font-size: 1.1rem;
    }

    .step-header small {
        font-size: 0.8rem;
    }

    .step-icon-wrapper {
        width: 35px;
        height: 35px;
    }

    .step-body {
        padding: 20px 15px;
    }

    .circuit-selection-grid {
        grid-template-columns: 1fr;
    }

    .multi-step-form {
        padding: 60px 0;
    }

    .step-card {
        margin-bottom: 20px;
    }

    .circuit-card-selectable img {
        height: 150px;
    }

    .circuit-card-content {
        padding: 15px;
    }

    .circuit-card-content h5 {
        font-size: 1.1rem;
    }

    .accommodation-per-night {
        padding: 15px;
    }

    .booking-summary {
        padding: 20px;
    }

    .custom-modal-body {
        padding: 1.5rem;
    }

    .custom-modal-footer {
        padding: 1rem 1.5rem 1.5rem;
    }
}

@media (width <= 576px) {

    .stepper-progress-wrapper {
        padding: 20px 10px;
    }

    .stepper-steps {
        gap: 5px;
    }

    .stepper-step-circle {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
        border-width: 2px;
    }

    .stepper-step-label {
        display: none; /* Hide labels on very small screens */
    }

    .stepper-connector {
        margin-top: -25px;
        height: 2px;
    }

    .stepper-progress-bar {
        height: 4px;
    }

    .step-header {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .step-header .d-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .step-header h4 {
        font-size: 1rem;
    }

    .step-header small {
        font-size: 0.75rem;
    }

    .step-icon-wrapper {
        width: 30px;
        height: 30px;
    }

    .step-body {
        padding: 15px;
    }

    .circuit-selection-grid {
        gap: 20px;
    }

    .circuit-card-selectable img {
        height: 120px;
    }

    .circuit-card-content {
        padding: 12px;
    }

    .circuit-card-content h5 {
        font-size: 1rem;
    }

    .accommodation-per-night {
        padding: 12px;
    }

    .accommodation-option {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .payment-options .payment-option {
        padding: 12px;
        font-size: 0.9rem;
    }

    .booking-summary {
        padding: 15px;
    }

    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .custom-modal-body {
        padding: 1rem;
    }

    .custom-modal-footer {
        padding: 1rem;
        flex-direction: column;
        gap: 10px;
    }

    .custom-modal-footer .btn {
        width: 100%;
    }
}

/* RTL Support */

[dir="rtl"] .step-title i {
    margin-right: 0;
    margin-left: 15px;
}

[dir="rtl"] .step-header {
    flex-direction: row-reverse;
}

[dir="rtl"] .accommodation-option input[type="radio"] {
    margin-right: 0;
    margin-left: 10px;
}

[dir="rtl"] .payment-options .payment-option input[type="radio"] {
    margin-right: 0;
    margin-left: 10px;
}

[dir="rtl"] .summary-item {
    flex-direction: row-reverse;
}

[dir="rtl"] .custom-modal-footer {
    flex-direction: row-reverse;
}

/* Animation Enhancements */

.step-card {
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.circuit-card-selectable {
    animation: fadeInScale 0.3s ease-out;
}

@keyframes fadeInScale {

    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Loading States */

.step-card.loading {
    opacity: 0.7;
    pointer-events: none;
}

.step-card.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--orange);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {

    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Accessibility Improvements */

.step-header:focus {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

.circuit-card-selectable:focus {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

.accommodation-option:focus {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

.payment-option:focus {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

/* Print Styles */
@media print {

    .step-header {
        background: white !important;
        color: black !important;
        border: 1px solid var(--border-darker);
    }

    .step-header.active {
        background: var(--bg-quinary) !important;
        color: black !important;
    }

    .step-body {
        display: block !important;
    }

    .btn {
        display: none !important;
    }

    .modal {
        display: none !important;
    }
}
