/* General Styles */
body {
    background: #f6f7f9;
    min-height: 100vh;
    padding-bottom: 70px;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

/* Navbar */
.navbar {
    background: #00bfae !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.navbar .navbar-brand {
    color: #fff !important;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1.3rem;
}
.navbar .nav-link.active,
.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: #fff !important;
    background: rgba(0,0,0,0.05);
    border-radius: 8px;
    transition: background .2s, color .2s;
}
.navbar .nav-link {
    transition: background .2s, color .2s;
}
.btn-signin {
    background: #00bfae;
    color: #fff !important;
    border: none;
    transition: background .2s, color .2s;
}
.btn-signin:hover, .btn-signin:focus {
    background: #009688;
    color: #fff !important;
}
.navbar .btn-light:hover, .navbar .btn-light:focus {
    background: #009688;
    color: #fff !important;
}

/* Main Card */
.main-card {
    background: #f9fafb;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
    padding: 1.2rem 0.8rem;
    margin-bottom: 1.2rem;
    margin-top: 1rem;
    border: 1px solid #e0e0e0;
    max-width: 100%;
}
@media (min-width: 768px) {
    .main-card {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        margin-left: auto;
        margin-right: auto;
        max-width: 900px;
    }
}
@media (min-width: 1200px) {
    .main-card {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        max-width: 1200px;
    }
}
@media (min-width: 1400px) {
    .main-card {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        max-width: 1400px;
    }
}
@media (max-width: 576px) {
    .main-card {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }
}

/* Bottom Navigation */
.bottom-nav {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 64px;
    background: #00bfae;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
    z-index: 1030;
    justify-content: space-around;
    align-items: center;
}
@media (max-width: 576px) {
    .bottom-nav {
        display: flex !important;
    }
}
.bottom-nav .nav-item {
    flex: 1 1 0;
    text-align: center;
    color: #e0f2f1;
    font-size: 13px;
    transition: color 0.2s;
    padding-top: 7px;
}
.bottom-nav .nav-item.active,
.bottom-nav .nav-item:active,
.bottom-nav .nav-item:focus {
    color: #fff;
}
.bottom-nav .nav-item i {
    display: block;
    font-size: 24px;
    margin-bottom: 2px;
    color: #e0f2f1;
    transition: color 0.2s;
}
.bottom-nav .nav-item.active i {
    color: #fff;
    text-shadow: 0 2px 8px #00bfae55;
}
.bottom-nav .nav-item:active i,
.bottom-nav .nav-item:focus i {
    color: #fff;
}
@media (min-width: 577px) {
    body {
        padding-bottom: 0;
    }
}

/* Bear Image */
.bear-img {
    width: 28px;
    height: 28px;
}
@media (min-width: 576px) {
    .bear-img {
        width: 36px;
        height: 36px;
    }
}
@media (min-width: 992px) {
    .bear-img {
        width: 44px;
        height: 44px;
    }
}
@media (max-width: 767.98px) {
    .card {
        max-width: 100% !important;
        margin: 0;
        border-radius: 12px !important;
    }
    .card .fw-semibold, .card .fw-bold {
        font-size: 1rem !important;
    }
    .card .text-secondary {
        font-size: 0.92rem !important;
    }
    .card .bg-danger {
        font-size: 0.95rem !important;
        padding: 0.3rem 0.8rem !important;
    }
    .card .mb-3 {
        margin-bottom: 0.8rem !important;
    }
    .card .p-3 {
        padding: 1.1rem !important;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 1100px;
    }
    .card {
        min-height: 340px;
    }
}

/* Bottom Sheet for Mobile */
.daily-bottom-sheet {
    display: none;
}
.daily-bottom-sheet.show {
    display: block !important;
}
@media (max-width: 767.98px) {
    .daily-bottom-sheet {
        display: none;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1080;
    }
    .daily-bottom-sheet.show {
        display: block !important;
    }
    .daily-bottom-sheet .sheet-content {
        background: #fff;
        border-radius: 22px 22px 0 0;
        box-shadow: 0 -2px 24px rgba(0,0,0,0.10);
        padding: 1.5rem 1.2rem 1.2rem 1.2rem;
        max-width: 480px;
        margin: 0 auto;
        position: relative;
        animation: slideUpSheet 0.25s cubic-bezier(.4,1.6,.6,1) both;
    }
    .daily-bottom-sheet .sheet-backdrop {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: rgba(0,0,0,0.25);
        z-index: -1;
    }
    @keyframes slideUpSheet {
        from { transform: translateY(100%);}
        to { transform: translateY(0);}
    }
}
@media (min-width: 768px) {
    .daily-bottom-sheet {
        display: none !important;
    }
}

/* Points Box */
.points-box {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
}
@media (min-width: 576px) {
    .points-box {
        min-width: 400px;
        border-radius: 12px;
    }
}
@media (min-width: 992px) {
    .points-box {
        min-width: 600px;
        border-radius: 14px;
    }
}

/* Account Page */
.account-page-wrapper {
    min-height: 60vh;
    padding-top: 24px;
    padding-bottom: 24px;
}
.account-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    background: #f3f3f3;
}
.account-card-container {
    width: 100%;
    max-width: 420px;
}
@media (max-width: 576px) {
    .account-avatar {
        width: 60px;
        height: 60px;
    }
    .account-card-container {
        max-width: 100%;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}
@media (min-width: 768px) {
    .account-card-container {
        max-width: 520px;
    }
}
@media (min-width: 1200px) {
    .account-card-container {
        max-width: 600px;
    }
}

/* List Group */
.list-group-item {
    font-size: 1.05rem;
}
.list-group .badge {
    font-size: 0.95em;
}
.list-group-item.text-danger,
.list-group-item .text-danger {
    color: #dc3545 !important;
}
.list-group-item.text-danger:hover,
.list-group-item.text-danger:focus {
    background: #ffeaea !important;
}

/* CABIN */
.cabin-header-bg {
    background: #fff !important;
    box-shadow: 0 2px 16px #0001;
    border-radius: 22px;
}
.cabin-header-bg .fw-bold,
.cabin-header-bg .fw-semibold,
.cabin-header-bg .fs-5,
.cabin-header-bg .fs-6 {
    color: #222 !important;
}
.cabin-header-bg .text-white,
.cabin-header-bg .text-white-50 {
    color: #222 !important;
    opacity: 1 !important;
}
.cabin-header-bg .small,
.cabin-header-bg .form-label {
    color: #bdbdbd !important;
    font-weight: 500;
}
.cabin-header-bg .badge.bg-warning {
    background: #ffb300 !important;
    color: #fff !important;
}
.cabin-header-bg .form-control {
    background: #f5f5f5 !important;
    border: none !important;
    color: #222 !important;
    border-radius: 12px !important;
    font-size: 1rem;
    min-height: 44px;
    box-shadow: none !important;
}
.cabin-header-bg .form-control:focus {
    background: #f0f0f0 !important;
    border: none !important;
    box-shadow: 0 0 0 2px #00bfae33 !important;
}
.cabin-header-bg .text-muted,
.cabin-header-bg .form-control .text-muted {
    color: #bdbdbd !important;
}
.cabin-header-bg .btn-light[disabled] {
    background: #f5f5f5 !important;
    color: #bdbdbd !important;
    border: none;
}
.cabin-header-bg .btn-light {
    background: #f5f5f5 !important;
    color: #bdbdbd !important;
    font-weight: 600;
    border: none;
}
.cabin-header-bg .fw-semibold.text-warning {
    color: #e53935 !important;
    font-weight: 700 !important;
}
/* Promo image */
.promo-img {
    width: 100%;
    aspect-ratio: 22/10;
    min-width: 0;
    height: auto;
    max-height: 160px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 2px 8px #0001;
    background: #f8f8f8;
    display: block;
}
/* Promo scroll area */
.promo-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 2px;
}
.promo-card {
    min-width: 220px;
    max-width: 320px;
    width: 100%;
    background: none;
    border-radius: 18px;
    box-shadow: 0 2px 8px #0001;
    border: 0;
    flex: 0 0 auto;
    padding: 0;
    transition: box-shadow 0.2s;
    display: flex;
    align-items: stretch;
}
.promo-card:hover {
    box-shadow: 0 4px 16px #0002;
}
@media (min-width: 992px) {
    .promo-scroll {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        overflow-x: auto;
    }
    .promo-card {
        min-width: 0;
        max-width: none;
        width: 100%;
    }
    .promo-img {
        max-height: 180px;
    }
}
/* Responsive modal for location */
.modal-cabin-location {
    max-width: 100vw;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    min-height: 100vh;
}
.location-modal-content {
    border-radius: 18px 18px 0 0;
    width: 100vw;
    max-width: 480px;
    margin: 0 auto;
    padding-bottom: 1.5rem;
    box-shadow: 0 2px 24px #0002;
    animation: slideUp .3s cubic-bezier(.4,2,.6,1) both;
}
@keyframes slideUp {
    from { transform: translateY(100%);}
    to { transform: translateY(0);}
}
@media (min-width: 992px) {
    .modal-cabin-location {
        align-items: center;
        justify-content: center;
        min-height: 100vh;
    }
    .location-modal-content {
        border-radius: 18px;
        max-width: 700px;
        width: 700px;
        margin: 0 auto;
        animation: fadeIn .2s;
    }
    @keyframes fadeIn {
        from { opacity: 0; transform: scale(0.98);}
        to { opacity: 1; transform: scale(1);}
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .modal-cabin-location {
        align-items: center;
        justify-content: center;
        min-height: 100vh;
    }
    .location-modal-content {
        border-radius: 18px;
        max-width: 550px;
        width: 550px;
        margin: 0 auto;
        animation: fadeIn .2s;
    }
}

/* DETAIL CABIN */
.gallery-card {
    background: none;
    box-shadow: none;
    border: none;
    padding: 0;
}
.gallery-main-img {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 0;
}
.gallery-main-img .main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
}
.gallery-btn-back, .gallery-btn-share {
    position: absolute;
    top: 14px;
    z-index: 2;
    background: #fff !important;
    color: #222 !important;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px #0001;
    border: none;
    opacity: 0.95;
}
.gallery-btn-back { left: 14px; }
.gallery-btn-share { right: 14px; }
.gallery-thumbs {
    display: flex;
    gap: 0;
    margin-top: 0;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
}
.thumb-img {
    width: 33.3333%;
    height: 70px;
    position: relative;
    overflow: hidden;
}
.thumb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}
.thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    border-radius: 0;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.cabin-info-card {
    border-radius: 18px;
    box-shadow: 0 2px 12px #0001;
    background: #fff;
}
.text-location {
    color: #bdbdbd;
    font-size: 0.97rem;
    font-weight: 500;
    margin-bottom: 2px;
    line-height: 1.3;
}
.location-icon-circle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    border-radius: 50%;
    background: #e0f7fa;
    color: #00bfae;
    font-size: 1.3rem;
    box-shadow: 0 2px 8px #0001;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 576px) {
    .location-icon-circle {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        max-width: 44px;
        max-height: 44px;
        font-size: 1.5rem;
    }
}
.fw-semibold {
    font-weight: 600 !important;
}
.label-check {
    font-size: 0.97rem;
    font-weight: 500;
    color: #bdbdbd;
    margin-bottom: 2px;
}
.value-check {
    font-size: 0.97rem;
    font-weight: 500;
    color: #222;
    margin-bottom: 2px;
}
/* Responsive */
@media (min-width: 576px) {
    .gallery-main-img { height: 260px; }
    .thumb-img { height: 90px; }
}
@media (min-width: 992px) {
    .gallery-main-img { height: 320px; }
    .thumb-img { height: 120px; }
}
#experienceCarousel .carousel-inner {
    display: flex;
    align-items: stretch;
}
#experienceCarousel .carousel-item {
    display: flex;
    justify-content: center;
    align-items: stretch;
    transition: transform 0.6s ease;
}
.experience-carousel .carousel-inner {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}
.experience-carousel .carousel-item {
    display: flex;
    justify-content: center;
    align-items: stretch;
    min-width: 100%;
    scroll-snap-align: center;
    transition: transform 0.6s ease;
}
.experience-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 0;
    justify-content: flex-start;
    align-items: stretch;
}
.experience-card {
    width: 100%;
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 2px 16px #0001;
    background: #fff;
    padding: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 340px;
}
.experience-img-main {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 18px 0 0 0;
    background: #f8f8f8;
}
.experience-img-sub {
    width: 100%;
    height: 43px;
    object-fit: cover;
    border-radius: 0 18px 0 0;
    background: #f8f8f8;
}
@media (min-width: 576px) {
    .experience-img-main { height: 120px; }
    .experience-img-sub { height: 58px; }
    .experience-card { min-height: 370px; }
}
@media (min-width: 992px) {
    .experience-img-main { height: 160px; }
    .experience-img-sub { height: 78px; }
    .experience-card { min-height: 410px; }
    .experience-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
.see-more-card {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin-top: auto;
}
.see-more-btn {
    border-radius: 12px;
    font-size: 1.07rem;
    font-weight: 600;
    box-shadow: 0 2px 8px #00bfae22;
    border: none;
    transition: background 0.2s;
    width: 80%;
    margin: 0 auto;
}
.see-more-btn:hover {
    background: #009e8f;
    color: #fff;
}

/* PACKAGE CABIN */
.package-card {
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 8px #0001;
    padding-bottom: 0;
}
.package-img {
    background: #fff;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
}
.package-img .main-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
    display: block;
}
.package-gallery-thumbs {
    display: flex;
    gap: 0;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    background: #fff;
    margin-top: 0;
}
.package-gallery-thumbs .thumb-img {
    width: 33.3333%;
    height: 60px;
    position: relative;
    overflow: hidden;
}
.package-gallery-thumbs .thumb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}
.package-gallery-thumbs .thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 8px;
    text-align: center;
}
.package-facilities-list {
    width: 100%;
    justify-content: flex-start;
}
.package-facility {
    min-width: 70px;
    max-width: 110px;
    flex: 1 1 80px;
}
.package-book-btn {
    border-radius: 10px;
    font-size: 1.08rem;
    font-weight: 600;
    min-width: 110px;
    box-shadow: 0 2px 8px #ff980022;
}
.btn-warning {
    background: #ff9800;
    color: #fff;
    border: none;
}
.btn-warning:hover {
    background: #fb8c00;
}
.row.g-4 {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.row.g-4 > [class^="col-"] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.package-card {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 540px;
    height: 100%;
}
.card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.package-book-btn {
    margin-top: auto;
}
@media (min-width: 576px) {
    .package-img .main-img { height: 220px; }
    .package-gallery-thumbs .thumb-img { height: 80px; }
    .package-card { min-height: 570px; }
}
@media (min-width: 992px) {
    .package-img .main-img { height: 260px; }
    .package-gallery-thumbs .thumb-img { height: 110px; }
    .package-card { min-height: 600px; }
}

/* REVIEW */
.card {
    border-radius: 18px !important;
    box-shadow: 0 2px 12px #0001;
    overflow: hidden;
}
.card-header,
.card-footer,
.card-body {
    border-radius: 18px !important;
}
.review-timeline {
    position: relative;
    margin-left: 0;
    padding-left: 0;
    border-radius: 12px;
    background: #fff;
}
.review-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
    position: relative;
    border-radius: 12px;
    background: #f8f8f8;
    padding: 8px 0;
    padding-left: 12px;
}
.review-step:last-child {
    margin-bottom: 0;
}
.review-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    background: #00bfae !important;
    color: #fff !important;
    box-shadow: 0 2px 8px #00bfae22;
    flex-shrink: 0;
    margin-top: 0;
    padding: 4px;
}
.review-step > div:not(.review-icon) {
    flex: 1 1 auto;
    min-width: 0;
}
.review-step .small.text-muted {
    font-size: 0.97rem;
    color: #bdbdbd !important;
    font-weight: 500;
    margin-bottom: 2px;
}
.review-step .fw-semibold {
    font-size: 1.07rem;
    color: #222;
    font-weight: 600;
    margin-bottom: 2px;
}
.review-step .text-muted {
    font-size: 0.97rem;
    color: #bdbdbd !important;
    font-weight: 400;
    margin-bottom: 2px;
}
.review-step .facility-icons {
    display: flex;
    gap: 14px;
    margin-top: 8px;
    margin-left: -2px;
}
.review-step .facility-icons i {
    font-size: 1.15rem;
    color: #bdbdbd !important;
}
.bobopoint-icon {
    font-size: 1.3rem;
    margin-right: 2px;
    color: #ffb300;
}
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}
.switch input { display: none; }
.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #e0e0e0;
    border-radius: 24px;
    transition: .4s;
}
.switch input:checked + .slider {
    background-color: #00bfae;
}
.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: .4s;
}
.switch input:checked + .slider:before {
    transform: translateX(20px);
}
.voucher-box {
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    padding: 10px 14px;
    background: #fff;
    cursor: pointer;
    min-height: 44px;
}
.voucher-icon {
    font-size: 1.2rem;
    margin-right: 2px;
}
.modal-payment-sheet {
    max-width: 100vw;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    min-height: 100vh;
}
.payment-modal-content {
    border-radius: 22px 22px 0 0;
    width: 100vw;
    max-width: 480px;
    margin: 0 auto;
    padding-bottom: 1.5rem;
    box-shadow: 0 2px 24px #0002;
    animation: slideUp .3s cubic-bezier(.4,2,.6,1) both;
}
@keyframes slideUp {
    from { transform: translateY(100%);}
    to { transform: translateY(0);}
}
.payment-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.payment-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    cursor: pointer;
    font-size: 1.07rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
    border-radius: 10px;
}
.payment-item:last-child {
    border-bottom: none;
}
.payment-item.selected {
    background: #e0f7fa;
    font-weight: 600;
    border-radius: 10px;
}
.payment-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #eee;
}
@media (min-width: 576px) {
    .payment-modal-content { max-width: 420px; }
}
@media (min-width: 992px) {
    .payment-modal-content { max-width: 400px; }
}

/* Voucher Modal Styles */
/* Mobile: modal from bottom */
.voucher-modal-dialog {
    max-width: 400px;
    margin: 0 auto;
    position: fixed;
    left: 0; right: 0;
    bottom: 0;
    width: 100%;
    transition: none;
    top: auto;
    transform: none;
    display: flex;
    align-items: flex-end;
    min-height: 100vh;
    pointer-events: none;
}
.voucher-modal-content {
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
    border: none;
    width: 100%;
    pointer-events: auto;
}
@media (min-width: 768px) {
    .voucher-modal-dialog {
        max-width: 600px !important;
        width: 100% !important;
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        margin: 0 !important;
        transform: translate(-50%, -50%) !important;
        border-radius: 20px;
        display: block !important;
        min-height: unset !important;
        align-items: unset !important;
        pointer-events: auto !important;
        z-index: 1055;
    }
    .modal.show .voucher-modal-dialog {
        /* Bootstrap's vertical centering */
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-height: unset;
        align-items: center;
    }
    .voucher-modal-content {
        border-radius: 20px;
        box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    }
}

/* Voucher card style */
.voucher-card {
    background: #f7fcfc;
    border-radius: 12px;
    padding: 18px 16px 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: none;
    margin-bottom: 12px;
    position: relative;
}
.voucher-card:last-child {
    margin-bottom: 0;
}
.voucher-info {
    margin-bottom: 8px;
}
.btn-link.text-orange {
    color: #ff8800;
    text-decoration: none;
}
.btn-link.text-orange:hover {
    color: #ff8800;
    text-decoration: underline;
}

/* Detail Stay */
.timeline {
    position: relative;
    margin-left: 36px;
    padding-left: 0;
    display: flex;
    flex-direction: column;
}
.timeline-vertical-line {
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #e0e0e0;
    z-index: 0;
    border-radius: 2px;
}
.timeline-item {
    display: flex;
    align-items: flex-start;
    position: relative;
    min-height: 70px;
    margin-bottom: 0;
    z-index: 1;
}
.timeline-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 38px;
    margin-right: 8px;
    z-index: 2;
}
.timeline-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #00bdb7;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin: 0 auto;
    box-shadow: 0 2px 8px #0001;
    z-index: 2;
}
.timeline-item:first-child .timeline-icon {
    background: #757575 !important;
}
.timeline-item:nth-child(2) .timeline-icon {
    background: #17a2b8 !important;
}
.timeline-item:nth-child(3) .timeline-icon {
    background: #28a745 !important;
}
.timeline-item:nth-child(4) .timeline-icon {
    background: #007bff !important;
}
/* Hide vertical line above first and below last icon */
.timeline-item:first-child .timeline-icon-wrapper::before,
.timeline-item:last-child .timeline-icon-wrapper::after {
    display: none !important;
}
@media (max-width: 767.98px) {
    .timeline {
        margin-left: 20px;
    }
    .timeline-vertical-line {
        left: 14px;
        width: 2px;
    }
    .timeline-icon-wrapper {
        min-width: 28px;
    }
    .timeline-icon {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
    .card-body {
        padding: 1.1rem !important;
    }
}
/* Modal cancel custom style */
.custom-cancel-modal {
    border-radius: 18px;
    background: #fff;
    box-shadow: none;
    border: none;
    padding: 0 0.5rem;
}
.custom-cancel-modal .modal-body {
    padding: 2.2rem 1.2rem 2rem 1.2rem;
}
@media (max-width: 767.98px) {
    .custom-cancel-modal {
        margin: 0 8px;
    }
    .custom-cancel-modal .modal-body {
        padding: 2rem 0.5rem !important;
    }
}
@media (min-width: 768px) {
    .modal-dialog {
        max-width: 400px;
    }
}
