:root {
  --tarb-bg: #0f141d;
  --tarb-bg2: #151b25;
  --tarb-card: #1c2432;
  --tarb-card2: #22262f;
  --tarb-text: #ffffff;
  --tarb-muted: #b7bfcc;
  --tarb-lime: #d8ff35;
  --tarb-dark: #24283a;
  --tarb-border: rgba(255,255,255,0.13);
  --tarb-shadow: 0 25px 80px rgba(0,0,0,0.45);
}

.tarb-wrap,
.tarb-wrap * {
  box-sizing: border-box;
}

.tarb-wrap {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--tarb-text);
  background: radial-gradient(circle at top, rgba(216,255,53,0.08), transparent 34%), #0b1018;
  padding: 56px 24px 70px;
  border-radius: 0;
  overflow: hidden;
}

.tarb-section-title {
  text-align: center;
  margin: 0 auto 42px;
  max-width: 850px;
}

.tarb-section-title span,
.tarb-package-head span {
  display: inline-block;
  color: var(--tarb-lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.tarb-section-title h2,
.tarb-package-head h2 {
  color: #fff;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  margin: 12px 0;
  font-weight: 950;
  letter-spacing: -2px;
}
/* 1. The Fluid Grid (Use for cards, form fields, and side-by-side elements) */
.tarb-fluid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  width: 100%;
}

/* 2. The Wrapping Flexbox (Use for headers, button groups, and toolbars) */
.tarb-flex-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* 3. The Mobile-Safe Table Wrapper (Use around all <table> elements) */
.tarb-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #111;
  border-radius: 8px;
}

.tarb-section-title p,
.tarb-package-head p {
  color: var(--tarb-muted);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.tarb-category-grid,
.tarb-package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  max-width: 1500px;
  margin: 0 auto;
}

.tarb-category-card {
  display: block;
  position: relative;
  height: 195px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  background: #202838;
  padding: 0;
  color: #fff;
  text-align: left;
  cursor: pointer;
  box-shadow: var(--tarb-shadow);
}

.tarb-category-card img,
.tarb-package-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.tarb-category-card:hover img,
.tarb-package-card:hover img {
  transform: scale(1.08);
}

.tarb-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.78));
}

.tarb-category-content {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: block;
}

.tarb-category-content strong {
  display: block;
  color: #fff;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.1;
  margin-bottom: 12px;
}

.tarb-category-content em {
  display: block;
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  font-style: normal;
  line-height: 1.5;
  margin-bottom: 18px;
}

.tarb-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tarb-card-actions span,
.tarb-card-actions i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(14px);
  color: #fff;
  font-style: normal;
  font-weight: 950;
}

.tarb-card-actions span {
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
}

.tarb-card-actions i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 27px;
}

.tarb-package-page {
  display: none;
  max-width: 1180px;
  margin: 0 auto;
}

.tarb-wrap.is-package-view .tarb-home {
  display: none;
}

.tarb-package-page.active {
  display: block;
  animation: tarbFadeUp 0.35s ease;
}

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

.tarb-package-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.tarb-package-head h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -1px;
}

.tarb-back-category {
  flex: none;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 850;
  cursor: pointer;
}

.tarb-package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tarb-package-card {
  overflow: hidden;
  background: var(--tarb-card);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 18px;
  box-shadow: var(--tarb-shadow);
}

.tarb-package-card img {
  height: 175px;
}

.tarb-package-body {
  padding: 20px;
}

.tarb-package-body h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 950;
  margin: 0 0 8px;
}

.tarb-package-body p {
  color: var(--tarb-muted);
  font-size: 13px;
  line-height: 1.6;
  min-height: 62px;
  margin: 0 0 16px;
}

.tarb-price {
  display: inline-flex;
  color: #ff8b1f;
  background: rgba(255,139,31,0.13);
  border: 1px solid rgba(255,139,31,0.32);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 14px;
}

.tarb-book-btn {
  width: 100%;
  border: 1px solid rgba(216,255,53,0.45);
  background: rgba(216,255,53,0.12);
  color: var(--tarb-lime);
  border-radius: 9px;
  padding: 12px 14px;
  font-weight: 950;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tarb-book-btn:hover,
.tarb-next-btn:hover,
.tarb-final-pay:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.tarb-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.70);
  padding: 14px;
}

.tarb-modal.active {
  display: flex;
}

body.tarb-lock {
  overflow: hidden !important;
}

.tarb-modal-panel {
  width: min(740px, 96vw);
  max-height: 93svh;
  overflow: auto;
  background: #10151f !important;
  color: #ffffff !important;
  border-radius: 26px;
  box-shadow: 0 35px 100px rgba(0,0,0,0.45);
  position: relative;
  padding: 32px;
  animation: tarbModalIn 0.28s ease;
}

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

.tarb-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--tarb-lime);
  color: #000;
  border: 0;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  font-weight: 600;
}

.tarb-modal-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 54px;
}

.tarb-modal-top h2 {
  margin: 0;
  font-size: clamp(22px, 5vw, 34px);
  line-height: 1.15;
  font-weight: 950;
  color: #ffffff !important;
}

.tarb-dotted-line {
  border-top: 3px dotted rgba(0,0,0,0.24);
  margin: 34px 12px 42px;
}

.tarb-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 44px;
}

.tarb-progress-item {
  display: grid;
  place-items: center;
  gap: 8px;
  min-width: 118px;
  color: #14151d;
  text-align: center;
}

.tarb-progress-item span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #151622;
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: 800;
  font-size: 19px;
}

.tarb-progress-item.active span {
  background: var(--tarb-lime);
  border-color: var(--tarb-lime);
}

.tarb-progress i {
  display: block;
  width: 100px;
  height: 2px;
  background: rgba(15,16,25,0.22);
}

.tarb-step {
  display: none;
}

.tarb-step.active {
  display: block;
}

.tarb-detail-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 22px;
  margin-bottom: 34px;
  font-size: 26px;
  color: #07080c;
}
.tarb-ticket-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 22px;
  margin-bottom: 34px;
  font-size: 26px;
  color: #ffffff !important;
}

.tarb-detail-row label {
  font-weight: 650;
}

.tarb-detail-row select {
  width: 100%;
  border: 0;
  background: var(--tarb-lime);
  color: #090a0f;
  border-radius: 10px;
  padding: 18px 18px;
  font-size: 20px;
  font-weight: 900;
  outline: 0;
}

.tarb-ticket-row {
  grid-template-columns: 1fr auto;
  border-bottom: 3px dotted rgba(0,0,0,0.24);
  padding-bottom: 34px;
}

.tarb-ticket-row strong,
.tarb-total-lines strong,
.tarb-bottom-total strong {
  font-weight: 950;
}

.tarb-qty {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  font-size: 32px;
}

.tarb-qty button {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  border: 2px solid var(--tarb-lime);
  background: var(--tarb-lime);
  color: #000;
  font-size: 32px;
  line-height: 1;
  font-weight: 950;
  cursor: pointer;
}

.tarb-qty button.is-empty {
  background: #fff;
}

.tarb-advance-check {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin: 26px 0;
  color: #ffffff !important;
  font-size: clamp(22px, 4vw, 31px);
  line-height: 1.22;
  font-weight: 650;
}

.tarb-advance-check input {
  width: 31px;
  min-width: 31px;
  height: 31px;
  margin-top: 4px;
}

.tarb-total-lines {
  border-bottom: 3px dotted rgba(0,0,0,0.24);
  padding-bottom: 34px;
  margin-bottom: 54px;
}

.tarb-total-lines div,
.tarb-payment-summary div,
.tarb-schedule div:not(.tarb-schedule-head) {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 20px;
  align-items: start;
  font-size: 25px;
  margin: 22px 0;
}

.tarb-bottom-total {
  text-align: center;
}

.tarb-bottom-total strong {
  display: block;
  font-size: 30px;
  margin-bottom: 10px;
}

.tarb-next-btn,
.tarb-final-pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  padding: 17px 38px;
  background: #25283b;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tarb-step[data-step="2"] h3 {
  text-align: center;
  font-size: 36px;
  margin: 0 0 46px;
  font-weight: 950;
}

#tarbContactForm label,
#tarbContactForm h3,
#tarbContactForm p {
  color: #ffffff !important;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.tarb-input-icon,
.tarb-phone-field {
  display: flex;
  align-items: center;
  background: #eff1f1;
  border-radius: 22px;
  margin-bottom: 32px;
  min-height: 80px;
  overflow: hidden;
}

.tarb-input-icon i,
.tarb-phone-field span {
  display: grid;
  place-items: center;
  min-width: 76px;
  height: 80px;
  color: #5f6670;
  font-style: normal;
  font-size: 26px;
  background: rgba(0,0,0,0.02);
}

.tarb-phone-field span {
  min-width: 150px;
  font-size: 24px;
}

.tarb-input-icon input,
.tarb-phone-field input {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 20px;
  font-size: 25px;
  outline: 0;
  color: #20232b;
}

.tarb-payment-step {
  background: linear-gradient(160deg, #10151f, #0d1119);
  color: #fff;
  margin: -32px;
  padding: 42px 42px 34px;
  border-radius: 26px;
  min-height: 720px;
}

.tarb-payment-logo {
  font-size: 25px;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 44px;
  color: #fff;
}

.tarb-payment-summary {
  padding-right: 20px;
}

.tarb-payment-summary div {
  color: #fff;
  grid-template-columns: 1fr 300px;
  font-size: 25px;
}

.tarb-payment-summary strong,
.tarb-schedule strong {
  font-weight: 500;
}

.tarb-mini-pay {
  margin-left: 18px;
  border: 0;
  background: #25283b;
  color: #fff;
  padding: 12px 24px;
  border-radius: 9px;
  font-size: 20px;
  cursor: pointer;
}

.tarb-schedule {
  background: #252932;
  border-radius: 18px;
  padding: 28px;
  margin: 40px 0 28px;
}

.tarb-schedule-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.tarb-schedule-head h3 {
  margin: 0;
  color: var(--tarb-lime);
  font-size: clamp(28px, 4vw, 39px);
  font-weight: 950;
}

.tarb-schedule-head span {
  color: var(--tarb-lime);
  font-size: 28px;
}

.tarb-schedule div:not(.tarb-schedule-head) {
  color: #fff;
  grid-template-columns: 1fr 210px;
  font-size: 25px;
}

.tarb-coupon {
  display: flex;
  background: #fff;
  border-radius: 14px;
  padding: 8px;
  margin: 24px 0 48px;
}

.tarb-coupon input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 12px 18px;
  font-size: 22px;
  outline: 0;
}

.tarb-coupon button {
  border: 0;
  background: #25283b;
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 21px;
  cursor: pointer;
}

.tarb-payment-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
}

.tarb-back-btn {
  border: 0;
  background: transparent;
  color: var(--tarb-lime);
  font-size: 22px;
  cursor: pointer;
}

.tarb-final-pay {
  background: var(--tarb-lime);
  color: #05060a;
  min-width: 170px;
  font-weight: 950;
}

.tarb-error {
  color: #ffb4b4;
  margin: 18px 0 0;
  font-size: 15px;
}

.tarb-success-step {
  text-align: center;
  padding: 28px 0 18px;
}

.tarb-success-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--tarb-lime);
  color: #000;
  font-size: 44px;
  font-weight: 950;
}

.tarb-success-step h3 {
  font-size: 34px;
  margin: 0 0 12px;
  /* Add these 3 lines to force the email to wrap */
  white-space: normal !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.tarb-success-step p {
  color: #4b5563;
  font-size: 17px;
  line-height: 1.6;
  white-space: normal !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.tarb-success-box {
  background: #f1f5f9;
  color: #111827;
  border-radius: 14px;
  padding: 18px;
  margin: 22px auto;
  max-width: 520px;
  text-align: left;
  line-height: 1.7;
}

.tarb-done-btn {
  background: var(--tarb-lime);
  color: #000;
  font-weight: 950;
}
@media (max-width: 740px) {
  .tarb-wrap {
    padding: 38px 14px 52px;
  }
  .tarb-section-title h2 {
    font-size: 38px;
  }
  .tarb-category-grid,
  .tarb-package-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .tarb-category-card {
    height: 215px;
  }
  .tarb-package-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .tarb-package-body p {
    min-height: auto;
  }
  .tarb-modal {
    align-items: flex-start;
    padding: 0;
    background: rgba(0,0,0,0.45);
    overflow: auto;
  }
  .tarb-modal-close {
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    font-size: 32px;
  }
  .tarb-modal-top {
    padding-right: 50px;
  }
  .tarb-dotted-line {
    margin: 28px 10px 34px;
  }
  .tarb-progress {
    gap: 8px;
    margin-bottom: 36px;
  }
  .tarb-progress-item {
    min-width: 0;
    flex: 1;
  }
  .tarb-progress-item strong {
    font-size: 12px;
	color: #ffffff !important;
  }
  .tarb-progress i {
    width: 28px;
  }
  .tarb-detail-row,
  .tarb-ticket-row {
    grid-template-columns: 1fr;
    gap: 16px;
    font-size: 25px;
    margin-bottom: 28px;
  }
  .tarb-detail-row select {
    font-size: 18px;
  }
  .tarb-ticket-row {
    grid-template-columns: 1fr auto;
    font-size: 22px;
  }
  .tarb-qty {
    gap: 18px;
  }
  .tarb-qty button {
    width: 52px;
    height: 52px;
  }
  .tarb-total-lines div {
    grid-template-columns: 1fr auto;
    font-size: 24px;
  }
  .tarb-input-icon,
  .tarb-phone-field {
    min-height: 66px;
    border-radius: 18px;
    margin-bottom: 22px;
  }
  .tarb-input-icon i,
  .tarb-phone-field span {
    height: 66px;
    min-width: 58px;
    font-size: 20px;
  }
  .tarb-phone-field span {
    min-width: 114px;
    font-size: 18px;
  }
  .tarb-input-icon input,
  .tarb-phone-field input {
    font-size: 20px;
    padding: 16px;
  }
  .tarb-payment-step {
    margin: -24px -16px -70px;
    border-radius: 0;
    padding: 42px 20px 70px;
  }
  .tarb-payment-summary div,
  .tarb-schedule div:not(.tarb-schedule-head) {
    grid-template-columns: 1fr 150px;
    gap: 12px;
    font-size: 21px;
  }
  .tarb-schedule {
    padding: 20px;
  }
  .tarb-schedule-head span {
    font-size: 20px;
  }
  .tarb-coupon input,
  .tarb-coupon button {
    font-size: 18px;
  }
  .tarb-coupon button {
    padding: 10px 18px;
  }
  .tarb-payment-actions {
    justify-content: center;
    gap: 22px;
  }
}

@media (max-width: 430px) {
  .tarb-ticket-row {
    grid-template-columns: 1fr;
  }
  .tarb-qty {
    justify-content: flex-end;
  }
  .tarb-payment-summary div,
  .tarb-schedule div:not(.tarb-schedule-head) {
    grid-template-columns: 1fr;
  }
  .tarb-mini-pay {
    margin-left: 0;
    margin-top: 8px;
  }
  .tarb-schedule-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Payment method selector + QR/UPI and Razorpay fee display */
.tarb-method-title {
  font-size: 18px;
  font-weight: 950;
  color: var(--tarb-lime);
  margin: -20px 0 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tarb-payment-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 30px;
}

.tarb-method-btn {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-radius: 16px;
  padding: 16px;
  text-align: left;
  cursor: pointer;
  transition: 0.25s ease;
}

.tarb-method-btn strong,
.tarb-method-btn span {
  display: block;
}

.tarb-method-btn strong {
  font-size: 17px;
  margin-bottom: 5px;
}

.tarb-method-btn span {
  color: var(--tarb-muted);
  font-size: 13px;
  line-height: 1.4;
}

.tarb-method-btn.active {
  background: rgba(216,255,53,0.15);
  border-color: var(--tarb-lime);
  box-shadow: 0 0 0 2px rgba(216,255,53,0.12);
}

.tarb-method-btn.active strong {
  color: var(--tarb-lime);
}

.tarb-razorpay-fee-row {
  display: none !important;
}

.tarb-razorpay-fee-row.active {
  display: grid !important;
}

.tarb-total-payable-row {
  color: var(--tarb-lime) !important;
  font-weight: 950;
  border-top: 1px solid rgba(255,255,255,0.13);
  padding-top: 18px;
}

.tarb-upi-panel {
  display: none;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(216,255,53,0.24);
  border-radius: 20px;
  padding: 22px;
  margin: 28px 0;
  text-align: center;
}

.tarb-upi-panel.active {
  display: block;
}

.tarb-upi-panel h3 {
  margin: 0 0 14px;
  color: var(--tarb-lime);
  font-size: 26px;
  font-weight: 950;
}

.tarb-upi-qr {
  width: min(260px, 100%);
  margin: 0 auto 16px;
  padding: 10px;
  background: #fff;
  border-radius: 18px;
  border: 4px solid var(--tarb-lime);
}

.tarb-upi-qr img {
  display: block;
  width: 100%;
  border-radius: 12px;
}

.tarb-upi-id {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 13px 15px;
  margin: 12px auto;
  max-width: 420px;
  overflow-wrap: anywhere;
}

.tarb-upi-id span {
  color: var(--tarb-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tarb-upi-id strong {
  color: #fff;
  font-size: 17px;
  font-weight: 950;
}

.tarb-upi-panel p {
  color: var(--tarb-muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 14px auto;
  max-width: 560px;
}

.tarb-upi-panel input {
  width: 100%;
  max-width: 520px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.92);
  color: #111827;
  border-radius: 12px;
  padding: 15px;
  font-size: 16px;
  outline: 0;
}

@media (max-width: 740px) {
  .tarb-payment-methods {
    grid-template-columns: 1fr;
  }
  .tarb-upi-id {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Package detail page view */
.tarb-card-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.tarb-detail-btn,
.tarb-book-btn {
  width: 100%;
  border-radius: 9px;
  padding: 12px 12px;
  font-weight: 950;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tarb-detail-btn {
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.07);
  color: #fff;
}

.tarb-detail-btn:hover {
  border-color: var(--tarb-lime);
  color: var(--tarb-lime);
  transform: translateY(-2px);
}

.tarb-detail-view {
  display: none;
  max-width: 1500px;
  margin: 0 auto;
  animation: tarbFadeUp 0.35s ease;
}

.tarb-wrap.is-detail-view .tarb-home,
.tarb-wrap.is-detail-view .tarb-package-page {
  display: none !important;
}

.tarb-wrap.is-detail-view .tarb-detail-view {
  display: block;
}

.tarb-detail-back {
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: var(--tarb-lime);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  margin-bottom: 22px;
}

.tarb-detail-title-row {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 28px;
  margin-bottom: 28px;
}

.tarb-detail-title-row h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  margin: 0 0 18px;
  font-weight: 950;
  letter-spacing: -1px;
}

.tarb-detail-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.tarb-detail-meta span {
  color: var(--tarb-lime);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-right: 1px solid rgba(255,255,255,0.12);
  padding-right: 18px;
  font-weight: 900;
}

.tarb-detail-meta span:last-child {
  border-right: 0;
}

.tarb-detail-meta i {
  font-style: normal;
}

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

.tarb-detail-main h3,
.tarb-detail-section h3 {
  color: #fff;
  font-size: 24px;
  margin: 0 0 14px;
  font-weight: 950;
}

.tarb-detail-section p {
  color: #fff;
  font-weight: 800;
  line-height: 1.7;
  margin: 0 0 22px;
}

.tarb-ticket-list {
  display: grid;
  gap: 18px;
  margin: 12px 0 34px;
}

.tarb-ticket-list div {
  background: #242932;
  border: 1px solid rgba(255,255,255,0.07);
  color: #fff;
  padding: 20px 22px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 950;
}

.tarb-detail-accordion-item {
  background: #242932;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}

.tarb-detail-accordion-item summary {
  list-style: none;
  cursor: pointer;
  color: var(--tarb-lime);
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 950;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tarb-detail-accordion-item summary::-webkit-details-marker {
  display: none;
}

.tarb-detail-accordion-item summary span {
  color: #fff;
  font-size: 18px;
}

.tarb-detail-accordion-item div {
  color: var(--tarb-muted);
  padding: 0 20px 20px;
  line-height: 1.75;
  font-size: 15px;
}

.tarb-detail-subtitle {
  color: #fff;
  font-size: 23px;
  margin: 18px 0 14px;
  font-weight: 950;
}

.tarb-pickup-block {
  margin: 8px 0 22px;
  color: var(--tarb-muted);
  line-height: 1.7;
  font-size: 14px;
}

.tarb-pickup-block strong {
  color: var(--tarb-lime);
  display: block;
  margin-bottom: 4px;
}

.tarb-detail-sidebar {
  position: sticky;
  top: 18px;
}

.tarb-enquiry-card {
  background: #242932;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 22px;
}

.tarb-side-price {
  color: #fff;
  font-size: 23px;
  margin-bottom: 18px;
}

.tarb-side-price span {
  color: #96a1b4;
  font-size: 14px;
  margin-right: 8px;
}

.tarb-enquiry-card label {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.09);
  margin-bottom: 10px;
  border-radius: 3px;
  padding: 0 12px;
}

.tarb-enquiry-card label i {
  color: #a8b0bf;
  font-style: normal;
}

.tarb-enquiry-card input,
.tarb-enquiry-card select,
.tarb-enquiry-card textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  padding: 13px 8px;
  font: inherit;
}

.tarb-enquiry-card textarea {
  min-height: 58px;
  resize: vertical;
}

.tarb-enquiry-card select option {
  color: #111;
}

.tarb-enquiry-btn,
.tarb-detail-book-now {
  width: 100%;
  border: 0;
  border-radius: 3px;
  background: var(--tarb-lime);
  color: #05060a;
  padding: 15px;
  font-weight: 950;
  cursor: pointer;
  margin-top: 12px;
}

.tarb-detail-book-now {
  background: rgba(216,255,53,0.12);
  color: var(--tarb-lime);
  border: 1px solid rgba(216,255,53,0.42);
}

@media (max-width: 980px) {
  .tarb-detail-layout {
    grid-template-columns: 1fr;
  }
  .tarb-detail-sidebar {
    position: relative;
    top: auto;
  }
}

@media (max-width: 560px) {
  .tarb-card-buttons {
    grid-template-columns: 1fr;
  }
  .tarb-detail-meta {
    align-items: flex-start;
    flex-direction: column;
  }
  .tarb-detail-meta span {
    border-right: 0;
    padding-right: 0;
  }
  .tarb-ticket-list div {
    font-size: 16px;
  }
}

/* 1. Colorful, Modern, Grid-Ready Inputs - DARK THEME UPDATE */
.tarb-input-icon, .tarb-phone-field {
    background: #1c2432 !important;
    border: 2px solid #2a3441 !important;
    border-radius: 14px !important;
    height: 60px !important;
    min-height: 60px !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow: hidden !important;
    margin-bottom: 20px !important;
}

.tarb-input-icon:focus-within, .tarb-phone-field:focus-within {
    border-color: #d8ff35 !important;
    box-shadow: 0 0 0 4px rgba(216, 255, 53, 0.1) !important;
    transform: translateY(-2px);
}

.tarb-input-icon i, .tarb-phone-field span {
    background: #242d3d !important;
    color: #9ca3af !important;
    font-weight: 800 !important;
    font-size: 18px !important;
    border-right: 2px solid #2a3441 !important;
    min-width: 105px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.tarb-input-icon input, .tarb-phone-field input {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    padding: 0 16px !important;
    background: transparent !important;
    height: 100% !important;
}

.tarb-gender-select {
    width: 100% !important;
    padding: 0 16px !important;
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    outline: none !important;
    cursor: pointer;
    height: 100% !important;
}

.tarb-gender-select option {
    background: #1c2432;
    color: #ffffff;
}

/* 1.5 Force Text Colors to White */
.tarb-modal-top h2,
.tarb-detail-row,
.tarb-advance-check,
.tarb-progress-item strong {
    color: #ffffff !important;
}

/* 2. Eye-Catching Greeting / Trust Badge */
.tarb-trust-badge {
    background: linear-gradient(135deg, rgba(201, 255, 0, 0.15) 0%, rgba(201, 255, 0, 0.05) 100%) !important;
    border: 1px solid rgba(201, 255, 0, 0.4) !important;
    border-radius: 16px !important;
    padding: 24px !important;
    margin: 0 0 35px 0 !important; /* Fixed touching issue */
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    position: relative;
    overflow: hidden;
}

.tarb-trust-icon {
    font-size: 34px !important;
    background: #ffffff !important;
    width: 65px !important;
    height: 65px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06) !important;
    flex-shrink: 0 !important;
}

/* Container Fix: Allows the flex item to shrink and forces text to wrap inside it */
.tarb-trust-text { 
    flex: 1 !important; 
    text-align: left !important; 
    min-width: 0 !important; 
}

/* Name/Greeting Fix: Forces long emails or unbreakable strings to wrap safely */
.tarb-trust-text strong { 
    color: #fff !important; 
    font-size: 21px !important; 
    font-weight: 900 !important; 
    display: block !important; 
    margin-bottom: 6px !important; 
    white-space: normal !important;
    word-break: break-word !important; 
    overflow-wrap: break-word !important;
}

/* Message Fix: Ensures the scheduled message paragraph wraps correctly */
.tarb-trust-text span { 
    color: var(--tarb-lime) !important; 
    font-size: 14px !important; 
    font-weight: 600 !important; 
    line-height: 1.5 !important; 
    display: block !important; 
    white-space: normal !important; 
    word-break: break-word !important; 
    overflow-wrap: break-word !important; 
}
.tarb-modal-back {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.tarb-modal-back:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #C9FF00 !important;
}
/* 4. Premium Receipt Payment Summary */
.tarb-payment-summary {
    background: linear-gradient(145deg, #181818, #111) !important; border: 1px solid #333 !important; border-radius: 16px !important; padding: 24px !important; margin-top: 25px !important; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important; display: flex; flex-direction: column;
}
.tarb-payment-summary::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--tarb-lime), #46b450); }
.tarb-payment-summary div, .tarb-schedule div:not(.tarb-schedule-head) { display: flex !important; justify-content: space-between !important; align-items: center !important; padding: 14px 0 !important; margin: 0 !important; border-bottom: 1px dashed #333 !important; font-size: 15px !important; }
.tarb-payment-summary div:last-child { border-bottom: none !important; }
.tarb-payment-summary div span { color: #9ca3af !important; flex: 1; }
.tarb-payment-summary div strong { color: #fff !important; font-size: 16px !important; font-weight: 700 !important; text-align: right; max-width: 60%; }
.tarb-total-payable-row { background: rgba(201, 255, 0, 0.05) !important; padding: 18px !important; border-radius: 12px !important; border: 1px solid rgba(201, 255, 0, 0.2) !important; margin-top: 15px !important; border-bottom: none !important; }
.tarb-total-payable-row span { color: var(--tarb-lime) !important; font-weight: 800 !important; font-size: 16px !important; text-transform: uppercase; letter-spacing: 0.5px; }
.tarb-total-payable-row strong { color: var(--tarb-lime) !important; font-size: 22px !important; display: flex !important; align-items: center !important; gap: 15px !important; }

/* 5. Button Elevators */
.tarb-final-pay { background: linear-gradient(90deg, var(--tarb-lime), #a8d500) !important; color: #000 !important; border: none; box-shadow: 0 6px 20px rgba(216, 255, 53, 0.2); }
.tarb-final-pay:hover, .tarb-mini-pay:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(216, 255, 53, 0.3); }
.tarb-mini-pay { background: var(--tarb-lime) !important; color: #000 !important; padding: 8px 20px !important; font-weight: 900 !important; border-radius: 8px !important; font-size: 16px !important; margin: 0 !important; box-shadow: 0 4px 15px rgba(216, 255, 53, 0.2) !important; transition: all 0.2s ease !important; }

/* 6. Success Screen */
.tarb-success-step { 
    background: linear-gradient(160deg, #10151f, #0d1119) !important; 
    color: #fff !important; 
    margin: -32px !important; 
    padding: 60px 30px !important; 
    border-radius: 26px !important; 
    min-height: 500px; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
}

/* Only apply flex display when this specific step is active */
.tarb-step.active.tarb-success-step {
    display: flex !important;
}

/* Fix Chrome Autofill turning inputs white in Dark Mode */
.tarb-input-icon input:-webkit-autofill,
.tarb-phone-field input:-webkit-autofill,
.tarb-input-icon input:-webkit-autofill:hover, 
.tarb-input-icon input:-webkit-autofill:focus, 
.tarb-phone-field input:-webkit-autofill:hover, 
.tarb-phone-field input:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff !important;
    -webkit-box-shadow: 0 0 0px 1000px #1c2432 inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Force gender dropdown background to be dark */
.tarb-gender-select {
    background-color: #1c2432 !important;
}
/* FORCE HIDE ALL INACTIVE STEPS (Fixes Payment Successful showing everywhere) */
.tarb-step {
    display: none !important;
}
.tarb-step.active {
    display: block !important;
}
.tarb-step.tarb-success-step.active {
    display: flex !important;
}

/* Custom Day-by-Day Itinerary Accordion */
.tarb-itinerary-item {
    background: #1c2432;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s;
}
.tarb-itinerary-item[open] {
    border-color: rgba(201, 255, 0, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.tarb-itinerary-item summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    background: #242932;
    transition: background 0.3s;
}
.tarb-itinerary-item[open] summary {
    background: rgba(201, 255, 0, 0.08); /* Highlight active day */
}
.tarb-itinerary-item summary::-webkit-details-marker { 
    display: none; 
}
.tarb-day-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    margin-right: 15px;
    flex-shrink: 0;
}
.tarb-itinerary-item[open] .tarb-day-badge {
    background: var(--tarb-lime);
    color: #000;
}
.tarb-day-title {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    flex: 1;
}
.tarb-itinerary-item[open] .tarb-day-title {
    color: var(--tarb-lime);
}
.tarb-day-arrow {
    color: #888;
    font-size: 12px;
    transition: transform 0.3s;
    margin-left: 10px;
}
.tarb-itinerary-item[open] .tarb-day-arrow {
    transform: rotate(180deg);
    color: var(--tarb-lime);
}
.tarb-day-content {
    padding: 20px 20px 25px 67px; /* 67px indent perfectly aligns text under the title */
    color: var(--tarb-muted);
    line-height: 1.7;
    font-size: 15px;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: #1c2432;
}

@media (max-width: 560px) {
    .tarb-day-content {
        padding: 15px 15px 20px 15px; /* Removes heavy indent on mobile */
    }
}
.tarb-day-content p {
    margin: 0 0 12px 0;
}
.tarb-day-content p:last-child {
    margin-bottom: 0;
}
.tarb-day-content ul, .tarb-day-content ol {
    margin: 12px 0 12px 20px;
    padding: 0;
}
.tarb-day-content li {
    margin-bottom: 6px;
}
/* Rich Text Media & Heading Support for Accordions */
.tarb-day-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
    display: block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.tarb-day-content h1, .tarb-day-content h2, .tarb-day-content h3, .tarb-day-content h4, .tarb-day-content h5, .tarb-day-content h6 {
    color: #ffffff;
    margin: 24px 0 12px;
    font-weight: 800;
}
.tarb-day-content a {
    color: var(--tarb-lime);
    text-decoration: underline;
    transition: filter 0.2s;
}
.tarb-day-content a:hover {
    filter: brightness(1.2);
}
.tarb-admin-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* Smooth swiping on iOS */
  width: 100%;
}
/* Mobile fixes for the Trust Badge Greeting */
@media (max-width: 560px) {
    .tarb-trust-badge {
        padding: 16px !important; /* Reclaims screen space */
        gap: 12px !important; /* Brings text closer to the icon */
        align-items: flex-start !important; /* Keeps icon at the top if text is multiple lines */
    }

    .tarb-trust-icon {
        width: 48px !important; /* Shrinks the icon container */
        height: 48px !important;
        font-size: 24px !important; /* Shrinks the emoji */
    }

    .tarb-trust-text strong {
        font-size: 18px !important; 
    }

    .tarb-trust-text span {
        font-size: 13px !important;
    }
    .tarb-success-step h3 {
        font-size: 24px !important;
    }
}
/* 1. The Dashboard Header Container */
.dashboard-header-wrap {
    display: flex;
    flex-wrap: wrap; /* Crucial: allows buttons to drop down safely on small screens */
    justify-content: space-between;
    align-items: center; /* Vertically centers the text and buttons */
    gap: 15px;
    margin-bottom: 24px;
}

/* 2. The Welcome Text Container */
.dashboard-welcome-text {
    flex: 1;
    min-width: 0; /* Flexbox trick: prevents the long email from overflowing its container */
}

/* 3. Force the Email to Wrap (Reusing your existing logic) */
.dashboard-welcome-text h2,
.dashboard-welcome-text span {
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    margin: 0;
}

/* 4. The Action Buttons Group */
.dashboard-action-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0; /* Prevents the buttons from getting squished */
}