/* ===== INNER PAGES & SHARED WIDGETS ===== */
.page-inner {
    background: var(--color-white);
}

.page-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--color-white);
}

.page-hero-media,
.page-hero-overlay {
    position: absolute;
    inset: 0;
}

    .page-hero-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.page-hero-overlay {
    background: linear-gradient(90deg, rgba(0, 40, 75, 0.84), rgba(0, 40, 75, 0.42)), linear-gradient(180deg, rgba(10, 10, 10, 0.18), rgba(10, 10, 10, 0.58));
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    width: min(860px, 90%);
    margin-left: 5%;
    padding-top: 80px;
    min-width: 0;
}

.page-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

    .page-breadcrumb a:hover {
        color: var(--color-primary);
    }

.page-hero .section-subtitle::after {
    margin-left: 0;
}

.page-hero h1 {
    max-width: 820px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1.08;
    margin-bottom: 22px;
    overflow-wrap: break-word;
}

.page-hero p,
.page-hero-desc {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.9;
    overflow-wrap: break-word;
}

.page-hero-desc p {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    margin-bottom: 0;
}

.section-pad {
    padding: 90px 0;
}

.section-pad-soft {
    padding: 80px 0;
    background: var(--color-cream);
}

.text-left .section-subtitle::after {
    margin-left: 0;
}

.room-section-heading {
    max-width: 760px;
    margin-bottom: 46px;
}

    .room-section-heading.text-center {
        margin-left: auto;
        margin-right: auto;
    }

/* ===== FLOATING ACTIONS ===== */
.floating-actions {
    position: fixed;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1100;
    display: grid;
    gap: 10px;
}

.floating-action {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-secondary);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow-medium);
    transition: var(--transition-fast);
}

    .floating-action svg {
        width: 21px;
        height: 21px;
        fill: currentColor;
    }

    .floating-action .floating-zalo {
        color: currentColor;
        font-size: 0.75rem;
        font-weight: 800;
        letter-spacing: 0;
    }

    .floating-action::after {
        content: attr(data-label);
        position: absolute;
        right: calc(100% + 10px);
        top: 50%;
        transform: translate(8px, -50%);
        min-width: max-content;
        padding: 8px 12px;
        background: var(--color-secondary);
        color: var(--color-white);
        font-size: 0.72rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-fast);
        box-shadow: var(--shadow-soft);
    }

    .floating-action:hover,
    .floating-action:focus-visible {
        background: var(--color-primary);
        border-color: var(--color-primary);
        transform: translateX(-3px);
    }

        .floating-action:hover::after,
        .floating-action:focus-visible::after {
            opacity: 1;
            transform: translate(0, -50%);
        }

.floating-action-booking {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

    .floating-action-booking:hover,
    .floating-action-booking:focus-visible {
        background: var(--color-primary-dark);
    }

/* ===== ABOUT PAGE ===== */
.about-story {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 70px;
    align-items: center;
}

.about-story-media {
    position: relative;
    min-height: 560px;
}

.about-story-image-main,
.about-story-image-small {
    position: absolute;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-story-image-main {
    left: 0;
    top: 0;
    width: 78%;
    height: 440px;
}

.about-story-image-small {
    right: 0;
    bottom: 0;
    width: 54%;
    height: 290px;
    border: 8px solid var(--color-white);
}

.about-story-media img,
.about-gallery-item img,
.about-video-thumb img,
.rooms-list-card-image img,
.booking-room-thumb img,
.service-list-image img,
.service-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story-copy p {
    color: var(--color-text-light);
    line-height: 1.9;
    margin-bottom: 22px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.about-value {
    padding: 24px;
    background: var(--color-off-white);
    border-left: 3px solid var(--color-primary);
}

    .about-value strong {
        display: block;
        color: var(--color-secondary);
        font-family: var(--font-heading);
        font-size: 1.28rem;
        margin-bottom: 6px;
    }

    .about-value span {
        color: var(--color-text-light);
        font-size: 0.84rem;
        line-height: 1.6;
    }

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 230px;
    gap: 12px;
    margin-top: 46px;
}

.about-gallery-item,
.about-video-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--color-secondary);
}

    .about-gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 2;
    }

    .about-gallery-item::after,
    .about-video-thumb::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 40, 75, 0.06), rgba(0, 40, 75, 0.72));
        opacity: 0;
        transition: var(--transition-fast);
    }

    .about-gallery-item span,
    .about-video-thumb span {
        position: absolute;
        left: 22px;
        bottom: 20px;
        z-index: 2;
        color: var(--color-white);
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        opacity: 0;
        transform: translateY(10px);
        transition: var(--transition-fast);
    }

    .about-gallery-item:hover img,
    .about-video-thumb:hover img {
        transform: scale(1.08);
    }

    .about-gallery-item img,
    .about-video-thumb img {
        transition: transform 0.85s ease;
    }

    .about-gallery-item:hover::after,
    .about-gallery-item:hover span,
    .about-video-thumb:hover::after,
    .about-video-thumb:hover span {
        opacity: 1;
        transform: translateY(0);
    }

.about-video-thumb {
    grid-column: span 2;
}

.about-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(211, 165, 40, 0.94);
    color: var(--color-white);
    transform: translate(-50%, -50%);
}

    .about-play svg {
        width: 28px;
        height: 28px;
        fill: currentColor;
    }

.inline-video {
    display: none;
}

.about-video-modal {
    width: min(920px, 92vw);
    background: var(--color-secondary);
    color: var(--color-white);
}

    .about-video-modal video {
        width: 100%;
        display: block;
        background: #000;
    }

.about-video-fallback {
    padding: 20px 24px 24px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    line-height: 1.7;
}
/* Layout chung */
.about-location {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
}

/* --- PHẦN BÊN TRÁI --- */
.about-location-list {
    display: grid;
    gap: 16px;
    margin: 10px 0 15px 0; /* Cách đều Text trên và Nút dưới */
    padding: 0;
    list-style: none;
}

    .about-location-list li {
        position: relative;
        padding-left: 28px;
        color: #555; /* Màu text dịu mắt */
        line-height: 1.6;
    }

        /* Custom lại dấu tích sang trọng hơn */
        .about-location-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 8px;
            height: 8px;
            background-color: #d4af37; /* Màu vàng gold của theme */
            border-radius: 50%; /* Dùng chấm tròn nhỏ tinh tế thay vì dấu tick thô */
        }

/* --- PHẦN BÊN PHẢI (LUXURY CARD) --- */
.location-action-card {
    display: block;
    background-color: #00284b; /* Màu xanh navy chuẩn theo tone màu tiêu đề/footer */
    color: #ffffff;
    padding: 25px;
    border-radius: 4px; /* Bo góc ít lại để giữ nét sang trọng của KS */
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(0, 40, 75, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    height: 400px;
}

    .location-action-card iframe {
        width: 100%;
        height: 100%;
    }
    /* Tạo đường viền mỏng trang trí bên trong (hiệu ứng double border phong cách resot) */
    .location-action-card::before {
        content: '';
        position: absolute;
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
        border: 1px solid rgba(212, 175, 55, 0.3); /* Viền vàng gold trong suốt 30% */
        transition: border-color 0.4s ease;
        pointer-events: none;
    }

.card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.card-icon {
    color: #d4af37; /* Màu vàng gold */
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.card-inner h3 {
    font-family: var(--font-heading); /* Lấy font Serif tiêu đề web của bạn */
    font-size: 1.6rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.card-inner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #d4af37; /* Chữ vàng gold */
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap 0.3s ease;
}
/* 
    .location-action-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(0, 40, 75, 0.25);
        background-color: #00315c;
    }*/

.location-action-card:hover::before {
    border-color: rgba(212, 175, 55, 0.6);
}

.location-action-card:hover .card-icon {
    transform: scale(1.1);
}
/* Responsive */
@media (max-width: 992px) {
    .about-location {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0;
    }
}
/* ===== ROOMS LISTING ===== */
.rooms-listing-section {
    padding: 82px 0 95px;
    background: var(--color-cream);
}

.rooms-listing-tools {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 18px;
    align-items: end;
    margin: 42px 0 34px;
    padding: 26px;
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
}

    .rooms-listing-tools label {
        display: grid;
        gap: 8px;
        color: var(--color-secondary);
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .rooms-listing-tools select {
        min-width: 220px;
        border: 1px solid rgba(0, 40, 75, 0.14);
        background: var(--color-off-white);
        color: var(--color-text);
        font-family: var(--font-body);
        padding: 14px 16px;
        outline: none;
    }

.rooms-result-count {
    color: var(--color-text-light);
    font-size: 0.88rem;
}

.rooms-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.rooms-list-card {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
    overflow: hidden;
}

    .rooms-list-card.is-hidden {
        display: none;
    }

    .rooms-list-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-heavy);
    }

.rooms-list-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

    .rooms-list-card-image img {
        transition: transform 0.85s ease;
    }

.rooms-list-card:hover .rooms-list-card-image img {
    transform: scale(1.08);
}

.rooms-list-badge {
    position: absolute;
    left: 18px;
    top: 18px;
    padding: 7px 13px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.rooms-list-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}

.rooms-list-card h3 {
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
}

.rooms-list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--color-text-light);
    font-size: 0.82rem;
}

.rooms-list-price {
    margin-top: auto;
    margin-bottom: 20px;
}

    .rooms-list-price > span {
        display: block;
        color: var(--color-primary);
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 6px;
    }

    .rooms-list-price strong {
        display: flex;
        align-items: baseline;
        gap: 10px;
        flex-wrap: wrap;
        font-family: var(--font-heading);
    }

        .rooms-list-price strong .new {
            color: var(--color-secondary);
            font-size: 1.55rem;
            font-weight: 600;
        }

        .rooms-list-price strong .old {
            color: #999;
            font-size: 1rem;
            font-weight: 400;
            text-decoration: line-through;
            opacity: 0.8;
        }

.rooms-list-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

    .rooms-list-actions .btn {
        justify-content: center;
        padding: 12px 14px;
        font-size: 0.68rem;
        letter-spacing: 1.4px;
    }

.rooms-empty-state {
    display: none;
    padding: 38px;
    background: var(--color-white);
    color: var(--color-text-light);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

    .rooms-empty-state.is-visible {
        display: block;
    }

/* ===== SERVICE PAGES ===== */
.service-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 70px;
    align-items: start;
}

.service-intro-copy {
    color: var(--color-text-light);
    line-height: 1.9;
}

.service-intro-copy > *:last-child {
    margin-bottom: 0;
}

.service-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.service-list-card {
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: var(--transition-medium);
}

.service-list-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.service-list-link {
    display: grid;
    height: 100%;
    color: inherit;
}

.service-list-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: var(--color-secondary);
}

.service-list-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 40, 75, 0.02), rgba(0, 40, 75, 0.36));
    opacity: 0;
    transition: var(--transition-fast);
}

.service-list-image img {
    transition: transform 0.85s ease, opacity 0.4s ease;
}

.service-list-card:hover .service-list-image img {
    transform: scale(1.08);
}

.service-list-card:hover .service-list-image::after {
    opacity: 1;
}

.service-list-body {
    display: flex;
    flex-direction: column;
    min-height: 260px;
    padding: 26px;
}

.service-list-body > span,
.service-cta-panel > span {
    display: block;
    color: var(--color-primary);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.service-list-body h3 {
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 600;
    line-height: 1.24;
    margin-bottom: 14px;
}

.service-list-body p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-list-body strong {
    margin-top: auto;
    color: var(--color-primary-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 46px;
    align-items: start;
}

.service-detail-main {
    min-width: 0;
}

.service-detail-main .xvnet-content {
    color: var(--color-text);
    line-height: 1.9;
}

.service-detail-sidebar {
    position: sticky;
    top: 105px;
    display: grid;
    gap: 18px;
}

.service-cta-panel,
.service-side-panel {
    padding: 28px;
    box-shadow: var(--shadow-soft);
}

.service-cta-panel {
    background: var(--color-secondary);
    color: var(--color-white);
}

.service-cta-panel h2,
.service-side-panel h3 {
    font-family: var(--font-heading);
    line-height: 1.24;
}

.service-cta-panel h2 {
    color: var(--color-white);
    font-size: 1.65rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.service-cta-panel p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.service-cta-panel .btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    padding-left: 18px;
    padding-right: 18px;
}

.service-side-panel {
    background: var(--color-white);
}

.service-side-panel h3 {
    color: var(--color-secondary);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.service-side-links {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.service-side-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 40, 75, 0.08);
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 600;
}

.service-side-links a::after {
    content: '+';
    color: var(--color-primary);
    font-weight: 900;
}

.service-side-links a:hover {
    color: var(--color-primary-dark);
}

.service-related-list {
    display: grid;
    gap: 14px;
}

.service-related-item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    color: var(--color-secondary);
}

.service-related-image {
    height: 72px;
    overflow: hidden;
    background: var(--color-secondary);
}

.service-related-item strong {
    color: inherit;
    font-size: 0.9rem;
    line-height: 1.45;
}

.service-related-item:hover {
    color: var(--color-primary-dark);
}
/* ===== BOOKING FLOW ===== */
.booking-flow-section {
    padding: 82px 0 95px;
    background: var(--color-cream);
}

.booking-flow-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 42px;
    align-items: start;
}

    .booking-flow-layout > *,
    .booking-step,
    .booking-panel,
    .booking-summary,
    .booking-room-choice > * {
        min-width: 0;
    }

.booking-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}

.booking-step-indicator {
    padding: 16px;
    background: var(--color-white);
    border-bottom: 3px solid rgba(0, 40, 75, 0.12);
    color: var(--color-text-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

    .booking-step-indicator.is-active {
        border-bottom-color: var(--color-primary);
        color: var(--color-secondary);
    }

.booking-panel,
.booking-summary {
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.booking-panel {
    padding: 32px;
}

.booking-step {
    display: none;
}

    .booking-step.is-active {
        display: block;
    }

    .booking-step h2 {
        color: var(--color-secondary);
        font-family: var(--font-heading);
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 10px;
    }

.booking-step-desc {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 28px;
    overflow-wrap: break-word;
}

.booking-room-list {
    display: grid;
    gap: 16px;
}

.booking-room-choice {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(0, 40, 75, 0.08);
    background: var(--color-off-white);
}

.booking-room-thumb {
    height: 105px;
    overflow: hidden;
}

.booking-room-choice h3 {
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.booking-room-choice p,
.booking-room-choice span {
    color: var(--color-text-light);
    font-size: 0.84rem;
    line-height: 1.65;
}

.booking-room-choice strong {
    display: block;
    color: var(--color-primary-dark);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-top: 8px;
}

.booking-room-quantity {
    display: grid;
    gap: 8px;
    min-width: 120px;
}

    .booking-room-quantity label {
        color: var(--color-secondary);
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 1.8px;
        text-transform: uppercase;
    }

    .booking-room-quantity input,
    .booking-room-quantity select,
    .booking-form-grid input,
    .booking-form-grid select,
    .booking-form-grid textarea {
        width: 100%;
        border: 1px solid rgba(0, 40, 75, 0.14);
        background: var(--color-off-white);
        color: var(--color-text);
        font-family: var(--font-body);
        padding: 14px 15px;
        outline: none;
    }

.booking-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

    .booking-form-grid label {
        display: grid;
        gap: 8px;
        color: var(--color-secondary);
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 1.8px;
        text-transform: uppercase;
    }

    .booking-form-grid .booking-field-inline {
        display: grid;
        gap: 8px;
        color: var(--color-secondary);
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 1.8px;
        text-transform: uppercase;
        position: relative;
    }

    .booking-form-grid .booking-guests-field {
    }

    .booking-form-grid .guest-room-toggle {
        min-height: 50px;
        padding: 0 15px;
        background: var(--color-off-white);
        border-color: rgba(0, 40, 75, 0.14);
        text-transform: none;
        letter-spacing: 0;
    }

    .booking-form-grid .guest-room-panel {
        left: 0;
        top: calc(100% + 8px);
        text-transform: none;
        letter-spacing: 0;
    }

    .booking-form-grid textarea {
        min-height: 132px;
        resize: vertical;
    }

    .booking-form-grid .full {
        grid-column: 1 / -1;
    }

.booking-payment-box {
    border: 1px solid rgba(0, 40, 75, 0.1);
    background: var(--color-off-white);
    padding: 24px;
}

.booking-payment-option {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: var(--color-text);
    line-height: 1.7;
}

    .booking-payment-option input {
        margin-top: 6px;
        accent-color: var(--color-primary);
    }

    .booking-payment-option strong {
        display: block;
        color: var(--color-secondary);
        font-family: var(--font-heading);
        font-size: 1.3rem;
        margin-bottom: 4px;
    }

.booking-onepay-note {
    margin-top: 18px;
    color: var(--color-text-light);
    font-size: 0.88rem;
    line-height: 1.7;
}

.booking-success {
    padding: 28px;
    background: rgba(211, 165, 40, 0.1);
    border-left: 4px solid var(--color-primary);
}

    .booking-success strong {
        display: block;
        color: var(--color-secondary);
        font-family: var(--font-heading);
        font-size: 1.55rem;
        margin-bottom: 12px;
    }

    .booking-success p {
        color: var(--color-text);
        line-height: 1.9;
        margin-bottom: 14px;
    }

.booking-email-note {
    color: var(--color-text-light);
    font-size: 0.88rem;
}

.booking-controls {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 28px;
}

    .booking-controls .btn {
        justify-content: center;
    }

.booking-summary {
    position: sticky;
    top: 105px;
    padding: 28px;
}

    .booking-summary h3 {
        color: var(--color-secondary);
        font-family: var(--font-heading);
        font-size: 1.6rem;
        margin-bottom: 18px;
    }

.booking-summary-list {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.booking-summary-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

    .booking-summary-item strong {
        color: var(--color-secondary);
        text-align: right;
    }

.booking-total {
    padding-top: 20px;
    border-top: 1px solid rgba(0, 40, 75, 0.1);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

    .booking-total span {
        color: var(--color-primary);
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .booking-total strong {
        color: var(--color-secondary);
        font-family: var(--font-heading);
        font-size: 1.7rem;
    }

.booking-breakfast-note {
    margin: 12px 0 0;
    color: #b42318;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.55;
    font-style: italic;
}

.booking-error {
    display: none;
    margin-top: 18px;
    color: #b42318;
    font-size: 0.88rem;
    line-height: 1.6;
}

    .booking-error.is-visible {
        display: block;
    }

@media (max-width: 1200px) {
    .rooms-list-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .about-story,
    .about-location,
    .booking-flow-layout,
    .service-intro-grid,
    .service-detail-layout {
        grid-template-columns: 1fr;
    }

    .about-location-panel,
    .booking-summary,
    .service-detail-sidebar {
        position: relative;
        top: 0;
    }

    .rooms-listing-tools {
        grid-template-columns: 1fr 1fr;
    }

    .rooms-result-count {
        grid-column: 1 / -1;
    }

    .rooms-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 460px;
    }

    .page-hero-content {
        width: calc(100% - 48px);
        margin: 0 auto;
        padding-top: 58px;
    }

    .page-hero h1 {
        max-width: 100%;
        font-size: clamp(2rem, 8vw, 2.55rem);
        line-height: 1.14;
        word-break: break-word;
    }

    .page-hero p,
    .page-hero-desc {
        max-width: 100%;
    }

    .section-pad,
    .section-pad-soft,
    .rooms-listing-section,
    .booking-flow-section {
        padding: 68px 0;
    }

    .about-story-media {
        min-height: 430px;
    }

    .about-story-image-main {
        height: 340px;
        width: 86%;
    }

    .about-story-image-small {
        height: 210px;
        width: 58%;
    }

    .about-values,
    .rooms-listing-tools,
    .rooms-list-grid,
    .service-list-grid,
    .booking-form-grid,
    .booking-steps {
        grid-template-columns: 1fr;
    }

    .about-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .about-gallery-item:first-child,
    .about-video-thumb {
        grid-column: auto;
        grid-row: auto;
    }

    .rooms-listing-tools select {
        min-width: 100%;
    }

    .booking-panel,
    .booking-summary,
    .service-cta-panel,
    .service-side-panel {
        padding: 24px;
    }

    .booking-room-choice {
        grid-template-columns: 1fr;
    }

    .booking-room-thumb {
        height: 190px;
    }

    .booking-controls {
        flex-direction: column;
    }

        .booking-controls .btn {
            width: 100%;
        }

    .floating-actions {
        right: 12px;
        gap: 8px;
    }

    .floating-action {
        width: 42px;
        height: 42px;
    }

        .floating-action::after {
            display: none;
        }
}

@media (max-width: 599px) {
    .page-hero-content {
        width: min(calc(100% - 48px), 342px);
        margin-left: 24px;
        margin-right: auto;
    }

    .page-hero h1 {
        font-size: clamp(1.95rem, 7.2vw, 2.15rem);
    }
}

@media (max-width: 480px) {
    .page-breadcrumb {
        font-size: 0.64rem;
        letter-spacing: 1.1px;
    }

    .page-hero h1 {
        max-width: 100%;
        font-size: 2.05rem;
        line-height: 1.14;
    }

    .page-hero p,
    .page-hero-desc {
        max-width: 100%;
        font-size: 0.94rem;
    }

    .rooms-list-actions {
        grid-template-columns: 1fr;
    }

    .service-list-image {
        height: 220px;
    }

    .service-list-body {
        min-height: 0;
        padding: 22px;
    }

    .service-related-item {
        grid-template-columns: 82px minmax(0, 1fr);
    }

    .floating-actions {
        bottom: 0% !important;
        right: 12px;
        bottom: auto;
        transform: translateY(-50%);
        top: auto;
		z-index: 999;
    }
}
