/* Multi-Step Form Styles */
.ht-multistep-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    line-height: 1.4;
    --ht-pri-color: #ff5858;
}

.ht-multistep-form-container .form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.ht-multistep-form-container .form-progress:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ececec;
    z-index: 1;
}

.ht-multistep-form-container .progress-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 10px 5px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.ht-multistep-form-container .progress-step:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: #e0e0e0;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.ht-multistep-form-container .progress-step.active:before {
    background: var(--ht-pri-color);
    transform: scale(1.2);
}

.ht-multistep-form-container .progress-step.completed:before {
    background: #46b450;
    content: '✓';
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.ht-multistep-form-container .progress-step.active {
    color: var(--ht-pri-color);
}

.ht-multistep-form-container .progress-step.completed {
    color: #46b450;
}

.ht-multistep-form-container .form-step {
    display: none;
}

.ht-multistep-form-container .form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.ht-multistep-form-container .form-step[data-step="1"] .form--actions {
    justify-content: flex-end;
}

.ht-multistep-form-container .form-step h2 {
    font-size: 22px;
    margin: 0 0 20px;
    text-transform: uppercase;
    border-bottom: 1px solid #EEE;
    padding-bottom: 10px;
}

.ht-multistep-form-container .service-customize-menu h2 {
    text-align: center;
    border: 0;
}

.ht-multistep-form-container .form--row {
    display: flex;
    gap: 20px;
}

.ht-multistep-form-container .form-group {
    flex: 1;
    margin-bottom: 20px;
}

.ht-multistep-form-container .form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #444;
}

.ht-multistep-form-container .form-group input[type="text"],
.ht-multistep-form-container .form-group input[type="email"],
.ht-multistep-form-container .form-group input[type="tel"],
.ht-multistep-form-container .form-group input[type="number"],
.ht-multistep-form-container .form-group select,
.ht-multistep-form-container .form-group textarea,
.ht-multistep-form-container .form-group .datepicker {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    line-height: 1.3;
    font-size: 14px;
}

.ht-multistep-form-container .form-group input:focus,
.ht-multistep-form-container .form-group select:focus,
.ht-multistep-form-container .form-group textarea:focus {
    outline: none;
    box-shadow: none;
}

.ht-multistep-form-container .form-group textarea {
    min-height: 100px;
}

.ht-multistep-form-container .form-group .form-desc {
    margin: 6px 0 0;
    font-size: 13px;
    font-style: italic;
    font-weight: bold;
}

.ht-multistep-form-container .form--actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.ht-multistep-form-container .button {
    padding: 12px 25px;
    background: var(--ht-pri-color);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    font-size: 1.1em;
}

.ht-multistep-form-container .button span,
.ht-multistep-form-container .button span:before {
    display: block;
    height: auto;
    width: auto;
    font-size: 1.1em;
}

.ht-multistep-form-container .button.prev-step {
    background: #f0f0f0;
    color: #444;
}

.ht-multistep-form-container .button.prev-step:hover {
    background: #e0e0e0;
}

.ht-multistep-form-container .button.next-step:hover {
    background: #000;
}

/* Checkbox groups */
.ht-multistep-form-container .checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.ht-multistep-form-container .checkbox-option {
    display: flex;
    align-items: flex-start;
    padding: 8px 12px;
    background: #f9f9f9;
    cursor: pointer;
    transition: all 0.2s;
    gap: 8px;
}

.ht-multistep-form-container .checkbox-option:hover {
    background: #f0f6fc;
}

.ht-multistep-form-container .checkbox-option input {
    margin: 4px 0 0;
}

.ht-multistep-form-container .selection-counter {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
    font-style: italic;
    text-align: right;
}

#ht-booking-event-english-date:empty {
    display: none;
}

#ht-booking-event-english-date {
    display: block;
    margin-left: 15px;
    margin-top: 5px;
}

#ht-booking-event-english-date::after {
    content: " AD";
}

/* Date feedback */
.ht-multistep-form-container .date-feedback {
    margin-top: 5px;
    font-size: 13px;
}

.ht-multistep-form-container .date-feedback .error {
    color: #dc3232;
}

.ht-multistep-form-container .date-feedback .success {
    color: #46b450;
}

.ht-multistep-form-container .date-feedback .loading {
    color: var(--ht-pri-color);
    font-style: italic;
}

/* Confirmation message */
.ht-multistep-form-container .form-confirmation {
    text-align: center;
    padding: 30px;
    border: 1px solid #EEE;
    border-top: 4px solid #46b450;
}

.ht-multistep-form-container .form-confirmation h2 {
    font-size: 32px;
    color: #46b450;
    margin-bottom: 20px;
}

.ht-multistep-form-container .form-confirmation h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.ht-multistep-form-container .form-confirmation p {
    margin-bottom: 15px;
}

.ht-multistep-form-container .confirmation-details {
    text-align: left;
    margin-top: 20px;
    padding: 20px;
    background: white;
    border-radius: 5px;
    border: 1px solid #EEE;
}


/* Service Type Tabs */
.package-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
    background: var(--ht-pri-color);
    padding: 15px;
    border-radius: 4px;
    color: #FFF;
}

.package-header select {
    color: #FFF;
    border: 1px solid #FFF;
    box-shadow: none;
    outline: 0;
    max-width: 200px;
    background: none;
}

.ht-multistep-form-container .service-type-tabs {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}

.ht-multistep-form-container .tabs-header {
    display: flex;
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
}

.ht-multistep-form-container .tab-button {
    padding: 12px 20px;
    background: none;
    border: none;
    border-right: 1px solid #e0e0e0;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    white-space: nowrap;
    transition: all 0.3s;
    flex-grow: 1;
}

.ht-multistep-form-container .tab-button:last-child {
    border-right: none;
}

.ht-multistep-form-container .tab-button:hover {
    background: #e9e9e9;
    color: #333;
}

.ht-multistep-form-container .tab-button.active {
    background: #fff;
    color: var(--ht-pri-color);
    border-bottom: 2px solid var(--ht-pri-color);
    margin-bottom: -1px;
}

.ht-multistep-form-container .tabs-content {
    padding: 20px;
    background: #fff;
}

.ht-multistep-form-container .tab-pane {
    display: none;
}

.ht-multistep-form-container .tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.ht-multistep-form-container .form-group input.error {
    border-color: #FF0000;
}


/* Select Menu */
.service-group {
    margin-top: 30px;
}

.subtype1-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.subtype1-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.subtype1-info {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.service-group .repeater-subtype1-title {
    margin: 0;
    font-size: 22px;
}

.repeater-subtype1-desc {
    margin: 0;
    color: #7f8c8d;
    line-height: 1.6;
}

/* Controls */
.halls-only {
    border: 1px solid #EEE;
    padding: 15px;
    margin-bottom: 20px;
}

#book-hall-only {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    margin: 0;
}

.ht-multistep-form-container .form-group .halls-only label {
    margin: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 8px;
}

#book-hall-only:hover {
    border-color: #888;
}

#book-hall-only:checked {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

#book-hall-only:checked::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.halls-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.halls-actions .halls-action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9em;
    border-radius: 0;
}

.halls-actions .select-all {
    background-color: #e8f4fd;
    color: var(--ht-pri-color);
}

.halls-actions .select-all:hover {
    background-color: #d0e7fa;
}

.halls-actions .deselect-all {
    background-color: #f5f5f5;
    color: #616161;
}

.halls-actions .deselect-all:hover {
    background-color: #e0e0e0;
}

/* Halls Grid */
.halls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Hall Card */
.hall-card {
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
    display: flex;
    flex-direction: column;
}

.hall-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hall-card.selected {
    box-shadow: 0 0 0 3px var(--ht-pri-color);
}

/* Checkbox */
.hall-checkbox,
.checkbox-label {
    display: none;
}

.hall-select {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background-color: #4CAF50;
    border-radius: 30px;
    display: inline-block;
    z-index: 99;
    display: none;
}

.hall-select::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 10px;
    width: 10px;
    height: 18px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.hall-card.selected .hall-select {
    display: block;
}

/* Image */
.hall-image-container {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
}

.hall-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.placeholder-image {
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9e9e9e;
}

.hall-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
}

.hall-card:hover .hall-image {
    transform: scale(1.05);
}

/* Content */
.hall-content {
    padding: 20px;
}

.hall-title {
    font-size: 18px;
    margin: 0 0 15px 0;
    color: #2c3e50;
}

.hall-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hall-footer .hall-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: var(--ht-pri-color);
    color: white;
    text-decoration: none;
    transition: background-color 0.2s ease;
    border-radius: 4px;
}

.hall-footer .hall-button:hover {
    background-color: #1565c0;
}

/* Additional Services */
.services-list {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.service-option {
    padding: 15px;
    border: 1px solid #EEE;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2em;
}

.service-option label {
    display: flex;
    cursor: pointer;
    position: relative;
    align-items: center;
    gap: 20px;
}

.service-option input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    margin: 0;
}

.ht-multistep-form-container .form-group .halls-only label {
    margin: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 8px;
}

.service-option input:hover {
    border-color: #888;
}

.service-option input:checked {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.service-option input:checked::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.service-price {
    font-weight: bold;
}

.service-price:before {
    content: "(";
}

.service-price:after {
    content: ")";
}

/* Customize yes/no */
.customize-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.service-customize-menu .customize-menu button {
    padding: 10px 30px;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
}

.customize-menu button span,
.customize-menu button span:before {
    height: auto;
    width: auto;
    font-size: inherit;
}

.customize-menu [data-customize-menu='yes'] {
    background: #28a745;
}

.customize-menu [data-customize-menu='no'] {
    background: #dc3545;
}

.customize-menu [data-customize-menu='yes']:hover {
    background: #218838;
}

.customize-menu [data-customize-menu='no']:hover {
    background: #c82333;
}

.ht-booking-event-notice {
    font-size: 13px;
    color: #FF0000;
    margin-bottom: 20px;
}

/* File Uploader */

.file-upload-group {
    padding: 15px;
    background: #f9f9f9;
}

.file-upload-feedback:empty{
    display: none;
}

.file-upload-feedback {
    margin-top: 10px;
}

.file-upload-feedback .success {
    color: #4CAF50;
}

.file-upload-feedback .error {
    color: #F44336;
}

.file-upload-feedback .uploading {
    color: #FF9800;
}

.file-upload {
    margin-top: 10px;
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.file-upload:hover {
    background-color: #45a049;
}

.file-upload input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
}


/* Responsive */
@media (max-width: 768px) {
    .halls-grid {
        grid-template-columns: 1fr;
    }
}

/* Scrollable tabs for mobile */
@media (max-width: 768px) {
    .ht-multistep-form-container .tabs-header {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
    }

    .ht-multistep-form-container .tabs-header::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .ht-multistep-form-container .tab-button {
        flex: 0 0 auto;
    }
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .ht-multistep-form-container .form--row {
        flex-direction: column;
        gap: 0;
    }

    .ht-multistep-form-container .progress-step {
        font-size: 12px;
        padding: 10px 2px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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


.service-type-tabs:not(.active) {
    display: none;
}

.hall-price {
    position: absolute;
    top: 10px;
    left: -8px;
    background: #ff6b6b;
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: visible;
}

.hall-price::after {
    content: '';
    position: absolute;
    left: 0;
    border-style: solid;
    border-color: transparent #d94b4b transparent transparent;
}


.hall-price::after {
    bottom: -0.5rem;
    border-width: 0 0.5rem 0.5rem 0;
}

#notifications-container:has(div),
.ht-booking-event-notice:has(div) {
    display: flex;
}

#notifications-container,
.ht-booking-event-notice {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9999;
    display: none;
    flex-direction: column;
    gap: 12px;
    top: 0;
    bottom: 0;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
}

.notification-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.notification-close::before,
.notification-close::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 2px;
    background-color: var(--ht-pri-color);
    transform-origin: center;
}

.notification-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.notification-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.notification {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 25px;
    width: 400px;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    color: inherit;
    animation: fadeInSlide 0.4s ease-out;
    position: relative;
    overflow: hidden;
    height: 200px;
    text-align: center;
    position: relative;
}

.notification::before {
    content: "";
    width: 100%;
    height: 6px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: currentColor;
    opacity: 0.6;
}

.notification.success {
    background: #e0f6e9;
    color: #2e8b57;
}

.notification.error {
    background: #fce4e4;
    color: #d9534f;
}

.notification.info {
    background: #e5f0ff;
    color: #0056b3;
}

.notification.warning {
    background: #fff9e5;
    color: #e6a800;
}

.notification.success .notification-close::before,
.notification.success .notification-close::after {
    background: #2e8b57;
}

.notification.info .notification-close::before,
.notification.info .notification-close::after {
    background: #0056b3;
}

.notification.error .notification-close::before,
.notification.error .notification-close::after {
    background: #d9534f;
}

.notification.warning .notification-close::before,
.notification.warning .notification-close::after {
    background: #e6a800;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

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


/* OTP */
.otp-verification-container .otp-input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.otp-verification-container .button {
    padding: 8px 16px;
    background: var(--ht-pri-color);
    color: white;
    border: none;
    cursor: pointer;
    margin: 20px 0;
    margin-left: auto;
}

.otp-verification-container .timer {
    margin-top: 10px;
    font-size: 0.9em;
    color: #666;
}

.otp-verification-container #otp-message {
    margin-top: 15px;
    border-radius: 4px;
}

.otp-verification-container .success {
    background: #d4edda;
    color: #155724;
    padding: 10px;
}

.otp-verification-container .error {
    background: #f8d7da;
    color: #721c24;
    padding: 10px;
}

.download-btn {
    background-color: #4CAF50;
    color: #FFF;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin: 0 0 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.download-btn.pdf-loading:after {
    content: "";
    width: 16px;
    padding: 2px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #ffffff;
    --_m:
        conic-gradient(#0000 10%, #000),
        linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l33 1s infinite linear;
}

@keyframes l33 {
    to {
        transform: rotate(1turn)
    }
}


table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

#review-wrapper {
    border: 2px solid #EEE;
    padding: 30px;
    border-top: 4px solid var(--ht-pri-color);
    margin-bottom: 30px;
}

.personal-information {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

#review-wrapper table th,
#review-wrapper table td {
    border: 1px solid #EEE;
    padding: 8px;
    text-align: left;
    font-weight: normal;
    vertical-align: top;
}

.section {
    margin-bottom: 30px;
    text-align: left;
}

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

.section li {
    margin: 0;
    padding: 5px 0;
}

.opt-ul-group{
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 40px;
}

.option-group h3 {
    font-size: 18px;
}

.option-group ul {
    border: 1px solid #CCC;
    padding: 10px 15px;
    margin: 0 0 20px;
}

.option-group .opt-ul-group ul{
    margin: 0;
}

.option-group ul li.heading {
    border-bottom: 1px solid #CCC;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    padding-bottom: 10px;
    margin-bottom: 5px;
}

.section ul.terms-conditions {
    list-style: decimal;
    margin-left: 15px;
}

.section ul.terms-conditions li {
    line-height: 1.3
}

.amount-table th {
    width: 30%
}

.single-package-container {
    margin-top: 40px;
    margin-bottom: 40px;
}