.booking-container {
    max-width: 1280px;
    margin: 0 auto;
    background: var(--white);
    min-height: 100vh;
    position: relative;
}

.booking-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.progress-bar-container {
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.header-info {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    flex: 1;
}

.header-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--gray-600);
    min-width: 120px;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.header-item:hover {
    background: var(--primary-50);
    color: var(--primary);
}

.header-item i {
    font-size: 20px;
    color: var(--gray-500);
    width: 20px;
    text-align: center;
}

.header-item:hover i {
    color: var(--primary);
}

.header-item-label {
    font-size: 11px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    line-height: 1.2;
}

.header-item-value {
    font-weight: 600;
    color: var(--gray-800);
    display: block;
    line-height: 1.2;
}

.price-tag {
    background: var(--gray-800);
    color: var(--white);
    padding: 25px 40px;
    font-weight: 700;
    font-size: 20px;
    min-width: 80px;
    text-align: center;
    cursor: pointer;
}

.price-label {
    font-size: 10px;
    color: var(--primary-100);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    line-height: 1;
    margin-bottom: 2px;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.step-content {
    padding: 60px 0;
    display: none;
}

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

.step-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 12px;
}

.step-subtitle {
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 50px;
    font-size: 16px;
}

.step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.prev-btn {
    background: var(--gray-200);
    border: none;
    color: var(--gray-700);
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
}

.prev-btn:hover {
    background: var(--gray-300);
    transform: translateY(-2px);
}

.prev-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.next-btn {
    background: var(--primary);
    border: none;
    color: var(--white);
    padding: 15px 50px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 18px;
}

.next-btn:hover {
    background: var(--primary-600);
    transform: translateY(-2px);
}

.option-group {
    margin-bottom: 40px;
}

.option-label {
    font-size: 14px;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    display: block;
    font-weight: 600;
    text-align: center;
}

.units-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.units-btn {
    padding: 18px 28px;
    border: 2px solid var(--gray-300);
    background: var(--white);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    min-width: 150px;
}

.units-btn:hover {
    border-color: var(--primary);
    background: var(--primary-50);
}

.units-btn.active {
    background: var(--primary-100);
    border: 2px solid var(--primary);
    color: var(--primary-700);
}

.units-name {
    font-weight: 600;
    font-size: 16px;
}

.clean-type-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.clean-type-btn {
    padding: 20px 25px;
    border: 2px solid var(--gray-300);
    background: var(--white);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    min-width: 220px;
}

.clean-type-btn:hover {
    border-color: var(--primary);
    background: var(--primary-50);
}

.clean-type-btn.active {
    border-color: var(--primary);
    background: var(--primary-100);
    color: var(--primary-700);
}

.clean-type-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.clean-type-price {
    font-size: 12px;
    color: var(--gray-500);
}

.calendar-container {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    margin: 30px auto;
    border: 1px solid var(--border);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    max-width: 900px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-200);
}

.calendar-nav {
    background: var(--primary-50);
    border: none;
    font-size: 18px;
    color: var(--primary);
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.2s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav:hover {
    background: var(--primary-100);
    transform: scale(1.05);
}

.month-year {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.month-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
}

.year-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.calendar-day-header {
    text-align: center;
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 700;
    padding: 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calendar-day {
    aspect-ratio: 2;
    border: 2px solid var(--gray-200);
    background: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-700);
    position: relative;
    overflow: hidden;
}

.calendar-day:not(.disabled):hover {
    border-color: var(--primary);
    background-color: var(--primary-100);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.calendar-day.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
    border: 2px solid var(--primary);
    color: var(--white);
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.calendar-day.disabled {
    color: var(--gray-300);
    opacity: 0.3;
    cursor: not-allowed;
    border-color: var(--gray-200);
}

.time-selection {
    margin: 40px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
}

.time-slot {
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
}

.time-slot:not(.disabled):hover {
    border-color: var(--primary);
    background: var(--primary-50);
    transform: translateY(-2px);
}

.time-slot.active {
    background: var(--primary-100);
    border: 2px solid var(--primary);
    color: var(--primary-700);
    transform: translateY(-2px);
}

.time-slot.disabled {
    cursor: not-allowed;
    opacity: 0.3;
}

.frequency-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.frequency-btn {
    padding: 18px 28px;
    border: 2px solid var(--gray-300);
    background: var(--white);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    min-width: 150px;
}

.frequency-btn:hover {
    border-color: var(--primary);
    background: var(--primary-50);
}

.frequency-btn.active {
    background: var(--primary-100);
    border: 2px solid var(--primary);
    color: var(--primary-700);
}

.frequency-name {
    font-weight: 600;
    font-size: 16px;
}

.form-control {
    border: 2px solid var(--gray-200) !important;
    border-radius: 9px;
    padding: 12px 15px;
    font-size: 12px;
    transition: all 0.2s ease;
    background: var(--white);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem var(--primary-100);
    outline: none;
    background: var(--white);
}

.form-label {
    font-size: 12px;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
    font-weight: 600;
}

.access-options {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.access-btn {
    padding: 12px 20px;
    border: 2px solid var(--gray-300);
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
}

.access-btn:hover {
    border-color: var(--primary);
    background: var(--primary-50);
}

.access-btn.active {
    background: var(--primary-100);
    border: 2px solid var(--primary);
    font-weight: 600;
    color: var(--primary-700);
}

.special-access {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin: 30px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.special-access-item {
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.special-access-item:hover {
    border-color: var(--primary);
    background: var(--primary-50);
}

.special-access-item.active {
    background: var(--primary-100);
    border: 2px solid var(--primary);
    color: var(--primary-700);
}

.special-access-icon {
    font-size: 32px;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.special-access-item.active .special-access-icon {
    color: var(--primary);
}

.special-access-name {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 15px;
}

.special-access-price {
    font-size: 13px;
    color: var(--gray-500);
}

.user-type-selection {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.user-type-btn {
    padding: 15px 30px;
    border: 2px solid var(--gray-300);
    background: var(--white);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    font-size: 16px;
}

.user-type-btn:hover {
    border-color: var(--primary);
    background: var(--primary-50);
}

.user-type-btn.active {
    background: var(--primary-100);
    border: 2px solid var(--primary);
    color: var(--primary-700);
}

.user-form {
    display: none;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 30px;
}

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

.address-section {
    max-width: 700px;
    margin: 0 auto;
}

.payment-section {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 50px;
    max-width: none;
    margin: 0;
}

.payment-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.billing-summary {
    background: var(--gray-50);
    padding: 20px;
    border-radius: 16px;
    height: fit-content;
    border: 1px solid var(--border);
    position: sticky;
    top: 100px;
}

.billing-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--gray-900);
}

.billing-details {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.billing-service-type {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.billing-service-details {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.billing-frequency {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--gray-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.billing-schedule {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
}

.billing-address {
    color: var(--gray-600);
    font-size: 14px;
}

.billing-addon {
    color: var(--gray-600);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.billing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--gray-700);
}

.billing-item:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 22px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--gray-300);
    color: var(--gray-900);
}

.delete-icon {
    color: #ef4444;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s ease;
}

.delete-icon:hover {
    color: #dc2626;
    transform: scale(1.1);
}

.discount-section {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.discount-input {
    flex: 1;
}

.apply-btn {
    background: var(--primary);
    border: none;
    color: var(--white);
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.apply-btn:hover {
    background: var(--primary-600);
}

.place-order-btn {
    background: var(--primary);
    border: none;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    font-size: 18px;
    margin-top: 20px;
}

.place-order-btn:hover {
    background: var(--primary-600);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.payment-method-selection {
    background: var(--gray-50);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
}

.form-check-label {
    cursor: pointer;
    font-size: 16px;
}

.card-payment-design {
    border-radius: 12px;
}

.security-badges {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 26px;
}

.security-badges .small {
    font-size: 14px;
}

#cardPaymentSection {
    display: block;
}

#cardPaymentSection.hidden,
#FrontUnitsSection,
#userDetailsSection {
    display: none;
}

.thank-you-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.thank-you-modal.active {
    display: flex;
}

.thank-you-content {
    background: white;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
    color: white;
}

.thank-you-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-900);
    margin-bottom: 12px;
}

.thank-you-message {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart-icon {
    font-size: 80px;
    color: var(--gray-300);
    margin-bottom: 20px;
}

.empty-cart-text {
    font-size: 18px;
    color: var(--gray-500);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .payment-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .billing-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 0 15px;
    }

    .step-content {
        padding: 40px 0;
    }

    .step-title {
        font-size: 28px;
    }

    .calendar-container {
        padding: 20px;
    }

    .calendar-grid {
        gap: 6px;
    }

    .time-slots {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 10px;
    }

    .payment-form,
    .billing-summary {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .header-info {
        flex-direction: column;
        gap: 10px;
    }

    .header-item {
        justify-content: flex-start;
        text-align: left;
    }

    .step-title {
        font-size: 24px;
    }

    .clean-type-options,
    .frequency-options {
        flex-direction: column;
        align-items: center;
    }
}