/* QBH Travels — shared inner pages (matches index luxury dark theme) */
@import url("qbh-top-bar.css");
@import url("qbh-responsive.css");
@import url("qbh-layout-width.css");
@import url("qbh-mobile.css");
@import url("qbh-dialog.css");
@import url("qbh-filter-sheet.css");

/* ── Form inputs ── */
.qbh-form-input {
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 14px;
  font-family: inherit;
  width: 100%;
  padding: 0;
  min-width: 0;
}
.qbh-form-input::placeholder { color: #4b5563; }
.qbh-form-input::-webkit-calendar-picker-indicator { filter: invert(1) opacity(0.4); cursor: pointer; }
.qbh-form-input-wrap:focus-within { border-color: rgba(248,196,0,0.5) !important; }
.qbh-form-input.error { color: #f87171; }
.qbh-person-hidden-input { display: none; }
.qbh-upload-zone { cursor: pointer; transition: border-color 0.2s; }
.qbh-upload-zone:hover { border-color: rgba(248,196,0,0.5); }
.qbh-upload-zone.has-file { border-color: rgba(248,196,0,0.6); }
.qbh-upload-filename { font-size: 13px; color: #F8C400; margin-top: 6px; font-weight: 600; }

/* ── Itinerary timeline ── */
.qbh-itinerary { display: flex; flex-direction: column; gap: 0; }
.qbh-itinerary-item { display: flex; gap: 16px; }
.qbh-itinerary-rail { display: flex; flex-direction: column; align-items: center; width: 36px; flex-shrink: 0; }
.qbh-itinerary-day-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--qbh-gold, #F8C400); color: #000;
  font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; z-index: 1;
}
.qbh-itinerary-line {
  width: 2px; flex: 1; min-height: 24px;
  background: rgba(248,196,0,0.2);
  margin: 4px 0;
}
.qbh-itinerary-item:last-child .qbh-itinerary-line { display: none; }
.qbh-itinerary-card { padding-bottom: 24px; flex: 1; min-width: 0; }
.qbh-itinerary-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.qbh-itinerary-day-badge {
  font-size: 11px; font-weight: 700; color: var(--qbh-gold, #F8C400);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.qbh-itinerary-card h3 { margin: 0; font-size: 15px; font-weight: 700; color: #fff; }
.qbh-itinerary-card p { margin: 0; font-size: 14px; color: #a0a0a0; line-height: 1.6; }

/* ── Offer price sidebar ── */
.qbh-offer-price-main { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; flex-wrap: wrap; }
.qbh-offer-price-from { font-size: 28px; font-weight: 800; color: var(--qbh-gold, #F8C400); }
.qbh-offer-price-alt { font-size: 18px; font-weight: 600; color: #a0a0a0; }
.qbh-offer-price-unit { font-size: 13px; color: #a0a0a0; font-weight: 500; }
.qbh-offer-price-note { font-size: 12px; color: #6b7280; margin: 4px 0 16px; }
.qbh-offer-meta-rows { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.qbh-offer-meta-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; font-size: 13px; }
.qbh-offer-meta-label { color: #6b7280; font-weight: 500; flex-shrink: 0; }
.qbh-offer-meta-value { color: #e5e7eb; font-weight: 600; text-align: right; }
.qbh-offer-meta-value.is-limited { color: #fbbf24; }
.qbh-offer-meta-warning .qbh-offer-meta-value { color: #f87171; }

:root {
  --qbh-bg: #0a0a0a;
  --qbh-bg-elevated: #111111;
  --qbh-gold: #F8C400;
  --qbh-gold-dim: rgba(248, 196, 0, 0.15);
  --qbh-text: #ffffff;
  --qbh-muted: #a0a0a0;
  --qbh-border: rgba(255, 255, 255, 0.1);
  --qbh-radius: 10px;
  --qbh-font-head: "Cinzel", "Inter", serif;
  --qbh-font-body: "Montserrat", "Inter", sans-serif;
  --qbh-max: 1280px;
  --qbh-content: 900px;
}

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

html {
  scroll-behavior: smooth;
}

body.qbh-page {
  margin: 0;
  min-height: 100vh;
  background: var(--qbh-bg);
  color: var(--qbh-text);
  font-family: var(--qbh-font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
}

body.qbh-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(248, 196, 0, 0.08), transparent);
  pointer-events: none;
  z-index: -1;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
.qbh-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--qbh-border);
}

.qbh-header.is-scrolled {
  background: #0a0a0a;
  backdrop-filter: none;
}

.qbh-header-inner {
  max-width: var(--qbh-max);
  margin: 0 auto;
  padding: 1rem var(--qbh-gutter, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.qbh-logo {
  font-family: var(--qbh-font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--qbh-gold);
  letter-spacing: -0.02em;
}

.qbh-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.qbh-footer-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.qbh-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.qbh-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.qbh-nav a:hover,
.qbh-nav .qbh-nav-dd-toggle:hover {
  color: var(--qbh-gold);
}

.qbh-nav-dd {
  position: relative;
}

.qbh-nav-dd-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
}

.qbh-nav-dd-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0.5rem);
  min-width: 200px;
  background: #111;
  border: 1px solid var(--qbh-border);
  border-radius: var(--qbh-radius);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.qbh-nav-dd:hover .qbh-nav-dd-menu,
.qbh-nav-dd.is-open .qbh-nav-dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0.25rem);
}

.qbh-nav-dd-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  color: var(--qbh-muted);
}

.qbh-nav-dd-menu a:hover {
  background: var(--qbh-gold-dim);
  color: var(--qbh-gold);
}

.qbh-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.qbh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s;
  font-family: inherit;
}

.qbh-btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--qbh-border);
  color: var(--qbh-text);
}

.qbh-btn-ghost:hover {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.1);
}

.qbh-btn-gold {
  background: linear-gradient(135deg, rgba(248, 196, 0, 0.25), transparent);
  border-color: var(--qbh-gold);
  color: var(--qbh-text);
  box-shadow: 0 0 15px rgba(248, 196, 0, 0.15);
}

.qbh-btn-gold:hover {
  background: rgba(248, 196, 0, 0.2);
}

.qbh-btn-primary {
  background: var(--qbh-gold);
  color: #0a0a0a;
  border-color: var(--qbh-gold);
}

.qbh-btn-primary:hover {
  filter: brightness(1.1);
}

.qbh-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--qbh-border);
  color: var(--qbh-text);
  padding: 0.5rem;
  border-radius: 8px;
  cursor: pointer;
}

/* Mobile nav */
.qbh-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.qbh-mobile-drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.qbh-mobile-panel {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 90vw);
  background: #0d0d0d;
  border-right: 1px solid var(--qbh-border);
  padding: 2rem 1.5rem;
  padding-top: 3.25rem;
  transform: translateX(-100%);
  transition: transform 0.3s;
  overflow-y: auto;
  color: #fff;
}

.qbh-mobile-drawer.is-open .qbh-mobile-panel {
  transform: translateX(0);
}

.qbh-mobile-panel a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--qbh-border);
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
}

.qbh-mobile-panel > a:hover,
.qbh-mobile-panel .qbh-mobile-nav-group a:hover {
  color: var(--qbh-gold);
}

.qbh-mobile-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--qbh-text);
  cursor: pointer;
  font-size: 1.5rem;
}

.qbh-mobile-nav-group {
  border-bottom: 1px solid var(--qbh-border);
}

.qbh-mobile-drawer .qbh-mobile-nav-group summary.qbh-mobile-nav-label {
  padding: 0.85rem 0;
  cursor: pointer;
  list-style: none;
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  margin: 0;
}

.qbh-mobile-nav-group summary::-webkit-details-marker { display: none; }

.qbh-mobile-nav-group a {
  border-bottom: none !important;
  color: var(--qbh-muted);
  font-size: 0.9rem;
}

.qbh-mobile-book-btn {
  display: block;
  margin-top: 1.5rem;
  padding: 0.85rem 1rem !important;
  background: var(--qbh-gold);
  color: #0a0a0a !important;
  font-weight: 700;
  border-radius: 8px;
  text-align: center;
  border-bottom: none !important;
}

.qbh-mobile-nav-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--qbh-muted);
  padding: 0.85rem 0;
  display: block;
}

/* Offer hotel cards */
.qbh-offer-hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.qbh-offer-hotel-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--qbh-border);
  border-radius: var(--qbh-radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.qbh-offer-hotel-card:hover { border-color: rgba(248,196,0,0.35); }

.qbh-offer-hotel-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.qbh-offer-hotel-body {
  padding: 1rem;
}

/* Admin */
.qbh-admin-wrap {
  display: flex;
  min-height: calc(100vh - 120px);
}

.qbh-admin-sidebar {
  width: 220px;
  flex-shrink: 0;
  background: #0d0d0d;
  border-right: 1px solid var(--qbh-border);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.qbh-admin-sidebar a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--qbh-muted);
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.qbh-admin-sidebar a:hover,
.qbh-admin-sidebar a.active {
  background: rgba(248,196,0,0.1);
  color: var(--qbh-gold);
}

.qbh-admin-content {
  flex: 1;
  padding: 2rem;
  overflow: auto;
}

.qbh-admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0d0d0d;
  border-bottom: 1px solid var(--qbh-border);
  padding: 1rem 1.5rem;
}

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

.qbh-stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--qbh-border);
  border-radius: var(--qbh-radius);
  padding: 1.25rem;
}

.qbh-stat-card strong {
  display: block;
  font-size: 2rem;
  font-family: var(--qbh-font-head);
  color: var(--qbh-gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.qbh-stat-card span {
  font-size: 0.8rem;
  color: var(--qbh-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qbh-admin-table-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--qbh-border);
  border-radius: var(--qbh-radius);
  overflow: hidden;
}

.qbh-admin-table-head {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--qbh-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qbh-admin-table-head h3 {
  font-family: var(--qbh-font-head);
  font-size: 1rem;
  color: var(--qbh-gold);
}

.qbh-admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.qbh-admin-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--qbh-muted);
  border-bottom: 1px solid var(--qbh-border);
  background: rgba(255,255,255,0.02);
}

.qbh-admin-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: middle;
}

.qbh-admin-table tr:last-child td { border-bottom: none; }

.qbh-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.qbh-badge-completed { background: rgba(34,197,94,0.15); color: #22c55e; }
.qbh-badge-started   { background: rgba(248,196,0,0.15);  color: #f8c400; }
.qbh-badge-abandoned { background: rgba(239,68,68,0.15);  color: #ef4444; }
.qbh-badge-pending   { background: rgba(148,163,184,0.15); color: #94a3b8; }
.qbh-badge-confirmed { background: rgba(34,197,94,0.15); color: #22c55e; }

.qbh-admin-search {
  padding: 0.5rem 0.85rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--qbh-border);
  border-radius: 8px;
  color: var(--qbh-text);
  font-size: 0.875rem;
  width: 220px;
}

.qbh-admin-search:focus {
  outline: none;
  border-color: var(--qbh-gold);
}

.qbh-admin-section { display: none; }
.qbh-admin-section.is-active { display: block; }

.qbh-doc-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(248,196,0,0.1);
  border: 1px solid rgba(248,196,0,0.25);
  color: var(--qbh-gold);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  cursor: pointer;
}

/* Main */
.qbh-main {
  min-height: 60vh;
}

.qbh-container {
  max-width: var(--qbh-max);
  margin: 0 auto;
  padding: 0 var(--qbh-gutter, 1.5rem);
}

.qbh-container-narrow {
  max-width: var(--qbh-content);
  margin: 0 auto;
  padding: 0 var(--qbh-gutter, 1.5rem);
}

/* Hero band */
.qbh-page-hero {
  padding: 4rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid var(--qbh-border);
}

.qbh-page-hero-inner {
  text-align: center;
}

.qbh-page-hero h1,
.qbh-page-hero .qbh-eyebrow,
.qbh-page-hero p {
  text-align: center;
}

.qbh-page-hero h1 {
  font-family: var(--qbh-font-head);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0 auto 0.75rem;
  max-width: 48rem;
  text-wrap: balance;
}

.qbh-page-hero p {
  color: var(--qbh-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.qbh-eyebrow {
  color: var(--qbh-gold);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* Sections */
.qbh-section {
  padding: 4rem 0;
}

.qbh-section-title {
  font-family: var(--qbh-font-head);
  font-size: 1.75rem;
  color: var(--qbh-gold);
  margin: 0 0 2rem;
  text-align: center;
}

/* Cards grid */
.qbh-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.qbh-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--qbh-border);
  border-radius: var(--qbh-radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.qbh-card:hover {
  border-color: rgba(248, 196, 0, 0.35);
  transform: translateY(-2px);
}

.qbh-card-img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
  background: #1a1a1a;
}

.qbh-card-body {
  padding: 1.25rem;
}

.qbh-card-body h3 {
  font-family: var(--qbh-font-head);
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.qbh-card-body p {
  color: var(--qbh-muted);
  font-size: 0.9rem;
  margin: 0 0 1rem;
}

/* Forms */
.qbh-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.qbh-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.qbh-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--qbh-muted);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qbh-field input,
.qbh-field select,
.qbh-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--qbh-border);
  border-radius: 8px;
  color: var(--qbh-text);
  font-family: inherit;
  font-size: 0.95rem;
}

.qbh-field select option {
  background: var(--qbh-bg-elevated);
  color: var(--qbh-text);
}

.qbh-field input:focus,
.qbh-field select:focus,
.qbh-field textarea:focus {
  outline: none;
  border-color: var(--qbh-gold);
  box-shadow: 0 0 0 3px var(--qbh-gold-dim);
}

.qbh-field input.error,
.qbh-field select.error {
  border-color: #ef4444;
}

.qbh-field-error {
  color: #f87171;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

/* Booking steps */
.qbh-steps {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.qbh-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--qbh-muted);
}

.qbh-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--qbh-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.qbh-step.is-active .qbh-step-num,
.qbh-step.is-done .qbh-step-num {
  border-color: var(--qbh-gold);
  background: var(--qbh-gold-dim);
  color: var(--qbh-gold);
}

.qbh-step.is-active {
  color: var(--qbh-text);
}

.qbh-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--qbh-border);
  border-radius: var(--qbh-radius);
  padding: 2rem;
}

.qbh-traveler-block {
  border: 1px dashed var(--qbh-border);
  border-radius: var(--qbh-radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.qbh-traveler-block h4 {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--qbh-gold);
}

/* Checkout */
.qbh-checkout-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.qbh-checkout-option {
  padding: 1.5rem;
  border: 2px solid var(--qbh-border);
  border-radius: var(--qbh-radius);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s;
}

.qbh-checkout-option.is-selected {
  border-color: var(--qbh-gold);
  background: var(--qbh-gold-dim);
}

.qbh-order-id {
  font-family: monospace;
  font-size: 1.25rem;
  color: var(--qbh-gold);
  letter-spacing: 0.1em;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  text-align: center;
  margin: 1rem 0;
}

/* Prose (blogs, legal, guides) */
.qbh-prose h2 {
  font-family: var(--qbh-font-head);
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  color: var(--qbh-text);
}

.qbh-prose h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.75rem;
  color: rgba(255, 255, 255, 0.95);
}

.qbh-prose p,
.qbh-prose li {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}

.qbh-prose ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Footer */
.qbh-footer {
  background: #080808;
  border-top: 1px solid var(--qbh-border);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.qbh-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.qbh-footer h4 {
  font-size: 0.9rem;
  margin: 0 0 1rem;
}

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

.qbh-footer li {
  margin-bottom: 0.5rem;
}

.qbh-footer a {
  color: var(--qbh-muted);
  font-size: 0.875rem;
}

.qbh-footer a:hover {
  color: var(--qbh-gold);
}

.qbh-footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--qbh-border);
  color: var(--qbh-muted);
  font-size: 0.8rem;
}

.qbh-site-footer {
  width: 100%;
  margin-top: 0;
}

.qbh-footer-tagline {
  color: var(--qbh-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 280px;
  margin: 1rem 0 1.25rem;
}

.qbh-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--qbh-border);
  color: #fff;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.qbh-social-icon:hover {
  background: var(--qbh-gold);
  border-color: var(--qbh-gold);
  color: #0a0a0a;
}

.qbh-social-wa:hover {
  color: #0a0a0a;
}

.qbh-footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--qbh-muted);
}

.qbh-footer-contact-row iconify-icon {
  color: var(--qbh-gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.qbh-footer-contact-row a:hover {
  color: #fff;
}

.qbh-footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--qbh-border);
  color: var(--qbh-muted);
  font-size: 0.8rem;
}

.qbh-footer-meta-links a {
  color: var(--qbh-muted);
}

.qbh-footer-meta-links a:hover {
  color: #fff;
}

.qbh-footer-brand {
  text-align: center;
  padding: 2.5rem 0 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
  user-select: none;
}

.qbh-footer-brand span {
  font-family: var(--qbh-font-head);
  font-size: clamp(3rem, 12vw, 9rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: #fff;
  white-space: nowrap;
}

.qbh-wa-mobile-only {
  display: none;
}

/* Admin */
.qbh-admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}

.qbh-admin-sidebar {
  background: #050505;
  border-right: 1px solid var(--qbh-border);
  padding: 1.5rem;
}

.qbh-admin-sidebar a {
  display: block;
  padding: 0.65rem 0;
  color: var(--qbh-muted);
  font-size: 0.9rem;
}

.qbh-admin-sidebar a.active,
.qbh-admin-sidebar a:hover {
  color: var(--qbh-gold);
}

.qbh-admin-main {
  padding: 2rem;
}

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

.qbh-stat {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--qbh-border);
  border-radius: var(--qbh-radius);
}

.qbh-stat strong {
  display: block;
  font-size: 1.75rem;
  color: var(--qbh-gold);
}

.qbh-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.qbh-table th,
.qbh-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--qbh-border);
}

.qbh-table th {
  color: var(--qbh-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.qbh-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.qbh-badge-pending {
  background: rgba(234, 179, 8, 0.2);
  color: #fbbf24;
}

.qbh-badge-confirmed {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.qbh-login-box {
  max-width: 400px;
  margin: 6rem auto;
  padding: 2rem;
}

@media (max-width: 1024px) {
  .qbh-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .qbh-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .qbh-admin-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .qbh-nav,
  .qbh-header-desktop-actions {
    display: none !important;
  }
  .qbh-grid-2,
  .qbh-grid-3,
  .qbh-form-row,
  .qbh-checkout-options {
    grid-template-columns: 1fr;
  }
  .qbh-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Image Watermarks --- */
.qbh-watermark-wrap {
  position: relative;
  overflow: hidden;
}
.qbh-watermark-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 5;
  opacity: 0.6;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  text-align: center;
  width: 100%;
}

.qbh-watermark-text strong {
  font-family: var(--qbh-font-head, 'Cinzel', serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.9);
}

.qbh-watermark-text span {
  font-family: var(--qbh-font-head, 'Cinzel', serif);
  font-size: clamp(0.75rem, 1.5vw, 1.5rem);
  letter-spacing: 0.3em;
  margin-top: 0.2rem;
  font-weight: 600;
}

.qbh-watermark-text small {
  font-family: var(--qbh-font-body, 'Montserrat', sans-serif);
  font-size: clamp(0.5rem, 1vw, 0.85rem);
  letter-spacing: 0.1em;
  margin-top: 0.15rem;
  color: var(--qbh-gold, #F8C400);
  font-weight: 500;
}

.qbh-hotel-gallery-thumb .qbh-watermark-text strong { font-size: 1.25rem; }
.qbh-hotel-gallery-thumb .qbh-watermark-text span { font-size: 0.45rem; margin-top: 0; }
.qbh-hotel-gallery-thumb .qbh-watermark-text small { font-size: 0.35rem; margin-top: 0; }

.qbh-room-img-wrap .qbh-watermark-text strong { font-size: 1.75rem; }
.qbh-room-img-wrap .qbh-watermark-text span { font-size: 0.6rem; }
.qbh-room-img-wrap .qbh-watermark-text small { font-size: 0.45rem; margin-top: 0.05rem; }

.qbh-hotel-listing-img-wrap .qbh-watermark-text strong { font-size: 1.75rem; }
.qbh-hotel-listing-img-wrap .qbh-watermark-text span { font-size: 0.6rem; }
.qbh-hotel-listing-img-wrap .qbh-watermark-text small { font-size: 0.45rem; margin-top: 0.05rem; }

/* Fix wrapper for hotel listing */
.qbh-hotel-listing-img-wrap {
  width: 220px;
  flex-shrink: 0;
  display: flex;
}
.qbh-hotel-listing-img-wrap .qbh-hotel-listing-img {
  width: 100%;
}
@media (max-width: 900px) {
  .qbh-hotel-listing-img-wrap {
    width: 100%;
  }
}

/* Fix wrapper for room cards */
.qbh-room-img-wrap {
  width: 140px;
  height: 100px;
  border-radius: 8px;
  display: flex;
}
.qbh-room-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 960px) {
  .qbh-room-img-wrap {
    width: 100%;
    height: 160px;
  }
}

/* Contact details remain selectable; copy actions are intentionally small and touch-friendly. */
.qbh-contact-copy-line {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  flex-wrap: wrap;
  max-width: 100%;
}
.qbh-copy-contact {
  border: 1px solid rgba(248, 196, 0, .45);
  border-radius: 999px;
  background: rgba(248, 196, 0, .08);
  color: var(--qbh-gold, #f8c400);
  font: inherit;
  font-size: .68rem;
  line-height: 1;
  padding: .35rem .55rem;
  cursor: pointer;
  white-space: nowrap;
}
.qbh-copy-contact:hover,
.qbh-copy-contact:focus-visible {
  background: var(--qbh-gold, #f8c400);
  color: #0a0a0a;
  outline: none;
}


/* Services page — Visa Processing FAQ accordion */
.qbh-visa-faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 58rem;
  margin: 0 auto;
}

.qbh-visa-faq-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.85rem;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.96), rgba(12, 12, 12, 0.96));
  overflow: hidden;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.qbh-visa-faq-item:hover,
.qbh-visa-faq-item[open] {
  border-color: rgba(248, 196, 0, 0.65);
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.18);
}

.qbh-visa-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.75rem;
  padding: 1rem 1.25rem;
  color: #fff;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  line-height: 1.35;
}

.qbh-visa-faq-question::-webkit-details-marker { display: none; }

.qbh-visa-faq-question::before {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  flex: 0 0 0.35rem;
  border-radius: 999px;
  background: #f8c400;
  box-shadow: 0 0 0.65rem rgba(248, 196, 0, 0.55);
}

.qbh-visa-faq-question > span:first-child { flex: 1; }

.qbh-visa-faq-icon {
  display: inline-grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 1.75rem;
  border: 1px solid rgba(248, 196, 0, 0.55);
  border-radius: 50%;
  color: #f8c400;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.qbh-visa-faq-item[open] .qbh-visa-faq-icon {
  transform: rotate(45deg);
  background: #f8c400;
  color: #0a0a0a;
}

.qbh-visa-faq-answer {
  margin: 0 1.25rem 1.15rem 2rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #b9b9b9;
  font-size: 0.95rem;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .qbh-visa-faq-list { gap: 0.6rem; }
  .qbh-visa-faq-question {
    min-height: 3.5rem;
    padding: 0.9rem 0.95rem;
    font-size: 0.9rem;
  }
  .qbh-visa-faq-answer {
    margin: 0 0.95rem 1rem 1.8rem;
    font-size: 0.88rem;
    line-height: 1.65;
  }
}


/* Services page — separate and emphasize Visa Processing FAQs */
.qbh-services-faq-section {
  margin-top: clamp(4rem, 8vw, 7rem) !important;
  text-align: center;
}

.qbh-services-faq-section > h2 {
  margin-bottom: 1.75rem !important;
  color: #fff;
  letter-spacing: 0.01em;
}

.qbh-services-faq-section .qbh-visa-faq-list {
  text-align: left;
}

@media (max-width: 768px) {
  .qbh-services-faq-section {
    margin-top: 4rem !important;
  }

  .qbh-services-faq-section > h2 {
    margin-bottom: 1.35rem !important;
  }
}
