:root {
    --bg: #f6f3ed;
    --bg-elevated: #fbf8f2;
    --surface: #ffffff;
    --surface-muted: #f1ebe1;
    --line: rgba(26, 26, 26, 0.09);
    --line-strong: rgba(26, 26, 26, 0.16);
    --text: #161616;
    --text-soft: #5f635f;
    --text-faint: #7b7f79;
    --amber: #b9873d;
    --amber-deep: #93662a;
    --amber-soft: #f3e6d1;
    --success: #25d366;
    --shadow-soft: 0 18px 55px rgba(17, 20, 24, 0.08);
    --shadow-panel: 0 28px 80px rgba(17, 20, 24, 0.1);
    --radius-lg: 26px;
    --radius-md: 20px;
    --radius-sm: 14px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top right, rgba(224, 179, 90, 0.15), transparent 28%),
        radial-gradient(circle at left center, rgba(17, 17, 17, 0.03), transparent 35%),
        var(--bg);
    color: var(--text);
}

/* -- Public Utility Compatibility (replaces Tailwind CDN on public pages) -- */
.font-sans {
    font-family: 'Manrope', system-ui, sans-serif;
}

.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bg-mist {
    background:
        radial-gradient(circle at top right, rgba(224, 179, 90, 0.15), transparent 28%),
        radial-gradient(circle at left center, rgba(17, 17, 17, 0.03), transparent 35%),
        var(--bg);
}

.text-ink {
    color: var(--text);
}

.text-center {
    text-align: center;
}

.max-w-2xl {
    max-width: 42rem;
}

.block {
    display: block;
}

.hidden {
    display: none !important;
}

[hidden] {
    display: none !important;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.grid {
    display: grid;
}

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

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-5 {
    gap: 1.25rem;
}

.gap-6 {
    gap: 1.5rem;
}

.pt-0 {
    padding-top: 0;
}

.p-3 {
    padding: 0.75rem;
}

.p-6 {
    padding: 1.5rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-5 {
    margin-top: 1.25rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.w-fit {
    width: fit-content;
}

.h-full {
    height: 100%;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.6;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.5;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.45;
}

.text-3xl {
    font-size: clamp(1.75rem, 3vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.text-\[11px\] {
    font-size: 11px;
    line-height: 1.4;
}

.text-\[\#fff8ed\] {
    color: #fff8ed;
}

.text-white\/56 {
    color: rgba(255, 255, 255, 0.56);
}

.text-white\/76 {
    color: rgba(255, 255, 255, 0.76);
}

.font-extrabold {
    font-weight: 800;
}

.leading-7 {
    line-height: 1.75rem;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-\[0\.16em\] {
    letter-spacing: 0.16em;
}

.rounded-\[20px\] {
    border-radius: 20px;
}

.rounded-\[28px\] {
    border-radius: 28px;
}

.border {
    border: 1px solid var(--line);
}

.border-white\/10 {
    border-color: rgba(255, 255, 255, 0.10);
}

.bg-white\/10 {
    background: rgba(255, 255, 255, 0.10);
}

@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }

    .sm\:items-center {
        align-items: center;
    }

    .sm\:justify-between {
        justify-content: space-between;
    }

    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lg\:grid-cols-\[minmax\(0\,0\.92fr\)_minmax\(0\,1\.08fr\)\] {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    }

    .lg\:items-start {
        align-items: flex-start;
    }
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
    max-width: 100%;
}

::selection {
    background: rgba(185, 135, 61, 0.2);
    color: var(--text);
}

.container-shell {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.section-shell {
    padding: 4.75rem 0;
}

.section-shell--tight {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
}

.header-spacer {
    height: 86px;
}

.stack-xs,
.stack-sm,
.stack-md,
.stack-lg,
.stack-xl {
    display: flex;
    flex-direction: column;
}

.stack-xs {
    gap: 0.5rem;
}

.stack-sm {
    gap: 0.85rem;
}

.stack-md {
    gap: 1.15rem;
}

.stack-lg {
    gap: 1.75rem;
}

.stack-xl {
    gap: 2.5rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 0.55rem 0.95rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: var(--amber-deep);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow--light {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #f6e4be;
}

.display-title,
.section-title {
    margin: 0;
    font-family: 'Fraunces', Georgia, serif;
    letter-spacing: -0.03em;
    color: var(--text);
}

.display-title {
    font-size: clamp(2.65rem, 5vw, 4.95rem);
    line-height: 0.98;
}

.display-title--room {
    font-size: clamp(2.45rem, 4.6vw, 4.2rem);
}

.section-title {
    font-size: clamp(1.65rem, 3vw, 2.55rem);
    line-height: 1.05;
}

.section-title--compact {
    font-size: clamp(1.4rem, 2.4vw, 1.95rem);
}

.section-title--light {
    color: #fff7ec;
}

.lead-copy,
.body-copy {
    margin: 0;
    color: var(--text-soft);
}

.lead-copy {
    font-size: clamp(1rem, 1.6vw, 1.16rem);
    line-height: 1.75;
}

.lead-copy--light {
    color: rgba(255, 248, 233, 0.78);
}

.lead-copy--room {
    color: rgba(255, 247, 235, 0.88);
}

.body-copy {
    font-size: 0.98rem;
    line-height: 1.75;
}

.body-copy--dark {
    color: var(--text);
}

.body-copy--light {
    color: rgba(255, 248, 233, 0.72);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--text);
    color: #fff8ed;
    box-shadow: 0 18px 35px rgba(17, 17, 17, 0.15);
}

.button-primary:hover {
    background: #000;
}

.button-secondary {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
    color: var(--text);
}

.button-secondary:hover {
    border-color: var(--amber);
    color: var(--amber-deep);
}

.button-secondary--light {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #fff7ec;
}

.button-whatsapp {
    background: var(--success);
    color: #ffffff;
    box-shadow: 0 18px 35px rgba(37, 211, 102, 0.22);
}

.button-whatsapp:hover {
    background: #1fac57;
}

.button-block {
    width: 100%;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 60;
    border-bottom: 1px solid transparent;
    background: rgba(246, 243, 237, 0.72);
    backdrop-filter: blur(18px);
    transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
    border-color: var(--line);
    background: rgba(251, 248, 242, 0.92);
    box-shadow: var(--shadow-soft);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 86px;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.brand-lockup--footer {
    align-items: flex-start;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, #d8ae63 0%, #9f6c28 100%);
    color: #fff7ec;
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.brand-name {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-subtitle {
    color: var(--text-faint);
    font-size: 0.82rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.site-nav__link {
    color: var(--text-soft);
    font-size: 0.94rem;
    font-weight: 700;
    transition: color 160ms ease;
}

.site-nav__link:hover,
.site-nav__link--active {
    color: var(--text);
}

.site-nav__link--active {
    position: relative;
}

.site-nav__link--active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.5rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--amber) 0%, transparent 100%);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    padding: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: var(--text);
    transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 65;
    padding-top: 0.6rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease;
    max-height: calc(100svh - 98px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-nav__panel {
    margin: 0 0 1rem;
    padding: 1.2rem;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
}

.mobile-nav__links,
.mobile-nav__actions {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.mobile-nav__intro {
    margin-bottom: 1rem;
}

.mobile-nav__link {
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid transparent;
    background: var(--bg-elevated);
    color: var(--text);
    font-weight: 700;
}

.mobile-nav__link--active {
    border-color: rgba(185, 135, 61, 0.26);
    background: rgba(243, 230, 209, 0.76);
}

.page-hero {
    padding-top: 5.6rem;
}

.page-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 420px);
    gap: 2rem;
    align-items: center;
}

.hero-panel {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(219, 180, 105, 0.18), transparent 32%),
        linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(38, 31, 20, 0.92));
    box-shadow: var(--shadow-panel);
    color: #fff7ec;
}

.hero-panel .section-title {
    color: #fff7ec;
}

.hero-panel .body-copy {
    max-width: 30ch;
    color: rgba(255, 248, 233, 0.74);
}

.hero-panel__badge {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #f7e0b7;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-panel__visual {
    position: relative;
    min-height: 220px;
    margin-top: 1rem;
}

.hero-panel__chips {
    position: relative;
    min-height: inherit;
}

.hero-panel__ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.hero-panel__ring--one {
    inset: 0 1rem 1rem 0;
}

.hero-panel__ring--two {
    inset: 1.5rem 3rem 2.8rem 1rem;
}

.hero-panel__chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff7ec;
    font-size: 0.85rem;
    font-weight: 700;
}

.hero-panel__chip:nth-of-type(1) {
    top: 1rem;
    left: 0.5rem;
}

.hero-panel__chip:nth-of-type(2) {
    top: 5.5rem;
    right: 0.5rem;
}

.hero-panel__chip:nth-of-type(3) {
    bottom: 0.9rem;
    left: 4rem;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.stat-card {
    padding: 1rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 30px rgba(17, 20, 24, 0.05);
}

.stat-card__value {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.stat-card__label {
    color: var(--text-soft);
    font-size: 0.88rem;
    line-height: 1.45;
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.trust-strip__item {
    padding: 1.2rem 1.3rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
}

.trust-strip__value {
    margin-bottom: 0.45rem;
    color: var(--text);
    font-size: 1.18rem;
    font-weight: 800;
}

.trust-strip__label {
    color: var(--text-soft);
    font-size: 0.88rem;
    line-height: 1.5;
}

.surface-card {
    padding: 1.4rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 14px 36px rgba(17, 20, 24, 0.06);
}

.surface-card--sticky {
    position: sticky;
    top: 108px;
}

.feature-grid {
    display: grid;
    gap: 1rem;
}

.feature-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    min-height: 100%;
    padding: 1.15rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
}

.feature-card--soft {
    background: rgba(249, 243, 232, 0.64);
}

.icon-badge {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(185, 135, 61, 0.18), rgba(17, 17, 17, 0.04));
    position: relative;
}

.icon-badge::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--amber), var(--amber-deep));
}

.icon-badge--small {
    width: 34px;
    height: 34px;
}

.content-grid,
.info-grid {
    display: grid;
    gap: 1rem;
}

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

.info-grid--triple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
    padding: 1rem 1.1rem;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
}

.info-card__label {
    display: block;
    color: var(--text-faint);
    font-size: 0.82rem;
    margin-bottom: 0.35rem;
}

.info-card__value {
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.pricing-line {
    display: flex;
    align-items: baseline;
    gap: 0.45rem;
}

.pricing-line__value {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.pricing-line__suffix {
    color: var(--text-faint);
    font-size: 0.95rem;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: var(--surface-muted);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 700;
}

.chip--light {
    background: rgba(255, 255, 255, 0.1);
    color: #fff7ec;
}

.list-check,
.amenity-list,
.bullet-list {
    display: grid;
    gap: 0.85rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.list-check li,
.amenity-list li,
.bullet-list li {
    display: flex;
    gap: 0.75rem;
    color: var(--text-soft);
    line-height: 1.65;
}

.list-check li::before,
.amenity-list li::before,
.bullet-list li::before {
    content: '';
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    margin-top: 0.52rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber), var(--amber-deep));
}

.room-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.85fr);
    gap: 1.5rem;
    align-items: start;
}

/* ========== ROOM GALLERY (photo grid) ========== */
.room-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.room-gallery__main {
    grid-column: 1 / -1;
}

.room-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-gallery__main img {
    max-height: 420px;
}

.room-gallery__thumb img {
    height: 160px;
}

/* ========== ROOM SHOWCASE (rooms.php listing) ========== */
.room-showcase {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(17, 20, 24, 0.06);
}

.room-showcase__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    min-height: 420px;
}

.room-showcase__grid--reverse {
    direction: rtl;
}

.room-showcase__grid--reverse > * {
    direction: ltr;
}

.room-showcase__gallery {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 0.5rem;
    padding: 0.5rem;
}

.room-showcase__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 4px);
    min-height: 260px;
}

.room-showcase__thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.room-showcase__thumbs img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: calc(var(--radius-sm, 14px) - 2px);
}

.room-showcase__info {
    padding: 2rem 2rem 2rem 1.5rem;
}

.review-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 40px rgba(17, 20, 24, 0.06);
}

.review-card__quote {
    margin: 0;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.8;
}

.review-card__meta {
    color: var(--text-faint);
    font-size: 0.88rem;
}

.faq-list {
    display: grid;
    gap: 0.9rem;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.3rem;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 0.98rem;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.faq-trigger__icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--amber-deep);
    font-size: 1rem;
    transition: transform 180ms ease, background-color 180ms ease;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 180ms ease;
}

.faq-answer__inner {
    min-height: 0;
    overflow: hidden;
    padding: 0 1.3rem;
}

.faq-answer__inner p {
    margin: 0;
    padding: 0 0 1.3rem;
    color: var(--text-soft);
    line-height: 1.8;
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.is-open .faq-trigger__icon {
    transform: rotate(45deg);
    background: rgba(185, 135, 61, 0.08);
}

.final-cta {
    padding: 2rem;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(224, 179, 90, 0.24), transparent 26%),
        linear-gradient(145deg, rgba(17, 17, 17, 0.98), rgba(46, 35, 20, 0.95));
    box-shadow: var(--shadow-panel);
}

.site-footer {
    padding: 2.5rem 0 1.5rem;
    color: rgba(255, 247, 236, 0.7);
    background: linear-gradient(180deg, #171717 0%, #0f0f0f 100%);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
    padding-bottom: 1.5rem;
}

.site-footer__link {
    color: rgba(255, 247, 236, 0.8);
    font-size: 0.95rem;
    transition: color 160ms ease;
}

.site-footer__link:hover {
    color: #fff8ed;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 247, 236, 0.45);
    font-size: 0.82rem;
}

.mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 1rem;
    z-index: 50;
    width: min(1120px, calc(100% - 1.2rem));
    margin: 0 auto;
    padding: 0.85rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 28px 70px rgba(17, 20, 24, 0.15);
    transform: translateY(130%);
    transition: transform 220ms ease;
}

.mobile-cta.visible {
    transform: translateY(0);
}

.mobile-cta__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mobile-cta__label {
    color: var(--text-faint);
    font-size: 0.8rem;
}

.mobile-cta__price {
    font-size: 1rem;
    line-height: 1.2;
}

.mobile-cta__actions {
    display: flex;
    gap: 0.55rem;
}

.mobile-cta__secondary,
.mobile-cta__primary {
    min-height: 46px;
    padding-inline: 1rem;
}

.booking-page-intro {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.booking-page-intro--soft {
    background: linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(249, 243, 232, 0.8));
}

.booking-page-intro__copy {
    display: grid;
    gap: 0.6rem;
}

.booking-page-intro__chips {
    margin-top: 0.15rem;
}

.booking-step-explainer,
.booking-step-context {
    margin-top: 1.1rem;
}

.booking-step-context {
    display: grid;
    gap: 0.7rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(26, 26, 26, 0.06);
    border-radius: 18px;
    background: rgba(251, 247, 239, 0.82);
}

.booking-step-context--compact {
    margin-top: 1rem;
}

.booking-step-context__copy {
    margin: 0;
}

.booking-step-one-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1.25rem;
    align-items: start;
}

.booking-step-one__timing,
.booking-step-one__rooms {
    display: grid;
    gap: 1rem;
}

.booking-step-mini-summary {
    display: grid;
    gap: 0.45rem;
    background: rgba(249, 243, 232, 0.72);
}

.booking-step-mini-summary strong {
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.stay-type-selector {
    display: grid;
    gap: 0.65rem;
}

.stay-type-option {
    display: flex;
    gap: 0.85rem;
    padding: 0.95rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.84);
    transition: border-color 180ms ease, box-shadow 180ms ease;
    cursor: pointer;
}

.stay-type-option:hover {
    box-shadow: 0 4px 16px rgba(17, 20, 24, 0.05);
}

.stay-type-option.selected {
    border-color: rgba(185, 135, 61, 0.44);
    box-shadow: 0 0 0 4px rgba(185, 135, 61, 0.11);
}

.stay-type-option__radio {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 0.15rem;
    border-radius: 999px;
    border: 2px solid var(--line-strong);
    position: relative;
}

.stay-type-option.selected .stay-type-option__radio {
    border-color: var(--amber);
}

.stay-type-option.selected .stay-type-option__radio::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber), var(--amber-deep));
}

.stay-type-option__body {
    display: grid;
    gap: 0.25rem;
}

.stay-type-option__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.2rem;
}

.booking-room-card {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 1rem;
    padding: 1.15rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
    cursor: pointer;
}

.booking-room-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(17, 20, 24, 0.06);
}

.booking-room-card.selected {
    border-color: rgba(185, 135, 61, 0.44);
    box-shadow: 0 0 0 4px rgba(185, 135, 61, 0.11);
}

.booking-room-card.is-disabled {
    opacity: 0.58;
    cursor: not-allowed;
    background: rgba(244, 241, 234, 0.84);
}

.booking-room-card.is-disabled:hover {
    transform: none;
    box-shadow: none;
}

.booking-room-card__radio {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    margin-top: 0.2rem;
    border-radius: 999px;
    border: 2px solid var(--line-strong);
    position: relative;
}

.booking-room-card.selected .booking-room-card__radio {
    border-color: var(--amber);
}

.booking-room-card.selected .booking-room-card__radio::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber), var(--amber-deep));
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.38fr) minmax(300px, 0.82fr);
    gap: 1.5rem;
    align-items: start;
}

.booking-form-stack,
.status-stack,
.step-list {
    display: grid;
    gap: 1rem;
}

.booking-room-card__body {
    display: grid;
    grid-template-columns: minmax(168px, 0.42fr) minmax(0, 1fr);
    gap: 1rem;
    min-width: 0;
}

.booking-room-card__media {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 4 / 3;
    background: rgba(244, 241, 234, 0.9);
}

.booking-room-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.booking-room-card__badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.72);
    color: #f4dfba;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.booking-room-card__content {
    display: grid;
    gap: 0.8rem;
}

.booking-room-card__top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.booking-room-card__price {
    text-align: right;
    flex: 0 0 auto;
}

.booking-room-card__price strong {
    display: block;
    font-size: 1.1rem;
    letter-spacing: -0.03em;
}

.booking-room-card__price span {
    color: var(--text-faint);
    font-size: 0.78rem;
}

.booking-room-card__summary {
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.65;
}

.booking-room-card__points {
    display: grid;
    gap: 0.5rem;
    margin: 0;
    padding-left: 1rem;
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.55;
}

.booking-room-card__status {
    color: var(--text-faint);
    font-size: 0.84rem;
    line-height: 1.55;
}

.booking-room-card__status.is-open {
    color: #35654f;
}

.booking-room-card__status.is-closed {
    color: #a35b17;
    font-weight: 600;
}

.booking-summary {
    position: sticky;
    top: 108px;
}

.booking-summary__status-block {
    display: grid;
    gap: 0.45rem;
    padding: 1rem 1rem 1.05rem;
    margin-top: 0.9rem;
    margin-bottom: 1rem;
    border-radius: 18px;
    background: rgba(251, 247, 239, 0.92);
    border: 1px solid rgba(185, 135, 61, 0.14);
}

.booking-summary__status-block strong {
    font-size: 1.02rem;
    letter-spacing: -0.02em;
}

.booking-summary__status-block .body-copy {
    margin: 0;
    color: var(--text-soft);
}

.booking-summary__preview {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 0.9rem;
    align-items: center;
    margin-bottom: 0.5rem;
    padding: 0.2rem 0 0.75rem;
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.booking-summary__preview img {
    width: 88px;
    height: 72px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.booking-summary__preview-copy {
    display: grid;
    gap: 0.25rem;
}

.booking-summary__preview-copy strong {
    font-size: 0.98rem;
    letter-spacing: -0.02em;
}

.booking-summary__preview-copy span {
    color: var(--text-faint);
    font-size: 0.84rem;
    line-height: 1.55;
}

.booking-summary__line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.booking-summary__line:last-child {
    border-bottom: 0;
}

.booking-summary__line span:first-child {
    color: var(--text-faint);
    font-size: 0.9rem;
}

.booking-summary__line strong {
    font-size: 0.95rem;
    text-align: right;
}

.booking-summary__total {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.booking-summary__total-value {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.booking-summary__trust-list {
    display: grid;
    gap: 0.55rem;
    margin: 1rem 0 0;
    padding-left: 1rem;
    color: var(--text-soft);
    font-size: 0.88rem;
    line-height: 1.6;
}

.booking-mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 1rem;
    z-index: 50;
    width: min(1120px, calc(100% - 1.2rem));
    margin: 0 auto;
    padding: 0.85rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    background: rgba(17, 17, 17, 0.94);
    box-shadow: 0 28px 80px rgba(17, 20, 24, 0.2);
    transform: translateY(130%);
    transition: transform 220ms ease;
}

.booking-mobile-bar.visible {
    transform: translateY(0);
}

.booking-mobile-bar__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.booking-mobile-bar__label {
    color: rgba(255, 247, 236, 0.72);
    font-size: 0.8rem;
}

.booking-mobile-bar__price {
    color: #fff8ed;
    font-size: 1.05rem;
    font-weight: 800;
}

.empty-state,
.success-card,
.status-card {
    padding: 1.45rem;
}

.empty-state {
    text-align: center;
}

.summary-grid {
    display: grid;
    gap: 1rem;
}

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

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

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

.step-list li {
    display: flex;
    gap: 0.85rem;
    color: var(--text-soft);
    line-height: 1.7;
}

.step-list__number {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber), var(--amber-deep));
    color: #fff8ed;
    font-size: 0.78rem;
    font-weight: 800;
}

.status-card__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.status-card__row:last-child {
    border-bottom: 0;
}

.status-card__row span:first-child {
    color: var(--text-faint);
    font-size: 0.9rem;
}

.status-card__row strong {
    text-align: right;
}

.contact-form-grid {
    display: grid;
    gap: 1rem;
}

.contact-form-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-card,
.map-card,
.success-card,
.status-card {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 16px 40px rgba(17, 20, 24, 0.06);
}

.contact-card {
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.contact-card__value {
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.map-card {
    min-height: 360px;
    padding: 1.4rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(241, 235, 225, 0.9));
}

.map-card__placeholder {
    height: 100%;
    min-height: 320px;
    border: 1px dashed rgba(185, 135, 61, 0.28);
    border-radius: 22px;
    background:
        radial-gradient(circle at 20% 25%, rgba(185, 135, 61, 0.14), transparent 20%),
        radial-gradient(circle at 80% 75%, rgba(17, 17, 17, 0.06), transparent 18%),
        rgba(255, 255, 255, 0.62);
    position: relative;
    overflow: hidden;
}

.map-card__placeholder::before,
.map-card__placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
}

.map-card__placeholder::before {
    background:
        linear-gradient(115deg, transparent 0 44%, rgba(185, 135, 61, 0.15) 44% 49%, transparent 49% 100%),
        linear-gradient(25deg, transparent 0 56%, rgba(17, 17, 17, 0.06) 56% 61%, transparent 61% 100%);
}

.map-card__placeholder::after {
    width: 24px;
    height: 24px;
    inset: auto auto 46% 52%;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber), var(--amber-deep));
    box-shadow: 0 0 0 10px rgba(185, 135, 61, 0.18);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    color: var(--text-faint);
    font-size: 0.88rem;
}

.breadcrumb strong {
    color: var(--text);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 540ms ease, transform 540ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

input,
select,
textarea {
    font: inherit;
}

input[type='date']::-webkit-calendar-picker-indicator {
    opacity: 0.55;
    cursor: pointer;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.98rem 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--text);
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(185, 135, 61, 0.42);
    box-shadow: 0 0 0 4px rgba(185, 135, 61, 0.1);
    background: #fff;
}

.summary-kicker {
    color: var(--text-faint);
    font-size: 0.8rem;
}

.legacy-safe-note {
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(243, 230, 209, 0.55);
    color: var(--text-soft);
    font-size: 0.88rem;
    line-height: 1.65;
}

.booking-live-note {
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(245, 248, 242, 0.9);
    border: 1px solid rgba(104, 122, 96, 0.14);
    color: var(--text-soft);
    font-size: 0.86rem;
    line-height: 1.6;
}

.booking-live-note.is-loading {
    background: rgba(248, 243, 230, 0.92);
    border-color: rgba(185, 135, 61, 0.18);
}

.booking-live-note.is-ok {
    background: rgba(238, 247, 241, 0.96);
    border-color: rgba(75, 125, 92, 0.18);
    color: #2f5e47;
}

.booking-live-note.is-warning {
    background: rgba(250, 241, 226, 0.96);
    border-color: rgba(185, 135, 61, 0.18);
    color: #8e5c1d;
}

.booking-live-note.is-error {
    background: rgba(250, 236, 236, 0.96);
    border-color: rgba(176, 85, 85, 0.16);
    color: #9a4747;
}

.booking-status-note {
    margin-top: 1rem;
}

.button.is-loading {
    opacity: 0.82;
    cursor: wait;
}

.button.is-disabled,
.button[aria-disabled='true'] {
    pointer-events: none;
    opacity: 0.6;
}

/* ========== HERO CINEMATIC ========== */
.hero-cinematic {
    position: relative;
    min-height: calc(100vh - 86px);
    min-height: calc(100svh - 86px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-cinematic__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-cinematic__media video,
.hero-cinematic__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-cinematic__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(17, 17, 17, 0.18) 0%, rgba(17, 17, 17, 0.52) 55%, rgba(17, 17, 17, 0.88) 100%);
}

.hero-cinematic__content {
    position: relative;
    z-index: 1;
    padding-bottom: 4.5rem;
    padding-top: 8rem;
}

/* ========== AVAILABILITY SEARCH BAR ========== */
.availability-search-section {
    margin-top: -2.5rem;
    position: relative;
    z-index: 10;
}

.availability-bar {
    padding: 1.4rem 1.6rem;
}

.availability-bar__form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
}

.availability-bar__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.availability-bar__label {
    color: var(--text-faint);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.availability-bar__action {
    display: flex;
    align-items: flex-end;
}

/* ========== ROOM CARD V2 (photo-first) ========== */
.room-card-v2 {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(17, 20, 24, 0.06);
    transition: transform 260ms ease, box-shadow 260ms ease;
}

.room-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-panel);
}

.room-card-v2__image {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.room-card-v2__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 440ms ease;
}

.room-card-v2:hover .room-card-v2__image img {
    transform: scale(1.04);
}

.room-card-v2__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.72);
    backdrop-filter: blur(8px);
    color: #f4dfba;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.room-card-v2__body {
    padding: 1.35rem;
}

@media (max-width: 1080px) {
    .page-hero__grid,
    .room-layout,
    .booking-step-one-layout,
    .booking-layout,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .site-nav,
    .site-header__secondary,
    .site-header__primary {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

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

    .availability-bar__form {
        grid-template-columns: 1fr 1fr;
    }

    .room-showcase__grid,
    .room-showcase__grid--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .room-showcase__info {
        padding: 1.5rem;
    }
}

@media (max-width: 820px) {
    .section-shell {
        padding: 4rem 0;
    }

    .trust-strip__grid,
    .summary-grid--two,
    .contact-form-grid--two,
    .feature-grid--two,
    .feature-grid--three,
    .content-grid,
    .info-grid--triple,
    .stat-grid {
        grid-template-columns: 1fr;
    }

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

    .room-gallery__main img {
        max-height: 320px;
    }

    .room-gallery__thumb img {
        height: 120px;
    }

    .site-footer__bottom {
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    .container-shell {
        width: min(100% - 1.2rem, 1180px);
    }

    .display-title {
        font-size: clamp(2.1rem, 8vw, 3.05rem);
    }

    .hero-cinematic__content {
        padding-top: 2.5rem;
        padding-bottom: 2rem;
    }

    .availability-search-section {
        margin-top: -1.5rem;
    }

    .availability-bar__form {
        grid-template-columns: 1fr;
    }

    .button-row,
    .mobile-cta__content,
    .booking-mobile-bar__content {
        flex-direction: column;
        align-items: stretch;
    }

    .booking-room-card__body,
    .booking-room-card__top,
    .mini-header__actions {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-room-card__price {
        text-align: left;
    }

    .mobile-cta__actions {
        width: 100%;
    }

    .mobile-cta__secondary,
    .mobile-cta__primary {
        width: 100%;
    }

    .booking-summary__preview {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .booking-summary__preview img {
        width: 72px;
        height: 64px;
    }

    .page-hero {
        padding-top: 4.8rem;
    }

    .page-hero__grid {
        gap: 1.35rem;
    }

    .hero-panel {
        padding: 1.4rem;
    }

    .hero-panel .section-title {
        font-size: clamp(1.55rem, 7vw, 2.05rem);
        line-height: 1.08;
    }

    .hero-panel .body-copy {
        max-width: none;
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .hero-panel__visual {
        min-height: auto;
        margin-top: 0.75rem;
    }

    .hero-panel__ring {
        display: none;
    }

    .hero-panel__chips {
        display: flex;
        flex-wrap: wrap;
        gap: 0.65rem;
        min-height: auto;
    }

    .hero-panel__chip {
        position: static;
        padding: 0.55rem 0.8rem;
        font-size: 0.8rem;
        background: rgba(255, 255, 255, 0.12);
    }
}

/* ===== WIZARD ===== */

.wizard-progress {
    margin-bottom: 2rem;
}

.wizard-progress__track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.wizard-progress__step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted, #888);
    transition: color 0.25s, background 0.25s;
    cursor: default;
}

.wizard-progress__step.is-active {
    color: var(--amber-deep, #8a6228);
    background: var(--amber-soft, #f9f2e7);
}

.wizard-progress__step.is-done {
    color: var(--success, #2a8f5c);
}

.wizard-progress__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    background: var(--line, #e7dfd2);
    color: var(--text-muted, #888);
    transition: background 0.25s, color 0.25s;
}

.wizard-progress__step.is-active .wizard-progress__number {
    background: var(--amber, #b17f33);
    color: #fff;
}

.wizard-progress__step.is-done .wizard-progress__number {
    background: var(--success, #2a8f5c);
    color: #fff;
}

.wizard-progress__label {
    display: none;
}

.wizard-progress__connector {
    flex: 0 0 2rem;
    height: 2px;
    background: var(--line, #e7dfd2);
    border-radius: 1px;
    transition: background 0.25s;
}

.wizard-progress__step.is-done + .wizard-progress__connector,
.wizard-progress__connector:has(+ .wizard-progress__step.is-done),
.wizard-progress__connector:has(+ .wizard-progress__step.is-active),
.wizard-progress__connector.is-filled {
    background: var(--amber, #b17f33);
}

/* Wizard step panels */
.wizard-step {
    display: none;
    animation: wizardFadeIn 0.3s ease;
}

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

@keyframes wizardFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Wizard navigation */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.25rem;
    gap: 1rem;
}

.wizard-nav--single {
    align-items: center;
}

.wizard-nav__hint {
    color: var(--text-faint);
    font-size: 0.88rem;
    line-height: 1.6;
}

.wizard-nav__next,
.wizard-nav__back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* Wizard navigation button polish */
.wizard-nav__back {
    color: var(--text-soft);
    font-weight: 600;
    font-size: 0.92rem;
}

.wizard-nav__back:hover {
    color: var(--text);
}

.wizard-nav__next {
    font-weight: 700;
}

/* Wizard step card wrapper */
.wizard-step .surface-card {
    padding: 1.5rem;
}

/* Wizard step title */
.wizard-step .section-title--compact {
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .wizard-progress__label {
        display: inline;
    }

    .wizard-progress__connector {
        flex: 0 0 3rem;
    }

    .wizard-step .surface-card {
        padding: 1.75rem;
    }
}

@media (max-width: 480px) {
    .wizard-progress__step {
        padding: 0.4rem 0.5rem;
        font-size: 0.78rem;
    }

    .wizard-progress__number {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.72rem;
    }

    .wizard-progress__connector {
        flex: 0 0 1.2rem;
    }

    .wizard-nav {
        flex-direction: column-reverse;
        gap: 0.75rem;
    }

    .wizard-nav .button {
        width: 100%;
    }

    .wizard-nav__hint {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .mobile-cta,
    .booking-mobile-bar {
        bottom: 0.8rem;
    }

    .hero-panel,
    .surface-card,
    .map-card,
    .final-cta,
    .review-card,
    .contact-card,
    .status-card {
        border-radius: 22px;
    }
}

@media (min-width: 769px) {
    .mobile-nav,
    .mobile-cta,
    .booking-mobile-bar {
        display: none;
    }
}

@media print {
    .site-header,
    .mobile-cta,
    .booking-mobile-bar {
        display: none !important;
    }
}

/* ==========================================================
   LANDING PAGE V2 SPECIFIC STYLES
   (Scoped to .landing-v2 to prevent conflicts with payment)
========================================================== */
.landing-v2 .hero-cinematic__content h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

.landing-v2 .bullet-list li::before {
    margin-top: 0.4rem;
}

@media (max-width: 768px) {
    .landing-v2 .mobile-sticky-cta {
        display: flex !important;
    }
    .landing-v2 footer {
        padding-bottom: 80px; /* Buat ruang untuk sticky CTA */
    }
}
@media (min-width: 769px) {
    .landing-v2 .mobile-sticky-cta {
        display: none !important;
    }
}

/* ==========================================================
   PUBLIC BOOKING FLOW REFACTOR
========================================================== */
.site-header--booking .site-header__inner {
    min-height: 76px;
}

.site-header--booking .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    font-size: 1.02rem;
}

.site-header--booking .brand-subtitle {
    font-size: 0.76rem;
}

.booking-page-main {
    padding-top: 1.85rem;
    padding-bottom: 4rem;
}

.booking-page-intro {
    gap: 0.7rem;
    margin-bottom: 1.1rem;
    padding: 1.15rem 1.25rem;
}

.booking-page-intro__copy {
    gap: 0.4rem;
}

.booking-page-intro__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1rem;
    color: var(--text-faint);
    font-size: 0.88rem;
    line-height: 1.55;
}

.booking-page-intro__meta span {
    position: relative;
    padding-left: 0.95rem;
}

.booking-page-intro__meta span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.47rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber), var(--amber-deep));
}

.wizard-progress {
    margin-bottom: 1.15rem;
}

.wizard-progress__step {
    padding: 0.38rem 0.68rem;
    font-size: 0.82rem;
}

.wizard-progress__number {
    width: 1.6rem;
    height: 1.6rem;
}

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

.booking-form-stack {
    gap: 0.85rem;
}

.booking-step-one-layout {
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
    gap: 1rem;
}

.booking-filter-panel,
.booking-filter-fields,
.booking-results-panel,
.booking-summary__card {
    padding: 1.2rem;
    border-radius: 24px;
}

.booking-filter-panel {
    display: grid;
    gap: 0.95rem;
}

.booking-filter-panel__head {
    display: grid;
    gap: 0.45rem;
}

.booking-filter-fields {
    display: grid;
    gap: 1rem;
}

.booking-filter-fields__group,
.booking-filter-fields__single {
    display: grid;
    gap: 0.85rem;
}

.booking-filter-fields__single {
    width: 100%;
}

.stay-type-selector {
    gap: 0.55rem;
}

.stay-type-option {
    padding: 0.9rem 1rem;
}

.stay-type-option__body strong {
    font-size: 0.98rem;
}

.button-sm {
    min-height: 42px;
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
}

.button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.button:disabled:hover {
    transform: none;
}

.quick-select-buttons {
    display: grid;
    gap: 0.55rem;
}

.quick-select-buttons__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.booking-step-mini-summary {
    padding: 0.95rem 1rem;
    border: 1px solid rgba(185, 135, 61, 0.12);
    border-radius: 18px;
}

.booking-results-panel {
    display: grid;
    gap: 1rem;
}

.booking-results-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.booking-results-head__copy {
    display: grid;
    gap: 0.35rem;
}

.booking-results-head__sort {
    color: var(--text-faint);
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}

.booking-results-head__chips {
    gap: 0.45rem;
}

.booking-room-list {
    display: grid;
    gap: 0.85rem;
}

.booking-room-card {
    align-items: start;
    padding: 1rem;
}

.booking-room-card.selected {
    border-color: rgba(185, 135, 61, 0.5);
    background: rgba(255, 250, 242, 0.98);
    box-shadow: 0 0 0 4px rgba(185, 135, 61, 0.11);
}

.booking-room-card__body {
    grid-template-columns: minmax(148px, 180px) minmax(0, 1fr);
    gap: 0.9rem;
}

.booking-room-card__selected-chip {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.65rem;
    border-radius: 999px;
    background: #fff8ed;
    color: var(--amber-deep);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 20px rgba(17, 20, 24, 0.08);
}

.booking-room-card__headline {
    display: grid;
    gap: 0.25rem;
}

.booking-room-card__headline strong {
    font-size: 1.06rem;
    letter-spacing: -0.02em;
}

.booking-room-card__tagline {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.55;
}

.booking-room-card__meta {
    gap: 0.45rem;
}

.booking-room-card__meta .chip {
    padding: 0.45rem 0.72rem;
    font-size: 0.78rem;
}

.booking-room-card__status {
    font-size: 0.83rem;
    line-height: 1.5;
}

.booking-room-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.booking-room-card__select-button.is-selected {
    background: rgba(243, 230, 209, 0.92);
    border: 1px solid rgba(185, 135, 61, 0.18);
    color: var(--amber-deep);
    box-shadow: none;
}

.booking-room-card__detail-toggle.is-open {
    border-color: rgba(185, 135, 61, 0.24);
    color: var(--amber-deep);
}

.booking-room-card__details {
    display: grid;
    gap: 0.6rem;
    padding-top: 0.25rem;
    border-top: 1px solid rgba(26, 26, 26, 0.06);
}

.booking-room-card__detail-copy {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.62;
}

.booking-empty-state {
    display: grid;
    gap: 0.7rem;
    padding: 1rem 1.05rem;
    border: 1px dashed rgba(185, 135, 61, 0.28);
    border-radius: 20px;
    background: rgba(249, 243, 232, 0.68);
    text-align: left;
}

.booking-empty-state .button {
    width: fit-content;
}

.booking-summary {
    top: 96px;
}

.booking-summary__card {
    display: grid;
    gap: 0.9rem;
}

.booking-summary__status-block {
    margin: 0;
    padding: 0.95rem 1rem;
}

.booking-summary__preview {
    margin: 0;
    padding: 0 0 0.85rem;
}

.booking-summary__line {
    padding: 0.75rem 0;
}

.booking-summary__total {
    padding-top: 0.9rem;
    margin-top: 0.15rem;
}

.booking-summary__total-copy {
    margin-top: 0.3rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.booking-summary__actions {
    display: grid;
    gap: 0.5rem;
}

.booking-summary__actions button[hidden] {
    display: none !important;
}

.booking-summary__helper {
    margin: 0;
}

.booking-summary__secondary-cta {
    min-height: 46px;
}

.booking-mobile-bar {
    padding: 0.75rem 0.8rem;
    border-radius: 20px;
}

.booking-mobile-bar__copy {
    display: grid;
    gap: 0.18rem;
}

.booking-mobile-bar__label {
    font-size: 0.76rem;
}

.booking-mobile-bar__price {
    font-size: 0.96rem;
}

@media (max-width: 1080px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }

    .booking-summary {
        display: none;
    }

    .booking-step-one-layout {
        grid-template-columns: 1fr;
    }

    .booking-mobile-bar:not([hidden]) {
        display: block;
    }
}

@media (min-width: 1081px) {
    .booking-mobile-bar {
        display: none;
    }
}

@media (max-width: 720px) {
    .booking-page-main {
        padding-top: 1.1rem;
        padding-bottom: 6rem;
    }

    .booking-page-intro {
        padding: 1rem;
        margin-bottom: 0.85rem;
    }

    .booking-page-intro__meta {
        display: grid;
        gap: 0.4rem;
    }

    .booking-filter-panel,
    .booking-filter-fields,
    .booking-results-panel {
        padding: 1rem;
    }

    .booking-results-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-room-card {
        grid-template-columns: 18px minmax(0, 1fr);
        gap: 0.8rem;
    }

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

    .booking-room-card__media {
        aspect-ratio: 16 / 10;
    }

    .booking-room-card__actions .button,
    .booking-empty-state .button {
        width: 100%;
    }

    .quick-select-buttons__list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .booking-mobile-bar__content {
        flex-direction: column;
        align-items: stretch;
    }

    .quick-select-buttons__list {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   BOOKING SUMMARY PAGE POLISH
========================================================== */
.booking-summary-main .empty-state {
    max-width: 720px;
    margin: 0 auto;
}

.booking-summary-review {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
    gap: 1.25rem;
    align-items: start;
}

.booking-summary-review__main {
    display: grid;
    gap: 1rem;
}

.booking-summary-intro {
    margin-bottom: 0;
}

.booking-summary-section {
    padding: 1.2rem;
    border-radius: 24px;
    display: grid;
    gap: 1rem;
}

.booking-summary-section__head {
    display: grid;
    gap: 0.35rem;
}

.booking-summary-grid {
    gap: 0.85rem;
}

.info-card--full {
    grid-column: 1 / -1;
}

.booking-summary--review {
    position: sticky;
    top: 96px;
}

.booking-summary__note {
    margin-top: 0.1rem;
}

.booking-summary-support {
    padding: 1.2rem;
    border-radius: 24px;
}

@media (max-width: 1080px) {
    .booking-summary-review {
        grid-template-columns: 1fr;
    }

    .booking-summary--review {
        position: static;
        top: auto;
    }
}

@media (max-width: 820px) {
    .booking-summary-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   LANDING PAGE V2 — INDEX.PHP COMPONENT CLASSES
   Replaces inline styles for maintainability.
========================================================== */

/* -- Utility: center block -- */
.center-block {
    margin-left: auto;
    margin-right: auto;
}

/* -- Trust Bar -- */
.trust-bar {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 243, 236, 0.92));
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
    padding: 1.15rem 0 1.5rem;
}

.trust-bar__panel {
    border: 1px solid rgba(26, 26, 26, 0.06);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 16px 36px rgba(17, 20, 24, 0.05);
    padding: 1.15rem 1.35rem;
}

.trust-bar__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    text-align: left;
}

.trust-bar__item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.25rem 0.15rem;
}

.trust-bar__value {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}

.trust-bar__label {
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.6;
}

.trust-bar__endorsed {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(26, 26, 26, 0.06);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem 1rem;
}

/* -- Problem / Solution Cards -- */
.problem-card {
    text-align: left;
}

.problem-card__title,
.solution-card__title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.solution-card {
    text-align: left;
    border: 2px solid var(--amber);
}

.solution-card__title {
    color: var(--amber-deep);
}

/* -- Emoji Icon (benefits section) -- */
.emoji-icon {
    font-size: 1.875rem;
    margin-bottom: 0.5rem;
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--text);
}

/* -- Review Grid -- */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
    color: #d5af6a;
}

.review-quote {
    font-style: italic;
    margin-bottom: 1rem;
}

/* -- Room Offer Grid -- */
.room-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.room-offer-card {
    display: flex;
    flex-direction: column;
}

.room-offer-card--featured {
    border: 2px solid var(--amber);
    transform: translateY(-10px);
    box-shadow: var(--shadow-panel);
}

.room-offer-card__badge {
    background: var(--amber);
    color: #fff;
    text-align: center;
    padding: 0.5rem;
    font-weight: 800;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    margin: -1.4rem -1.4rem 1rem -1.4rem;
}

.room-offer-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.room-offer-card__name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.room-offer-card__desc {
    color: var(--text-soft);
    margin-bottom: 1rem;
}

.room-offer-card__price {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 800;
}

.room-offer-card__price-suffix {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-faint);
}

/* -- Section backgrounds -- */
.section-bg-elevated {
    background: var(--bg-elevated);
}

.section-bg-surface {
    background: var(--surface);
}

/* -- Dark CTA -- */
.section-dark-cta {
    background: var(--text);
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
}

.section-dark-cta .display-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-dark-cta .lead-copy {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.button-amber {
    background: var(--amber);
    color: #fff;
    box-shadow: 0 10px 25px rgba(185, 135, 61, 0.4);
}

.button-amber:hover {
    background: var(--amber-deep);
}

.button-amber--lg {
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

.button-amber--xl {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

/* -- Mobile Sticky CTA (CSS-only visibility) -- */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem;
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.05);
    z-index: 50;
    display: none;
    justify-content: space-between;
    align-items: center;
}

.mobile-sticky-cta__info-title {
    font-weight: 800;
}

.mobile-sticky-cta__info-price {
    font-size: 0.85rem;
    color: var(--text-soft);
}

/* -- FAQ Landing custom (resets inline styling) -- */
.faq-landing .faq-trigger {
    border: 0;
    border-bottom: 1px solid var(--line);
}

/* -- Map Components -- */
.map-card__map {
    background: var(--bg-elevated);
    border: 1px solid var(--line);
}

.map-info-window {
    padding: 1rem;
    min-width: 250px;
    max-width: 300px;
}

.map-info-window__title {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.map-info-window__address {
    margin: 0 0 0.75rem 0;
    font-size: 0.85rem;
    color: var(--text-soft);
    line-height: 1.4;
}

.map-info-window__time {
    margin: 0 0 0.25rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--amber-deep);
}

.map-info-window__note {
    margin: 0 0 0.75rem 0;
    font-size: 0.85rem;
    color: var(--text-soft);
    line-height: 1.4;
}

.map-info-window__button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--amber);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background 0.2s ease;
}

.map-info-window__button:hover {
    background: var(--amber-deep);
}

/* -- Quick Select Buttons (for Booking Page) -- */
.quick-select-buttons {
    padding-top: 0.75rem;
    border-top: 1px solid var(--line);
}

.quick-select-btn {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-select-btn:hover {
    border-color: var(--amber);
    background: var(--amber-soft);
    color: var(--amber-deep);
}

.quick-select-btn:focus {
    outline: 2px solid var(--amber);
    outline-offset: 2px;
}

/* -- Flatpickr Custom Styles -- */
.flatpickr-calendar {
    font-family: 'Manrope', system-ui, sans-serif !important;
    border: 1px solid var(--line) !important;
    box-shadow: var(--shadow-soft) !important;
    border-radius: var(--radius-md) !important;
}

.flatpickr-day {
    border-radius: 6px !important;
    font-weight: 500 !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
    background: var(--amber) !important;
    border-color: var(--amber) !important;
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover {
    background: var(--amber-soft) !important;
    border-color: var(--line) !important;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
    border-bottom-color: var(--text) !important;
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
    border-top-color: var(--text) !important;
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-size: 1.1rem;
    color: var(--text);
}

/* -- Room Card Enhancements -- */
.room-offer-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 0.5rem;
}

.room-offer-card__name {
    margin: 0;
    flex: 1;
}

.room-offer-card__availability {
    flex-shrink: 0;
    white-space: nowrap;
}

.room-offer-card__guarantee {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-faint);
    margin-top: 0.75rem;
    line-height: 1.4;
}

.room-offer-card__features li::marker {
    color: var(--amber-deep);
    font-weight: bold;
}

/* -- Hero Social Proof -- */
.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 640px) {
    .hero-social-proof {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.85rem;
    }

    .hero-social-proof span[style*="opacity"] {
        display: none;
    }
}

/* -- Room Cards Mobile Optimization -- */
@media (max-width: 768px) {
    .room-offer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .room-offer-card__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .room-offer-card__availability {
        margin-top: 0.5rem;
    }
}

.trust-bar__endorsed-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-faint);
}

.trust-bar__endorsed-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.65rem;
}

.trust-bar__endorsed-chip {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(26, 26, 26, 0.08);
    background: rgba(255, 255, 255, 0.78);
    color: var(--text-soft);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

@media (max-width: 840px) {
    .trust-bar__grid {
        grid-template-columns: 1fr;
    }

    .trust-bar__endorsed {
        align-items: flex-start;
    }

    .trust-bar__endorsed-list {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .trust-bar {
        padding: 1rem 0 1.25rem;
    }

    .trust-bar__panel {
        padding: 1rem;
        border-radius: 20px;
    }

    .trust-bar__label {
        font-size: 0.86rem;
    }

    .trust-bar__endorsed-list {
        gap: 0.5rem;
    }
}

/* -- Benefit Cards (Combined Section) -- */
.benefit-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-panel);
}

.benefit-card--highlighted {
    border: 2px solid var(--amber);
    position: relative;
}

.benefit-card--highlighted::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-deep) 100%);
    z-index: -1;
    opacity: 0.1;
}

.benefit-badge {
    display: inline-block;
    background: var(--amber-soft);
    color: var(--amber-deep);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .feature-grid--three {
        grid-template-columns: 1fr;
    }
}

/* -- Quick Booking Form (Hero) -- */
.quick-booking-form {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-panel);
}

.quick-booking__fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.quick-booking__field-group {
    display: contents;
}

.quick-booking__field {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.quick-booking__field--guests {
    grid-column: 1 / -1;
}

.quick-booking__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-booking__input,
.quick-booking__select {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: var(--text);
    font-family: 'Manrope', system-ui, sans-serif;
    transition: all 0.2s ease;
    width: 100%;
}

.quick-booking__input:focus,
.quick-booking__select:focus {
    outline: none;
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(177, 127, 51, 0.3);
}

.quick-booking__select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23151515' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.quick-booking__submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.quick-booking__helper {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.85rem;
    line-height: 1.6;
    text-align: left;
}

.quick-booking__helper strong {
    color: #ffffff;
}

.quick-booking__fallback {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1rem;
    flex-wrap: wrap;
}

.quick-booking__link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.quick-booking__link:hover {
    color: rgba(255, 255, 255, 1);
    text-decoration-color: var(--amber);
}

/* Quick Booking Form - Mobile */
@media (max-width: 640px) {
    .quick-booking__fields {
        grid-template-columns: 1fr;
    }

    .quick-booking-form {
        padding: 1.25rem;
    }

    .quick-booking__fallback {
        flex-direction: column;
        gap: 0.75rem;
    }

    .quick-booking__link {
        display: block;
        text-align: center;
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 6px;
        padding: 0.5rem 1rem;
        background: rgba(255, 255, 255, 0.1);
    }

    .quick-booking__link:hover {
        background: rgba(255, 255, 255, 0.2);
    }
}

/* Date Input Custom Styling */
.quick-booking__input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.5);
    opacity: 0.6;
    cursor: pointer;
}

.quick-booking__input[type="date"]::-webkit-calendar-picker-indicator:hover {
    filter: invert(0.3);
    opacity: 1;
}

/* -- Availability Counter -- */
.availability-counter {
    background: rgba(40, 167, 69, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(40, 167, 69, 0.4);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin: 1rem auto 0;
    max-width: fit-content;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.availability-counter__content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.availability-counter__pulse {
    font-size: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.availability-counter__text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 500;
}

.availability-counter__text strong {
    color: #4ade80;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Availability Counter - Mobile */
@media (max-width: 640px) {
    .availability-counter {
        padding: 0.6rem 1rem;
        margin-top: 1rem;
    }

    .availability-counter__text {
        font-size: 0.85rem;
    }

    .availability-counter__text strong {
        font-size: 1rem;
    }
}

/* -- Review Cards with Photos -- */
.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--amber-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--amber);
    flex-shrink: 0;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-avatar__fallback {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--amber-deep);
}

.review-stars {
    font-size: 1rem;
    color: #ffc107;
    letter-spacing: 2px;
}

.review-author {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.review-author__name {
    color: var(--text);
    font-weight: 600;
}

.review-author__context {
    color: var(--text-faint);
    font-size: 0.85rem;
}

/* -- Urgency Banner -- */
.urgency-banner {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin: 1rem auto 0;
    max-width: fit-content;
    animation: slideIn 0.5s ease;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.urgency-banner__content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.urgency-banner__icon {
    font-size: 1.25rem;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.urgency-banner__text {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.urgency-banner__text strong {
    color: #fef08a;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Manrope', monospace;
    letter-spacing: 1px;
}

/* Urgency Banner - Mobile */
@media (max-width: 640px) {
    .urgency-banner {
        padding: 0.6rem 1rem;
        margin-top: 1rem;
        border-radius: 12px;
    }

    .urgency-banner__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .urgency-banner__text {
        font-size: 0.85rem;
    }

    .urgency-banner__text strong {
        font-size: 0.95rem;
    }
}

/* Review Cards - Mobile */
@media (max-width: 640px) {
    .review-card__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .review-avatar {
        width: 45px;
        height: 45px;
    }

    .review-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}
/* ===== Calendar Enhancements ===== */

/* Weekend highlighting */
.flatpickr-day.fp-day-weekend {
    background-color: #fef3e2;
    color: #d97706;
}

.flatpickr-day.fp-day-weekend:hover {
    background-color: #fde68a;
}

/* Past dates styling */
.flatpickr-day.fp-day-past {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Price indicator in calendar day */
.fp-day-price {
    display: block;
    font-size: 10px;
    font-weight: 500;
    color: #6b7280;
    margin-top: 2px;
    line-height: 1;
}

.flatpickr-day:hover .fp-day-price,
.flatpickr-day.selected .fp-day-price {
    color: #ffffff;
}

.flatpickr-day.fp-day-weekend .fp-day-price {
    color: #d97706;
}

/* Availability indicator */
.fp-day-availability {
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 10px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fp-day-availability[data-available="true"] {
    background-color: #10b981;
    color: white;
}

.fp-day-availability[data-available="false"] {
    background-color: #ef4444;
    color: white;
}

/* Available/Unavailable day styling */
.flatpickr-day.fp-day-available:not(.selected):not(.prevMonthDay):not(.nextMonthDay) {
    background-color: #ecfdf5;
    border: 1px solid #10b981;
}

.flatpickr-day.fp-day-unavailable:not(.selected):not(.prevMonthDay):not(.nextMonthDay) {
    background-color: #fef2f2;
    border: 1px solid #ef4444;
    opacity: 0.6;
}

.flatpickr-day.fp-day-unavailable:hover {
    background-color: #fee2e2 !important;
}

/* Weekend + Available */
.flatpickr-day.fp-day-weekend.fp-day-available:not(.selected):not(.prevMonthDay):not(.nextMonthDay) {
    background-color: #fffbeb;
    border-color: #f59e0b;
}

/* Weekend + Unavailable */
.flatpickr-day.fp-day-weekend.fp-day-unavailable:not(.selected):not(.prevMonthDay):not(.nextMonthDay) {
    background-color: #fef2f2;
    border-color: #ef4444;
}

/* Alternative dates widget */
.alternative-dates-widget {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.alternative-dates-widget__title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #374151;
    font-size: 0.875rem;
}

.alternative-dates-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.alternative-date-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s;
}

.alternative-date-item:hover {
    border-color: #3b82f6;
    background-color: #eff6ff;
}

.alternative-date-item__info {
    display: flex;
    flex-direction: column;
}

.alternative-date-item__date {
    font-weight: 500;
    color: #1f2937;
    font-size: 0.875rem;
}

.alternative-date-item__badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.alternative-date-item__price {
    font-weight: 600;
    color: #059669;
    font-size: 0.875rem;
}

.alternative-date-item__arrow {
    color: #9ca3af;
    margin-left: 0.5rem;
}

/* Form validation styles */
.form-input--valid,
.form-select--valid {
    border-color: #10b981;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2310b981'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 13l4 4L19 7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2.75rem;
}

.form-input--invalid,
.form-select--invalid {
    border-color: #ef4444;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ef4444'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 18L18 6M6 6l12 12'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2.75rem;
}

.form-input--pending {
    border-color: #e5e7eb;
}

.form-error-message {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: #ef4444;
    margin-top: 0.375rem;
}

.form-error-message__icon {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
}

.form-progress-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background-color: #eff6ff;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.form-progress-indicator__dots {
    display: flex;
    gap: 0.25rem;
}

.form-progress-indicator__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #dbeafe;
}

.form-progress-indicator__dot--complete {
    background-color: #10b981;
}

.form-progress-indicator__dot--active {
    background-color: #3b82f6;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .fp-day-price {
        font-size: 9px;
    }
    
    .fp-day-availability {
        width: 12px;
        height: 12px;
        font-size: 9px;
    }
    
    /* Touch-friendly calendar cells */
    .flatpickr-day {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Alternative dates - stacked on mobile */
    .alternative-date-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .alternative-date-item__arrow {
        display: none;
    }
}

/* Time picker improvements */
.time-picker-wrapper {
    position: relative;
}

.time-picker-hint {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.time-picker-warning {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem;
    background-color: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    color: #92400e;
    margin-top: 0.5rem;
}

/* Mobile bottom bar */
.booking-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    border-top: 1px solid #e5e7eb;
    padding: 0.75rem 1rem;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
}

.booking-mobile-bar__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 100%;
}

.booking-mobile-bar__copy {
    flex: 1;
    min-width: 0;
}

.booking-mobile-bar__label {
    font-size: 0.75rem;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.booking-mobile-bar__price {
    font-size: 1rem;
    font-weight: 600;
    color: #059669;
}

.booking-mobile-bar .button {
    flex-shrink: 0;
}

/* Scroll padding for virtual keyboard */
@media (max-width: 768px) {
    body.booking-page-active .booking-layout {
        padding-bottom: 100px;
    }
    
    body.booking-page-active .booking-mobile-bar:not([hidden]) {
        padding-bottom: env(safe-area-inset-bottom, 1rem);
    }
}

/* Improved empty state */
.booking-empty-state--enhanced {
    text-align: center;
    padding: 2rem 1rem;
}

.booking-empty-state__icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background-color: #fef2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-empty-state__icon svg {
    width: 2rem;
    height: 2rem;
    color: #ef4444;
}

.booking-empty-state__title {
    font-weight: 600;
    font-size: 1.125rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.booking-empty-state__reason {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.booking-empty-state__nearest-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background-color: #ecfdf5;
    color: #059669;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.booking-empty-state__nearest-badge svg {
    width: 1rem;
    height: 1rem;
}

.nearest-date-link {
    color: #059669;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
}

.nearest-date-link:hover {
    text-decoration: underline;
}
/* Touch feedback for mobile */
.booking-room-card.is-touched {
    transform: scale(0.98);
    transition: transform 0.1s;
}

/* Keyboard open state */
body.keyboard-open .booking-layout {
    padding-bottom: 300px !important;
}

/* Quick select buttons - touch friendly */
.quick-select-btn {
    min-height: 44px;
    min-width: 44px;
}

/* Room card select button - touch friendly */
.booking-room-card__select-button {
    min-height: 44px;
}

/* Form inputs - touch friendly */
.form-input,
.form-select,
.form-textarea {
    min-height: 44px;
}

/* Step navigation buttons - touch friendly */
.wizard-nav__back,
.wizard-nav__next {
    min-height: 44px;
    min-width: 44px;
}

/* Smooth transitions */
.booking-room-card,
.quick-select-btn,
.booking-room-card__select-button,
.form-input,
.form-select {
    -webkit-tap-highlight-color: transparent;
}

@media (prefers-reduced-motion: no-preference) {
    .booking-room-card {
        transition: transform 0.15s ease, box-shadow 0.15s ease;
    }
    
    .booking-room-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
}

/* Focus states for accessibility */
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Room card focus state */
.booking-room-card:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Loading state for calendar */
.flatpickr-calendar.loading {
    opacity: 0.6;
    pointer-events: none;
}

.flatpickr-calendar.loading::after {
    content: 'Memuat...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.875rem;
    color: #6b7280;
}

/* Calendar tooltip for unavailable dates */
.fp-day-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1f2937;
    color: white;
    padding: 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    white-space: nowrap;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
}

.flatpickr-day:hover .fp-day-tooltip {
    opacity: 1;
}

/* Weekend price special styling */
.fp-day-weekend.fp-day-available .fp-day-price {
    color: #d97706;
    font-weight: 600;
}

/* Progress indicator for form completion */
.form-progress {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #eff6ff;
    border-radius: 0.5rem;
}

.form-progress__bar {
    height: 0.375rem;
    background-color: #dbeafe;
    border-radius: 0.1875rem;
    overflow: hidden;
    margin-top: 0.5rem;
}

.form-progress__fill {
    height: 100%;
    background-color: #3b82f6;
    transition: width 0.3s ease;
    border-radius: 0.1875rem;
}

.form-progress__label {
    font-size: 0.75rem;
    color: #3b82f6;
    display: flex;
    justify-content: space-between;
}

/* Safe area for iOS notch */
@supports (padding: max(0px)) {
    .booking-mobile-bar {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
        padding-bottom: max(0.85rem, env(safe-area-inset-bottom));
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .flatpickr-day.fp-day-available {
        border-width: 2px;
    }
    
    .fp-day-price,
    .fp-day-availability {
        font-weight: 700;
    }
    
    .form-input--valid,
    .form-input--invalid {
        border-width: 2px;
    }
}

/* Added for safe UI deploy: booking progress + booking success styles */

/* ================================================================
   BOOKING PROGRESS BAR — Terpadu di semua halaman booking
   ================================================================ */

.bprogress {
    background: rgba(255,255,255,0.78);
    border-bottom: 1px solid var(--line);
    padding: 0.9rem 0;
    backdrop-filter: blur(10px);
}

.bprogress__track {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.bprogress__step {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
    transition: opacity 200ms ease;
    opacity: 0.4;
}

.bprogress__step.is-active {
    opacity: 1;
}

.bprogress__step.is-done {
    opacity: 0.75;
}

.bprogress__bubble {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 2px solid var(--line-strong);
    background: rgba(255,255,255,0.9);
    color: var(--text-soft);
    flex-shrink: 0;
    transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 220ms ease;
}

.bprogress__step.is-active .bprogress__bubble {
    background: var(--text);
    border-color: var(--text);
    color: #fff8ed;
    transform: scale(1.05);
    box-shadow: 0 4px 14px rgba(17,17,17,0.18);
}

.bprogress__step.is-done .bprogress__bubble {
    background: var(--amber);
    border-color: var(--amber);
    color: #fff;
}

.bprogress__num {
    font-size: 0.8rem;
    font-weight: 800;
}

.bprogress__label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-soft);
    white-space: nowrap;
}

.bprogress__step.is-active .bprogress__label {
    color: var(--text);
}

.bprogress__step.is-done .bprogress__label {
    color: var(--amber-deep);
}

.bprogress__connector {
    flex: 1;
    height: 2px;
    background: var(--line-strong);
    border-radius: 999px;
    margin: 0 0.65rem;
    min-width: 20px;
    transition: background 300ms ease;
}

.bprogress__connector.is-done {
    background: var(--amber);
}

@media (max-width: 480px) {
    .bprogress__label {
        display: none;
    }
    .bprogress__step {
        gap: 0;
    }
    .bprogress__connector {
        min-width: 12px;
        margin: 0 0.4rem;
    }
}


/* ================================================================
   SUCCESS PAGE — Animasi Celebratory
   ================================================================ */

@keyframes successScaleIn {
    from { transform: scale(0.5); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}

@keyframes successCheckDraw {
    from { stroke-dashoffset: 100; }
    to   { stroke-dashoffset: 0; }
}

@keyframes successRipple {
    0%   { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(2.2); opacity: 0; }
}

.success-check-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    position: relative;
    width: 80px;
    height: 80px;
}

.success-check-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.14);
    animation: successRipple 1.8s ease-out infinite;
}

.success-check-icon {
    width: 80px;
    height: 80px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1db95c, #168f59);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 35px rgba(37,211,102,0.3);
    animation: successScaleIn 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    position: relative;
    z-index: 1;
}

.success-check-icon svg {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: successCheckDraw 0.5s 0.3s ease forwards;
}

.success-check-wrap.is-pending .success-check-icon {
    background: linear-gradient(135deg, #b9873d, #93662a);
    box-shadow: 0 12px 35px rgba(185,135,61,0.3);
}

.success-check-wrap.is-pending::before {
    background: rgba(185, 135, 61, 0.14);
}

.success-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem 1.5rem;
}

.success-hero .section-title {
    margin-top: 0.5rem;
}

.success-hero .lead-copy {
    max-width: 480px;
    margin-top: 0.5rem;
}

/* ===================================================
   BOOKING UI POLISH
   Appended block — wins cascade over all prior rules
   =================================================== */

/* 1. Room card — overall feel */
.booking-room-card {
    padding: 1.4rem;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(17, 20, 24, 0.05);
}

.booking-room-list {
    gap: 1rem;
}

/* 2. Room card — image column: 0.36fr gives content column enough room */
.booking-room-card__body {
    grid-template-columns: minmax(130px, 0.36fr) minmax(0, 1fr);
    gap: 1.1rem;
}

.booking-room-card__media {
    border-radius: 16px;
}

/* 3. Room card — typography */
.booking-room-card__headline {
    min-width: 0;
    flex: 1 1 auto;
}

.booking-room-card__headline strong {
    font-size: 1.15rem;
    letter-spacing: -0.025em;
}

.booking-room-card__price strong {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--amber-deep);
}

.booking-room-card__content {
    gap: 0.9rem;
}

/* 4. Room card — action button group separator */
.booking-room-card__actions {
    padding-top: 0.75rem;
    border-top: 1px solid var(--line);
    margin-top: 0.2rem;
}

/* 5. Room card — selected state (stronger, more confident ring) */
.booking-room-card.selected {
    border-color: var(--amber);
    background: rgba(255, 251, 244, 1);
    box-shadow: 0 0 0 3px rgba(185, 135, 61, 0.28), 0 8px 24px rgba(185, 135, 61, 0.10);
}

/* 6. Room card — hover (warmer shadow) */
@media (prefers-reduced-motion: no-preference) {
    .booking-room-card {
        transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .booking-room-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(17, 20, 24, 0.09);
    }
}

/* 7. Booking summary — collapse card gap; restore per-element margins */
.booking-summary__card {
    gap: 0;
}

/* room preview needs top padding when gap is 0 */
.booking-summary__preview {
    padding-top: 0.75rem;
}

.booking-summary__actions {
    margin-top: 0.65rem;
}

.booking-summary__secondary-cta {
    margin-top: 0.5rem;
}

/* 8. Booking summary — status block: demote from boxy card to inline section */
.booking-summary__status-block {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0 0 0.9rem;
    margin: 0.75rem 0 0;
    border-bottom: 1px solid var(--line);
}

/* 9. Booking summary — detail lines (more vertical breathing) */
.booking-summary__line {
    padding: 0.9rem 0;
}

.booking-summary__line span:first-child {
    font-size: 0.85rem;
}

.booking-summary__line strong {
    font-size: 0.92rem;
    letter-spacing: -0.01em;
}

/* 10. Booking summary — total (amber price, stronger separator) */
.booking-summary__total {
    border-top: 1.5px solid var(--line-strong);
    padding-top: 1.1rem;
    margin-top: 1rem;
}

.booking-summary__total-value {
    color: var(--amber-deep);
    letter-spacing: -0.045em;
}

/* 11. Booking live note — warm neutral (not green-tinted) */
.booking-live-note {
    background: rgba(250, 247, 242, 0.92);
    border-color: rgba(185, 135, 61, 0.14);
    border-radius: 16px;
    margin-top: 0.75rem;
}

/* 12. Fix: show payment sidebar on mobile (booking-summary page)
   The generic .booking-summary { display:none } at <=1080px incorrectly
   hides the payment panel on booking-summary.php too. Override here. */
@media (max-width: 1080px) {
    .booking-summary--review {
        display: block;
    }

    /* Give the payment card some breathing room at the bottom on mobile */
    .booking-summary-main {
        padding-bottom: 2rem;
    }

    /* Payment sidebar floats to top on mobile so it's the first thing seen */
    .booking-summary-review {
        display: flex;
        flex-direction: column;
    }
    .booking-summary--review {
        order: -1;
    }
}

/* === OPTIONAL FIELDS <details> TOGGLE === */
.booking-optional-details {
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
}

.booking-optional-details__toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-soft);
    cursor: pointer;
    user-select: none;
    list-style: none;
    background: transparent;
    transition: background 0.15s, color 0.15s;
}

.booking-optional-details__toggle::-webkit-details-marker { display: none; }

.booking-optional-details__toggle:hover {
    background: rgba(185,135,61,0.06);
    color: var(--amber-deep);
}

.booking-optional-details__chevron {
    flex-shrink: 0;
    transition: transform 0.2s;
}

.booking-optional-details[open] .booking-optional-details__chevron {
    transform: rotate(180deg);
}

.booking-optional-details[open] .booking-optional-details__toggle {
    border-bottom: 1px solid var(--line);
    color: var(--text-ink, #1a1a1a);
}

.booking-optional-details__body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

/* === UX AUDIT FIXES === */

/* Room card: "Lihat detail" downgraded to link style — reduces button density */
.booking-room-card__detail-link {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-soft);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: rgba(26,26,26,0.2);
    transition: color 0.15s;
}

.booking-room-card__detail-link:hover {
    color: var(--amber-deep);
    text-decoration-color: var(--amber-deep);
}

.booking-room-card__detail-link.is-open {
    color: var(--amber-deep);
}

/* Mobile image: 4/3 aspect-ratio consistent with desktop */
@media (max-width: 840px) {
    .booking-room-card__media {
        aspect-ratio: 4 / 3;
    }
}

/* ════════════════════════════════════════════════
   Icon utilities — standardized SVG icon sizing
   ════════════════════════════════════════════════ */

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    fill: currentColor;
    flex-shrink: 0;
}
.icon-sm {
    display: inline-block;
    width: 14px;
    height: 14px;
    vertical-align: -2px;
    flex-shrink: 0;
}
.icon-md {
    display: inline-block;
    width: 18px;
    height: 18px;
    vertical-align: -3px;
    flex-shrink: 0;
}
.icon-lg {
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: -5px;
    flex-shrink: 0;
}

/* Icon + text spacing */
.icon-sm + span,
.icon-sm + strong,
.icon-md + span,
.icon-md + strong { margin-left: 4px; }
span + .icon-sm,
strong + .icon-sm { margin-left: 4px; }
