/* =============================================================
   break-free.css — Breaking Free from the Confusion Matrix
   ============================================================= */

/* Base */
* { font-family: 'Poppins', sans-serif; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Header ── */
.bf-header { background: rgba(10,10,40,0.97); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.bf-toolbar { padding: 8px 24px; min-height: 64px; }
.bf-logo-link { display: flex; align-items: center; text-decoration: none; }
.bf-logo-img { height: 48px; }
.bf-logo-text { color: white; font-weight: 700; font-size: 1rem; }
.bf-nav { display: flex; align-items: center; gap: 8px; }

.nav-link {
  color: white; text-decoration: none; font-weight: 500;
  padding: 6px 12px; transition: color 0.2s;
}
.nav-link:hover { color: #90CAF9; }
.nav-link.book { background: #0090FF; border-radius: 20px; padding: 8px 22px; }

/* ── Hero ── */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden;
  background: #0d0d35;
}
.hero-video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(10, 10, 40, 0.3);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 760px; padding: 32px 24px;
}
.hero-label {
  color: rgba(255,255,255,0.6); font-size: 0.9rem; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase; margin: 0 0 20px;
}
.hero-title { font-size: clamp(2rem, 5.5vw, 3.6rem); line-height: 1.15; margin: 0 0 20px; }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem); font-style: italic;
  opacity: 0.85; margin: 0 0 32px; font-weight: 300;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; align-items: center;
}
.bf-book-btn    { border-radius: 30px !important; padding: 12px 40px !important; }
.bf-support-btn { border-radius: 30px !important; padding: 12px 40px !important; }
.bf-social-group { display: inline-flex; }
.hero-quote-card, .hero-website { display: none; }

/* ── Hero stamp (in-person discount callout) — painted brushstroke card ──
   Fixed (not absolute) so it stays on screen as the page scrolls, clear of
   the fixed header above it. */
.hero-stamp {
  position: fixed;
  top: 88px; left: 24px;
  z-index: 1000;
  width: 246px; height: 156px;
}
.hero-stamp__inner {
  position: relative;
  width: 100%; height: 100%;
  filter: drop-shadow(0 10px 24px rgba(255,143,0,0.45));
  animation: hero-stamp-pop 0.6s cubic-bezier(.34,1.56,.64,1) 0.4s both,
             hero-stamp-sway 3.6s ease-in-out 1.2s infinite;
}
.hero-stamp__art { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hero-stamp__rect--front { fill: url(#heroStampGold); }
.hero-stamp__rect--back { fill: rgba(224,120,0,0.55); }
.hero-stamp__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 10px 16px;
}
.hero-stamp__pct {
  font-size: 2.3rem; font-weight: 800; line-height: 1; color: #4a2c00;
}
.hero-stamp__pct small { font-size: 1.25rem; font-weight: 700; margin-left: 1px; }
.hero-stamp__off {
  font-size: 0.95rem; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: #4a2c00; margin-top: 3px;
}
.hero-stamp__sub {
  font-size: 0.82rem; font-weight: 900; line-height: 1.3; margin-top: 7px;
  text-transform: uppercase; letter-spacing: 0.4px; color: #5a3400;
}
@keyframes hero-stamp-pop {
  from { opacity: 0; transform: rotate(-4deg) scale(0.5); }
  to   { opacity: 1; transform: rotate(-4deg) scale(1); }
}
@keyframes hero-stamp-sway {
  0%, 100% { transform: rotate(-4deg) scale(1); }
  50%      { transform: rotate(-2deg) scale(1.03); }
}
@media (max-width: 599px) {
  .hero-stamp { top: 76px; left: 16px; width: 184px; height: 117px; }
  .hero-stamp__pct { font-size: 1.7rem; }
  .hero-stamp__pct small { font-size: 0.95rem; }
  .hero-stamp__off { font-size: 0.7rem; letter-spacing: 1.5px; }
  .hero-stamp__sub { font-size: 0.6rem; }
}

/* Sticky in-person-discount bar — replaces the stamp once the page scrolls */
.hero-stamp-bar {
  position: fixed;
  left: 0; right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #ffe082 0%, #ffb300 55%, #e07800 100%);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  padding: 10px 16px;
  text-align: center;
  animation: hero-stamp-bar-in 0.35s ease both;
}
.hero-stamp-bar__text {
  color: #4a2c00;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.hero-stamp-bar__text strong {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@keyframes hero-stamp-bar-in {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 599px) {
  .hero-stamp-bar { padding: 8px 12px; }
  .hero-stamp-bar__text { font-size: 0.78rem; }
}

/* ── Theme toggle ── */
.theme-toggle-btn {
  position: fixed;
  top: 14px;
  right: 16px;
  z-index: 4000;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(20,20,55,0.92);
  overflow: hidden;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 20px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.theme-toggle-btn:hover { background: rgba(10,10,40,0.8); border-color: rgba(255,255,255,0.6); }
.theme-toggle-btn:focus-visible { box-shadow: 0 0 0 3px rgba(255,255,255,0.4); }
.theme-luxury .theme-toggle-btn:focus-visible { box-shadow: 0 0 0 3px rgba(213,188,119,0.4); }
.theme-luxury .theme-toggle-btn {
  border-color: rgba(213,188,119,0.5);
  background: rgba(22,35,58,0.94);
  color: #D5BC77;
}
.theme-luxury .theme-toggle-btn:hover { box-shadow: 0 0 18px rgba(213,188,119,0.35); }

/* ── Sections ── */
.section { padding: 44px 24px; }
.section--white { background: #fff; }
.section--light { background: #f5f7ff; }
.section--dark  { background: #0d0d35; }

.section-title {
  font-size: 2rem; font-weight: 700; margin-bottom: 16px; text-align: center;
}
.section-subtitle {
  text-align: center; max-width: 680px; margin: 0 auto 48px;
  color: #555; font-size: 1.05rem; line-height: 1.7;
}

/* ── Content containers ── */
.bf-content-sm { max-width: 720px;  margin: 0 auto; }
.bf-content-md { max-width: 860px;  margin: 0 auto; }
.bf-content-lg { max-width: 1000px; margin: 0 auto; }
.bf-content-xl { max-width: 1100px; margin: 0 auto; }

/* ── Body text ── */
.bf-body      { font-size: 1.05rem; line-height: 1.85; color: #333; margin-bottom: 20px; }
.bf-body--lg  { font-size: 1.1rem; }
.bf-body--mb  { margin-bottom: 28px; }
.bf-callout   { font-size: 1.15rem; color: #0d0d35; text-align: center; }

/* ── Quranic verse ── */
.quran-verse {
  border-left: 4px solid #0090FF;
  padding: 24px 28px;
  background: #f0f4ff;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.9;
  color: #333;
  margin: 24px 0;
}
.quran-ref { font-size: 0.9rem; color: #0090FF; font-weight: 600; font-style: normal; }

/* ── Instructor ── */
.bf-instructor-title { font-size: 1.8rem; font-weight: 700; }
.bf-instructor-body  { line-height: 1.8; }
.bf-instructor-img   { max-width: 360px; border-radius: 12px; }
.bf-instructor-placeholder { min-height: 280px; }

/* ── Testimonials ── */
.bf-testimonial-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}
.bf-testimonial-title { margin-bottom: 0; text-align: left; }
.bf-testimonial-nav { display: flex; gap: 10px; flex-shrink: 0; }

.bf-testimonial-scroller {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 24px 4px 32px;
  margin: 0 -4px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.bf-testimonial-scroller::-webkit-scrollbar { height: 6px; }
.bf-testimonial-scroller::-webkit-scrollbar-thumb { background: #c7d2fe; border-radius: 3px; }

.bf-testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 48px) / 3);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(13,13,53,0.08);
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bf-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13,13,53,0.14);
}
.bf-testimonial-quote-mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.2rem;
  line-height: 1;
  color: #0090FF;
  opacity: 0.25;
  margin-bottom: 4px;
}
.bf-testimonial-quote {
  font-style: italic;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
  flex-grow: 1;
}
.bf-testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #eef1fb;
}
.bf-testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0090FF;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bf-testimonial-course {
  font-weight: 700;
  color: #0d0d35;
  font-size: 0.9rem;
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .bf-testimonial-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 599px) {
  .bf-testimonial-card { flex: 0 0 86%; }
  .bf-testimonial-head { flex-direction: column; align-items: flex-start; }
}

/* ── FAQ ── */
.bf-faq-list { background: transparent; }
.bf-faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(13,13,53,0.08);
}
.bf-faq-item .q-item__label { font-weight: 600; color: #0d0d35; }
.bf-faq-answer { color: #333; line-height: 1.8; font-size: 1rem; }

/* ── Social buttons ── */
.ig-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: white; text-decoration: none; font-weight: 600; font-size: 1rem;
  padding: 12px 28px; border-radius: 30px;
  transition: opacity 0.2s, transform 0.2s;
}
.ig-btn:hover { opacity: 0.88; transform: translateY(-2px); }

.ig-btn--hero   { padding: 12px 40px; font-size: 1rem; border-radius: 30px 0 0 30px; white-space: nowrap; }
.ig-btn--footer { font-size: 0.85rem; padding: 8px 20px; border-radius: 30px 0 0 30px; }
.ig-btn--solo   { border-radius: 30px !important; }

.wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366;
  color: white; text-decoration: none; font-weight: 600; font-size: 1rem;
  padding: 12px 28px; border-radius: 30px;
  transition: opacity 0.2s, transform 0.2s;
}
.wa-btn:hover { opacity: 0.88; transform: translateY(-2px); }

.wa-btn--hero   { padding: 12px 40px; font-size: 1rem; border-radius: 0 30px 30px 0; }
.wa-btn--footer { font-size: 0.85rem; padding: 8px 20px; border-radius: 0 30px 30px 0; }

.bf-footer-social { display: inline-flex; flex-wrap: wrap; }

/* ── Ticket selector ── */
.qty-control {
  display: inline-flex; align-items: center;
  border: 1px solid #ddd; border-radius: 8px; overflow: hidden;
}
.qty-btn {
  width: 36px; height: 36px; border: none; background: #f5f7ff;
  font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s; color: #0090FF; font-weight: 700;
}
.qty-btn:hover { background: #e0e8ff; }
.qty-num {
  width: 44px; text-align: center; font-weight: 600;
  font-size: 1rem; border: none;
  border-left: 1px solid #ddd; border-right: 1px solid #ddd;
  height: 36px; line-height: 36px; background: white;
}

.ticket-row {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid #eee; gap: 12px;
}
.ticket-row:last-child { border-bottom: none; }

.ticket-inner {
  display: flex; justify-content: space-between; width: 100%;
  align-items: center; flex-wrap: nowrap; gap: 12px;
}
/* Label/price/badge column: shrinks and wraps its own text instead of
   pushing the row wider, which is what forced the qty control onto its
   own line whenever a badge's text ran long. */
.ticket-inner > div:first-child { flex: 1 1 auto; min-width: 0; }
/* Qty control: fixed size, never shrinks or wraps away from the right. */
.ticket-inner > .qty-control,
.ticket-inner > .bf-soldout-label { flex-shrink: 0; }
@media (max-width: 599px) {
  .ticket-inner { flex-direction: column; align-items: flex-start; justify-content: flex-start; }
}

.ticket-label { font-weight: 600; font-size: 1rem; }
.ticket-price { color: #0090FF; font-weight: 700; font-size: 1.05rem; margin-left: 8px; }
.ticket-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  padding: 2px 8px; border-radius: 10px; margin-left: 6px; vertical-align: middle;
}
.ticket-badge-row { margin-top: 4px; }
.ticket-badge-row .ticket-badge { margin-left: 0; }
.badge--earlybird  { background: #e3f2fd; color: #1565c0; }
.badge--concession { background: #fff3e0; color: #e65100; }
.badge--solidarity { background: #e8f5e9; color: #2e7d32; }
.badge--soldout {
  background: #ff1744;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(255,23,68,0.45);
}

.ticket-row--soldout .ticket-label { text-decoration: line-through; color: #999; }
.ticket-row--soldout .ticket-price { color: #bbb; }
.bf-soldout-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: #ff1744;
  white-space: nowrap;
}

.bf-ticket-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 10px 0 0;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #c62828;
  background: #fff3e0;
  border: 1px solid rgba(198,40,40,0.3);
  border-radius: 24px;
  animation: bf-ticket-note-pulse 2s ease-in-out infinite;
}
.bf-ticket-note__icon { font-size: 1.2rem; }
@keyframes bf-ticket-note-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(198,40,40,0.28); }
  50%      { box-shadow: 0 0 0 7px rgba(198,40,40,0); }
}

.bf-concession-types       { margin-top: 12px; width: 100%; }
.bf-concession-types__item { margin-bottom: 10px; }
.bf-concession-select      { max-width: 360px; }
.bf-concession-select .q-select__dropdown-icon { color: #0090FF; font-size: 28px; }
.bf-concession-note        { font-size: 0.8rem; color: #888; margin-top: 4px; }
.bf-concession-multi-note  {
  font-size: 0.8rem;
  font-weight: 600;
  color: #6a1b9a;
  background: #f3e5f5;
  border-radius: 6px;
  padding: 6px 10px;
  margin: 6px 0 0;
  max-width: 360px;
}

/* ── Price summary ── */
.price-summary  { background: #f5f7ff; border-radius: 8px; padding: 20px; margin-top: 24px; }
.price-row      { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 0.95rem; }
.price-row--discount { color: #2e7d32; }
.price-row--support  { color: #6a1b9a; font-weight: 600; }
.price-total    { font-weight: 700; font-size: 1.15rem; color: #0090FF; border-top: 1px solid #ddd; padding-top: 10px; margin-top: 4px; }

/* ── Booking card ── */
.bf-card      { border-radius: 16px !important; }
.bf-card-body { padding: 32px !important; }

.bf-age-notice         { background: #fff3e0; border-left: 4px solid #e65100; border-radius: 0 8px 8px 0; padding: 14px 18px; margin-bottom: 24px; }
.bf-age-notice__title  { margin: 0; font-size: 0.95rem; color: #bf360c; font-weight: 600; }
.bf-age-notice__sub    { margin: 4px 0 0; font-size: 0.85rem; color: #e65100; }

.bf-online-notice        { display: flex; align-items: flex-start; gap: 10px; background: #e7f3ff; border-left: 4px solid #0090FF; border-radius: 0 8px 8px 0; padding: 14px 18px; margin-bottom: 16px; }
.bf-online-notice__icon  { color: #0090FF; font-size: 22px; margin-top: 1px; }
.bf-online-notice__title { margin: 0; font-size: 0.95rem; color: #0d47a1; font-weight: 700; }
.bf-online-notice__sub   { margin: 4px 0 0; font-size: 0.85rem; color: #0959a8; }

.bf-tickets-note {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  border: 2px solid #e65100;
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px rgba(230,81,0,0.18);
  animation: bf-tickets-note-pulse 2.4s ease-in-out infinite;
}
.bf-tickets-note__icon  { color: #e65100; font-size: 30px; flex-shrink: 0; }
.bf-tickets-note__title {
  margin: 0; font-size: 1.15rem; color: #bf360c; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.4px; line-height: 1.25;
}
.bf-tickets-note__sub   { margin: 5px 0 0; font-size: 0.95rem; color: #9a4b00; font-weight: 600; }
@keyframes bf-tickets-note-pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(230,81,0,0.18); }
  50%      { box-shadow: 0 4px 26px rgba(230,81,0,0.4), 0 0 0 6px rgba(230,81,0,0.08); }
}
@media (prefers-reduced-motion: reduce) {
  .bf-tickets-note { animation: none; }
}
@media (max-width: 599px) {
  .bf-tickets-note { padding: 14px 16px; gap: 10px; }
  .bf-tickets-note__icon  { font-size: 24px; }
  .bf-tickets-note__title { font-size: 1rem; }
  .bf-tickets-note__sub   { font-size: 0.85rem; }
}

.bf-form-error       { display: flex; align-items: flex-start; gap: 10px; background: #fdecea; border-left: 4px solid #c62828; border-radius: 0 8px 8px 0; padding: 14px 18px; margin-top: 16px; animation: bf-form-error-in 0.2s ease; }
.bf-form-error__icon { color: #c62828; font-size: 22px; margin-top: 1px; flex-shrink: 0; }
.bf-form-error__text { margin: 0; font-size: 0.9rem; color: #b71c1c; font-weight: 600; text-align: left; }
@keyframes bf-form-error-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

.bf-checkbox-panel { margin-top: 20px; padding: 16px; background: #f5f7ff; border-radius: 8px; }

.bf-coupon-panel        { margin-top: 20px; padding: 16px; background: #f5f7ff; border-radius: 8px; }
.bf-coupon-row          { display: flex; align-items: flex-start; gap: 10px; }
.bf-coupon-input        { flex: 1; }
.bf-coupon-msg          { margin: 8px 0 0; font-size: 0.85rem; }
.bf-coupon-msg--success { color: #1b5e20; font-weight: 600; }
.bf-coupon-msg--error   { color: #c62828; }
.bf-separator      { margin: 28px 0; }
.bf-section-label  { font-size: 1.05rem; margin-bottom: 4px; }
.bf-helper-text    { font-size: 0.85rem; color: #777; margin-bottom: 16px; }
.bf-legal-link     { color: #0090FF; font-weight: 600; text-decoration: none; }
.bf-legal-link:hover { text-decoration: underline; }

.bf-attendee         { margin-bottom: 20px; }
.bf-attendee__label  { margin-bottom: 8px; color: #555; }
.bf-attendee__type   { font-weight: 400; color: #0090FF; font-size: 0.85rem; margin-left: 6px; }

.bf-attendance-row     { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.bf-attendance-label   { font-size: 0.85rem; color: #555; white-space: nowrap; }

/* Compact sliding attendance switch (Online / In-person) */
.bf-toggle-switch {
  position: relative;
  display: inline-flex;
  width: 164px;
  height: 32px;
  flex-shrink: 0;
  background: #eef1fb;
  border: 1px solid #ddd;
  border-radius: 999px;
  cursor: pointer;
  user-select: none;
}
.bf-toggle-switch__thumb {
  position: absolute;
  top: 2px; left: 2px;
  width: calc(50% - 2px);
  height: calc(100% - 4px);
  background: #2e7d32;
  border-radius: 999px;
  transition: transform 0.25s ease;
}
.bf-toggle-switch--right .bf-toggle-switch__thumb { transform: translateX(100%); }
.bf-toggle-switch__label {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: #777;
  transition: color 0.25s ease;
}
.bf-toggle-switch:not(.bf-toggle-switch--right) .bf-toggle-switch__label:first-of-type,
.bf-toggle-switch--right .bf-toggle-switch__label:last-of-type {
  color: #fff;
}

.bf-submit-btn   { border-radius: 8px !important; }
.bf-payment-note { font-size: 0.8rem; color: #aaa; text-align: center; margin-top: 12px; }

/* ── Footer ── */
.bf-footer       { background: #0d0d35; padding: 24px; }
.footer-link     { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-link:hover { color: white; }

/* =============================================================
   LUXURY THEME — toggled via .theme-luxury on #q-app
   ============================================================= */
.theme-luxury {
  --lux-bg-primary: #16233A;
  --lux-bg-secondary: #243B57;
  --lux-gold: #D5BC77;
  --lux-gold-light: #EAD7A0;
  --lux-gold-dark: #A88743;
  --lux-text-primary: #F5F0DE;
  --lux-text-secondary: #D7D1BF;
  --lux-overlay: rgba(10,18,30,0.55);
  background: var(--lux-bg-primary);
}
.theme-luxury, .theme-luxury * { font-family: 'Inter', sans-serif; }
.theme-luxury .material-icons,
.theme-luxury .q-icon { font-family: 'Material Icons' !important; }
.theme-luxury .hero-title,
.theme-luxury .section-title,
.theme-luxury .bf-instructor-title,
.theme-luxury .hero-quote-en {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 300;
}
.theme-luxury .hero-title { font-family: 'Marcellus', serif !important; }

@keyframes lux-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lux-twinkle { from { opacity: 0.35; } to { opacity: 0.9; } }

/* Header / nav */
.theme-luxury .bf-header {
  background: rgba(22,35,58,0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(213,188,119,0.15);
  box-shadow: none;
}
.theme-luxury .nav-link { color: var(--lux-text-secondary); letter-spacing: 0.03em; }
.theme-luxury .nav-link:hover { color: var(--lux-gold); }
.theme-luxury .nav-link.book {
  background: transparent; border: 1px solid var(--lux-gold); color: var(--lux-gold);
  border-radius: 4px; transition: box-shadow 0.3s ease, background 0.3s ease;
}
.theme-luxury .nav-link.book:hover { background: rgba(213,188,119,0.08); box-shadow: 0 0 20px rgba(213,188,119,0.3); }

/* Hero — full-bleed cinematic video with a floating glass content panel */
.theme-luxury .hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #0c1524;
}
.theme-luxury .hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.theme-luxury .hero-video {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
  filter: saturate(0.8) contrast(1.05) brightness(0.85);
}
.theme-luxury .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,18,30,0.4) 0%, rgba(10,18,30,0.25) 45%, rgba(10,18,30,0.5) 100%);
}
.theme-luxury .hero-divider-glow { display: none; }
.theme-luxury .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 48px 0;
}
.theme-luxury .hero-label {
  position: relative; z-index: 1;
  display: inline-block;
  color: var(--lux-gold);
  border: 1px solid rgba(213,188,119,0.4);
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  margin-bottom: 32px;
  animation: lux-fade-up 0.8s ease both;
}
.theme-luxury .hero-title {
  position: relative; z-index: 1;
  color: var(--lux-text-primary) !important;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.05;
  margin-bottom: 24px;
  animation: lux-fade-up 0.8s ease 0.1s both;
}
.theme-luxury .hero-sub {
  position: relative; z-index: 1;
  color: var(--lux-text-secondary) !important;
  font-style: normal;
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 28px;
  animation: lux-fade-up 0.8s ease 0.2s both;
}
.theme-luxury .hero-quote-card {
  display: block;
  position: relative; z-index: 1;
  background: rgba(12,25,40,0.65);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(213,188,119,0.2);
  border-radius: 10px;
  padding: 32px 36px;
  margin-bottom: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  animation: lux-fade-up 0.8s ease 0.3s both;
}
.theme-luxury .hero-quote-arabic { font-size: clamp(1.5rem, 2.4vw, 2rem); color: var(--lux-gold-light); margin: 0 0 16px; line-height: 1.9; }
.theme-luxury .hero-quote-en { font-style: italic; font-size: clamp(1.2rem, 1.6vw, 1.4rem); color: var(--lux-text-primary); line-height: 1.7; margin: 0 0 10px; }
.theme-luxury .hero-quote-ref { font-size: 0.75rem; letter-spacing: 1px; color: var(--lux-gold); text-transform: uppercase; margin: 0; }
.theme-luxury .hero-actions {
  position: relative; z-index: 1;
  justify-content: center;
  animation: lux-fade-up 0.8s ease 0.4s both;
}
.theme-luxury .hero-website {
  display: block;
  position: relative; z-index: 1;
  margin-top: 40px;
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: var(--lux-text-secondary);
  text-transform: uppercase;
}

@media (max-width: 1023px) {
  .theme-luxury .hero-content { max-width: 480px; }
}
@media (max-width: 599px) {
  .theme-luxury .hero-content { max-width: 100%; padding: 100px 24px 56px; }
  .theme-luxury .hero-overlay { background: linear-gradient(180deg, rgba(10,18,30,0.3) 0%, rgba(10,18,30,0.5) 55%, rgba(10,18,30,0.65) 100%); }
}

/* Buttons */
.theme-luxury .ig-btn, .theme-luxury .wa-btn {
  background: transparent !important;
  border: 1px solid rgba(213,188,119,0.35);
  color: var(--lux-gold-light) !important;
}
.theme-luxury .ig-btn:hover, .theme-luxury .wa-btn:hover { box-shadow: 0 0 18px rgba(213,188,119,0.25); }
.theme-luxury .bg-blue-8, .theme-luxury .bg-blue-6, .theme-luxury .bg-blue-1 {
  background: transparent !important;
  border: 1px solid var(--lux-gold) !important;
}
.theme-luxury .text-blue-8, .theme-luxury .text-blue-9 { color: var(--lux-gold) !important; }

/* Book Now — same cream tone as the "From Illusion to Insight" title, with a gradient for depth */
.theme-luxury .bf-book-btn {
  background: linear-gradient(135deg, #ffffff 0%, var(--lux-text-primary) 55%, var(--lux-text-secondary) 100%) !important;
  border: 1px solid var(--lux-text-primary) !important;
  color: var(--lux-bg-primary) !important;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 34px rgba(245,240,222,0.35) !important;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.theme-luxury .bf-book-btn:hover {
  box-shadow: 0 14px 44px rgba(245,240,222,0.5) !important;
  transform: translateY(-2px);
}

.theme-luxury .bf-support-btn {
  border: 1px solid var(--lux-gold) !important;
  color: var(--lux-gold-light) !important;
}
.theme-luxury .bf-support-btn:hover {
  background: rgba(213,188,119,0.08) !important;
}

/* Sections — alternating tones + hairline dividers so adjacent sections
   (e.g. "About the Seminar" vs "Meet the Instructor") read as distinct blocks */
.theme-luxury .section--white  { background: var(--lux-bg-primary); }
.theme-luxury .section--light  { background: var(--lux-bg-secondary); }
.theme-luxury .section--dark   { background: #0c1524; }
.theme-luxury .section ~ .section { border-top: 1px solid rgba(213,188,119,0.12); }
.theme-luxury .section-title  { color: var(--lux-text-primary) !important; font-weight: 300; }
.theme-luxury .bf-body, .theme-luxury .bf-instructor-body {
  color: var(--lux-text-secondary) !important; font-weight: 300;
}
.theme-luxury .bf-callout { color: var(--lux-gold-light) !important; }
.theme-luxury .quran-verse {
  background: rgba(213,188,119,0.06);
  border-left: 3px solid var(--lux-gold);
  color: var(--lux-text-primary);
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  line-height: 2;
  padding: 30px 34px;
}
.theme-luxury .quran-ref { color: var(--lux-gold); font-size: 1rem; }

/* Instructor */
.theme-luxury .bf-instructor-title { color: var(--lux-text-primary) !important; }
.theme-luxury .bf-instructor-img { border: 1px solid rgba(213,188,119,0.25); filter: saturate(0.9); }
.theme-luxury .bf-instructor-placeholder { background: rgba(213,188,119,0.08) !important; color: var(--lux-gold) !important; }

/* Testimonials */
.theme-luxury .bf-testimonial-title { color: var(--lux-text-primary) !important; }
.theme-luxury .bf-testimonial-card {
  background: rgba(36,59,87,0.6);
  border: 1px solid rgba(213,188,119,0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.theme-luxury .bf-testimonial-card:hover { box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.theme-luxury .bf-testimonial-quote { color: var(--lux-text-secondary); }
.theme-luxury .bf-testimonial-quote-mark { color: var(--lux-gold); opacity: 0.6; }
.theme-luxury .bf-testimonial-course { color: var(--lux-gold-light) !important; }
.theme-luxury .bf-testimonial-avatar { background: var(--lux-gold-dark); color: var(--lux-bg-primary); }
.theme-luxury .bf-testimonial-footer { border-top-color: rgba(213,188,119,0.15); }

/* FAQ */
.theme-luxury .bf-faq-item { background: rgba(36,59,87,0.6); border: 1px solid rgba(213,188,119,0.15); box-shadow: none; }
.theme-luxury .bf-faq-item .q-item__label { color: var(--lux-text-primary) !important; }
.theme-luxury .bf-faq-answer { color: var(--lux-bg-primary); }

/* Booking card */
.theme-luxury .bf-card { background: rgba(22,35,58,0.9); border: 1px solid rgba(213,188,119,0.15); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.theme-luxury .bf-card-body { color: var(--lux-text-secondary); }
.theme-luxury .bf-concession-note { color: var(--lux-text-secondary); }
.theme-luxury .bf-concession-multi-note { background: rgba(213,188,119,0.12); color: var(--lux-gold-light); }
.theme-luxury .bf-coupon-msg--error { color: #ff8a80; }
.theme-luxury .bf-age-notice { background: rgba(213,188,119,0.08); border-left-color: var(--lux-gold); }
.theme-luxury .bf-age-notice__title { color: var(--lux-gold-light) !important; }
.theme-luxury .bf-age-notice__sub   { color: var(--lux-text-secondary) !important; }
.theme-luxury .bf-online-notice { background: rgba(213,188,119,0.08); border-left-color: var(--lux-gold); }
.theme-luxury .bf-online-notice__icon  { color: var(--lux-gold); }
.theme-luxury .bf-online-notice__title { color: var(--lux-gold-light) !important; }
.theme-luxury .bf-online-notice__sub   { color: var(--lux-text-secondary) !important; }

.theme-luxury .bf-tickets-note {
  background: linear-gradient(135deg, rgba(213,188,119,0.16), rgba(213,188,119,0.06));
  border-color: var(--lux-gold);
  animation: bf-tickets-note-pulse-lux 2.4s ease-in-out infinite;
}
.theme-luxury .bf-tickets-note__icon  { color: var(--lux-gold); }
.theme-luxury .bf-tickets-note__title { color: var(--lux-gold-light) !important; }
.theme-luxury .bf-tickets-note__sub   { color: var(--lux-text-secondary) !important; }
@keyframes bf-tickets-note-pulse-lux {
  0%, 100% { box-shadow: 0 4px 18px rgba(213,188,119,0.18); }
  50%      { box-shadow: 0 4px 26px rgba(213,188,119,0.4), 0 0 0 6px rgba(213,188,119,0.1); }
}
@media (prefers-reduced-motion: reduce) {
  .theme-luxury .bf-tickets-note { animation: none; }
}
.theme-luxury .bf-form-error       { background: rgba(198,40,40,0.14); border-left-color: #ff6b6b; }
.theme-luxury .bf-form-error__icon { color: #ff8a80; }
.theme-luxury .bf-form-error__text { color: #ff8a80; }
.theme-luxury .bf-section-label, .theme-luxury .ticket-label { color: var(--lux-text-primary); }
.theme-luxury .bf-helper-text { color: var(--lux-text-secondary); }
.theme-luxury .ticket-row { border-bottom-color: rgba(213,188,119,0.15); }
.theme-luxury .ticket-price { color: var(--lux-gold) !important; }
.theme-luxury .badge--earlybird, .theme-luxury .badge--concession, .theme-luxury .badge--solidarity {
  background: rgba(213,188,119,0.12); color: var(--lux-gold-light);
}
.theme-luxury .badge--soldout { background: #ff1744; color: #fff; box-shadow: 0 2px 8px rgba(255,23,68,0.4); }
.theme-luxury .bf-soldout-label { color: #ff5252; }
.theme-luxury .qty-btn { background: rgba(213,188,119,0.1); color: var(--lux-gold-light); }
.theme-luxury .qty-btn:hover { background: rgba(213,188,119,0.2); }
.theme-luxury .qty-num { color: var(--lux-bg-primary); font-weight: 700; }
.theme-luxury .bf-checkbox-panel { background: rgba(213,188,119,0.06); }
.theme-luxury .bf-coupon-panel { background: rgba(213,188,119,0.06); }
.theme-luxury .bf-coupon-msg--success { color: var(--lux-gold-light); }
.theme-luxury .price-summary { background: rgba(213,188,119,0.06); }
.theme-luxury .price-total { color: var(--lux-gold) !important; border-top-color: rgba(213,188,119,0.2); }
.theme-luxury .price-row--discount { color: var(--lux-gold-light) !important; }
.theme-luxury .price-row--support  { color: var(--lux-gold-light) !important; }
.theme-luxury .bf-attendee__label { color: var(--lux-text-secondary); }
.theme-luxury .bf-attendee__type  { color: var(--lux-gold) !important; }
.theme-luxury .bf-attendance-label  { color: var(--lux-text-secondary); }
.theme-luxury .bf-toggle-switch { background: rgba(213,188,119,0.08); border-color: rgba(213,188,119,0.25); }
.theme-luxury .bf-toggle-switch__label { color: var(--lux-text-secondary); }
.theme-luxury .bf-payment-note { color: var(--lux-text-secondary); }
.theme-luxury .bf-ticket-note {
  color: var(--lux-gold-light);
  background: rgba(213,188,119,0.1);
  border-color: rgba(213,188,119,0.35);
}
@media (prefers-reduced-motion: reduce) {
  .bf-ticket-note { animation: none; }
}
.theme-luxury .bf-submit-btn {
  background: transparent !important;
  border: 1px solid var(--lux-gold) !important;
  color: var(--lux-gold) !important;
  box-shadow: none !important;
}
.theme-luxury .bf-submit-btn:hover { box-shadow: 0 0 24px rgba(213,188,119,0.3); }
.theme-luxury .q-checkbox__bg-rect { stroke: var(--lux-gold) !important; }
.theme-luxury .q-checkbox__bg { border-color: var(--lux-gold) !important; }
.theme-luxury .q-checkbox__label { color: var(--lux-text-secondary); }
.theme-luxury .bf-legal-link { color: var(--lux-gold-light) !important; }
.theme-luxury .bf-legal-link:hover { color: var(--lux-gold) !important; }
.theme-luxury .q-field--outlined .q-field__control { background: rgba(213,188,119,0.04); }
.theme-luxury .q-field__label,
.theme-luxury .q-field__native,
.theme-luxury .q-field__prefix,
.theme-luxury .q-field__suffix { color: var(--lux-text-primary) !important; }
.theme-luxury .q-field--outlined .q-field__control:before { border-color: rgba(213,188,119,0.3) !important; }
.theme-luxury .bf-concession-select .q-select__dropdown-icon { color: var(--lux-gold) !important; }

/* Footer */
.theme-luxury .bf-footer { background: #0c1524; border-top: 1px solid rgba(213,188,119,0.15); }
.theme-luxury .text-grey-6 { color: var(--lux-text-secondary) !important; }

/* ── Support another student modal ── */
.bf-support-modal { width: 440px; max-width: 92vw; border-radius: 12px; }
.bf-support-modal__title { font-weight: 700; }
.bf-support-modal__body { color: #555; font-size: 0.92rem; line-height: 1.6; margin-bottom: 16px; }
.bf-support-modal__toggle { border: 1px solid #ddd; border-radius: 6px; }
.bf-support-modal__amount {
  margin: 14px 0 0;
  padding: 10px 14px;
  background: #f3e5f5;
  color: #6a1b9a;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
}

.theme-luxury .bf-support-modal { background: #16233A; }
.theme-luxury .bf-support-modal__title { color: var(--lux-text-primary); }
.theme-luxury .bf-support-modal__body { color: var(--lux-text-secondary); }
.theme-luxury .bf-support-modal__toggle { border-color: rgba(213,188,119,0.25); }
.theme-luxury .bf-support-modal__amount { background: rgba(213,188,119,0.1); color: var(--lux-gold-light); }
