/* =========================================================
       7) OVERLAYS / MODALS
    ========================================================= */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 10px;
  z-index: 9999;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.08s linear;
  will-change: opacity;
}

.overlay.show {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: #0b0b0b;
  width: min(980px, 100%);
  border-radius: 14px;
  border: 1px solid rgba(200, 171, 79, 0.6);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
  display: flex;
  flex-direction: column;
  transform: translateY(4px) scale(0.997);
  opacity: 0.98;
  transition:
    transform 0.08s ease-out,
    opacity 0.08s linear;
  will-change: transform, opacity;
  contain: layout style paint;
  backface-visibility: hidden;
}

.overlay.show .modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

body.modal-open {
  overflow: hidden;
}

body.lang-switching,
body.lang-switching * {
  scroll-behavior: auto !important;
}

body.lang-switching *,
body.lang-switching *::before,
body.lang-switching *::after {
  transition: none !important;
  animation: none !important;
}

#dateModal .modal {
  width: min(980px, 100%);
  height: 88vh;
  border-radius: 12px;
}

#customerModal .modal {
  height: 90vh;
  width: 100%;
  border-radius: 12px;
}
#summaryModal .modal {
  width: 100%;
  border-radius: 12px;
}

.modalTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: #050505;
  border-bottom: 1px solid var(--border);
  flex: 0 0 auto;
}

.modalTop .title {
  font-weight: 900;
  color: var(--gold);
  font-size: 24px;
}

.iconRow {
  display: flex;
  gap: 12px;
  align-items: center;
}

.iconBtn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0c0c0c;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 20px;
  transition: none;
}

/* Booking flow step indicator */
#dateModal .modalTop,
#customerModal .modalTop,
#summaryModal .modalTop {
  flex-wrap: wrap;
  row-gap: 10px;
}

.bookingSteps {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding-top: 2px;
}

.bookingStepCircle {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  border: 1px solid rgba(200, 171, 79, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.bookingStepCircle.is-done {
  background: rgba(200, 171, 79, 0.18);
  border-color: rgba(200, 171, 79, 0.44);
  color: #f8e7ab;
}

.bookingStepCircle.is-active {
  background: linear-gradient(180deg, rgba(241, 230, 188, 0.98), rgba(200, 171, 79, 0.9));
  border-color: rgba(255, 245, 204, 0.9);
  color: #111;
  box-shadow: 0 0 0 2px rgba(200, 171, 79, 0.12), 0 8px 18px rgba(0, 0, 0, 0.22);
}

.bookingStepConnector.is-done {
  background: linear-gradient(90deg, rgba(200, 171, 79, 0.9), rgba(200, 171, 79, 0.4));
}

.confirmModalCard .bookingSteps {
  max-width: 360px;
  margin: 0 auto 18px;
}

@media (max-width: 640px) {

  .bookingStepCircle {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

}

.iconBtn:active {
  transform: none;
}

.modalBody {
  flex: 1 1 auto;
  padding: 16px;

  will-change: auto;
}

.modalFooter {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #070707;
  align-items: stretch;
  position: sticky;
  bottom: 0;
  z-index: 30;
  flex-shrink: 0;
}

.footerBtns {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.4fr;
  align-items: center;
  width: 100%;
  gap: 14px;
}

.backBtn {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(200, 171, 79, 0.75);
  color: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 900;
  min-height: 54px;
  font-size: 18px;
  transition: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}

.backBtn:active {
  transform: none;
}

.sendBtn {
  width: 100%;
  background: var(--gold);
  border: none;
  color: #111;
  padding: 14px 16px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 900;
  min-height: 54px;
  font-size: 18px;
  transition: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}

.sendBtn:active {
  transform: none;
}

@keyframes continueGlow {
  0% {
    box-shadow: 0 0 0 rgba(200, 171, 79, 0);
  }
  40% {
    box-shadow: 0 0 18px rgba(200, 171, 79, 0.45);
  }
  100% {
    box-shadow: 0 0 0 rgba(200, 171, 79, 0);
  }
}

.sendBtn.highlight {
  animation: continueGlow 0.9s ease;
}

#resetBtn {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 17px;
  background: #2a2a2a;
  border: 1px solid #444;
  color: #ddd;
  transition: none;
}

#resetBtn:hover {
  background: #333;
  border-color: #666;
  color: #fff;
}

/* Keep Customer Details footer buttons uniform across all languages */
#customerModal .footerBtns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

#customerModal .footerBtns .backBtn,
#customerModal .footerBtns #resetBtn,
#customerModal .footerBtns .sendBtn {
  min-height: 60px;
  height: 100%;
  padding: 12px 10px;
  line-height: 1.2;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

#customerModal .footerBtns #resetBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#nextToCustomerBtn {
  display: none;
}

/* =========================================================
       8) DATE / CALENDAR
    ========================================================= */
#dateModal .modalBody {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  padding: 8px;
}

#dateModal .modalFooter {
  border-top: 1px solid rgba(200, 171, 79, 0.16);
}

.dateTopBlock {
  flex: 0 0 auto;
}

.dateBottomBlock {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.calendarHeader {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin: 4px 0 8px;
}

.monthTitle {
  text-align: left;
}

.monthTitle .month {
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.3px;
}

.monthTitle .year {
  color: #8f8f8f;
  font-weight: 900;
  margin-top: 4px;
  font-size: 18px;
}

.navWrap {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.navBtn {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #0a0a0a;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: none;
}

.navBtn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.navBtn:active {
  transform: none;
}

.dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 1px solid var(--grid);
  border-left: 1px solid var(--grid);
}

.dow div {
  padding: 10px 2px;
  border-right: 1px solid var(--grid);
  border-bottom: 1px solid var(--grid);
  color: var(--gold);
  font-weight: 900;
  font-size: 16px;
  text-align: center;
}

.dow .short {
  display: none;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(6, 1fr);
  border-left: 1px solid var(--grid);
  border-bottom: 1px solid var(--grid);
  background: #070707;
  will-change: auto;
}

.day {
  height: clamp(34px, 4.6vw, 48px);
  border-right: 1px solid var(--grid);
  border-top: 1px solid var(--grid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(16px, 3.8vw, 22px);
  font-weight: 900;
  position: relative;
  user-select: none;
  background: linear-gradient(180deg, #0c0c0c, #080808);
  color: #eaeaea;
  cursor: pointer;
  contain: layout paint style;
}

button.day,
button.slot {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  font: inherit;
}

button.day {
  border-left: 0;
  border-bottom: 0;
}

button.slot {
  border: 0;
}

button.day:focus-visible,
button.slot:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -4px;
  z-index: 2;
}

.day.muted {
  cursor: default;
  color: transparent;
  background: linear-gradient(180deg, #0b0b0b, #070707);
}

.day.past {
  cursor: not-allowed;
  color: #4c4c4c;
  background: linear-gradient(180deg, #090909, #060606);
  opacity: 0.75;
}

.day.today {
  background: #f5f1e6;
  color: #000;
  border: 2px solid var(--gold);
}

.day.today::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 8px;
  height: 9px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

.day.selected {
  background: var(--gold);
  color: #000;
  border-color: rgba(200, 171, 79, 1);
}

.day.hasSlots::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7px;
  background: var(--green);
}

.slotsTitle {
  margin: 6px 0 8px;
  font-size: 20px;
  font-weight: 900;
  color: #ddd;
  flex: 0 0 auto;
}

.slotsTitle span {
  border-bottom: 2px dotted rgba(200, 171, 79, 0.95);
  padding-bottom: 3px;
}

.slots {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: clamp(36px, 5vw, 50px);
  gap: 6px;
  overflow-y: auto;
  padding-right: 2px;
  margin-top: 8px;
  will-change: auto;
}

.slot {
  background: var(--slotBg);
  color: var(--slotText);
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(36px, 5vw, 50px);
  font-size: clamp(16px, 4vw, 22px);
  font-weight: 900;
  border-radius: 0;
  cursor: pointer;
  position: relative;
  transition: none;
  contain: layout paint style;
}

.slot:active {
  transform: none;
}

.slot.disabled {
  background: rgba(120, 120, 120, 0.55);
  color: rgba(255, 255, 255, 0.58);
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.7;
  filter: grayscale(0.2);
}

.slot.selected {
  background: var(--gold);
  color: #111;
  outline: 3px solid rgba(200, 171, 79, 0.35);
  outline-offset: 1px;
}

.slot.selected::after {
  content: "✔";
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 12px;
  font-weight: 900;
  color: #111;
}

.selectedInfo {
  width: 100%;
  text-align: center;
  font-weight: 700;
  color: #ddd;
  margin-bottom: 6px;
  font-size: 16px;
  display: none;
  line-height: 1.6;
}

/* =========================================================
       9) FORMS / CUSTOMER DETAILS
    ========================================================= */
.fieldFull {
  background: var(--inputBg);
  border: 1px solid var(--inputBorder);
  border-radius: 10px;
  padding: 10px;
  color: #fff;
  margin-top: 8px;
}

.fieldFull input,
.fieldFull textarea {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
}

.fieldFull input {
  font-size: 19px;
}

.fieldFull textarea {
  font-size: 17px;
  height: 70px;
  resize: none;
}

.fieldFull input::placeholder,
.fieldFull textarea::placeholder {
  color: rgba(200, 171, 79, 0.9);
  letter-spacing: 0.3px;
}

.phoneRow {
  display: flex;
  gap: 10px;
  align-items: center;
}

.countryBox {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #0f0f0f;
  min-width: 108px;
  justify-content: center;
}

.countryBtn {
  width: 100%;
  border: none;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 900;
  cursor: pointer;
  padding: 0;
  font-size: 18px;
  transition: none;
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

.countryBtn:hover,
.countryBtn:focus,
.countryBtn:active {
  transform: none;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
}

.countryBtn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
  border-radius: 6px;
}

.countryBox:focus-within {
  box-shadow: 0 0 0 3px rgba(200, 171, 79, 0.18);
}

/* =========================================================
       10) GUEST COUNTERS / PACKAGES
    ========================================================= */
.guestCounter {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.guestRow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 12px;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  flex-wrap: wrap;
  width: 100%;
}

.guestLabelWrap {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  text-align: left;
  width: 100%;
}

.guestLabel {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
  width: 100%;
}

.guestControls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding-top: 2px;
  margin-left: auto;
}

.guestBtn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: none;
  background: #141414;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none;
}

.guestBtn:active {
  transform: none;
}

.guestCount {
  min-width: 34px;
  text-align: center;
  font-weight: 900;
  color: var(--gold);
  font-size: 24px;
}

.guestTotalBar {
  margin-top: 14px;
  font-weight: 900;
  color: var(--gold);
  text-align: left;
  font-size: 22px;
}

#guestBreakdownLine {
  display: none;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.8;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 171, 79, 0.18);
  border-radius: 12px;
  padding: 12px 14px;
}

#guestBreakdownLine > div:not(:last-child) {
  font-size: 19px;
  line-height: 1.6;
}

.afterHoursProgramNotice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(var(--bookingFlowRgb), 0.38);
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(var(--bookingFlowRgb), 0.13),
    rgba(var(--bookingFlowRgb), 0.05)
  );
  color: rgba(255, 255, 255, 0.94);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  text-align: start;
}

.afterHoursProgramNotice[hidden] {
  display: none;
}

.afterHoursProgramNoticeIcon {
  flex: 0 0 auto;
  color: var(--bookingFlowText);
  font-size: 20px;
  line-height: 1.2;
}

.priceSummaryBox {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(200, 171, 79, 0.6);
  border-radius: 12px;
  background: rgba(200, 171, 79, 0.05);
  text-align: left;
}

@media (max-width: 600px) {
  .afterHoursProgramNotice {
    gap: 8px;
    padding: 11px 12px;
    font-size: 14px;
    line-height: 1.55;
  }

  .afterHoursProgramNoticeIcon {
    font-size: 18px;
  }
}

.priceSummaryRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
}

#liveTotalPrice {
  color: var(--gold);
  font-size: 25px;
  line-height: 1;
}

.trustNote {
  margin-top: 12px;
  font-size: 15px;
  color: #d8d8d8;
  text-align: center;
  font-style: italic;
}

.dynamicWrap {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dynamicPackBox {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px;
  margin-top: 8px;
  overflow: visible;
}

.dynamicPackTitle {
  font-size: 16px;
  font-weight: 900;
  color: var(--gold);
}

.childPackageNote {
  font-size: 13px;
  color: #9a9a9a;
  line-height: 1.5;
  margin-bottom: 8px;
  text-align: left;
}

.guestMiniPackage {
  width: 100%;
  max-width: 100%;
  display: block;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 14px 52px 14px 14px;
  font-size: 15px;
  font-weight: 800;
  color: #9a9a9a;
  line-height: 1.45;
  cursor: pointer;
  min-height: 64px;
  height: auto;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  text-overflow: unset;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23cfcfcf' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: none;
}

.guestMiniPackage.hasValue {
  color: #fff;
}

.guestMiniPackage:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 171, 79, 0.14);
}

.guestMiniPackage option {
  color: #111;
  background: #fff;
  font-weight: 600;
  white-space: normal;
}

.massageKindWrap {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.familyBlock {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  padding: 12px;
  border: 1px solid rgba(200, 171, 79, 0.22);
  border-radius: 12px;
  background: rgba(200, 171, 79, 0.03);
  width: 100%;
}

.familyTitle {
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  text-align: left;
}

.guestRow[data-key="child"] .dynamicPackBox {
  border: 1px solid rgba(143, 209, 255, 0.22);
  background: linear-gradient(180deg, #10151c, #0d0f12);
}

.guestRow[data-key="son"] .dynamicPackBox,
.guestRow[data-key="daughter"] .dynamicPackBox {
  border: 1px solid rgba(200, 171, 79, 0.16);
}

.couplePreferenceWrap {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.couplePreferenceNote {
  font-size: 14px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.5;
}

.faqLuxuryTab {
  margin-top: 18px;
  border: 1px solid rgba(200, 171, 79, 0.26);
  border-radius: 22px;
  background:
    radial-gradient(
      circle at top left,
      rgba(200, 171, 79, 0.1),
      transparent 34%
    ),
    linear-gradient(180deg, rgba(12, 12, 12, 0.98), rgba(5, 5, 5, 0.98));
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.faqLuxuryToggle {
  width: 100%;
  border: none;
  background: transparent;
  color: #fff;
  text-align: left;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faqLuxuryToggle:active {
  transform: none;
}

.faqLuxuryHead {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.faqLuxuryEyebrow {
  color: rgba(200, 171, 79, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.faqLuxuryTitle {
  color: #fff7df;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.15;
}

.faqLuxuryHint {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.55;
}

.faqLuxuryIcon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(200, 171, 79, 0.28);
  background: linear-gradient(
    180deg,
    rgba(200, 171, 79, 0.22),
    rgba(200, 171, 79, 0.08)
  );
  color: #efd794;
  font-size: 28px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 0.18s ease,
    background 0.18s ease;
}

.faqLuxuryTab.open .faqLuxuryIcon {
  transform: rotate(45deg);
  background: linear-gradient(
    180deg,
    rgba(200, 171, 79, 0.28),
    rgba(200, 171, 79, 0.12)
  );
}

.faqLuxuryContent {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
  border-top: 1px solid rgba(200, 171, 79, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
}

.faqLuxuryTab.open .faqLuxuryContent {
  max-height: 2400px;
}

.faqLuxuryInner {
  padding: 18px 18px 16px;
}

.faqBox {
  border: 1px solid rgba(200, 171, 79, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
  backdrop-filter: blur(2px);
}

.faqItem + .faqItem {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faqQuestion {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  text-align: left;
  padding: 17px 18px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faqQuestion span:last-child {
  color: var(--gold);
  font-size: 22px;
  font-weight: 900;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.faqAnswer {
  display: none;
  padding: 0 18px 18px;
  text-align: left;
  color: #ddd;
  font-size: 15px;
  line-height: 1.8;
}

.faqItem.open .faqAnswer {
  display: block;
}

.faqItem.open .faqQuestion span:last-child {
  transform: rotate(45deg);
}

/* =========================================================
       10.1) GUEST BOX COLOR THEMES
    ========================================================= */
.guestRow[data-key="male"] {
  border: 1px solid rgba(143, 188, 143, 0.34);
  background: linear-gradient(
    180deg,
    rgba(143, 188, 143, 0.1),
    rgba(143, 188, 143, 0.04)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 0 0 1px rgba(143, 188, 143, 0.05);
}

.guestRow[data-key="male"] .guestLabel,
.guestRow[data-key="male"] .guestCount {
  color: #b9d8be;
}

.guestRow[data-key="male"] .guestBtn {
  background: rgba(143, 188, 143, 0.1);
  color: #d9efe0;
  border: 1px solid rgba(143, 188, 143, 0.2);
}

.guestRow[data-key="female"] {
  border: 1px solid rgba(214, 146, 179, 0.34);
  background: linear-gradient(
    180deg,
    rgba(214, 146, 179, 0.1),
    rgba(214, 146, 179, 0.04)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 0 0 1px rgba(214, 146, 179, 0.05);
}

.guestRow[data-key="female"] .guestLabel,
.guestRow[data-key="female"] .guestCount {
  color: #efbdd3;
}

.guestRow[data-key="female"] .guestBtn {
  background: rgba(214, 146, 179, 0.1);
  color: #ffe0ee;
  border: 1px solid rgba(214, 146, 179, 0.2);
}

.guestRow[data-key="couple"] {
  /* Reversible visibility switch: keep this option and its logic in the DOM. */
  display: none;
  border: 1px solid rgba(168, 141, 214, 0.34);
  background: linear-gradient(
    180deg,
    rgba(168, 141, 214, 0.1),
    rgba(168, 141, 214, 0.04)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 0 0 1px rgba(168, 141, 214, 0.05);
}

.guestRow[data-key="couple"] .guestLabel,
.guestRow[data-key="couple"] .guestCount {
  color: #d4c3f3;
}

.guestRow[data-key="couple"] .guestBtn {
  background: rgba(168, 141, 214, 0.1);
  color: #eee4ff;
  border: 1px solid rgba(168, 141, 214, 0.2);
}

.guestRow[data-key="family"] {
  border: 1px solid rgba(108, 170, 184, 0.34);
  background: linear-gradient(
    180deg,
    rgba(108, 170, 184, 0.1),
    rgba(108, 170, 184, 0.04)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 0 0 1px rgba(108, 170, 184, 0.05);
}

.guestRow[data-key="family"] .guestLabel,
.guestRow[data-key="family"] .guestCount {
  color: #b9e1ea;
}

.guestRow[data-key="family"] .guestBtn {
  background: rgba(108, 170, 184, 0.1);
  color: #def7fc;
  border: 1px solid rgba(108, 170, 184, 0.2);
}

/* =========================================================
       11) SUMMARY / PROGRESS / CONFIRM
    ========================================================= */
.confirm {
  text-align: center;
  padding: 30px;
}

.confirmTitleBig {
  color: var(--gold);
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 900;
}

.confirmText {
  color: #eee;
  font-size: 16px;
  line-height: 1.9;
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.confirmCelebrate {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.55s ease;
  z-index: 10005;
  background: radial-gradient(
    circle at center,
    rgba(200, 171, 79, 0.18) 0%,
    rgba(200, 171, 79, 0.08) 16%,
    rgba(0, 0, 0, 0.1) 42%,
    rgba(0, 0, 0, 0.28) 100%
  );
  overflow: hidden;
}

.confirmCelebrate.active {
  opacity: 1;
}

.confirmCelebrate.fadeout {
  opacity: 0;
}

.confirmFireworksCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 10px rgba(200, 171, 79, 0.25));
}

.confirmCelebrateText {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(44px, 12vw, 118px);
  font-weight: 1000;
  letter-spacing: 0.12em;
  color: #fff1b6;
  text-shadow:
    0 0 18px rgba(200, 171, 79, 0.78),
    0 0 42px rgba(255, 245, 210, 0.22),
    0 12px 32px rgba(0, 0, 0, 0.55);
  text-transform: uppercase;
  transform: scale(0.72);
  opacity: 0;
}

.confirmCelebrate.active .confirmCelebrateText {
  animation: successSparkBurstText 2.45s ease forwards;
}

@keyframes successSparkBurstText {
  0% {
    opacity: 0;
    transform: scale(0.38) translateY(26px);
    filter: blur(9px);
  }
  16% {
    opacity: 1;
    transform: scale(1.1) translateY(0);
    filter: blur(0);
  }
  26% {
    transform: scale(0.98);
  }
  70% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.04) translateY(-10px);
  }
}

#summaryBox {
  text-align: left;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px;
  color: #fff;
  line-height: 1.8;
  font-size: 16px;
}

.packageLine {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
  font-weight: 700;
}

/* =========================================================
       12) COUNTRY MODAL
    ========================================================= */
.countrySearchWrap {
  margin-bottom: 12px;
}

.countrySearch {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #0f0f0f;
  color: #fff;
  outline: none;
  font-size: 16px;
}

.countryList {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.countryItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0c0c0c;
  cursor: pointer;
  transition: none;
}

.countryItem:hover {
  border-color: rgba(200, 171, 79, 0.6);
}
.countryItem:active {
  transform: none;
}

.countryLeft {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.countryName {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
  opacity: 0.95;
}

.countryCode {
  font-weight: 900;
  color: var(--gold);
}

/* =========================================================
       13) MANAGE BOOKING
    ========================================================= */

.emptySavedBox {
  background: #111;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 16px;
  color: #bbb;
  text-align: center;
}
.ticketMemoryPanel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.ticketMemoryMeta {
  width: min(700px, 100%);
  text-align: center;
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.7;
}

.ticketMemoryMeta strong {
  color: var(--gold);
  font-weight: 900;
}

#manageBookingResult .exactConfirmStage {
  padding: 0;
  background: transparent;
  border: none;
}

#manageBookingResult .exactConfirmCard {
  width: min(700px, 100%);
  margin: 0 auto;
}

/* =========================================================
       14) FLOAT BUTTONS
    ========================================================= */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: none;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: none;
}

#topArrow {
  position: fixed;
  left: 18px;
  bottom: 90px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: #1a1a1a;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
       15) RESPONSIVE
    ========================================================= */
@media (min-width: 980px) {
  .packages {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .card {
    width: calc(50% - 13px);
  }
  .langBar {
    justify-content: flex-end;
  }
}

@media (max-width: 720px) {
  .langBar {
    justify-content: center;
  }

  .dow .full {
    display: none;
  }
  .dow .short {
    display: inline;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.2px;
  }

  .dow div {
    padding: 8px 2px;
  }

  .overlay {
    padding: 6px;
    align-items: center;
  }

  #dateModal .modal {
    height: 92vh;
    width: 100%;
    border-radius: 12px;
  }

  #customerModal .modal {
    height: 90vh;
    width: 100%;
    border-radius: 12px;
  }
  #summaryModal .modal {
    height: 84vh;
    width: 100%;
    border-radius: 12px;
  }

  #compareModal .modal {
    height: 90vh;
    border-radius: 12px;
  }

  .compareTable th,
  .compareTable td {
    padding: 14px 12px;
  }

  .compareTable th:first-child,
  .compareTable td:first-child {
    min-width: 96px;
    width: 96px;
  }

  .compareTable thead th:first-child {
    z-index: 5;
  }

  .compareTable thead th:first-child .compareRowLabel {
    display: block;
    max-width: 66px;
    white-space: normal;
    line-height: 1.18;
  }

  .comparePkgHeadTop {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 10px;
  }

  .comparePkgName {
    width: 100%;
    margin-bottom: 0;
  }

  .compareViewBtn {
    align-self: flex-start;
  }

  .compareIntro {
    text-align: left;
  }

  .compareCurrencyBar {
    padding: 14px;
    border-radius: 20px;
    gap: 14px;
  }

  .compareCurrencyBar.compareCurrencyBarMain {
    padding: 12px;
  }

  .compareCurrencyBar.compareCurrencyBarMain .compareCurrencyInfo {
    width: 100%;
  }

  .compareCurrencyBar.compareCurrencyBarMain .compareCurrencyControl {
    min-width: 100%;
    max-width: 100%;
  }

  .compareCurrencyBar.compareCurrencyBarMain .compareCurrencySelect {
    font-size: 16px;
    padding: 13px 44px 13px 14px;
  }

  .compareCurrencyControl {
    min-width: 100%;
  }

  .compareCurrencySelect {
    font-size: 18px;
    padding: 14px 46px 14px 14px;
  }

  .comparePriceMain {
    font-size: 15px;
  }

  .modalTop {
    padding: 10px 12px;
  }
  .modalTop .title {
    font-size: 20px;
  }
  .modalBody {
    padding: 6px;
  }
  .modalFooter {
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  }

  .footerBtns {
    grid-template-columns: 1fr 1fr 1.3fr;
    gap: 10px;
  }

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

  .backBtn,
  #resetBtn,
  .sendBtn {
    min-height: 56px;
    font-size: 16px;
    min-width: auto;
  }

  #customerModal .footerBtns .backBtn,
  #customerModal .footerBtns #resetBtn,
  #customerModal .footerBtns .sendBtn {
    min-height: 58px;
    font-size: 15px;
  }

  .navBtn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .slots {
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: clamp(32px, 4.6vw, 42px);
    gap: 4px;
  }

  .slot {
    height: clamp(32px, 4.6vw, 42px);
    font-size: 14px;
  }

  .guestRow {
    flex-direction: column;
    align-items: stretch;
  }

  .guestLabelWrap {
    width: 100%;
  }
  .guestLabel {
    font-size: 16px;
  }
  .guestBtn {
    width: 34px;
    height: 34px;
    font-size: 21px;
  }
  .guestCount {
    font-size: 19px;
  }

  .guestControls {
    width: 100%;
    justify-content: flex-end;
    margin-left: 0;
  }

  .dynamicWrap,
  .dynamicPackBox,
  .guestMiniPackage {
    width: 100%;
    max-width: 100%;
  }

  .fieldFull input {
    font-size: 17px;
  }
  .fieldFull textarea {
    font-size: 16px;
  }
  .guestTotalBar {
    font-size: 18px;
  }

  .guestMiniPackage {
    font-size: 13px;
    padding: 12px 42px 12px 12px;
    min-height: 60px;
    line-height: 1.4;
    white-space: normal;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 16px;
  }

  #topArrow {
    bottom: 110px;
  }

  #summaryBox {
    font-size: 14px;
    padding: 12px;
  }

  .packageLine {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .slots {
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: clamp(32px, 5vw, 42px);
    gap: 4px;
  }

  .slot {
    height: clamp(32px, 5vw, 42px);
    font-size: 14px;
  }

  .day {
    font-size: 16px;
  }
  .guestLabel {
    font-size: 14px;
  }
}

/* =========================================================
       16) RTL
    ========================================================= */
[dir="rtl"] body {
  text-align: center;
}
[dir="rtl"] .card {
  text-align: right;
}
[dir="rtl"] .monthTitle {
  text-align: right;
}
[dir="rtl"] .modalTop {
  direction: rtl;
}
[dir="rtl"] .modalBody {
  direction: rtl;
}
[dir="rtl"] .phoneRow {
  direction: ltr;
}
[dir="rtl"] .slotsTitle {
  direction: rtl;
}
[dir="rtl"] .footerBtns {
  direction: rtl;
}
[dir="rtl"] #summaryBox {
  text-align: right;
}
[dir="rtl"] .packageLine {
  text-align: right;
}
[dir="rtl"] .compareIntro {
  text-align: right;
}
[dir="rtl"] .compareCurrencyInfo {
  text-align: right;
}
[dir="rtl"] .compareCurrencySelect {
  background-position: left 16px center;
  padding: 16px 16px 16px 48px;
}
[dir="rtl"] .compareTable th,
[dir="rtl"] .compareTable td {
  text-align: right;
}
[dir="rtl"] .compareTable th:first-child,
[dir="rtl"] .compareTable td:first-child {
  left: auto;
  right: 0;
}
[dir="rtl"] .compareServiceItem {
  padding-left: 0;
  padding-right: 14px;
}
[dir="rtl"] .compareServiceItem::before {
  left: auto;
  right: 0;
}
[dir="rtl"] .guestLabel,
[dir="rtl"] .guestTotalBar,
[dir="rtl"] .priceSummaryBox,
[dir="rtl"] #guestBreakdownLine,
[dir="rtl"] .childPackageNote,
[dir="rtl"] .faqQuestion,
[dir="rtl"] .faqAnswer {
  text-align: right;
}

[dir="rtl"] .detailsContent,
[dir="rtl"] .detailsItem,
[dir="rtl"] .detailsItem p {
  text-align: right;
}

[dir="rtl"] .detailsBulletList {
  padding-left: 0;
  padding-right: 18px;
}

/* =========================================================
       20) EXACT BOOKING CONFIRMATION PREVIEW
    ========================================================= */
#summaryModal .modal {

  width: min(980px, 100%);
}

#summaryBox {
  max-width: 100%;
  margin: 0 auto;
}

.exactConfirmStage {
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.exactConfirmCard {
  width: min(700px, 100%);
  margin: 0 auto;
  background: #ffffff;
  padding: 0.3cm;
  border: 1px solid #dddddd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  color: #333333;
  box-sizing: border-box;
  text-align: left;
  font-family: Arial, sans-serif;
}

.exactConfirmTitle {
  color: #000000;
  margin: 25px 0 15px;
  text-align: center;
  font-weight: bold;
}

.exactConfirmMessage {
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.45em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  white-space: normal;
  gap: 6px;
  line-height: 1.4;
}

.exactConfirmMessageText {
  color: #777777;
  margin-right: 5px;
}

.exactConfirmNumber {
  font-weight: bold;
  color: #000000;
  font-size: 1.05em;
  display: inline-block;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.exactConfirmDetailsHeader {
  background: #000000;
  color: #ffffff;
  padding: 10px 20px;
  text-align: left;
  font-size: 1.15em;
  font-weight: bold;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.exactConfirmHeaderTitle {
  font-family: Arial, sans-serif;
  font-size: 1.22em;
  color: #ffffff;
}

.exactConfirmHeaderSub {
  font-family: "Great Vibes", cursive;
  color: #d4af37;
  font-size: 1.5em;
  margin-left: 10px;
  vertical-align: middle;
}

.exactConfirmInfoIcon {
  font-size: 1.5em;
  width: 30px;
  height: 30px;
  background: #ffffff;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
}

.exactConfirmTable {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

.exactConfirmTable tr {
  border-bottom: 1px solid #d4af37;
}

.exactConfirmTable tr:last-child {
  border-bottom: none;
}

.exactConfirmTable td {
  padding: 12px 20px;
  vertical-align: middle;
  font-size: 23px;
  color: #333333;
}

.exactConfirmTable td:first-child {
  width: 32%;
  font-weight: normal;
  color: #333333;
  border-right: 1px solid #d4af37;
}

.exactConfirmTable td:last-child {
  width: 68%;
  white-space: pre-line;
  word-break: break-word;
  line-height: 1.5em;
  text-align: left;
}

.exactConfirmProgramCell {
  min-height: 60px;
}

.exactConfirmProgramLine {
  margin: 0;
  line-height: 1.5em;
}

.exactConfirmProgramLine + .exactConfirmProgramLine {
  margin-top: 8px;
}

.exactBilingualLine {
  display: block;
  line-height: 1.38;
}

.exactBilingualLocal {
  color: inherit;
  font-weight: 700;
}

.exactBilingualEn {
  direction: ltr;
  unicode-bidi: plaintext;
  color: #777777;
  font-size: 0.78em;
  font-weight: 600;
  margin-top: 3px;
}

.exactConfirmTable td:first-child .exactBilingualEn {
  font-size: 0.74em;
}

.exactConfirmThankRow .exactBilingualEn {
  font-size: 0.88em;
  margin-top: 5px;
}

.exactConfirmTable .exactConfirmThankRow td {
  text-align: center;
  border-right: none;
}

@media (max-width: 760px) {
  #summaryModal .modal {
    width: min(100vw - 16px, 980px);
    height: min(94vh, 920px);
  }

  .exactConfirmCard {
    width: 100%;
    padding: 14px;
  }

  .exactConfirmLogoBar {
    min-height: 78px;
  }

  .exactConfirmTable td {
    padding: 11px 12px;
    font-size: 16px;
  }

  .exactConfirmTable td:first-child {
    width: 31%;
  }

  .exactConfirmTable td:last-child {
    width: 69%;
  }

  .exactConfirmMessage {
    font-size: 1.15em;
    white-space: normal;
  }

  .exactConfirmHeaderTitle {
    font-size: 1.05em;
  }

  .exactConfirmHeaderSub {
    font-size: 1.3em;
  }
}
