/* ============================================================
   LIFE Hospitality — Direct Booking
   Design tokens - Traveloka Aesthetic
   ============================================================ */
:root {
  --traveloka-blue: #C5A059; /* Soft Gold */
  --traveloka-blue-dark: #9E7D3B; /* Dark Gold for contrast */
  --traveloka-blue-light: #F7F4EB; /* Soft Cream/Light Gold */
  --traveloka-orange: #FF5E1F;
  --traveloka-orange-hover: #E04F16;
  --traveloka-yellow: #FFB703;
  --bg-gray: #F2F3F3;
  --white: #FFFFFF;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --border-color: #E2E8F0;
  --success-green: #03A96B;
  --success-green-light: #E6F6F0;
  
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  --radius-standard: 8px;
  --radius-large: 12px;
  --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
body{
  font-family:var(--font-body);
  background:var(--bg-gray);
  color:var(--text-dark);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
button{font-family:inherit;cursor:pointer;}
input{font-family:inherit;}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important; transition-duration:0.001ms !important;}
}

/* ============ BUTTONS ============ */
.btn{
  border:none;
  border-radius:var(--radius-standard);
  padding:12px 24px;
  font-weight:700;
  font-size:15px;
  transition:background-color .15s ease, transform .1s ease;
}
.btn--primary{
  background:var(--traveloka-orange);
  color:var(--white);
}
.btn--primary:hover{ background:var(--traveloka-orange-hover); }
.btn--primary:active{ transform:scale(0.98); }
.btn--block{ width:100%; }

/* ============ TOPBAR ============ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  color: var(--white);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 15px 0; /* Creates the floating offset */
}
.topbar__inner {
  max-width: 1240px;
  width: 94%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.topbar__capsule {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(15, 23, 42, 0.45); /* Glassmorphic dark slate */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px; /* Capsule shape */
  padding: 8px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1010;
}
.brand__logo-wrapper {
  width: 60px;
  height: 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand__text {
  display: none !important;
}
.brand__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand__title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.brand__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s ease;
}
.topbar .brand {
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.topbar .brand__text {
  align-items: center;
  text-align: center;
}
.topbar .brand__subtitle {
  text-transform: none;
  letter-spacing: 0.5px;
}
.topbar__tag {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Scrolled sticky topbar state */
.topbar.scrolled {
  padding: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.topbar.scrolled .topbar__inner {
  max-width: 100%;
  width: 100%;
  padding: 10px 24px;
}
.topbar.scrolled .topbar__capsule {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
}
.topbar.scrolled .topbar__nav-link {
  color: #475569; /* Dark gray for white scroll header */
}
.topbar.scrolled .topbar__nav-link:hover {
  color: #c5a059;
}
.topbar.scrolled .brand__logo-img {
  filter: none;
}
.topbar.scrolled .brand__title {
  color: var(--text-dark);
}
.topbar.scrolled .brand__subtitle {
  color: #c5a059;
}
.topbar.scrolled .hamburger-bar {
  background-color: #1e293b; /* Dark bar on white scroll header */
}

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: visible; /* Changed to visible so custom datepicker and guest picker dropdowns do not get cut off */
  color: var(--white);
  padding: 0;
  background: var(--traveloka-blue-light); /* Soft Cream/Light Gold background under the Jumbotron slider */
}
.hero-slider {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  z-index: 1;
}
.hero-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 3;
  pointer-events: none;
}
.hero-slider__wrapper {
  display: flex;
  width: 100%;
  height: auto;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slider__slide {
  flex: 0 0 100%;
  width: 100%;
  height: auto;
  position: relative;
  text-decoration: none;
  display: block;
}
.hero-slider__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-slider__img--desktop {
  display: block;
}
.hero-slider__img--mobile {
  display: none;
}
@media (max-width: 768px) {
  .hero-slider__img {
    height: auto !important;
    object-fit: contain !important;
  }
  .hero-slider__img--desktop {
    display: none;
  }
  .hero-slider__img--mobile {
    display: block;
  }
  /* Fallback: if there is no separate mobile image, show desktop image */
  .hero-slider__slide .hero-slider__img--desktop:only-child {
    display: block !important;
  }
}
.hero-slider__wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 5;
  pointer-events: none;
}
.hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 4;
  outline: none;
  user-select: none;
}
.hero-slider__arrow:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: var(--traveloka-yellow);
  transform: translateY(-50%) scale(1.08);
}
.hero-slider__arrow--left {
  left: 24px;
}
.hero-slider__arrow--right {
  right: 24px;
}
.hero-slider__dots {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}
.hero-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.25s ease;
}
.hero-slider__dot:hover {
  background: rgba(255, 255, 255, 0.8);
}
.hero-slider__dot.active {
  background: var(--traveloka-yellow);
  width: 28px;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .hero-slider {
    height: clamp(136px, 42vw, 190px) !important;
    aspect-ratio: auto !important;
    max-height: none !important;
    overflow: hidden;
  }
  .hero-slider__wrapper {
    height: auto !important;
  }
  .hero-slider__slide {
    height: 100% !important;
  }
  .hero-slider__img--desktop:only-child {
    height: 100% !important;
    object-fit: cover !important;
  }
  .hero-slider__arrow {
    display: none !important;
  }
  .hero-slider__dots {
    bottom: 8px !important; /* Posisikan dot indikator di dekat batas bawah karena slider lebih tipis */
  }
}
.hero__inner {
  max-width: 960px;
  margin: 15px auto 0; /* Lowered to give a clean spacing/distance from the jumbotron wave */
  padding: 0 24px 40px;
  text-align: center;
  position: relative;
  z-index: 10;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .hero__inner {
    margin: 15px auto 0; /* Consistent spacing on mobile as well */
    padding: 16px 16px 24px;
  }
}
.hero__eyebrow {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--traveloka-yellow);
  font-weight: 600;
  margin: 0 0 10px;
  opacity: 0.9;
}
.hero__title {
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.35;
  margin: 0 0 12px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
  letter-spacing: -0.01em;
}
.hero__sub {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto 32px;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* ============ SEARCH CONTAINER & TABS (Traveloka layout) ============ */
.search-container {
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}
.search-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.search-tab {
  background: #f1f5f9;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #475569;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.search-tab:hover {
  background: #e2e8f0;
  color: var(--text-dark);
}
.search-tab.active {
  background: var(--traveloka-blue);
  border-color: var(--traveloka-blue);
  color: var(--white);
}

.search-labels {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr 56px;
  gap: 8px;
  padding: 0 16px;
  margin-bottom: 6px;
}
.search-label {
  font-size: 12px;
  color: #475569; /* Dark grey for readability on white background */
  font-weight: 600;
}

.searchbar {
  background: var(--white);
  border-radius: var(--radius-large);
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr auto;
  align-items: center;
  padding: 6px;
  border: 1px solid rgba(197, 160, 89, 0.2); /* Soft Gold border */
  box-shadow: 0 12px 32px rgba(158, 125, 59, 0.12), 0 4px 12px rgba(158, 125, 59, 0.06); /* Premium Gold-tinted shadow */
}
.searchbar__field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  position: relative;
  height: 100%;
}
.searchbar__field:not(:nth-last-child(2))::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background-color: var(--border-color);
}
.searchbar__icon {
  font-size: 20px;
  color: var(--traveloka-blue);
  flex-shrink: 0;
}
.searchbar__field input {
  border: none;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
  background: transparent;
  width: 100%;
}
.searchbar__field input:focus {
  outline: none;
}
.searchbar__field:focus-within {
  background: var(--traveloka-blue-light);
  border-radius: var(--radius-standard);
}
.date-inputs {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
}
.date-inputs input[type="date"] {
  width: auto;
  flex: 1;
}
.date-sep {
  color: var(--text-muted);
  font-weight: 700;
  font-size: 14px;
}
.searchbar__btn {
  background: var(--traveloka-orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-standard);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.15s, transform 0.1s;
  margin: 2px;
}
.searchbar__btn:hover {
  background: var(--traveloka-orange-hover);
}
.searchbar__btn:active {
  transform: scale(0.95);
}
.hero__nights {
  margin: 20px 0 0;
  font-size: 13px;
  color: var(--traveloka-blue-dark); /* Dark Gold */
  font-weight: 700;
  min-height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid rgba(197, 160, 89, 0.22);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(158, 125, 59, 0.05);
}
.hero__nights:empty {
  display: none;
}

/* ============ RESULTS ============ */
.results {
  padding: 40px 24px 24px;
}
.results__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.results__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.results__head h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}
.results__count {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.hotel-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ============ HOTEL CARD (Traveloka Row Design) ============ */
.hotel-card {
  background: var(--white);
  border-radius: var(--radius-standard);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 260px 1fr 220px;
  border: 1px solid var(--border-color);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.hotel-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Gallery column */
.hotel-card__gallery {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hotel-card__media {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--radius-standard);
  overflow: hidden;
  background: #e2e8f0;
}
.hotel-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hotel-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--success-green-light);
  color: var(--success-green);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 4px;
  z-index: 2;
}
.hotel-card__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.hotel-card__thumb {
  aspect-ratio: 16/10;
  border-radius: 4px;
  overflow: hidden;
  background: #cbd5e1;
  position: relative;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.hotel-card__thumb:hover {
  transform: translateY(-1px);
}
.hotel-card__thumb.active {
  border-color: var(--traveloka-blue);
}
.hotel-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hotel-card__thumb--more {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Content column */
.hotel-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hotel-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.hotel-card__title-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hotel-card__shield {
  font-size: 16px;
}
.hotel-card__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
}
.hotel-card__rating-block {
  display: none !important;
}
.hotel-card__score {
  font-size: 14px;
  font-weight: 700;
  color: var(--traveloka-blue);
}
.hotel-card__rating-desc {
  font-size: 12px;
  font-weight: 600;
  color: var(--traveloka-blue);
}
.hotel-card__reviews {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.hotel-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hotel-card__type-badge {
  background: var(--traveloka-blue-light);
  color: var(--traveloka-blue-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}
.hotel-card__stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 11px;
}

.hotel-card__location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.hotel-card__location-pin {
  color: var(--text-muted);
}
.hotel-card__location-sep {
  color: var(--border-color);
}

.hotel-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
}
.hotel-card__tag-best {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(1, 148, 243, 0.4);
  background: rgba(1, 148, 243, 0.05);
  color: var(--traveloka-blue-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 4px;
}
.hotel-card__tag-thumb {
  font-size: 11px;
}
.hotel-card__tag-facility {
  background: var(--bg-gray);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}

/* Pricing Column */
.hotel-card__action-panel {
  padding: 16px;
  border-left: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  background: #fafafa;
}
.hotel-card__promo-login {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--success-green-light);
  color: var(--success-green);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: auto;
}
.hotel-card__promo-icon {
  font-size: 11px;
}
.hotel-card__price-original {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.hotel-card__price-promo {
  font-size: 20px;
  font-weight: 800;
  color: var(--traveloka-orange);
  line-height: 1.1;
}
.hotel-card__price-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 2px;
}
.hotel-card__price-suffix {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}
.hotel-card__price-alert {
  font-size: 10px;
  color: #ef4444;
  font-weight: 700;
  margin: 4px 0 10px;
  text-align: right;
}
.hotel-card__cta {
  background: var(--traveloka-blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius-standard);
  padding: 10px 20px;
  font-weight: 700;
  font-size: 14px;
  width: 100%;
  text-align: center;
  transition: background-color 0.15s;
}
.hotel-card__cta:hover {
  background: var(--traveloka-blue-dark);
}
.hotel-card__cta:disabled {
  background: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
}
.hotel-card__cta:disabled:hover {
  background: #cbd5e1;
}
.hotel-card__quota-warning {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fee2e2;
  color: #ef4444;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  margin-top: 6px;
  align-self: flex-start;
}

/* Room selection section within card */
.hotel-card__rooms {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border-color);
  background: rgba(197, 160, 89, 0.02);
  display: flex;
  flex-direction: column;
}
.hotel-card__rooms-header {
  background: rgba(197, 160, 89, 0.05);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--traveloka-blue-dark);
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hotel-card__room-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid #f1f5f9;
  gap: 16px;
  transition: background 0.2s;
}
.hotel-card__room-row:hover {
  background: rgba(197, 160, 89, 0.01);
}
.hotel-card__room-row:last-child {
  border-bottom: none;
}
.hotel-card__room-left {
  display: flex;
  gap: 16px;
  align-items: center;
  flex: 1;
}
.hotel-card__room-img {
  width: 90px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  background: #e2e8f0;
  cursor: pointer;
  transition: transform 0.2s;
}
.hotel-card__room-img:hover {
  transform: scale(1.04);
}
.hotel-card__room-details {
  flex: 1;
}
.hotel-card__room-name {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}
.hotel-card__room-desc {
  margin: 3px 0 0;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}
.hotel-card__room-right {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.hotel-card__room-price-info {
  text-align: right;
  min-width: 120px;
}
.hotel-card__room-price-original {
  font-size: 11px;
  color: var(--text-muted);
  text-decoration: line-through;
  display: block;
  line-height: 1.1;
}
.hotel-card__room-price-promo {
  font-size: 16px;
  font-weight: 800;
  color: var(--traveloka-orange);
  display: block;
  line-height: 1.2;
}
.hotel-card__room-price-suffix {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
  margin-top: 1px;
}

.empty-state {
  font-size: 14px;
  color: var(--text-muted);
  padding: 48px 0;
  text-align: center;
  grid-column: 1 / -1;
}

/* ============ FOOTER ============ */
.footer {
  background: #1e1a15; /* Even darker charcoal for premium contrast */
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 24px 40px;
  margin-top: 64px;
  border-top: 2px solid var(--traveloka-blue); /* Gold border top */
}
.footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}
.footer__brand-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__brand {
  display: flex;
  align-items: center;
}
.footer__desc {
  font-size: 13.5px;
  line-height: 1.6;
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}
.footer__links-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__links-title {
  color: var(--traveloka-blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
}
.footer__links a:hover {
  color: var(--traveloka-blue);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__copy {
  font-size: 13px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
}
.footer__payment-methods {
  display: flex;
  gap: 12px;
}
.payment-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .footer__main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ============ MODAL ============ */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: flex-start;
  justify-content: center;
  z-index: 100;
  padding: 40px 16px;
  overflow-y: auto;
}
.modal.is-open {
  display: flex;
}
.modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 41, 59, 0.65); /* Slightly darker for better focus */
  backdrop-filter: blur(5px);
  animation: modalOverlayFadeIn 0.35s ease-out;
}
.modal__panel {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-large);
  max-width: 480px;
  width: 100%;
  padding: 32px 28px 28px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-color);
  animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1); /* Elegant iOS-like fluid spring easing */
  margin: auto;
}
@keyframes modalOverlayFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modalSlideUp {
  from {
    transform: scale(0.95) translateY(30px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-gray);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s;
}
.modal__close:hover {
  background: var(--border-color);
  color: var(--text-dark);
}
.modal__eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--traveloka-blue);
  margin: 0 0 6px;
  font-weight: 700;
}
.modal__hotel-name {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--text-dark);
}
.modal__hotel-area {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 20px;
}

.ticket {
  display: flex;
  background: var(--traveloka-blue-light);
  border-radius: var(--radius-standard);
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid rgba(197, 160, 89, 0.15);
}
.ticket__seg {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
}
.ticket__seg--mid {
  align-items: center;
  border-left: 1px dashed rgba(197, 160, 89, 0.25);
  border-right: 1px dashed rgba(197, 160, 89, 0.25);
  flex: 0 0 90px;
  justify-content: center;
}
.ticket__label {
  font-size: 11px;
  color: var(--traveloka-blue-dark);
  font-weight: 600;
}
.ticket__value {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
}

.modal__total {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 20px;
  color: var(--text-dark);
}
.modal__total strong {
  color: var(--traveloka-orange);
  font-size: 18px;
  font-weight: 700;
  margin-left: 4px;
}

.guest-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}
.field span {
  color: var(--text-muted);
}
.field input {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-standard);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color 0.15s;
}
.field input:focus {
  outline: none;
  border-color: var(--traveloka-blue);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

.field--payment {
  border: none;
  padding: 0;
  margin: 0;
}
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.payment-option {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 2px 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-standard);
  padding: 14px;
  cursor: pointer;
  transition: border-color 0.15s, background-color 0.15s;
}
.payment-option:has(input:checked) {
  border-color: var(--traveloka-blue);
  background: var(--traveloka-blue-light);
}
.payment-option input {
  grid-row: 1 / 3;
  align-self: center;
  accent-color: var(--traveloka-blue);
}
.payment-option__title {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 14px;
}
.payment-option__desc {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.modal__step[hidden] {
  display: none;
}
.modal__hint {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 14px 0 20px;
}

.booking-code {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.05em;
  background: var(--traveloka-blue-light);
  color: var(--traveloka-blue-dark);
  border: 1.5px dashed rgba(197, 160, 89, 0.4);
  border-radius: var(--radius-standard);
  padding: 18px;
  text-align: center;
  margin: 8px 0 20px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .topbar {
    background: #faf8f5 !important; /* Premium soft cream background so header elements are clear */
    border-bottom: 1px solid rgba(197, 160, 89, 0.15); /* Light gold border */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  }
  .topbar .brand__logo-img {
    filter: none !important; /* Show original gold logo */
  }
  .topbar .brand__title {
    color: #b39254 !important; /* Gold soft text for LIFE HOTEL */
  }
  .topbar .brand__subtitle {
    color: #8a7a5f !important; /* Muted gold-gray text for GROUP */
  }
  .topbar.scrolled {
    background: #faf8f5 !important;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }
  .topbar.scrolled .brand__logo-img {
    filter: none !important;
  }
  .topbar.scrolled .brand__title {
    color: #b39254 !important;
  }
  .topbar.scrolled .brand__subtitle {
    color: #8a7a5f !important;
  }

  .topbar__inner {
    min-height: 68px;
    padding: 10px 16px;
  }
  .topbar__tag {
    display: none;
  }
  
  .hero {
    padding-top: 100px !important; /* Pushes the jumbotron lower, completely clearing the mobile header */
  }
  .hero__title {
    font-size: clamp(20px, 5.5vw, 24px);
    line-height: 1.3;
    margin-bottom: 8px;
  }
  .hero__sub {
    font-size: 13.5px;
    margin-bottom: 24px;
    line-height: 1.5;
  }
  
  .search-labels {
    display: none;
  }
  .search-tabs {
    justify-content: center;
    margin-bottom: 8px;
  }
  .search-tab {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .searchbar {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
    border-radius: var(--radius-standard);
  }
  .searchbar__field {
    min-height: 52px;
    padding: 12px;
    background: #f8fafc;
    border-radius: var(--radius-standard);
    border: 1px solid var(--border-color);
  }
  .searchbar__field:not(:nth-last-child(2))::after {
    display: none;
  }
  .searchbar__btn {
    width: 100%;
    height: 44px;
    margin: 0;
    border-radius: var(--radius-standard);
  }
  .hero__nights {
    font-size: 12px;
    margin-top: 12px;
  }

  .results {
    padding: 24px 16px;
  }
  .results__head h2 {
    font-size: 18px;
  }

  .hotel-card {
    grid-template-columns: 1fr;
  }
  .hotel-card__gallery {
    padding: 0;
  }
  .hotel-card__media {
    border-radius: var(--radius-standard) var(--radius-standard) 0 0;
    aspect-ratio: 16/9;
  }
  .hotel-card__badge {
    top: 12px;
    left: 12px;
  }
  .hotel-card__thumbs {
    display: none;
  }
  
  .hotel-card__body {
    padding: 16px 16px 12px;
    gap: 6px;
  }
  .hotel-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .hotel-card__rating-block {
    display: none !important;
  }
  
  .hotel-card__action-panel {
    border-left: none;
    border-top: 1px dashed var(--border-color);
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2px;
    background: #fafafa;
  }
  .hotel-card__promo-login {
    display: none;
  }
  .hotel-card__price-label {
    display: none; /* Hide 'Harga mulai dari' label to prevent overlapping */
  }
  .hotel-card__price-original {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
  }
  .hotel-card__price-promo {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
  }
  .hotel-card__price-suffix {
    grid-column: 1;
    grid-row: 3;
    margin: 0;
  }
  .hotel-card__price-alert {
    display: none;
  }
  .hotel-card__cta {
    grid-column: 2;
    grid-row: 1 / span 3;
    width: auto;
    min-width: 120px;
    min-height: 44px;
    align-self: center;
    margin: 0;
  }

  /* Responsive Room Layout inside Cards */
  .hotel-card__room-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px;
  }
  .hotel-card__room-left {
    gap: 12px;
  }
  .hotel-card__room-img {
    width: 70px;
    height: 50px;
  }
  .hotel-card__room-right {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed var(--border-color);
    padding-top: 10px;
    width: 100%;
    gap: 12px;
  }
  .hotel-card__room-price-info {
    text-align: left;
    min-width: unset;
  }
  .hotel-card__room-price-promo {
    font-size: 15px;
  }
}

/* Tap targets follow the 44px mobile accessibility baseline. */
@media (max-width: 768px) {
  .hamburger, .hamburger-btn, .topbar__lang-btn, .btn-member-login,
  .mobile-drawer__close, .hotel-card__cta, .room-book-btn,
  .footer-lang-btn, .footer__link, .footer__links a, .searchbar__field select,
  .searchbar__field input {
    min-height: 44px;
  }
  .hamburger, .hamburger-btn { min-width: 44px; min-height:44px; padding: 10px; }
  .topbar__lang-btn, .btn-member-login { min-width: 44px; }
}

/* Keep empty modal images out of layout until their media is assigned. */
#specialOfferDetailImage[src=""], #lightboxMainImg[src=""] { display: none; }

.login-recovery-btn {
  border: 0;
  background: transparent;
  color: var(--dash-text-muted);
  font: inherit;
  font-size: 12px;
  cursor: pointer;
  padding: 8px;
  text-decoration: underline;
}
.login-recovery-btn:hover { color: var(--dash-primary); }

@media (max-width: 480px) {
  .brand__title {
    font-size: 16px;
  }
  .brand__subtitle {
    font-size: 9px;
    letter-spacing: 1px;
  }
  .brand__logo-wrapper {
    width: 36px;
    height: 36px;
  }
  .modal {
    padding: 32px 14px; /* Side and top margins so the overlay backdrop is visible */
    align-items: flex-start;
  }
  .modal__panel {
    min-height: auto; /* Fit content height dynamically instead of full screen */
    border-radius: 16px; /* Rounded corners for premium pop-up look */
    padding: 36px 20px 24px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  }
  .modal__close {
    top: 12px;
    right: 12px;
  }
}

/* ============ VIRTUAL ASSISTANT CHATBOT ============ */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  font-family: var(--font-body);
}
.chat-widget__toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--traveloka-blue);
  border: none;
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.4);
  color: var(--white);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.chat-widget__toggle:hover {
  transform: scale(1.08);
  background: var(--traveloka-blue-dark);
}
.chat-widget__toggle:active {
  transform: scale(0.95);
}
.chat-widget__pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 2px solid var(--traveloka-blue);
  animation: chatPulse 2s infinite;
  pointer-events: none;
}
@keyframes chatPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
.chat-window {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 360px;
  height: 520px;
  max-height: calc(100vh - 120px);
  background: var(--white);
  border-radius: var(--radius-large);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform-origin: bottom right;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s;
}
.chat-window[hidden] {
  display: none !important;
  transform: scale(0.8);
  opacity: 0;
}
.chat-window__header {
  background: var(--traveloka-blue);
  color: var(--white);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.chat-window__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-window__avatar {
  font-size: 24px;
  background: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-window__title-container {
  display: flex;
  flex-direction: column;
}
.chat-window__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.chat-window__status {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}
.chat-window__status-dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
}
.chat-window__close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  opacity: 0.8;
  transition: opacity 0.15s;
  padding: 4px;
}
.chat-window__close:hover {
  opacity: 1;
}
.chat-window__body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f8fafc;
  scroll-behavior: smooth;
}
.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  word-wrap: break-word;
}
.chat-msg--bot {
  background: var(--white);
  color: var(--text-dark);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f5f9;
}
.chat-msg--bot strong {
  color: var(--traveloka-blue-dark);
}
.chat-msg--user {
  background: var(--traveloka-blue);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 2px;
  box-shadow: 0 2px 4px rgba(197, 160, 89, 0.2);
}
.chat-window__quick-replies {
  padding: 10px 12px;
  background: #f8fafc;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-top: 1px solid #f1f5f9;
}
.chat-reply-btn {
  background: var(--white);
  border: 1.5px solid var(--traveloka-blue);
  color: var(--traveloka-blue-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.chat-reply-btn:hover {
  background: var(--traveloka-blue-light);
  transform: translateY(-1px);
}
.chat-reply-btn:active {
  transform: translateY(0);
}
.chat-window__footer {
  padding: 12px;
  background: var(--white);
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 8px;
}
.chat-window__footer input {
  flex: 1;
  border: 1.5px solid var(--border-color);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 13px;
  outline: none;
  transition: border-color 0.15s;
}
.chat-window__footer input:focus {
  border-color: var(--traveloka-blue);
}
.chat-window__send {
  background: var(--traveloka-blue);
  color: var(--white);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.15s;
}
.chat-window__send:hover {
  background: var(--traveloka-blue-dark);
}
.chat-action-btn {
  display: inline-block;
  background: var(--traveloka-orange);
  color: var(--white);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-standard);
  font-weight: 700;
  font-size: 12px;
  margin-top: 8px;
  text-align: center;
  transition: background 0.15s;
}
.chat-action-btn:hover {
  background: var(--traveloka-orange-hover);
}

/* Mobile responsive for chat window */
@media (max-width: 480px) {
  .chat-widget {
    bottom: 16px;
    right: 16px;
  }
  .chat-window {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    max-height: none;
    border-radius: 0;
    border: none;
    bottom: 0;
  }
  .chat-widget__toggle {
    width: 54px;
    height: 54px;
    font-size: 24px;
  }
}

/* ============ SECTION DESTINASI FAVORIT ============ */
.destinasi {
  padding: 56px 24px;
  background: var(--white);
}
.destinasi__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.destinasi__head {
  text-align: center;
  margin-bottom: 40px;
}
.destinasi__eyebrow {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--traveloka-blue-dark);
  font-weight: 700;
  margin: 0 0 8px;
}
.destinasi__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.destinasi__sub {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

.destinasi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.destinasi-card {
  background: var(--white);
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.destinasi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(197, 160, 89, 0.18);
  border-color: rgba(197, 160, 89, 0.3);
}
.destinasi-card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.destinasi-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.destinasi-card:hover .destinasi-card__media img {
  transform: scale(1.08);
}
.destinasi-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.4) 100%);
}
.destinasi-card__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 8px;
}
.destinasi-card__tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--traveloka-blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.destinasi-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}
.destinasi-card__desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

/* ============ DETAIL DESTINASI SECTION ============ */
.destinasi-detail {
  padding: 120px 24px 56px;
  background: var(--bg-gray);
  min-height: 50vh;
}
.destinasi-detail__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.destinasi-detail__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.btn-back {
  background: transparent;
  border: 1.5px solid var(--traveloka-blue);
  color: var(--traveloka-blue-dark);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13.5px;
  font-weight: 700;
  transition: all 0.2s;
}
.btn-back:hover {
  background: var(--traveloka-blue-light);
  transform: translateX(-4px);
}
.destinasi-detail__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.destinasi-detail__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 3.5vw, 26px);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}
.destinasi-detail__desc {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* responsive media queries */
@media (max-width: 900px) {
  .destinasi__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .destinasi__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .destinasi {
    padding: 40px 16px;
  }
  .destinasi-detail {
    padding: 90px 16px 40px;
  }
}

/* ============ CUSTOM TRAVELOKA DATEPICKER ============ */
.search-container {
  position: relative; /* Ensure picker is positioned relative to the search box container */
}

.date-display-wrapper {
  cursor: pointer;
  width: 100%;
}

.traveloka-datepicker {
  position: absolute;
  top: 105%;
  left: 0;
  right: 0;
  margin: 8px auto;
  width: 100%;
  max-width: 660px;
  background: var(--white);
  border-radius: var(--radius-large);
  border: 1px solid var(--border-color);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  z-index: 1000;
  padding: 20px;
  animation: pickerFadeIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.datepicker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1.5px dashed var(--border-color);
  padding-bottom: 14px;
}

.datepicker-summary {
  display: flex;
  align-items: center;
  gap: 16px;
}

.datepicker-summary__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.summary-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.summary-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.datepicker-summary__sep {
  color: var(--traveloka-blue);
  font-size: 16px;
  font-weight: 700;
}

.datepicker-close-btn {
  background: var(--traveloka-orange);
  color: var(--white);
  border: none;
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-standard);
  transition: background-color 0.15s;
}

.datepicker-close-btn:hover {
  background: var(--traveloka-orange-hover);
}

.datepicker-calendars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.datepicker-month {
  display: flex;
  flex-direction: column;
}

.datepicker-month-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  height: 32px;
}

.datepicker-month-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  font-family: 'Space Grotesk', sans-serif;
}

.datepicker-nav-btn {
  background: none;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-dark);
  transition: all 0.2s;
}

.datepicker-nav-btn:hover {
  background: var(--bg-gray);
  border-color: var(--text-muted);
}

.datepicker-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 6px;
}

.datepicker-weekdays span {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.datepicker-weekdays span.sun {
  color: var(--traveloka-orange);
}

.datepicker-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  row-gap: 2px;
}

.datepicker-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  position: relative;
  transition: all 0.15s ease;
  user-select: none;
  border-radius: 4px;
}

.datepicker-day:hover:not(.disabled) {
  background: var(--bg-gray);
  color: var(--traveloka-blue-dark);
}

.datepicker-day.disabled {
  color: #cbd5e1;
  cursor: not-allowed;
  font-weight: 400;
}

.datepicker-day.empty {
  cursor: default;
}

/* Range highlighting */
.datepicker-day.selected-start {
  background: var(--traveloka-blue) !important;
  color: var(--white) !important;
  border-radius: 4px 0 0 4px !important;
}

.datepicker-day.selected-end {
  background: var(--traveloka-blue) !important;
  color: var(--white) !important;
  border-radius: 0 4px 4px 0 !important;
}

.datepicker-day.selected-start.selected-end {
  border-radius: 4px !important;
}

.datepicker-day.in-range {
  background: var(--traveloka-blue-light) !important;
  color: var(--traveloka-blue-dark) !important;
  border-radius: 0 !important;
}

.datepicker-day.today::after {
  content: "";
  position: absolute;
  bottom: 4px;
  width: 4px;
  height: 4px;
  background: var(--traveloka-orange);
  border-radius: 50%;
}

.datepicker-day.selected-start::after,
.datepicker-day.selected-end::after {
  background: var(--white);
}

.mobile-only-nav {
  visibility: hidden !important;
  pointer-events: none !important;
}
.desktop-only-nav {
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Responsive calendar */
@media (max-width: 768px) {
  .mobile-only-nav {
    visibility: visible !important;
    pointer-events: auto !important;
  }
  .desktop-only-nav {
    visibility: hidden !important;
    pointer-events: none !important;
  }
  .traveloka-datepicker {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
    border: none !important;
    transform: none !important;
    overflow-y: auto !important;
    background: var(--white) !important;
    z-index: 9999999 !important;
    padding: 16px !important;
    margin: 0 !important;
    box-shadow: none !important;
  }
  .datepicker-calendars {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ============ CUSTOM TRAVELOKA GUESTSPICKER ============ */
.traveloka-guestspicker {
  position: absolute;
  top: 105%;
  left: auto;
  right: 0;
  width: 100%;
  max-width: 320px;
  background: var(--white);
  border-radius: var(--radius-large);
  border: 1px solid var(--border-color);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  z-index: 1000;
  padding: 20px;
  animation: pickerFadeIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guestspicker-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}
.guestspicker-row:last-of-type {
  border-bottom: none;
}

.guestspicker-label-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.guestspicker-icon {
  font-size: 20px;
  color: var(--traveloka-blue);
}

.guestspicker-label-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.guestspicker-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.guestspicker-subtitle {
  font-size: 11px;
  color: var(--text-muted);
}

.guestspicker-counter {
  display: flex;
  align-items: center;
  gap: 14px;
}

.counter-btn {
  background: transparent;
  border: 1.5px solid var(--traveloka-blue);
  color: var(--traveloka-blue-dark);
  font-size: 16px;
  font-weight: 700;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}
.counter-btn:hover {
  background: var(--traveloka-blue-light);
}
.counter-btn:active {
  transform: scale(0.92);
}
.counter-btn:disabled {
  border-color: #e2e8f0;
  color: #cbd5e1;
  cursor: not-allowed;
  background: transparent;
}

.counter-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  width: 20px;
  text-align: center;
}

.guestspicker-footer {
  padding-top: 8px;
}

/* Mobile responsive for guests picker */
@media (max-width: 768px) {
  .traveloka-guestspicker {
    position: fixed !important;
    top: 50% !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    width: calc(100vw - 32px) !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    transform: translateY(-50%) !important;
    border-radius: var(--radius-large) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25) !important;
    z-index: 2100 !important;
    padding: 20px !important;
  }
}

/* ============================================================
   OASE REFLEXOLOGY STYLES
   ============================================================ */
.oase-package-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px 24px;
  border-radius: 14px;
  transition: all 0.3s ease;
  gap: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.oase-package-card:hover {
  background: #fdfbf7;
  border-color: rgba(197, 160, 89, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.08);
}
.oase-package-info {
  flex: 1;
}
.oase-package-title {
  color: #1e293b;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 4px;
  font-family: 'Space Grotesk', sans-serif;
}
.oase-package-aroma {
  font-size: 12px;
  color: #c29a4f;
  font-weight: 600;
  margin: 2px 0 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.oase-package-desc {
  color: #475569;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}
.oase-package-action {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  min-width: 200px;
}
.oase-price-display {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.oase-price-val {
  color: #d97706;
  font-size: 20px;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
}
.oase-price-original {
  color: #dc2626;
  font-size: 12px;
  text-decoration: line-through;
  opacity: 0.8;
}
.oase-duration-selector {
  display: flex;
  gap: 6px;
  background: #f1f5f9;
  padding: 4px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.oase-duration-btn {
  background: transparent;
  border: none;
  color: #64748b;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.oase-duration-btn.active {
  background: var(--traveloka-blue);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(1, 148, 243, 0.3);
}
.oase-duration-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

@media (max-width: 768px) {
  .oase-package-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 16px;
  }
  .oase-package-action {
    width: 100%;
    align-items: stretch;
    min-width: unset;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    padding-top: 16px;
  }
  .oase-price-display {
    align-items: flex-start;
    margin-bottom: 4px;
  }
  .oase-duration-selector {
    justify-content: stretch;
  }
  .oase-duration-btn {
    flex: 1;
    text-align: center;
  }
}

/* ============ CITY CARDS ============ */
.city-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 100%;
  padding-bottom: 10px;
}
.city-card {
  position: relative;
  border-radius: 16px;
  aspect-ratio: 4/5;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.city-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}
.city-card__media {
  width: 100%;
  height: 100%;
  position: relative;
}
.city-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.city-card:hover .city-card__media img {
  transform: scale(1.08);
}
.city-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.8) 100%);
  transition: opacity 0.4s ease;
  z-index: 1;
}
.city-card:hover .city-card__overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.9) 100%);
}
.city-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.city-card__name,
.city-card h3.city-card__name,
.about-modal-right-content h3.city-card__name {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff !important;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.city-card__badge,
.city-card span.city-card__badge,
.about-modal-right-content span.city-card__badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff !important;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
  display: inline-block;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
  .city-cards-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 15px;
    scrollbar-width: none;
  }
  .city-cards-grid::-webkit-scrollbar {
    display: none;
  }
  .city-card {
    flex: 0 0 160px;
    aspect-ratio: 4/5;
  }
}

/* Hide Favorite Destinations section globally as requested */
#destinasiSection, #destinationDetailSection {
  display: none !important;
}

/* ============ MEMBER SYSTEM STYLE ============ */
.topbar__right-group {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative !important;
  z-index: 1050 !important;
  pointer-events: auto !important;
}

.btn-member-login {
  background: #c5a059;
  border: none;
  color: #ffffff;
  padding: 8px 20px;
  font-weight: 700;
  font-size: 13.5px;
  border-radius: 30px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.btn-member-login:hover {
  background: #b08d4b;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.35);
  transform: translateY(-1px);
}

.member-session-widget {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}

/* Scrolled version text style contrast fixes */
.topbar.scrolled .member-session-widget {
  border-color: rgba(197, 160, 89, 0.2);
  background: #ffffff;
}

.member-session-info {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dark);
}

.member-session-info strong {
  color: var(--traveloka-blue-dark);
}

.member-session-points {
  font-size: 11px;
  background: var(--traveloka-blue-light);
  color: var(--traveloka-blue-dark);
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.btn-member-logout {
  background: transparent;
  border: none;
  color: #ef4444;
  font-size: 13px;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  font-weight: 700;
}
.btn-member-logout:hover {
  background: rgba(239, 68, 68, 0.08);
  transform: scale(1.05);
}

/* Modal Overlay */
.member-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2500;
  animation: memberBackdropFade 0.22s ease-out;
}

.member-modal-card {
  background: #ffffff;
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: var(--radius-large);
  width: 100%;
  max-width: 440px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  box-sizing: border-box;
  animation: memberCardPop 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes memberBackdropFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes memberCardPop {
  from { transform: scale(0.92) translateY(24px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.member-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
}
.member-modal-close:hover {
  color: var(--text-dark);
}

.member-modal-tabs {
  display: flex;
  background: #f1f5f9;
  padding: 4px;
  border-radius: var(--radius-standard);
  margin-bottom: 24px;
  gap: 4px;
}

.member-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-muted);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.member-tab-btn.active {
  background: #ffffff;
  color: var(--traveloka-blue-dark);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.member-form-panel {
  display: none;
  flex-direction: column;
  gap: 16px;
}
.member-form-panel.active {
  display: flex;
}

.member-modal-header {
  text-align: center;
  margin-bottom: 8px;
}
.member-modal-avatar {
  font-size: 32px;
  display: inline-block;
  margin-bottom: 8px;
}
.member-modal-title {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}
.member-modal-subtitle {
  margin: 4px 0 0;
  font-size: 12.5px;
  color: var(--text-muted);
}

.member-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.member-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.member-field label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.member-field input {
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-standard);
  font-size: 14px;
  outline: none;
  background: #ffffff;
  color: var(--text-dark);
  transition: border-color 0.2s;
}
.member-field input:focus {
  border-color: var(--traveloka-blue);
}

.member-error {
  color: #ef4444;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

/* Discount banner in modal */
.member-discount-banner {
  background: var(--success-green-light);
  border: 1px dashed var(--success-green);
  color: var(--success-green);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 480px) {
  .member-modal-card {
    padding: 24px 16px;
    margin: 16px;
  }
}

/* ============ MY SANTIKA STYLE NAVBAR & DRAWER ============ */
.topbar__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
}
.topbar__nav-link {
  font-size: 14.5px;
  font-weight: 600;
  color: #ffffff; /* Warna putih agar terbaca jelas di atas kapsul gelap transparan */
  text-decoration: none;
  transition: color 0.25s ease;
  position: relative;
  padding: 6px 0;
}
.topbar__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #c5a059; /* Warna emas identitas hotel */
  transition: width 0.25s ease;
}
.topbar__nav-link:hover {
  color: #c5a059; /* Hover warna emas */
}
.topbar__nav-link:hover::after {
  width: 100%;
}

/* Hamburger toggle for mobile */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 15px;
  z-index: 1010;
}
.hamburger-bar {
  width: 100%;
  height: 2px;
  background-color: #1e293b; /* Warna gelap agar terlihat jelas di header putih */
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile sliding menu drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  justify-content: flex-end;
}
.mobile-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-drawer.active .mobile-drawer__backdrop {
  opacity: 1;
}
.mobile-drawer__content {
  position: relative;
  width: 290px;
  height: 100%;
  background: #ffffff;
  box-shadow: -10px 0 30px rgba(15, 23, 42, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}
.mobile-drawer.active .mobile-drawer__content {
  transform: translateX(0);
}
.mobile-drawer__header {
  padding: 20px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-drawer__close {
  background: transparent;
  border: none;
  font-size: 22px;
  color: #64748b;
  cursor: pointer;
  padding: 4px;
}
.mobile-drawer__nav {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
.mobile-drawer__link {
  font-size: 15.5px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  padding: 12px 14px;
  border-radius: var(--radius-standard);
  transition: background 0.2s ease, color 0.2s ease;
}
.mobile-drawer__link:hover {
  background: #f8fafc;
  color: var(--traveloka-blue);
}
.mobile-drawer__footer {
  padding: 20px;
  border-top: 1px solid #f1f5f9;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 768px) {
  .topbar {
    padding: 10px 0;
  }
  .topbar__capsule {
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    gap: 12px;
    position: relative !important;
    z-index: 1050 !important;
    pointer-events: auto !important;
  }
  .topbar__nav {
    display: none;
  }
  .hamburger-btn {
    display: flex;
    position: relative !important;
    z-index: 1050 !important;
    pointer-events: auto !important;
  }
}

/* ============================================================
   ABOUT US PAGE VIEW (SEO & UI/UX STYLING)
   ============================================================ */
.about-page-view {
  padding: 80px 24px;
  background: var(--bg-light);
  border-top: 1px solid var(--border-color);
  font-family: inherit;
}

.about-container {
  max-width: 1140px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: flex-start;
}

/* Left Column Styling */
.about-left {
  display: flex;
  flex-direction: column;
}

.about-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(197, 160, 89, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.about-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin: 0 0 20px 0;
}

.about-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 20px 0;
}

.about-text strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Stats Counter Grid */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.about-stat-card {
  background: #f8fafc;
  border: 1px solid rgba(197, 160, 89, 0.1);
  border-radius: var(--radius-standard);
  padding: 20px 10px;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.about-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border-color: var(--primary);
}

.about-stat-number {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.about-stat-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Right Column (Pillars) Styling */
.about-right {
  display: flex;
  flex-direction: column;
}

.about-sub-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 24px 0;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-pillar-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-standard);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.about-pillar-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
  border-color: rgba(197, 160, 89, 0.3);
  background: #ffffff;
}

.about-pillar-icon {
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(197, 160, 89, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
}

.about-pillar-content h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 6px 0;
}

.about-pillar-content p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .about-page-view {
    padding: 60px 16px;
  }
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .about-title {
    font-size: 22px;
  }
}

/* ============ ABOUT US PAGE STYLING (PREMIUM / LUXURY RESTYLE) ============ */
.about-filter-btn {
  background: transparent;
  color: #64748b;
  border: none;
  cursor: pointer;
  outline: none;
}
.about-filter-btn.active {
  background: #ffffff;
  color: var(--traveloka-blue-dark) !important;
  box-shadow: 0 4px 10px rgba(15,23,42,0.06);
}
.about-filter-btn:hover:not(.active) {
  color: #0f172a;
}
.about-collection-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}
.about-collection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(15,23,42,0.08);
  border-color: #cbd5e1;
}
.timeline-scroll-wrap::-webkit-scrollbar {
  height: 6px;
}
.timeline-scroll-wrap::-webkit-scrollbar-track {
  background: #f1f5f9;
}
.timeline-scroll-wrap::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}
.timeline-scroll-wrap::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

@media (max-width: 900px) {
  #aboutHotelCollectionGrid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  #aboutPromisesGridEl {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  #aboutValuesGridEl {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 768px) {
  .about-hero {
    height: 60vh !important;
  }
  #aboutStatsGridEl {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 576px) {
  #aboutHotelCollectionGrid {
    grid-template-columns: 1fr !important;
  }
  #aboutPromisesGridEl {
    grid-template-columns: 1fr !important;
  }
  #aboutStatsGridEl {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  #aboutValuesGridEl {
    grid-template-columns: 1fr !important;
  }
}

/* Meeting & Event Spaces styles */
.layout-table-desktop {
  display: block;
}
.layout-list-mobile {
  display: none !important;
}

@media (max-width: 600px) {
  .layout-table-desktop {
    display: none !important;
  }
  .layout-list-mobile {
    display: flex !important;
  }
}

/* ============================================================
   SPECIAL OFFERS STYLES
   ============================================================ */
.promo-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #eef2f6;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.promo-card__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #f1f5f9;
  overflow: hidden;
  position: relative;
}

.promo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-card:hover .promo-card__media img {
  transform: scale(1.03);
}

.promo-card__body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.promo-card__title {
  margin: 0 0 6px;
  font-family: 'Space Grotesk', var(--font-body), sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
}

.promo-card__desc {
  margin: 0;
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.promo-card__link-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  padding: 4px 0;
  border: none;
  background: none;
  cursor: pointer;
  margin-top: auto;
}

.promo-card__link-text {
  font-size: 14px;
  font-weight: 700;
  color: #195b6a;
  transition: color 0.2s ease;
}

.promo-card__link-icon {
  color: #195b6a;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.promo-card:hover .promo-card__link-icon {
  transform: translateX(4px);
}

.promo-card:hover .promo-card__link-text,
.promo-card:hover .promo-card__link-icon {
  color: #0f3d48;
}


