﻿/**
 * Book Egypt Travel â€” Egyptian Heritage Design System
 * Palette: cool ivory #EDF2F8 Â· steel blue #C9D8E8 Â· brand navy #0E4F8E Â· navy deep #083357 Â· gold #C9A12D Â· kohl #0A2239
 * Brand (from logo): navy #0E4F8E Â· gold #C9A12D Â· pale gold #E2BD57
 * Typography: Marcellus (engraved headings) Â· Manrope (body)
 * Loaded after the parent theme styles so overrides win.
 */

/* ============ 1. Tokens ============ */
/* Palette mirrors the tailor-made booking UI exactly (navy #14284A + gold #D9A441,
   pill geometry, light surfaces, soft navy shadows). */
:root {
  --bet-papyrus:    #F7F8FA;
  --bet-sand:       #EEF0F4;
  --bet-sand-deep:  #E4E7EE;
  --bet-terra:      #14284A;
  --bet-terra-dark: #0F1D38;
  --bet-faience:    #274A7E;
  --bet-faience-soft:#EDF1F7;
  --bet-gold:       #D9A441;
  --bet-gold-bright:#F3C56C;
  --bet-kohl:       #14284A;
  --bet-kohl-soft:  #274A7E;
  --bet-ink:        #182233;
  --bet-muted:      #6B7280;
  --bet-white:      #FFFFFF;
  --bet-line:       #E4E7EE;
  --bet-line-light: rgba(255, 255, 255, 0.25);

  /* Brand identity â€” same values the tailor-made form uses. */
  --bet-navy:         #14284A;
  --bet-navy-deep:    #274A7E;
  --bet-navy-soft:    #EDF1F7;
  --bet-blue-mid:     #1F3F6E;
  --bet-gold-soft:    #D9A441;
  --bet-gold-bright-2:#E3B453;
  --bet-gold-pale:    #FBF1DE;
  --bet-cream:        #FBF1DE;
  --bet-ink-soft:     #182233;

  --bet-teal:         #14284A;
  --bet-teal-deep:    #274A7E;
  --bet-teal-soft:    #EDF1F7;

  --bet-gradient-navy: linear-gradient(135deg, #14284A 0%, #274A7E 100%);
  --bet-gradient-gold: linear-gradient(135deg, #D9A441 0%, #F3C56C 100%);

  --bet-radius:      16px;
  --bet-radius-sm:   12px;
  --bet-shadow:      0 24px 56px rgba(20, 40, 74, 0.18);
  --bet-shadow-sm:   0 12px 30px rgba(20, 40, 74, 0.12);
  --bet-font-body:   'Roboto', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --bet-font-head:   'Roboto Slab', Georgia, 'Times New Roman', serif;
  --bet-header-h:    64px;
}

/* ============ 2. Base ============ */
.bet-wrapper {
  color: var(--bet-ink);
  font-family: var(--bet-font-body);
  -webkit-font-smoothing: antialiased;
  overflow: clip;
  background: var(--bet-papyrus);
}

.bet-wrapper h1,
.bet-wrapper h2,
.bet-wrapper h3,
.bet-wrapper h4,
.bet-wrapper h5,
.bet-wrapper h6 {
  font-family: var(--bet-font-head);
  color: var(--bet-kohl);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0.01em;
}

.bet-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

.bet-section { padding: 96px 0; }

.bet-section--cream { background: var(--bet-papyrus); }
.bet-section--navy  { background: var(--bet-kohl); }
.bet-section--white { background: var(--bet-white); }

/* Papyrus texture: faint sun-mote gradient over the cream sections. */
.bet-section--cream {
  background-image:
    radial-gradient(circle at 12% 20%, rgba(201, 161, 45, 0.06), transparent 32%),
    radial-gradient(circle at 88% 78%, rgba(14, 79, 142, 0.05), transparent 30%);
}

.bet-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bet-terra);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 16px;
  position: relative;
}
/* Cartouche notches at each end of the eyebrow rule. */
.bet-eyebrow::before,
.bet-eyebrow::after {
  content: "";
  height: 2px;
  width: 30px;
  background: linear-gradient(90deg, transparent, var(--bet-gold) 40%, var(--bet-gold));
  border-radius: 2px;
}
.bet-eyebrow::after {
  background: linear-gradient(90deg, var(--bet-gold) 60%, transparent);
}
.bet-eyebrow--center { justify-content: center; }

.bet-section-title {
  font-size: clamp(34px, 4vw, 50px);
  margin: 0 0 18px;
}

.bet-section-sub {
  color: var(--bet-muted);
  font-size: 18px;
  max-width: 660px;
  line-height: 1.75;
}

.bet-section-head { max-width: 780px; margin-bottom: 56px; }
.bet-section-head--center { margin-inline: auto; text-align: center; }
.bet-section-head--center .bet-section-sub { margin-inline: auto; }

/* ============ 3. Buttons (pill â€” mirrors the tailor-made form) ============ */
.bet-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--bet-font-body);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease, filter .18s ease;
}
.bet-btn:hover { text-decoration: none; transform: translateY(-2px); }

.bet-btn--gold {
  background: var(--bet-gradient-gold);
  color: #14284A;
  box-shadow: 0 8px 20px rgba(217, 164, 65, 0.35);
}
.bet-btn--gold:hover { color: #14284A; filter: brightness(1.06); box-shadow: 0 12px 26px rgba(217, 164, 65, 0.45); }

.bet-btn--navy {
  background: var(--bet-gradient-navy);
  color: var(--bet-white);
  box-shadow: 0 8px 20px rgba(20, 40, 74, 0.22);
}
.bet-btn--navy:hover { color: var(--bet-white); filter: brightness(1.08); box-shadow: 0 12px 26px rgba(20, 40, 74, 0.32); }

.bet-btn--outline {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--bet-white);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.bet-btn--outline:hover { border-color: var(--bet-gold-bright); color: var(--bet-gold-bright); background: rgba(217, 164, 65, 0.12); }

.bet-btn--outline-dark {
  background: transparent;
  border-color: var(--bet-line);
  color: var(--bet-navy);
}
.bet-btn--outline-dark:hover { background: var(--bet-gradient-navy); border-color: transparent; color: var(--bet-white); }

.bet-btn--block { width: 100%; }

/* ============ 4. Header â€” floating glass pill (sticky) ============ */
.bet-header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 90;
  font-family: var(--bet-font-body);
  padding: 0 16px;
  pointer-events: none;
}
/* Only the pill itself may catch clicks; the fixed strip passes through. */
.bet-header .bet-container {
  max-width: 1200px;
  pointer-events: auto;
}

/* The pill */
.bet-header-main {
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(228, 231, 238, 0.9);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(20, 40, 74, 0.12);
  padding: 8px 10px 8px 22px;
  transition: box-shadow .3s ease, background .3s ease, padding .3s ease;
}
.bet-header.scrolled .bet-header-main {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 36px rgba(20, 40, 74, 0.18);
  padding-top: 5px;
  padding-bottom: 5px;
}
.bet-header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: var(--bet-header-h);
  transition: min-height .3s ease;
}
.bet-header.scrolled .bet-header-inner { min-height: 54px; }

/* Inner pages start below the floating pill; the homepage hero slides under it. */
body.bet-redesign:not(.bet-on-front) .bet-wrapper { padding-top: 100px; }

/* --- Logo (single current logo on the light glass pill) --- */
.bet-logo { flex: 0 0 auto; }
.bet-logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.bet-logo-img {
  max-height: 50px;
  width: auto;
  height: auto;
  display: block;
  transition: max-height .3s ease;
}
.bet-header.scrolled .bet-logo-img { max-height: 42px; }
.bet-logo-text { font-family: var(--bet-font-head); font-size: 26px; color: var(--bet-navy); font-weight: 700; letter-spacing: 0.02em; }
.bet-logo-text--light { color: var(--bet-white); }

/* --- Primary nav (always on the light glass pill) --- */
.bet-nav { margin-inline: auto; }
.bet-menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 2px; }
.bet-menu > li { position: relative; }
.bet-menu > li > a {
  display: block;
  padding: 12px 13px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: var(--bet-ink);
  text-decoration: none;
  position: relative;
  transition: color .2s ease;
}
.bet-menu > li > a::after {
  content: "";
  position: absolute;
  left: 13px; right: 13px; bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--bet-gradient-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.bet-menu > li > a:hover,
.bet-menu > li.current-menu-item > a,
.bet-menu > li.current_page_item > a { color: var(--bet-navy); }
.bet-menu > li > a:hover::after,
.bet-menu > li.current-menu-item > a::after,
.bet-menu > li.current_page_item > a::after { transform: scaleX(1); }

.bet-menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 10px;
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 230px;
  background: var(--bet-white);
  border: 1px solid var(--bet-line);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(20, 40, 74, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}
.bet-menu > li:hover > .sub-menu,
.bet-menu > li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.bet-menu .sub-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--bet-ink);
  text-decoration: none;
  transition: background .18s ease, color .18s ease;
}
.bet-menu .sub-menu a:hover { background: var(--bet-papyrus); color: var(--bet-navy); }

/* --- Header actions --- */
.bet-header-actions { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.bet-header-actions .bet-btn--gold { padding: 11px 22px; font-size: 13.5px; }

.bet-icon-btn {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bet-line);
  border-radius: 999px;
  background: transparent;
  color: var(--bet-ink);
  font-size: 15px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.bet-icon-btn:hover {
  background: var(--bet-gradient-gold);
  border-color: transparent;
  color: #14284A;
  box-shadow: 0 6px 14px rgba(217, 164, 65, 0.35);
}

/* Language switcher */
.bet-lang { position: relative; }
.bet-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 1px solid var(--bet-line);
  color: var(--bet-ink);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.bet-lang-btn:hover { border-color: var(--bet-gold); color: var(--bet-navy); }
.bet-lang-btn i { color: var(--bet-gold); }
.bet-lang-caret { font-size: 9px; }
.bet-lang-menu {
  list-style: none;
  margin: 0;
  padding: 8px;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 190px;
  background: var(--bet-white);
  border: 1px solid var(--bet-line);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(20, 40, 74, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 20;
}
.bet-lang.open .bet-lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.bet-lang-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--bet-ink);
  text-decoration: none;
}
.bet-lang-menu a:hover { background: var(--bet-papyrus); color: var(--bet-navy); }

/* Burger */
.bet-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid var(--bet-line);
  border-radius: 999px;
  padding: 11px;
  cursor: pointer;
}
.bet-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--bet-ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.bet-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bet-burger.open span:nth-child(2) { opacity: 0; }
.bet-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Search flyout (drops under the pill) */
.bet-search-box { margin-top: 12px; }
.bet-header-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bet-white);
  border: 1px solid var(--bet-line);
  border-radius: 999px;
  padding: 8px 8px 8px 22px;
  max-width: 640px;
  margin-inline: auto;
  box-shadow: 0 18px 44px rgba(20, 40, 74, 0.2);
}
.bet-header-search > i { color: var(--bet-muted); }
.bet-header-search input {
  flex: 1;
  border: none;
  background: none;
  font-family: var(--bet-font-body);
  font-size: 15px;
  color: var(--bet-ink);
  outline: none;
  min-width: 0;
}
.bet-header-search .bet-btn { padding: 11px 24px; font-size: 14px; }

/* ============ 5. Mobile drawer ============ */
.bet-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 88vw);
  background: var(--bet-papyrus);
  z-index: 200;
  transform: translateX(105%);
  visibility: hidden;
  transition: transform .3s ease, visibility .3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(10, 34, 57, 0.25);
  border-left: 3px solid var(--bet-gold);
}
.bet-drawer.open {
  transform: translateX(0);
  visibility: visible;
}
.bet-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 2px solid var(--bet-sand-deep);
  background: var(--bet-white);
}
.bet-drawer-logo img { max-height: 44px; }
.bet-drawer-close {
  border: none;
  background: none;
  font-size: 22px;
  color: var(--bet-terra);
  cursor: pointer;
}
.bet-drawer-nav { padding: 12px 0; overflow-y: auto; flex: 1; }
.bet-drawer-menu { list-style: none; margin: 0; padding: 0; }
.bet-drawer-menu > li { border-bottom: 1px solid var(--bet-sand-deep); }
.bet-drawer-menu > li > a,
.bet-drawer-menu .sub-menu a {
  display: block;
  padding: 14px 20px;
  font-family: var(--bet-font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--bet-ink);
  text-decoration: none;
}
.bet-drawer-menu > li > a:hover { color: var(--bet-terra); background: var(--bet-white); }
.bet-drawer-menu .sub-menu { list-style: none; margin: 0; padding: 0 0 8px 20px; }
.bet-drawer-menu .sub-menu a { font-size: 14px; padding: 10px 20px; }
.bet-drawer-menu > li.menu-item-has-children > a::after {
  content: "â–¾";
  float: right;
  color: var(--bet-gold);
}
.bet-drawer-menu > li.menu-item-has-children > a { padding-right: 16px; }
.bet-drawer-menu > li .sub-menu { display: none; }
.bet-drawer-menu > li.open .sub-menu { display: block; }
.bet-drawer-menu > li.open > a { color: var(--bet-terra); background: var(--bet-white); }
.bet-drawer-foot { margin-top: auto; padding: 18px 20px 26px; display: grid; gap: 12px; border-top: 1px solid var(--bet-sand-deep); background: var(--bet-white); }
.bet-drawer-link { color: var(--bet-terra); font-weight: 700; text-align: center; text-decoration: none; font-size: 14px; }
.bet-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 15, 30, 0.6);
  z-index: 190;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s;
}
.bet-drawer-overlay.open { opacity: 1; visibility: visible; }

.bet-drawer-langs { padding: 14px 20px; border-bottom: 1px solid var(--bet-sand-deep); }
.bet-drawer-langs-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--bet-line);
  border-radius: 10px;
  background: var(--bet-white);
  color: var(--bet-kohl);
  font-family: var(--bet-font-head);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.bet-drawer-langs-toggle:hover { border-color: var(--bet-gold); background: var(--bet-papyrus); }
.bet-drawer-langs-toggle-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bet-drawer-langs-toggle-text i { color: var(--bet-gold); }
.bet-drawer-langs-caret { font-size: 11px; transition: transform .25s ease; color: var(--bet-muted); }
.bet-drawer-langs.open .bet-drawer-langs-caret { transform: rotate(180deg); }
.bet-drawer-langs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .25s ease, opacity .2s ease, padding .2s ease;
}
.bet-drawer-langs.open .bet-drawer-langs-list {
  max-height: 260px;
  opacity: 1;
  padding-top: 10px;
}
.bet-drawer-langs-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 8px;
  color: var(--bet-ink);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
}
.bet-drawer-langs-list a:hover { background: var(--bet-white); color: var(--bet-terra); }
.bet-drawer-langs-list img { border-radius: 3px; }

/* ============ 6. Hero â€” cinematic centered ============ */
.bet-page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  padding: 140px 0 110px;
}
.bet-page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 29, 56, 0.82) 0%, rgba(15, 29, 56, 0.68) 45%, rgba(15, 29, 56, 0.90) 100%);
}
.bet-page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
}
.bet-page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1px solid rgba(243, 197, 108, 0.5);
  border-radius: 999px;
  background: rgba(20, 40, 74, 0.45);
  color: var(--bet-gold-bright);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.bet-page-hero-title {
  color: #fff !important;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  margin: 0 0 18px;
  line-height: 1.12;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.bet-page-hero-desc {
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto 32px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}
.bet-page-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
@media (max-width: 640px) {
  .bet-page-hero { min-height: 70vh; padding: 120px 0 80px; }
  .bet-page-hero-desc { font-size: 16px; }
  .bet-page-hero-cta { flex-direction: column; align-items: center; }
  .bet-page-hero-cta .bet-btn { width: 100%; max-width: 320px; }
}

.bet-hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--bet-gradient-navy);
}
.bet-hero::after { content: none; }
.bet-slider { position: absolute; inset: 0; z-index: 0; }
.bet-slider-track { position: absolute; inset: 0; }
.bet-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s ease, visibility .9s;
}
.bet-slide.is-active { opacity: 1; visibility: visible; }
.bet-slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.bet-slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(20, 40, 74, 0.30) 0%, rgba(20, 40, 74, 0.55) 100%),
    linear-gradient(180deg, rgba(20, 40, 74, 0.62) 0%, rgba(20, 40, 74, 0.38) 45%, rgba(15, 29, 56, 0.80) 100%);
}
.bet-slide-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
  padding: 150px 24px 210px;
}

.bet-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1px solid rgba(243, 197, 108, 0.5);
  border-radius: 999px;
  background: rgba(20, 40, 74, 0.45);
  color: var(--bet-gold-bright);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.bet-hero-badge i { color: var(--bet-gold-bright); }

.bet-slide-inner h2 { color: var(--bet-white); font-size: clamp(40px, 5.6vw, 68px); font-weight: 700; margin: 0 0 18px; line-height: 1.12; }
.bet-slide-inner h2 em { font-style: normal; color: var(--bet-gold-bright); position: relative; display: inline-block; }
.bet-slide-inner h2 em::after { content: none; }
.bet-slide-inner p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 30px;
}
.bet-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
@media (max-width: 640px) {
  .bet-hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .bet-hero-cta .bet-btn {
    width: 100%;
    max-width: 320px;
  }
}

/* Search card overlapping the hero's bottom edge */
.bet-hero-search { position: relative; z-index: 6; width: 100%; margin-bottom: -64px; }

.bet-hero-search .bet-search-widget {
  position: relative;
  max-width: 1000px;
  margin-inline: auto;
}

.bet-slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(20, 40, 74, 0.35);
  color: var(--bet-white);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  font-size: 16px;
  z-index: 5;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.bet-slide-arrow:hover { background: var(--bet-gradient-gold); border-color: transparent; color: #14284A; }
.bet-slide-prev { left: 24px; }
.bet-slide-next { right: 24px; }
.bet-slider-dots {
  position: absolute;
  bottom: 200px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.bet-slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}
.bet-slider-dots button.is-active { background: var(--bet-gold); width: 30px; border-radius: 999px; }

/* ============ 7. Search widget (white overlap card Â· pill fields) ============ */
.bet-search-widget { position: relative; z-index: 3; }

.bet-hero-search .bet-search-widget,
.bet-search-widget {
  border-radius: 20px;
  background: var(--bet-white);
  border: 1px solid var(--bet-line);
  box-shadow: 0 24px 56px rgba(20, 40, 74, 0.16);
}

.bet-search-widget #search_form {
  margin: 0;
  padding: 14px;
  display: block;
}

/* Override the plugin's #search-box shell (table layout + top padding). */
.bet-search-widget #search-box.babe-search-box {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}
.bet-search-widget #search-box h3 { display: none; }

/* The BA plugin wraps fields in .input-group â€” this is the real flex row. */
.bet-search-widget #search_form .input-group {
  display: flex !important;
  flex-wrap: nowrap !important;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  gap: 10px;
}

/* ---- Tabs: one merged swap-unit sitting on the card's top edge ---- */
/* The two tabs form a single segmented toggle protruding above the card.
   The active half is white (same as the card) and overlaps the card's top
   border by 1px so it reads as one connected surface. */
.bet-search-widget #search_form_tabs {
  position: absolute;
  bottom: 100%;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  display: flex !important;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  margin: 0;
  padding: 5px 5px 0;
  background: var(--bet-navy-soft);
  border: 1px solid var(--bet-line);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -12px 28px rgba(20, 40, 74, 0.12);
  text-align: center;
  z-index: 5;
  white-space: nowrap;
}
.bet-search-widget #search_form_tabs .search_form_tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 24px;
  border-radius: 11px 11px 0 0;
  border: none;
  background: transparent;
  color: var(--bet-muted);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  transition: background .2s ease, color .2s ease;
}
.bet-search-widget #search_form_tabs .search_form_tab:hover {
  color: var(--bet-navy);
}
.bet-search-widget #search_form_tabs .search_form_tab.is-active {
  background: var(--bet-white);
  color: var(--bet-navy);
  padding-bottom: 12px;
  margin-bottom: -1px;
}

/* Neutralize the plugin's default cell chrome (margins + bottom borders). */
.bet-search-widget #search_form .input-group > div {
  margin: 0 !important;
  padding: 0 !important;
  background-color: transparent !important;
  border-bottom: none !important;
}
.bet-search-widget #search_form input,
.bet-search-widget #search_form select,
.bet-search-widget #search_form .add_input_field {
  font-size: 13px;
}

/* ---- Shared field cell: icon (left) + value (right), one slim pill row ---- */
.bet-search-widget #search_form .add_input_field.is-active[data-inputfield],
.bet-search-widget #search_form .search-date.is-active[data-inputfield],
.bet-search-widget #search_form .search_guests_field.is-active {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 56px;
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 0;
  margin: 0 !important;
  padding: 0 18px 0 46px !important;
  background: var(--bet-papyrus) !important;
  border: 1px solid var(--bet-line) !important;
  border-radius: 999px !important;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.bet-search-widget #search_form .add_input_field.is-active:hover,
.bet-search-widget #search_form .search-date.is-active:hover,
.bet-search-widget #search_form .search_guests_field.is-active:hover {
  border-color: var(--bet-gold) !important;
  background: #FFFFFF !important;
  box-shadow: 0 6px 16px rgba(20, 40, 74, 0.10);
}

/* Field icon (left, replaces BA flaticons via JS). */
.bet-search-widget #search_form .add_input_field > i:first-child,
.bet-search-widget #search_form .search-date > i:first-child,
.bet-search-widget #search_form .search_guests_field > i:first-child {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  text-align: center;
  flex: 0 0 auto;
  font-size: 15px;
  color: var(--bet-navy) !important;
}

/* ---- Destinations value ---- */
.bet-search-widget #search_form .add_ids_title {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
  padding: 0 !important;
}
.bet-search-widget #search_form .add_ids_title_value {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--bet-font-body);
  font-weight: 800;
  font-size: 13px;
  color: var(--bet-ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}
.bet-search-widget #search_form .add_input_field .fa-chevron-down {
  position: static;
  margin-left: auto;
  color: var(--bet-navy);
  font-size: 10px;
  align-self: center;
}

/* ---- Date value ---- */
.bet-search-widget #search_form .search-date .search_date {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none;
  padding: 0 !important;
  font-family: var(--bet-font-body);
  font-weight: 800;
  font-size: 13px;
  color: var(--bet-ink-soft);
  cursor: pointer;
  line-height: 1.4;
}
.bet-search-widget #search_form .search-date .search_date::placeholder {
  color: var(--bet-ink-soft);
  font-weight: 800;
  opacity: 1;
}

/* ---- Guests value ---- */
.bet-search-widget #search_form .search_guests_field > div {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.bet-search-widget #search_form .search_guests_title {
  font-family: var(--bet-font-body);
  font-weight: 800;
  font-size: 13px;
  color: var(--bet-ink-soft);
  padding: 0 !important;
  height: auto !important;
  line-height: 1.4 !important;
}
.bet-search-widget #search_form .search_guests_title_value {
  font-weight: 700;
  font-size: 13px;
  color: var(--bet-navy);
}

/* ---- Guests dropdown panel (unified card look) ---- */
.bet-search-widget #search_form .search_guests_select_wrapper {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  width: 300px;
  min-width: 260px;
  margin-left: 0;
  padding: 16px 18px 18px;
  background: #FFFFFF;
  border: 1px solid var(--bet-line);
  border-radius: 16px;
  box-shadow: 0 20px 44px rgba(20, 40, 74, 0.16);
  z-index: 60;
}
/* Row: "Adult .....  â€“  2  +" (visual order via flex order) */
.bet-search-widget #search_form .input_select_field_guests {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding: 4px 2px;
  line-height: 1;
}
.bet-search-widget #search_form .input_select_field_guests .select_guests_title {
  order: 1;
  flex: 1 1 auto;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--bet-ink);
}
.bet-search-widget #search_form .input_select_field_guests .search_guests_minus { order: 2; }
.bet-search-widget #search_form .input_select_field_guests .select_guests_value {
  order: 3;
  width: 26px;
  height: auto;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--bet-navy);
  padding: 0;
}
.bet-search-widget #search_form .input_select_field_guests .search_guests_plus { order: 4; }
.bet-search-widget #search_form .search_guests_plus,
.bet-search-widget #search_form .search_guests_minus,
.bet-search-widget #search_form .btn-search-guests-change,
.bet-search-widget #search_form .btn-search-guests-change:focus {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  float: none !important;
  width: 30px !important;
  height: 30px !important;
  min-width: 30px;
  min-height: 30px;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1;
  font-size: 12px;
  border-radius: 999px !important;
  border: 1px solid var(--bet-line) !important;
  background: var(--bet-papyrus) !important;
  color: var(--bet-navy) !important;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.bet-search-widget #search_form .search_guests_plus:hover,
.bet-search-widget #search_form .search_guests_minus:hover,
.bet-search-widget #search_form .btn-search-guests-change:hover {
  color: #fff !important;
  background: var(--bet-navy) !important;
  border-color: var(--bet-navy) !important;
}
.bet-search-widget #search_form .search_guests_apply {
  margin-top: 14px;
  text-align: center;
}
.bet-search-widget #search_form .search_guests_apply .search_apply_btn {
  width: 100%;
  padding: 11px 18px;
  border: none;
  border-radius: 999px;
  background: var(--bet-gradient-navy);
  color: #fff;
  font-family: var(--bet-font-body);
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  transition: filter .2s ease;
}
.bet-search-widget #search_form .search_guests_apply .search_apply_btn:hover {
  filter: brightness(1.08);
}

/* ---- Destinations dropdown list ---- */
.bet-search-widget #search_form .add_ids_list {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  right: auto;
  width: 100%;
  min-width: 240px;
  margin: 0;
  padding: 6px;
  background: #FFFFFF;
  border: 1px solid var(--bet-line);
  border-radius: 16px;
  box-shadow: 0 20px 44px rgba(20, 40, 74, 0.16);
  z-index: 60;
  list-style: none;
}
.bet-search-widget #search_form .add_ids_list .term_item {
  display: block;
  margin: 0;
  padding: 8px 12px;
  border-radius: 8px;
  font-family: var(--bet-font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--bet-ink);
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.bet-search-widget #search_form .add_ids_list .term_item:hover {
  color: #fff;
  background: var(--bet-navy);
}
.bet-search-widget #search_form .add_ids_list .term_item.term_item_selected {
  color: var(--bet-navy);
  background: var(--bet-navy-soft);
  font-weight: 800;
}
.bet-search-widget #search_form .add_ids_list .term_item[data-id="0"] {
  font-weight: 800;
}

/* ---- Search button ---- */
.bet-search-widget #search_form .submit {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  border-bottom: none !important;
}
.bet-search-widget #search_form .search-button,
.bet-search-widget #search_form .btn-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
  min-height: 56px;
  margin: 0 !important;
  padding: 0 30px !important;
  border: none !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--bet-navy) 0%, var(--bet-navy-deep) 100%) !important;
  color: #FFFFFF !important;
  font-family: var(--bet-font-body) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(20, 40, 74, 0.28);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.bet-search-widget #search_form .search-button:hover,
.bet-search-widget #search_form .btn-search:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow: 0 14px 30px rgba(20, 40, 74, 0.36);
  background: linear-gradient(135deg, var(--bet-navy) 0%, var(--bet-navy-deep) 100%) !important;
}
.bet-search-widget #search_form .search-button i,
.bet-search-widget #search_form .btn-search i {
  color: var(--bet-gold-soft);
  font-size: 13px;
}

/* ---- Datepicker popup (daterangepicker + jquery-ui) ---- */
.daterangepicker {
  border: 1px solid rgba(14, 79, 142, 0.16) !important;
  border-radius: 14px !important;
  box-shadow: 0 20px 44px rgba(8, 51, 87, 0.20) !important;
  font-family: var(--bet-font-body) !important;
}
.daterangepicker .calendar-table {
  background: #fff;
}
.daterangepicker td.available:hover {
  background: var(--bet-navy-soft) !important;
  color: var(--bet-navy) !important;
}
.daterangepicker td.active,
.daterangepicker td.active:hover {
  background: var(--bet-navy) !important;
  color: #fff !important;
}
.daterangepicker .ranges li.active {
  background: var(--bet-navy) !important;
  color: #fff !important;
}
.daterangepicker .applyBtn {
  background: var(--bet-navy) !important;
  border-color: var(--bet-navy) !important;
  border-radius: 8px !important;
}
.ui-datepicker {
  background: #fff;
  border: 1px solid rgba(14, 79, 142, 0.16) !important;
  border-radius: 14px;
  box-shadow: 0 20px 44px rgba(8, 51, 87, 0.20) !important;
  font-family: var(--bet-font-body) !important;
}
.ui-datepicker .ui-datepicker-header {
  background: var(--bet-navy) !important;
  border: none !important;
  border-radius: 14px 14px 0 0;
}
.ui-datepicker .ui-datepicker-header a,
.ui-datepicker .ui-datepicker-header span {
  color: #fff !important;
}
.ui-datepicker td a.ui-state-active {
  background: var(--bet-navy) !important;
  color: #fff !important;
  border: none !important;
}

/* ============ 8. Trustbar ============ */
.bet-trustbar {
  background: var(--bet-gradient-navy);
  color: var(--bet-white);
  position: relative;
  padding-top: 108px; /* clearance for the overlapping hero search card */
}
.bet-trustbar::before { content: none; }
.bet-trustbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 0;
  padding: 30px 0 34px;
  font-size: 15px;
  font-weight: 600;
}
.bet-trustbar-item { display: inline-flex; align-items: center; gap: 10px; margin: 0 36px !important; }
.bet-trustbar-item:last-child { margin-right: 0 !important; }
.bet-trustbar-item i { color: var(--bet-gold-bright); font-size: 16px; }
.bet-trustbar-item .bet-stars { font-size: 14px; }
.bet-trustbar-item .fab { font-size: 15px; color: var(--bet-white); }

@media (max-width: 640px) {
  .bet-trustbar-inner {
    overflow: hidden;
    padding: 18px 0 22px;
  }
  .bet-trustbar-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 18px;
    width: max-content;
    animation: bet-trustbar-marquee 22s linear infinite;
  }
  .bet-trustbar-inner:hover .bet-trustbar-track,
  .bet-trustbar-inner:active .bet-trustbar-track {
    animation-play-state: paused;
  }
  .bet-trustbar-item {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 13.5px;
  }
}

@keyframes bet-trustbar-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ 9. Intro ============ */
.bet-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.bet-intro-media { position: relative; }
.bet-intro-media > img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  border-radius: var(--bet-radius);
  box-shadow: var(--bet-shadow);
  border: 1px solid var(--bet-sand-deep);
}
.bet-intro-media::after {
  content: "";
  position: absolute;
  inset: -14px 14px 14px -14px;
  border: 2px solid var(--bet-gold);
  border-radius: var(--bet-radius);
  opacity: 0.45;
  z-index: -1;
}
.bet-intro-badge {
  position: absolute;
  bottom: -18px;
  right: -8px;
  background: var(--bet-terra);
  color: var(--bet-white);
  border-radius: var(--bet-radius);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  box-shadow: var(--bet-shadow-sm);
  border: 2px solid var(--bet-gold);
}
.bet-intro-badge b { font-family: var(--bet-font-head); font-size: 34px; color: var(--bet-gold-bright); font-weight: 500; line-height: 1; }
.bet-intro-badge span { font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.bet-intro-copy p { line-height: 1.8; font-size: 16px; }
.bet-intro-points { list-style: none; margin: 24px 0 30px; padding: 0; display: grid; gap: 14px; }
.bet-intro-points li { display: flex; align-items: center; gap: 13px; font-weight: 600; font-size: 15.5px; }
.bet-intro-points i { color: var(--bet-terra); }

/* ============ 10. Grid + Tour cards ============ */
.bet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.bet-card {
  display: flex;
  flex-direction: column;
  background: var(--bet-white);
  border-radius: var(--bet-radius);
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--bet-sand-deep);
  box-shadow: var(--bet-shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.bet-card:hover { transform: translateY(-6px); box-shadow: var(--bet-shadow); text-decoration: none; }
/* Cartouche top keyline */
.bet-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bet-terra), var(--bet-gold) 45%, var(--bet-faience) 90%);
  z-index: 2;
}
.bet-card-media { position: relative; overflow: hidden; }
.bet-card-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.bet-card:hover .bet-card-media img { transform: scale(1.06); }
.bet-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 3px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--bet-kohl);
  color: var(--bet-gold-bright);
  z-index: 1;
  border: 1px solid rgba(224, 184, 74, 0.5);
}
.bet-card-duration {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(10, 34, 57, 0.78);
  color: var(--bet-white);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(3px);
}
.bet-card-duration i { color: var(--bet-gold-bright); }
.bet-card-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.bet-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.bet-card-loc { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--bet-muted); }
.bet-card-loc i { color: var(--bet-terra); font-size: 13px; }
.bet-card-rating .bet-stars { font-size: 13px; letter-spacing: 1px; }
.bet-card-body h3 { font-size: 21px; margin: 0; color: var(--bet-kohl); }
.bet-card p { font-size: 14px; line-height: 1.65; color: var(--bet-muted); margin: 0; }
.bet-card-foot {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed var(--bet-sand-deep);
}
.bet-card-price { display: inline-flex; align-items: baseline; gap: 6px; }
.bet-card-price small { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--bet-muted); }
.bet-card-price b { font-size: 23px; font-family: var(--bet-font-head); font-weight: 600; color: var(--bet-terra); }
.bet-card-arrow {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bet-papyrus);
  color: var(--bet-terra);
  border: 1px solid var(--bet-sand-deep);
  transition: background .2s ease, color .2s ease;
}
.bet-card:hover .bet-card-arrow { background: var(--bet-gold); color: var(--bet-kohl); border-color: var(--bet-gold); }

.bet-card-tag--navy    { background: var(--bet-kohl); color: var(--bet-gold-bright); border-color: rgba(224, 184, 74, 0.5); }
.bet-card-tag--gold    { background: var(--bet-gold); color: var(--bet-kohl); border-color: var(--bet-gold-bright); }
.bet-card-tag--green   { background: var(--bet-faience); color: var(--bet-white); border-color: rgba(255,255,255,.35); }
.bet-card-tag--purple  { background: #5B3A8F; color: var(--bet-white); }
.bet-card-tag--red     { background: var(--bet-terra); color: var(--bet-white); }
.bet-card-tag--teal    { background: var(--bet-faience); color: var(--bet-white); }
.bet-card-tag--top-rated { background: var(--bet-terra); color: var(--bet-white); }
.bet-card-tag--new     { background: var(--bet-sand); color: var(--bet-kohl); }

.bet-section-cta { text-align: center; margin-top: 52px; }

/* ============ 11. Type grid ============ */
.bet-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.bet-type-card {
  position: relative;
  display: block;
  border-radius: var(--bet-radius);
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 3 / 5;
  border: 1px solid var(--bet-sand-deep);
}
.bet-type-card:hover { text-decoration: none; }
.bet-type-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.bet-type-card:hover .bet-type-img { transform: scale(1.08); }
.bet-type-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 20, 40, 0.82) 0%, rgba(6, 20, 40, 0.1) 55%);
}
.bet-type-card-inner {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px;
  z-index: 1;
}
.bet-type-card-inner h3 {
  color: var(--bet-white);
  font-size: 22px;
  margin: 0 0 8px;
}
.bet-type-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--bet-gold-bright);
  letter-spacing: 0.02em;
}
.bet-type-count i { font-size: 11px; transition: transform .2s ease; }
.bet-type-card:hover .bet-type-count i { transform: translateX(4px); }

/* ============ 12. Features ============ */
.bet-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.bet-feature {
  text-align: center;
  padding: 40px 26px;
  background: var(--bet-white);
  border: 1px solid var(--bet-sand-deep);
  border-radius: var(--bet-radius);
  transition: transform .25s ease, box-shadow .25s ease;
}
.bet-feature:hover { transform: translateY(-6px); box-shadow: var(--bet-shadow); }
.bet-feature-icon {
  width: 78px; height: 78px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bet-papyrus), var(--bet-sand));
  border: 2px solid var(--bet-gold);
  color: var(--bet-terra);
  font-size: 28px;
}
.bet-feature h3 { font-size: 20px; margin: 0 0 9px; }
.bet-feature p { font-size: 14px; line-height: 1.65; color: var(--bet-muted); margin: 0; }

/* ============ 13. Destinations ============ */
.bet-dest-swiper {
  padding: 0 40px 50px;
}
.bet-dest-swiper .swiper-button-prev,
.bet-dest-swiper .swiper-button-next {
  color: var(--bet-navy);
}
.bet-dest-swiper .swiper-button-prev::after,
.bet-dest-swiper .swiper-button-next::after {
  font-size: 18px;
}
.bet-dest-swiper .swiper-pagination-bullet {
  background: var(--bet-navy);
  opacity: 0.3;
}
.bet-dest-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--bet-gold);
}
.bet-dest {
  position: relative;
  display: block;
  width: 100%;
  border-radius: var(--bet-radius);
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--bet-sand-deep);
}
.bet-dest img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.bet-dest:hover img { transform: scale(1.08); }
.bet-dest::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 20, 40, 0.88) 0%, rgba(6, 20, 40, 0.1) 55%);
}
.bet-dest-inner {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px;
  z-index: 1;
}
.bet-dest-inner h3 { color: var(--bet-white); font-size: 23px; margin: 0 0 6px; }
.bet-dest-inner h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  background: var(--bet-gold);
  margin-top: 10px;
  border-radius: 2px;
}
.bet-dest-inner span { color: rgba(255, 253, 247, 0.85); font-size: 13px; font-weight: 600; }
.bet-dest:hover { text-decoration: none; }

/* ============ 14. Bands ============ */
.bet-band { position: relative; overflow: hidden; }
.bet-band--cruise {
  background: linear-gradient(120deg, var(--bet-kohl) 0%, var(--bet-navy-deep) 60%, var(--bet-navy) 130%);
}
.bet-band--cruise::before { content: none; }
.bet-band-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 68px;
  align-items: center;
}
.bet-band-grid--flip { grid-template-columns: 1fr 1.05fr; }
.bet-band-copy .bet-eyebrow { color: var(--bet-gold-bright); }
.bet-band--cruise .bet-band-copy h2,
.bet-band--cta .bet-band-copy h2 { color: var(--bet-white); }
.bet-band--cruise .bet-band-copy p,
.bet-band--cta .bet-band-copy p { color: rgba(255, 253, 247, 0.85); line-height: 1.8; font-size: 16.5px; }
.bet-band-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }
.bet-band-cta--center { justify-content: center; }
.bet-band-media img {
  width: 100%;
  aspect-ratio: 4 / 3.1;
  object-fit: cover;
  border-radius: var(--bet-radius);
  box-shadow: var(--bet-shadow);
}

/* ============ 14b. Duo Section (Cruises + Day Tours) ============ */
.bet-duo {
  position: relative;
  overflow: hidden;
  background: var(--bet-kohl);
}
.bet-duo-bg {
  position: absolute;
  inset: 0;
}
.bet-duo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.bet-duo-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 20, 40, 0.6) 0%, rgba(6, 20, 40, 0.85) 100%);
}
.bet-duo .bet-container {
  position: relative;
  z-index: 1;
}
.bet-duo-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}
.bet-duo-head .bet-eyebrow { color: var(--bet-gold-bright); }
.bet-duo-head h2 {
  color: var(--bet-white);
  font-size: 34px;
  margin: 0 0 16px;
}
.bet-duo-head p {
  color: rgba(255, 253, 247, 0.8);
  font-size: 16.5px;
  line-height: 1.75;
}
.bet-duo-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.bet-duo-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--bet-radius);
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
}
.bet-duo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.bet-duo-card-img {
  overflow: hidden;
}
.bet-duo-card-img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.bet-duo-card:hover .bet-duo-card-img img {
  transform: scale(1.06);
}
.bet-duo-card-body {
  padding: 28px 30px 32px;
}
.bet-duo-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bet-gold-bright);
  margin-bottom: 12px;
}
.bet-duo-card-body h3 {
  color: var(--bet-white);
  font-size: 24px;
  margin: 0 0 12px;
}
.bet-duo-card-body p {
  color: rgba(255, 253, 247, 0.75);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 24px;
}
@media (max-width: 768px) {
  .bet-duo-cards { grid-template-columns: 1fr; }
  .bet-duo-head h2 { font-size: 26px; }
}

/* CTA band â€” redesigned */
.bet-band--cta {
  background: linear-gradient(135deg, var(--bet-papyrus) 0%, #f5efe4 50%, var(--bet-cream) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.bet-band--cta::before { content: none; }
.bet-band--cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 80%, rgba(201, 162, 39, 0.08), transparent),
    radial-gradient(ellipse 500px 350px at 80% 20%, rgba(193, 101, 47, 0.06), transparent);
  pointer-events: none;
}
.bet-band--cta .bet-section-title {
  color: var(--bet-kohl);
  font-size: clamp(28px, 4vw, 42px);
  margin: 10px 0 12px;
}
.bet-band--cta .bet-eyebrow { color: var(--bet-terra); }
.bet-band--cta .bet-section-sub {
  color: var(--bet-muted);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
/* fix outline button on light bg */
.bet-band--cta .bet-btn--outline {
  color: var(--bet-kohl);
  border-color: var(--bet-kohl);
}
.bet-band--cta .bet-btn--outline:hover {
  background: var(--bet-kohl);
  color: var(--bet-white);
}

/* ============ 15. Experts ============ */
.bet-section--navy .bet-eyebrow { color: var(--bet-gold-bright); }
.bet-section--navy .bet-section-title { color: var(--bet-white); }
.bet-experts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.bet-expert {
  text-align: center;
  padding: 38px 28px;
  background: rgba(255, 253, 247, 0.05);
  border: 1px solid rgba(255, 253, 247, 0.14);
  border-radius: var(--bet-radius);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.bet-expert:hover { transform: translateY(-6px); background: rgba(255, 253, 247, 0.09); border-color: rgba(201, 162, 39, 0.5); }
.bet-expert img {
  width: 116px; height: 116px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid var(--bet-gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.2);
}
.bet-expert h3 { color: var(--bet-white); font-size: 21px; margin: 0 0 5px; }
.bet-expert-role { color: var(--bet-gold-bright); font-size: 13px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.bet-expert p { color: rgba(255, 253, 247, 0.75); font-size: 14px; line-height: 1.7; margin: 14px 0 0; }

/* ============ 16. Gallery â€” Auto-scroll Marquee ============ */
.bet-gallery-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}
/* edge fade mask */
.bet-gallery-marquee::before,
.bet-gallery-marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.bet-gallery-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bet-white) 0%, transparent 100%);
}
.bet-gallery-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bet-white) 0%, transparent 100%);
}

/* rows */
.bet-gallery-row {
  overflow: hidden;
  padding: 9px 0;
}
.bet-gallery-track {
  display: flex;
  gap: 18px;
  width: max-content;
}

/* items */
.bet-gallery-item {
  display: block;
  border-radius: var(--bet-radius);
  overflow: hidden;
  flex: 0 0 calc((100vw - 240px - 36px) / 3);
  max-width: 420px;
  aspect-ratio: 4 / 3;
  position: relative;
  pointer-events: none;
}
.bet-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.bet-gallery-item:hover img { transform: scale(1.06); }
.bet-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 34, 57, 0.35);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
  border-radius: inherit;
}
.bet-gallery-item:hover::after { opacity: 1; }

/* === row 1: scroll RIGHT === */
.bet-gallery-row--right .bet-gallery-track {
  animation: bet-gallery-scroll-right 25s linear infinite;
}
.bet-gallery-row--right:hover .bet-gallery-track {
  animation-play-state: paused;
}

/* === row 2: scroll LEFT === */
.bet-gallery-row--left .bet-gallery-track {
  animation: bet-gallery-scroll-left 25s linear infinite;
}
.bet-gallery-row--left:hover .bet-gallery-track {
  animation-play-state: paused;
}

@keyframes bet-gallery-scroll-right {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes bet-gallery-scroll-left {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* mobile */
@media (max-width: 767px) {
  .bet-gallery-item {
    flex: 0 0 calc((100vw - 40px - 12px) / 2);
    max-width: none;
  }
  .bet-gallery-marquee::before,
  .bet-gallery-marquee::after { width: 40px; }
}
/* ============ 17. Reel-style video grid ============ */

/* 4-card grid */
.bet-reel-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
}
.bet-reel-grid-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* reel card */
.bet-reel-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bet-kohl);
  cursor: pointer;
  aspect-ratio: 9 / 14;
  transition: transform .3s ease, box-shadow .3s ease;
}
.bet-reel-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(10, 34, 57, 0.2); }

/* thumbnail */
.bet-reel-thumb { width: 100%; height: 100%; object-fit: cover; display: block; }

/* dark gradient overlay at bottom */
.bet-reel-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 28, 52, 0.85) 100%);
  z-index: 1;
}

/* info overlay at bottom */
.bet-reel-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bet-reel-title {
  color: var(--bet-white);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bet-reel-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.bet-reel-channel {
  color: rgba(255,255,255,0.65);
  font-size: 10px;
  font-weight: 500;
}
.bet-reel-verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #4caf50;
  font-size: 9px;
  font-weight: 600;
}
.bet-reel-verified i { font-size: 9px; }

/* play button â€” white circle */
.bet-reel-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--bet-kohl);
  font-size: 16px;
  z-index: 3;
  transition: transform .25s, background .25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.bet-reel-play i { margin-left: 3px; }
.bet-reel-card:hover .bet-reel-play { transform: translate(-50%,-50%) scale(1.1); background: var(--bet-white); }

/* social share buttons */
.bet-reel-social {
  position: absolute;
  right: 10px;
  bottom: 90px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 3;
}
.bet-reel-social a {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--bet-kohl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-decoration: none;
  transition: background .2s, color .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.bet-reel-social a:hover { background: var(--bet-navy); color: var(--bet-white); }

/* iframe */
.bet-reel-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 4; }

/* bottom CTA row with arrows */
.bet-reel-grid + .bet-section-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding: 0;
  text-align: center;
}
.bet-reel-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bet-navy);
  background: transparent;
  color: var(--bet-navy);
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.bet-reel-arrow:hover { background: var(--bet-navy); color: var(--bet-white); }

/* mobile */
@media (max-width: 1024px) {
  .bet-reel-grid-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 767px) {
  .bet-reel-grid-inner { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .bet-reel-play { width: 42px; height: 42px; font-size: 14px; }
  .bet-reel-social { display: none; }
}

/* ============ 17b. Video lightbox ============ */
.bet-lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s;
}
.bet-lightbox.open { opacity: 1; visibility: visible; }
.bet-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 15, 30, 0.9);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.bet-lightbox-panel {
  position: relative;
  width: min(960px, 96vw);
  background: var(--bet-kohl);
  border: 1px solid rgba(201, 162, 39, 0.6);
  border-radius: var(--bet-radius);
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
  transform: translateY(20px) scale(0.98);
  transition: transform .3s ease;
}
.bet-lightbox.open .bet-lightbox-panel { transform: translateY(0) scale(1); }
.bet-lightbox-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 40px; height: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 253, 247, 0.4);
  border-radius: 50%;
  background: rgba(10, 34, 57, 0.7);
  color: var(--bet-white);
  font-size: 17px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.bet-lightbox-close:hover { background: var(--bet-terra); color: var(--bet-white); transform: rotate(90deg); }
.bet-lightbox-frame { position: relative; aspect-ratio: 16 / 9; background: #000; }
.bet-lightbox-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.bet-lightbox-title {
  padding: 14px 20px;
  color: var(--bet-gold-bright);
  font-family: var(--bet-font-head);
  font-size: 16px;
  border-top: 2px solid rgba(201, 162, 39, 0.4);
}

/* ============ 18. FAQ ============ */
.bet-faq { max-width: 780px; margin-inline: auto; display: grid; gap: 12px; }
.bet-faq-item {
  background: var(--bet-white);
  border: 1px solid var(--bet-sand-deep);
  border-radius: var(--bet-radius);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.bet-faq-item--hidden { display: none; }
.bet-faq-more-wrap { text-align: center; margin-top: 28px; }
.bet-faq-more-btn { gap: 10px; }
.bet-faq-more-btn i { transition: transform .25s ease; }
.bet-faq-more-btn[aria-expanded="true"] i { transform: rotate(180deg); }
.bet-faq-item.open { border-color: var(--bet-gold); box-shadow: var(--bet-shadow-sm); }
.bet-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 22px;
  background: none;
  border: none;
  font-family: var(--bet-font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--bet-kohl);
  cursor: pointer;
  text-align: left;
}
.bet-faq-q i { color: var(--bet-terra); font-size: 14px; transition: transform .25s ease; flex: 0 0 auto; }
.bet-faq-item.open .bet-faq-q i { transform: rotate(45deg); color: var(--bet-gold); }
.bet-faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.bet-faq-a p { margin: 0; padding: 0 22px 20px; color: var(--bet-muted); line-height: 1.75; font-size: 14.5px; }

/* ============ 19. Partners ============ */
.bet-eyebrow--center { justify-content: center; }
.bet-partners {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 40px;
}
.bet-partner {
  font-family: var(--bet-font-head);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--bet-muted);
  opacity: 0.8;
  transition: color .2s ease, opacity .2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bet-partner i {
  font-size: 22px;
}
.bet-partner-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: filter .2s ease;
}
.bet-partner:hover .bet-partner-logo {
  filter: grayscale(0%) opacity(1);
}
.bet-partner-name {
  white-space: nowrap;
}
.bet-partner:last-child::after { display: none; }
.bet-partner:hover { color: var(--bet-terra); opacity: 1; }

/* ============ 20. Amenities ============ */
.bet-amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.bet-amenity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 14px;
  background: var(--bet-papyrus);
  border: 1px solid var(--bet-sand-deep);
  border-radius: var(--bet-radius-sm);
  font-weight: 700;
  font-size: 14px;
}
.bet-amenity i { color: var(--bet-terra); font-size: 16px; }

/* ============ 21. Stats strip ============ */
.bet-stats { background: var(--bet-papyrus); position: relative; }
.bet-stats::before { content: none; }
.bet-stats .bet-stat { color: var(--bet-kohl); }
.bet-stats .bet-stat i { color: var(--bet-gold); }
.bet-stats-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 50px;
  padding: 32px 0;
}
.bet-stat { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; font-size: 15px; }
.bet-stat i { font-size: 17px; }

/* ============ 22. Contact strip ============ */
.bet-contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.bet-contact-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--bet-white);
  border: 1px solid var(--bet-sand-deep);
  border-radius: var(--bet-radius);
  transition: transform .25s ease, box-shadow .25s ease;
}
.bet-contact-card:hover { transform: translateY(-6px); box-shadow: var(--bet-shadow); }
.bet-contact-card > i {
  width: 66px; height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bet-papyrus);
  border: 1px solid var(--bet-gold);
  color: var(--bet-terra);
  font-size: 24px;
  margin-bottom: 18px;
}
.bet-contact-card h3 { font-size: 20px; margin: 0 0 7px; }
.bet-contact-card p { color: var(--bet-muted); margin: 0 0 14px; font-weight: 600; }
.bet-contact-card a { color: var(--bet-terra); font-weight: 800; text-decoration: none; }
.bet-contact-card a:hover { color: var(--bet-terra-dark); }

/* ============ 23. Pay strip ============ */
.bet-pay { border-top: 1px solid var(--bet-sand-deep); background: var(--bet-papyrus); }
.bet-pay-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0;
}
.bet-pay-note { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--bet-muted); }
.bet-pay-note i { color: var(--bet-faience); }
.bet-pay-methods { display: inline-flex; gap: 16px; font-size: 26px; color: var(--bet-kohl); }

/* ============ 24. Reviews ============ */
/* ============ 23. Reviews panel ============ */
.bet-reviews-section { padding: 60px 0 72px !important; background: var(--bet-papyrus); }
.bet-reviews-panel {
  background: var(--bet-white);
  border-radius: var(--bet-radius-lg, 16px);
  border: 1px solid var(--bet-sand-deep);
  box-shadow: 0 6px 24px rgba(20,40,74,.06);
  padding: 40px 44px 36px;
  overflow: hidden;
}
.bet-reviews-panel-head { text-align: center; margin-bottom: 32px; }
.bet-reviews-panel-head h2 {
  font-family: var(--bet-font-head);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  color: var(--bet-kohl);
  margin: 4px 0 6px;
  line-height: 1.25;
}
.bet-reviews-panel-head > p {
  font-size: 15px;
  color: var(--bet-muted);
  margin: 0 0 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* tabs */
.bet-review-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.bet-review-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bet-papyrus);
  border: 1px solid var(--bet-sand-deep);
  border-radius: 40px;
  font-family: var(--bet-font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--bet-ink);
  cursor: pointer;
  transition: all .2s ease;
}
.bet-review-tab > i { font-size: 15px; color: var(--bet-muted); }
.bet-review-tab.is-active {
  background: var(--bet-navy);
  border-color: var(--bet-navy);
  color: var(--bet-white);
}
.bet-review-tab.is-active > i { color: var(--bet-white); }
.bet-review-tab-score {
  font-family: var(--bet-font-head);
  font-size: 13px;
  color: var(--bet-gold-bright);
  margin-left: 2px;
}
.bet-review-tab.is-active .bet-review-tab-score { color: #FFD700; }
.bet-review-tab-count {
  font-size: 11px;
  font-weight: 600;
  color: var(--bet-muted);
  padding-left: 8px;
  border-left: 1px solid var(--bet-sand-deep);
}
.bet-review-tab.is-active .bet-review-tab-count { color: rgba(255,255,255,.65); border-color: rgba(255,255,255,.25); }

/* Trustpilot tab is a link â€” inherit tab styles but keep native link behaviour */
.bet-review-tab--link { text-decoration: none; cursor: pointer; }
.bet-review-tab--link:hover { text-decoration: none; }

/* slides wrap */
.bet-review-slides-wrap {
  position: relative;
}

/* arrows */
.bet-review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--bet-sand-deep);
  background: var(--bet-white);
  color: var(--bet-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: all .2s ease;
  box-shadow: 0 2px 8px rgba(20,40,74,.06);
  z-index: 3;
}
.bet-review-arrow--prev { left: -20px; }
.bet-review-arrow--next { right: -20px; }
.bet-review-arrow:hover {
  background: var(--bet-navy);
  border-color: var(--bet-navy);
  color: var(--bet-white);
}

/* panels */
.bet-review-panel { display: none; }
.bet-review-panel.is-active { display: block; }

/* carousel track */
.bet-review-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 12px;
  scrollbar-width: none;
}
.bet-review-track::-webkit-scrollbar { display: none; }
.bet-review-track .bet-review-card {
  flex: 0 0 calc(100% - 8px);
  scroll-snap-align: start;
}
@media (min-width: 640px) {
  .bet-review-track .bet-review-card { flex: 0 0 calc(50% - 9px); }
}
@media (min-width: 960px) {
  .bet-review-track .bet-review-card { flex: 0 0 calc(33.333% - 12px); }
}
@media (min-width: 1200px) {
  .bet-review-track .bet-review-card { flex: 0 0 calc(31.5% - 12px); }
}

/* card */
.bet-review-card {
  position: relative;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  box-shadow: 0 4px 24px rgba(20, 40, 74, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform .3s ease, box-shadow .3s ease;
}
.bet-review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(20, 40, 74, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.bet-review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bet-review-stars {
  color: var(--bet-gold);
  letter-spacing: 3px;
  font-size: 15px;
}
.bet-review-quote-icon {
  font-size: 28px;
  color: var(--bet-gold);
  opacity: 0.2;
  line-height: 1;
}
.bet-review-card blockquote {
  margin: 0;
  padding: 0 !important;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--bet-ink);
  font-style: italic;
  flex: 1;
  position: relative;
  border: none !important;
}
.bet-review-card blockquote::before,
.bet-review-card blockquote::after {
  content: none !important;
}
.bet-review-author {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(20, 40, 74, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}
.bet-review-avatar {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bet-navy), var(--bet-terra));
  color: var(--bet-white);
  font-family: var(--bet-font-head);
  font-size: 16px;
  font-weight: 700;
  flex: 0 0 auto;
  box-shadow: 0 2px 8px rgba(20, 40, 74, 0.15);
}
.bet-review-who { display: flex; flex-direction: column; gap: 2px; }
.bet-review-who b { font-size: 13.5px; color: var(--bet-kohl); font-weight: 700; }
.bet-review-who span { font-size: 11.5px; color: var(--bet-muted); display: inline-flex; align-items: center; gap: 5px; }
.bet-review-who span i { color: var(--bet-gold); font-size: 12px; }

/* empty panel */
.bet-review-panel-empty {
  text-align: center;
  padding: 48px 20px;
  color: var(--bet-muted);
  font-size: 15px;
}
.bet-review-panel-empty i { font-size: 34px; color: var(--bet-gold); display: block; margin-bottom: 14px; }
.bet-review-panel-empty p { margin: 0 0 20px; }
.bet-review-panel-empty .bet-btn { margin: 0 auto; }

/* footer CTA row */
.bet-reviews-panel-foot {
  text-align: center;
  margin-top: 28px;
}

/* ============ 25. Post cards ============ */
.bet-post-card {
  display: flex;
  flex-direction: column;
  background: var(--bet-white);
  border: 1px solid var(--bet-sand-deep);
  border-radius: var(--bet-radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.bet-post-card:hover { transform: translateY(-6px); box-shadow: var(--bet-shadow); text-decoration: none; }
.bet-post-card img { width: 100%; aspect-ratio: 4 / 2.6; object-fit: cover; display: block; }
.bet-post-body { padding: 24px 26px 28px; }
.bet-post-meta { font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bet-terra); }
.bet-post-body h3 { font-size: 21px; margin: 10px 0 10px; line-height: 1.3; }
.bet-post-body p { font-size: 14.5px; color: var(--bet-muted); line-height: 1.7; margin: 0; }

/* ============ 26. Tailor v2 + Wizard Form ============ */
.bet-tailor-v2 {
  position: relative;
  overflow: hidden;
  padding: 48px 0 60px !important;
  background: var(--bet-papyrus);
}
.bet-tailor-v2::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 48px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48'%3E%3Cpath fill='%23ffffff' d='M0,48 C360,0 1080,0 1440,48 Z'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: 100% 48px;
}
.bet-tailor-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.bet-tailor-deco--1 {
  width: 520px;
  height: 520px;
  top: -160px;
  right: -120px;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.08) 0%, transparent 70%);
}
.bet-tailor-deco--2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.06) 0%, transparent 70%);
}
.bet-tailor-v2 .bet-container {
  position: relative;
  z-index: 1;
}
.bet-tailor-v2-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 32px;
}
.bet-tailor-v2-head .bet-eyebrow { color: var(--bet-gold); }
.bet-tailor-v2-head h2 {
  color: var(--bet-navy);
  font-size: 30px;
  margin: 0 0 10px;
}
.bet-tailor-v2-head p {
  color: var(--bet-muted);
  font-size: 15px;
  line-height: 1.65;
}
.bet-tailor-v2-widget {
  max-width: 720px;
  margin: 0 auto 32px;
}

/* Wizard Form Overrides */
.tb-mini-card--wizard {
  min-height: auto !important;
  border-radius: 16px !important;
  box-shadow: 0 12px 40px rgba(20, 40, 74, 0.12) !important;
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
}
.tb-mini-card--wizard .tb-mini-form-col {
  padding: 32px 36px !important;
}
.tb-mini-card--wizard .tb-mini-badge,
.tb-mini-card--wizard .tb-mini-title {
  display: none;
}
.tb-mini-image-col {
  display: none !important;
}
.tb-mini-card--wizard {
  grid-template-columns: 1fr !important;
}

/* Progress Bar */
.tb-wizard-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--tb-border);
}
.tb-wizard-step {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  transition: opacity .3s ease;
}
.tb-wizard-step.is-active,
.tb-wizard-step.is-done {
  opacity: 1;
}
.tb-wizard-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--tb-border);
  color: var(--tb-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  transition: background .3s ease, color .3s ease;
}
.tb-wizard-step.is-active .tb-wizard-num {
  background: var(--tb-primary);
  color: #fff;
}
.tb-wizard-step.is-done .tb-wizard-num {
  background: var(--tb-accent);
  color: #fff;
}
.tb-wizard-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--tb-primary);
}
.tb-wizard-line {
  width: 48px;
  height: 2px;
  background: var(--tb-border);
  margin: 0 12px;
  border-radius: 1px;
  transition: background .3s ease;
}

/* Wizard Panels */
.tb-wizard-panel {
  display: none;
}
.tb-wizard-panel.is-active {
  display: block;
  animation: tbFadeIn .35s ease;
}
@keyframes tbFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.tb-wizard-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--tb-primary);
  margin: 0 0 20px;
}

/* Wizard Nav Buttons */
.tb-wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--tb-border);
}
.tb-wizard-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
}
.tb-wizard-next {
  background: var(--tb-primary);
  color: #fff;
}
.tb-wizard-next:hover {
  background: var(--tb-primary-light);
  filter: brightness(1.08);
}
.tb-wizard-back {
  background: transparent;
  color: var(--tb-muted);
  border: 1.5px solid var(--tb-border);
}
.tb-wizard-back:hover {
  border-color: var(--tb-primary);
  color: var(--tb-primary);
}
.tb-wizard-submit {
  font: inherit;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 32px;
  border-radius: 999px;
  border: none;
  background: var(--tb-gradient-navy);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(20, 40, 74, .22);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: filter .15s ease;
}
.tb-wizard-submit:hover {
  filter: brightness(1.08);
}

/* Wizard form — sizing & spacing fixes */
.tb-mini-card--wizard .tb-mini-grid-3 {
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
  margin-bottom: 16px !important;
}
/* Name spans full width on its own row */
.tb-mini-card--wizard .tb-mini-grid-3 > :first-child {
  grid-column: 1 / -1 !important;
}
.tb-mini-card--wizard .tb-mini-grid-3 > * {
  min-width: 0 !important;
  max-width: 100% !important;
}
.tb-mini-card--wizard .tb-phone-group {
  gap: 10px !important;
}
.tb-mini-card--wizard .tb-phone-code {
  flex: 0 0 90px !important;
  padding: 12px 10px !important;
  font-size: 14px !important;
}
.tb-mini-card--wizard input[type="text"],
.tb-mini-card--wizard input[type="email"],
.tb-mini-card--wizard input[type="tel"],
.tb-mini-card--wizard input[type="date"],
.tb-mini-card--wizard select,
.tb-mini-card--wizard textarea {
  font-size: 14px !important;
  padding: 12px 14px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.tb-mini-card--wizard .tb-mini-grid-3--2 {
  grid-template-columns: 1fr 1fr !important;
}
.tb-mini-card--wizard textarea {
  margin-bottom: 10px !important;
}
.tb-mini-card--wizard .tb-mini-counter {
  padding: 8px 12px !important;
}

/* Hide native browser validation tooltips */
.tb-mini-card--wizard input::-webkit-validation-bubble,
.tb-mini-card--wizard input::-webkit-validation-bubble-arrow,
.tb-mini-card--wizard input::-webkit-validation-bubble-icon,
.tb-mini-card--wizard input::-webkit-validation-bubble-message {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  pointer-events: none !important;
}
.tb-mini-card--wizard input:invalid {
  border-color: #dc3232 !important;
  box-shadow: 0 0 0 2px rgba(220, 50, 50, 0.15) !important;
}
.tb-mini-card--wizard input:valid {
  border-color: var(--tb-border) !important;
  box-shadow: none !important;
}

@media (max-width: 640px) {
  .tb-mini-card--wizard .tb-mini-grid-3 {
    grid-template-columns: 1fr !important;
  }
  .tb-mini-card--wizard .tb-mini-grid-3 > :first-child {
    grid-column: auto !important;
  }
}

/* Trust strip */
.bet-tailor-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.bet-tailor-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--bet-muted);
  font-size: 13.5px;
  font-weight: 600;
}
.bet-tailor-trust-item i {
  color: var(--bet-gold);
  font-size: 15px;
}
@media (max-width: 768px) {
  .bet-tailor-v2-head h2 { font-size: 24px; }
  .tb-mini-card--wizard .tb-mini-form-col { padding: 24px 20px !important; }
  .tb-wizard-label { display: none; }
  .tb-wizard-line { width: 32px; margin: 0 8px; }
  .bet-tailor-trust { gap: 16px; }
  .bet-tailor-trust-item { font-size: 12px; }
}

/* Wizard validation errors */
.tb-wizard-err {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #c0392b;
  margin-bottom: 3px;
  margin-top: 0;
  width: 100%;
}

/* ============ 27. Footer ============ */
.bet-footer {
  background: var(--bet-kohl);
  color: rgba(255, 253, 247, 0.78);
  position: relative;
}
/* Cartouche keyline + hieroglyph dash band on top of footer. */
.bet-footer::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 6px;
  background:
    linear-gradient(90deg, var(--bet-terra) 0 18%, transparent 18% 24%, var(--bet-gold) 24% 42%, transparent 42% 48%, var(--bet-faience) 48% 66%, transparent 66% 72%, var(--bet-gold) 72% 90%, transparent 90% 96%, var(--bet-terra) 96% 100%);
}
.bet-footer-top { padding: 72px 0 56px; }
.bet-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.85fr 0.9fr 1fr;
  gap: 32px;
}
.bet-footer-col--brand .bet-logo-img { max-height: 70px; }
.bet-footer-col--brand > p { font-size: 14px; line-height: 1.75; color: rgba(255, 253, 247, 0.65); margin: 18px 0 20px; }
.bet-footer-title {
  color: #ffffff !important;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 12px;
}
.bet-footer-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--bet-gold);
}
.bet-footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.bet-footer-links a {
  color: rgba(255, 253, 247, 0.72);
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s ease, transform .2s ease;
}
.bet-footer-links a::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--bet-gold);
  flex-shrink: 0;
  opacity: 0.6;
}
.bet-footer-links a:hover { color: var(--bet-gold-bright); transform: translateX(3px); }
.bet-footer-contact { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 12px; }
.bet-footer-contact li { display: flex; align-items: center; gap: 10px; font-size: 14px; line-height: 1.55; }
.bet-footer-contact i { color: var(--bet-gold); font-size: 14px; flex: 0 0 auto; }
.bet-footer-contact a { color: rgba(255, 253, 247, 0.78); text-decoration: none; }
.bet-footer-contact a:hover { color: var(--bet-gold-bright); }

.bet-social { list-style: none; margin: 20px 0 0; padding: 0; display: flex; gap: 10px; }
.bet-social a {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 253, 247, 0.2);
  border-radius: 50%;
  color: rgba(255, 253, 247, 0.8);
  font-size: 15px;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.bet-social a:hover { background: var(--bet-terra); border-color: var(--bet-terra); color: var(--bet-white); }

.bet-pay-icons { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.bet-pay {
  padding: 7px 12px;
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 253, 247, 0.75);
}

.bet-footer-bottom { border-top: 1px solid rgba(255, 253, 247, 0.12); background: rgba(0, 0, 0, 0.18); }
.bet-footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 0;
}
.bet-footer-bottom p { margin: 0; font-size: 13px; color: rgba(255, 253, 247, 0.5); white-space: nowrap; }
.bet-footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bet-footer-social a {
  width: 34px; height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 253, 247, 0.2);
  border-radius: 50%;
  color: rgba(255, 253, 247, 0.65);
  font-size: 13px;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.bet-footer-social a:hover { background: var(--bet-terra); border-color: var(--bet-terra); color: var(--bet-white); }
.bet-footer-legal { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 18px; }
.bet-footer-legal a { color: rgba(255, 253, 247, 0.5); text-decoration: none; font-size: 13px; transition: color .2s; }
.bet-footer-legal a:hover { color: var(--bet-gold-bright); }

/* ============ 29. Wishlist ============ */
.bet-card-wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--bet-muted);
  font-size: 16px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.bet-card-wishlist:hover {
  background: var(--bet-white);
  color: #e74c3c;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(231, 76, 60, 0.25);
}
.bet-card-wishlist.is-active {
  background: #e74c3c;
  color: var(--bet-white);
  box-shadow: 0 6px 16px rgba(231, 76, 60, 0.35);
}
.bet-card-wishlist.is-active:hover {
  background: #c0392b;
  transform: scale(1.1);
}
.bet-card-wishlist.is-active i { font-weight: 900; }
.bet-card-wishlist.is-active i::before { content: "\f004"; font-weight: 900; }

.bet-wishlist-wrap { position: relative; }
.bet-wishlist-btn {
  position: relative;
  background: transparent;
  border: 1px solid var(--bet-line);
  border-radius: 999px;
  cursor: pointer;
}
.bet-wishlist-btn i { color: #e74c3c; }
.bet-wishlist-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border-radius: 999px;
  background: #e74c3c;
  color: var(--bet-white);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}
.bet-wishlist-btn i { color: #e74c3c; }

/* Wishlist dropdown panel */
.bet-wishlist-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 340px;
  max-height: 380px;
  background: var(--bet-white);
  border: 1px solid var(--bet-line);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(20, 40, 74, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 30;
  display: flex;
  flex-direction: column;
}
.bet-wishlist-wrap.open .bet-wishlist-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.bet-wishlist-dropdown-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 12px;
  border-bottom: 1px solid var(--bet-line);
}
.bet-wishlist-dropdown-head h4,
.bet-wishlist-title {
  margin: 0;
  font-size: 15px;
  font-family: var(--bet-font-head);
  color: var(--bet-navy);
}
.bet-wishlist-clear {
  background: none;
  border: none;
  color: var(--bet-muted);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: color .15s ease;
}
.bet-wishlist-clear:hover { color: #e74c3c; }
.bet-wishlist-dropdown-list {
  overflow-y: auto;
  padding: 8px;
  flex: 1;
}
.bet-wishlist-empty {
  text-align: center;
  padding: 28px 16px;
  color: var(--bet-muted);
  font-size: 14px;
  margin: 0;
}
.bet-wishlist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .15s ease;
}
.bet-wishlist-item:hover { background: var(--bet-papyrus); text-decoration: none; }
.bet-wishlist-item-img {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--bet-line);
}
.bet-wishlist-item-body {
  flex: 1;
  min-width: 0;
}
.bet-wishlist-item-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--bet-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  display: block;
}
.bet-wishlist-item-price {
  font-size: 12px;
  font-weight: 700;
  color: var(--bet-navy);
  margin-top: 2px;
}
.bet-wishlist-item-remove {
  flex: 0 0 auto;
  background: none;
  border: none;
  color: var(--bet-muted);
  font-size: 13px;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color .15s ease;
}
.bet-wishlist-item-remove:hover { color: #e74c3c; }

/* ============ 30. Card feature badges ============ */
.bet-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}
.bet-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border-radius: 6px;
  background: var(--bet-papyrus);
  border: 1px solid var(--bet-sand-deep);
  color: var(--bet-ink);
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1;
}
.bet-card-badge i { color: #27ae60; font-size: 11px; }
.bet-card-badge--blue { background: #eef4fb; border-color: #d4e4f7; }
.bet-card-badge--blue i { color: var(--bet-navy); }

.bet-card--rec .bet-card-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bet-card--rec .bet-card-rating .bet-stars { color: var(--bet-gold); }
.bet-card-rating-num { font-size: 13px; font-weight: 700; color: var(--bet-ink); }
.bet-card-per {
  font-size: 13px;
  font-weight: 600;
  color: var(--bet-muted);
  display: inline;
  margin-left: 2px;
}

/* ============ 28. Responsive ============ */
@media (max-width: 1100px) {
  .bet-grid { grid-template-columns: repeat(2, 1fr); }
  .bet-type-grid { grid-template-columns: repeat(2, 1fr); }
  .bet-features { grid-template-columns: repeat(2, 1fr); }
  .bet-footer-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .bet-footer-col--brand { grid-column: 1 / -1; }
  .bet-reviews-panel { padding: 32px 28px 28px; }
  .bet-review-tab { padding: 8px 14px; font-size: 12px; }
  .bet-review-tab-count { display: none; }
  .bet-experts { grid-template-columns: repeat(2, 1fr); }
}

/* One-line header only fits the full row from ~1280px up: swap to drawer sooner. */
@media (max-width: 1279px) {
  .bet-header-actions .bet-btn { display: none; }
}
@media (max-width: 1199px) {
  .bet-nav { display: none; }
  .bet-burger { display: flex; }
}

@media (max-width: 900px) {
  .bet-hero { min-height: 72vh; }
  .bet-slide-inner { padding: 130px 20px 190px; }
  .bet-slider-dots { bottom: 180px; }
  .bet-intro-grid { grid-template-columns: 1fr; gap: 44px; }
  .bet-band-grid,
  .bet-band-grid--flip { grid-template-columns: 1fr; }
  .bet-band-media { order: -1; }
  .bet-contact-strip { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --bet-header-h: 58px; }
  .bet-header { top: 10px; }
  .bet-hero { min-height: 78vh; }
  .bet-slide-inner { padding: 124px 18px 200px; }
  .bet-slider-dots { bottom: 190px; }
  .bet-hero-search { margin-bottom: -48px; transform: translateY(70px); }
  .bet-trustbar { padding-top: 190px; }
  .bet-section { padding: 64px 0; }
  .bet-grid,
  .bet-type-grid,
  .bet-features,
  .bet-experts { grid-template-columns: 1fr; }
  .bet-reviews-panel { padding: 24px 16px 20px; }
  .bet-review-arrow { display: none; }
  .bet-review-tabs { gap: 6px; }
  .bet-review-tab { padding: 8px 12px; font-size: 11.5px; gap: 6px; }
  .bet-review-tab-score { font-size: 11.5px; }
  .bet-review-tab-count { display: none; }
  .bet-type-card { aspect-ratio: 3 / 4; }
  .bet-footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .bet-footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; }
  .bet-footer-social { justify-content: center; }
  .bet-footer-legal { justify-content: center; }
  .bet-slide-arrow { display: none; }
  .bet-search-widget #search_form .input-group { flex-wrap: wrap !important; }
  .bet-search-widget #search_form .input-group {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .bet-search-widget #search_form .add_input_field.is-active[data-inputfield],
  .bet-search-widget #search_form .search-date.is-active[data-inputfield],
  .bet-search-widget #search_form .search_guests_field.is-active {
    min-height: 46px;
    padding: 0 12px 0 38px !important;
    width: 100%;
    flex: 1 1 auto;
  }
  .bet-search-widget #search_form .search_guests_field.is-active {
    grid-column: 1 / -1;
  }
  .bet-search-widget #search_form .add_input_field > i:first-child,
  .bet-search-widget #search_form .search-date > i:first-child,
  .bet-search-widget #search_form .search_guests_field > i:first-child {
    left: 11px;
    font-size: 13px;
  }
  .bet-search-widget #search_form .add_ids_title_value,
  .bet-search-widget #search_form .search-date .search_date,
  .bet-search-widget #search_form .search_guests_title {
    font-size: 12px;
  }
  .bet-search-widget #search_form .submit { width: 100%; flex: 1 1 100%; grid-column: 1 / -1; }
  .bet-search-widget #search_form .search-button,
  .bet-search-widget #search_form .btn-search { width: 100%; }
  .bet-search-widget #search_form_tabs .search_form_tab { padding: 6px 14px; font-size: 11px; }
  .bet-search-widget #search_form_tabs .search_form_tab.is-active { padding-bottom: 8px; }
  .bet-search-widget #search_form .search_guests_select_wrapper {
    position: fixed;
    left: 16px;
    right: 16px;
    top: auto;
    bottom: 16px;
    width: auto;
    min-width: 0;
    max-width: none;
    margin: 0;
    z-index: 1000;
  }
  .bet-intro-badge { right: 8px; bottom: -12px; }
  /* Mobile header: hide login + language icons; language lives in the drawer */
  .bet-header-actions .bet-user-btn,
  .bet-header-actions .bet-lang { display: none; }
}

/* ============ 21. Breadcrumb â€” plain one-liner right under the header ============ */
/* Transparent strip: no image, no band â€” just "Home â€º Page". Page-level top
   clearance comes from the wrapper padding under the floating pill header. */
.custom-breadcrumb {
  position: relative;
  z-index: auto;
  overflow: visible;
  margin-bottom: 0;
  background: transparent !important;
  background-image: none !important;
  background-color: transparent !important;
}
.custom-breadcrumb::before,
.custom-breadcrumb::after { content: none !important; }
.custom-breadcrumb .breadcrumb-overlay { display: none !important; }
.custom-breadcrumb .breadcrumb-main {
  position: relative;
  z-index: auto;
}
.custom-breadcrumb .breadcrumb-container-inner {
  padding: 6px 0 12px !important;
  text-align: left;
}
.custom-breadcrumb .heading-title { display: none; }
.custom-breadcrumb ol.breadcrumb {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  position: static !important;
  right: auto !important;
  bottom: auto !important;
  z-index: auto !important;
  background: transparent !important;
  border-radius: 0 !important;
  color: inherit;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.custom-breadcrumb ol.breadcrumb li {
  float: none !important;
  display: inline-flex;
  align-items: center;
  position: relative;
  line-height: 1.4;
  padding: 0;
  color: var(--bet-muted);
}
.custom-breadcrumb ol.breadcrumb li::after { content: none !important; }
.custom-breadcrumb ol.breadcrumb li a {
  color: var(--bet-muted);
  text-decoration: none;
  transition: color .2s ease;
}
.custom-breadcrumb ol.breadcrumb li a:hover { color: var(--bet-gold); text-decoration: none; }
.custom-breadcrumb ol.breadcrumb li.active { color: var(--bet-navy); font-weight: 700; }
.custom-breadcrumb ol.breadcrumb li + li::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 11px;
  line-height: 1;
  color: var(--bet-gold);
  margin: 0 10px;
}
@media (max-width: 575.98px) {
  .custom-breadcrumb .breadcrumb-container-inner { padding: 4px 0 10px !important; }
  body.bet-redesign:not(.bet-on-front) .bet-wrapper { padding-top: 88px; }
}

/* ============ 22. Mega dropdown with preview panel ============ */
/* Applied automatically to any top-level menu item whose sub-menu contains
   items carrying data-mega-img / data-mega-desc (see redesign.js). */
.bet-menu > li.bet-mega { position: relative; }
.bet-menu > li.bet-mega > .sub-menu {
  left: 50%;
  right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 640px;
  max-width: calc(100vw - 40px);
  min-height: 292px;
  padding: 14px 306px 14px 14px;
  transform: translate(-50%, 10px);
}
.bet-menu > li.bet-mega:hover > .sub-menu,
.bet-menu > li.bet-mega:focus-within > .sub-menu { transform: translate(-50%, 0); }
/* Invisible bridge so the pointer can travel the 14px gap without losing hover. */
.bet-menu > li.bet-mega > .sub-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}
.bet-menu > li.bet-mega > .sub-menu > li {
  min-width: 0;
  flex: none;
}
.bet-menu > li.bet-mega > .sub-menu > li a {
  padding: 11px 14px;
  border-radius: 10px;
}
.bet-mega-panel-wrap {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 264px;
  flex: none !important;
  min-width: 0 !important;
  list-style: none;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}
.bet-menu > li.bet-mega:hover .bet-mega-panel-wrap,
.bet-menu > li.bet-mega:focus-within .bet-mega-panel-wrap {
  opacity: 1;
  transform: translateY(0);
}
.bet-mega-panel {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--bet-line);
  background: var(--bet-white);
  box-shadow: 0 12px 26px rgba(20, 40, 74, 0.10);
}
.bet-mega-panel-img {
  width: 100%;
  height: 148px;
  background-size: cover;
  background-position: center;
  background-color: var(--bet-papyrus);
  transition: background-image .3s ease, opacity .25s ease;
}
.bet-mega-panel-body { padding: 14px 16px 16px; }
.bet-mega-panel-title {
  font-family: var(--bet-font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--bet-navy);
  margin: 0 0 6px;
}
.bet-mega-panel-desc {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--bet-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  .bet-mega-panel-wrap { display: none; }
  .bet-menu > li.bet-mega { position: relative; }
  .bet-menu > li.bet-mega > .sub-menu {
    width: auto;
    min-width: 230px;
    min-height: 0;
    padding: 10px;
    left: 0;
    transform: translateY(10px);
  }
  .bet-menu > li.bet-mega:hover > .sub-menu,
  .bet-menu > li.bet-mega:focus-within > .sub-menu { transform: translateY(0); }
}

/* --- Menu badge: gold pill rendered from {text} in a menu item label --- */
.bet-menu-badge {
  display: inline-block;
  margin-inline-start: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--bet-gradient-gold);
  color: #14284A;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.4;
  vertical-align: middle;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(226, 171, 62, 0.35);
}
.bet-menu .sub-menu a .bet-menu-badge { float: right; margin: 1px 0 0 10px; }

/* --- Menu group title: Custom Link with URL "#" (or .bet-menu-title class)
       renders as a non-clickable section heading inside the dropdown --- */
.bet-menu .sub-menu a.bet-menu-title,
.bet-drawer-menu .sub-menu a.bet-menu-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 10px 14px 6px;
  border-top: 1px solid var(--bet-line);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bet-navy);
  cursor: default;
}
.bet-menu .sub-menu a.bet-menu-title::before,
.bet-drawer-menu .sub-menu a.bet-menu-title::before {
  content: "";
  width: 3px;
  height: 14px;
  border-radius: 2px;
  background: var(--bet-gradient-gold);
  flex: 0 0 auto;
}
.bet-menu .sub-menu a.bet-menu-title:hover,
.bet-drawer-menu .sub-menu a.bet-menu-title:hover { background: transparent; color: var(--bet-navy); }
.bet-menu .sub-menu > li:first-child > a.bet-menu-title { margin-top: 0; padding-top: 6px; border-top: none; }

/* ============================================================
 * TRUST ABOUT SECTION â€” replaces the old intro/about block
 * Two-column layout: expandable text + stacked trust cards
 * ============================================================ */
.bet-trust-about { padding-block: 110px 96px; }

.bet-trust-about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: start;
}

.bet-trust-about-copy .bet-section-title span { color: var(--bet-gold); }

.bet-trust-about-text {
  position: relative;
  max-height: 170px;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-bottom: 16px;
}

.bet-trust-about-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 64px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), var(--bet-white));
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.bet-trust-about-text.is-expanded {
  max-height: 1200px;
}

.bet-trust-about-text.is-expanded::after { opacity: 0; }

.bet-trust-about-text p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--bet-ink);
  margin-bottom: 16px;
}

.bet-trust-about-text p:last-child { margin-bottom: 0; }

.bet-trust-about-text a {
  color: var(--bet-navy-deep);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--bet-gold);
  text-underline-offset: 3px;
}

.bet-trust-about-text a:hover { color: var(--bet-gold); }

.bet-trust-about-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  padding: 0;
  background: transparent;
  border: none;
  color: var(--bet-gold);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.bet-trust-about-toggle:hover { color: var(--bet-navy); }

.bet-trust-about-toggle .bet-trust-about-less,
.bet-trust-about-toggle[aria-expanded="true"] .bet-trust-about-more { display: none; }

.bet-trust-about-toggle[aria-expanded="true"] .bet-trust-about-less { display: inline; }

.bet-trust-about-cards {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.bet-trust-about-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--bet-white);
  border: 1px solid var(--bet-line);
  border-radius: var(--bet-radius);
  box-shadow: var(--bet-shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bet-trust-about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bet-shadow);
}

.bet-trust-about-card--highlight {
  background: var(--bet-cream);
  border-inline-start: 4px solid var(--bet-gold);
}

.bet-trust-about-card-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bet-gold);
  border-radius: 50%;
  color: var(--bet-gold);
  font-size: 20px;
}

.bet-trust-about-card--highlight .bet-trust-about-card-icon {
  background: var(--bet-gradient-gold);
  border-color: var(--bet-gold);
  color: var(--bet-navy);
}

.bet-trust-about-card-body h3 {
  margin: 0 0 6px;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--bet-navy);
}

.bet-trust-about-card-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--bet-muted);
}

.bet-trust-about-card-body a {
  color: var(--bet-navy-deep);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--bet-gold);
  text-underline-offset: 3px;
}

.bet-trust-about-card-body a:hover { color: var(--bet-gold); }

@media (max-width: 900px) {
  .bet-trust-about { padding-block: 72px 64px; }
  .bet-trust-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .bet-trust-about { padding-block: 56px; }
  .bet-trust-about-cards { gap: 16px; }
}

/* Hidden real GTranslate widget (kept functional for proxy clicks) */
.bet-gt-hidden {
  position: fixed;
  left: -9999px;
  top: auto;
  width: 220px;
  opacity: 0;
}

/* Visually hidden but accessible to screen readers and SEO crawlers */
.bet-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============ Recommended Tours carousel + filter chips ============ */
.bet-recommended-tours { overflow: hidden; }

.bet-section-head--inline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.bet-section-head--inline .bet-section-head-text { flex: 1 1 0; min-width: 280px; }
.bet-section-head--inline .bet-btn { flex: 0 0 auto; margin-bottom: 6px; }

.bet-filter-scroll-wrap {
  position: relative;
  margin: 28px 0 22px;
}
.bet-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.bet-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--bet-line);
  border-radius: 999px;
  background: var(--bet-white);
  color: var(--bet-ink);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
}
.bet-filter-chip:hover {
  border-color: var(--bet-gold);
  color: var(--bet-navy);
}
.bet-filter-chip.is-active {
  background: var(--bet-navy);
  border-color: var(--bet-navy);
  color: var(--bet-white);
}

.bet-filter-scroll-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bet-line);
  border-radius: 50%;
  background: var(--bet-white);
  color: var(--bet-navy);
  cursor: pointer;
  z-index: 2;
  transition: background .2s, color .2s, border-color .2s;
}
.bet-filter-scroll-arrow:hover {
  background: var(--bet-navy);
  border-color: var(--bet-navy);
  color: var(--bet-white);
}
.bet-filter-scroll-prev { left: 0; }
.bet-filter-scroll-next { right: 0; }

@media (max-width: 767px) {
  .bet-filter-scroll-wrap {
    padding: 0 36px;
  }
  .bet-filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2px 0;
  }
  .bet-filter-bar::-webkit-scrollbar { display: none; }
  .bet-filter-chip {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .bet-filter-scroll-arrow {
    display: flex;
  }
}

.bet-popular-swiper { padding-bottom: 56px; }
.bet-popular-swiper .swiper-wrapper { align-items: stretch; }
.bet-popular-swiper .swiper-slide { height: auto; }

.bet-dest-swiper .swiper-wrapper { align-items: stretch; }
.bet-dest-swiper .swiper-slide { height: auto; }

.bet-popular-swiper .swiper-button-prev,
.bet-popular-swiper .swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bet-white);
  color: var(--bet-navy);
  border: 1px solid var(--bet-line);
  box-shadow: var(--bet-shadow-sm);
  transition: all .2s ease;
}
.bet-popular-swiper .swiper-button-prev:after,
.bet-popular-swiper .swiper-button-next:after { font-size: 16px; font-weight: 700; }
.bet-popular-swiper .swiper-button-prev:hover,
.bet-popular-swiper .swiper-button-next:hover { background: var(--bet-gold); border-color: var(--bet-gold); color: var(--bet-navy); }
.bet-popular-swiper .swiper-button-prev { left: -22px; }
.bet-popular-swiper .swiper-button-next { right: -22px; }

.bet-popular-swiper .swiper-pagination { bottom: 6px; }
.bet-popular-swiper .swiper-pagination-bullet { width: 10px; height: 10px; background: var(--bet-line); opacity: 1; }
.bet-popular-swiper .swiper-pagination-bullet-active { background: var(--bet-gold); width: 28px; border-radius: 999px; }

.bet-card--rec {
  height: 100%;
  border: 1px solid var(--bet-line);
  border-radius: var(--bet-radius);
  background: var(--bet-white);
  box-shadow: var(--bet-shadow-sm);
  overflow: hidden;
}
.bet-card--rec::before { content: none; }
.bet-card--rec:hover { transform: translateY(-8px); box-shadow: var(--bet-shadow); }
.bet-card--rec .bet-card-media img { aspect-ratio: 3 / 2; }
.bet-card--rec .bet-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,40,74,0.25) 0%, rgba(20,40,74,0) 45%, rgba(20,40,74,0.35) 100%);
  pointer-events: none;
}
.bet-card--rec .bet-card-tag {
  top: 14px;
  left: 14px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(20, 40, 74, 0.78);
  color: var(--bet-gold-bright);
  border: 1px solid rgba(243, 197, 108, 0.55);
  font-size: 10px;
  letter-spacing: 0.07em;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.bet-card--rec .bet-card-tag i { display: none; }
.bet-card--rec .bet-card-duration {
  bottom: 12px;
  left: 12px;
  right: auto;
  padding: 5px 11px;
  background: var(--bet-gold);
  color: var(--bet-navy);
  border: none;
  font-size: 11px;
  font-weight: 800;
}
.bet-card--rec .bet-card-duration i { color: var(--bet-navy); font-size: 10px; }
.bet-card--rec .bet-card-body {
  gap: 10px;
  padding: 22px 24px 18px;
  flex: 1;
}
.bet-card--rec .bet-card-body h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--bet-navy);
  line-height: 1.28;
}
.bet-card--rec .bet-card-body p { font-size: 14px; line-height: 1.55; }
.bet-card--rec .bet-card-rating .bet-stars { color: var(--bet-gold); }
.bet-card--rec .bet-card-foot {
  margin-top: auto;
  padding: 14px 24px 18px;
  background: transparent;
  border-top: 1px solid var(--bet-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.bet-card--rec .bet-card-price b { color: var(--bet-navy); font-size: 20px; }
.bet-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--bet-gold);
  text-decoration: none;
  transition: all .2s ease;
}
.bet-card-cta i { font-size: 11px; transition: transform .2s ease; }
.bet-card--rec:hover .bet-card-cta { color: var(--bet-navy); }
.bet-card--rec:hover .bet-card-cta i { transform: translateX(4px); }

@media (max-width: 1279px) {
  .bet-popular-swiper .swiper-button-prev { left: 0; }
  .bet-popular-swiper .swiper-button-next { right: 0; }
}
@media (max-width: 640px) {
  .bet-section-head--inline { flex-direction: column; align-items: flex-start; }
  .bet-section-head--inline .bet-btn { margin: 8px 0 0; }
}

/* ============================================================
   TAXONOMY / ARCHIVE HERO â€” SPLIT LAYOUT (rounded box)
   ============================================================ */
.bet-tax-hero-wrap {
  padding: 24px 24px 8px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.bet-tax-hero {
  display: grid;
  grid-template-columns: 48% 52%;
  height: 380px;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}
.bet-tax-hero-img-wrap {
  position: relative;
  overflow: hidden;
}
.bet-tax-hero-img-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48%;
  background: linear-gradient(to top, rgba(6, 24, 52, 0.85) 0%, rgba(6, 24, 52, 0.35) 40%, rgba(6, 24, 52, 0) 100%);
  pointer-events: none;
  z-index: 1;
}
.bet-tax-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.bet-tax-hero-content {
  background: linear-gradient(135deg, #0d1f3c 0%, #1a3d6e 100%);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-content: stretch;
  row-gap: 14px;
  padding: 56px 44px 46px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.bet-tax-hero-content * {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.bet-tax-hero-content a {
  color: var(--bet-gold-bright) !important;
  -webkit-text-fill-color: var(--bet-gold-bright) !important;
}
.bet-tax-hero-content::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(212,169,68,.06);
  pointer-events: none;
}
.bet-tax-hero-content::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 25%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(212,169,68,.04);
  pointer-events: none;
}
.bet-tax-hero-content > * {
  position: relative;
  z-index: 2;
}
.bet-tax-hero-title {
  font-family: var(--bet-font-head);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 700;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  margin: 0 0 18px;
  line-height: 1.15;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}
.bet-tax-hero-desc {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 15px;
  line-height: 1.78;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 0;
  max-height: 100%;
}
.bet-tax-hero-desc.is-expanded {
  display: block;
  max-height: 100%;
  overflow: auto;
  padding-right: 6px;
}
.bet-tax-hero-desc * {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.bet-tax-hero-desc a {
  color: var(--bet-gold-bright) !important;
  -webkit-text-fill-color: var(--bet-gold-bright) !important;
  text-decoration: underline;
  text-decoration-color: rgba(243,197,108,.4);
  text-underline-offset: 3px;
  font-weight: 700;
  transition: all .2s ease;
}
.bet-tax-hero-desc a:hover {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-decoration-color: #fff;
}

/* ---- CTA buttons on top of image ---- */
.bet-tax-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  z-index: 3;
  width: auto;
  margin: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.bet-tax-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bet-gold);
  color: var(--bet-navy);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 50px;
  transition: all .25s ease;
  border: 2px solid var(--bet-gold);
  white-space: nowrap;
}
.bet-tax-hero-btn:hover {
  background: #fff;
  border-color: #fff;
  color: var(--bet-navy);
  transform: translateY(-1px);
}
.bet-tax-hero-btn i { font-size: 12px; transition: transform .2s ease; }
.bet-tax-hero-btn:hover i { transform: translateX(3px); }
.bet-tax-hero-btn--outline {
  background: linear-gradient(135deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,.1) 100%);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border: 1px solid rgba(255,255,255,.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.24), 0 6px 18px rgba(3,14,33,.28);
}
.bet-tax-hero-btn--outline:hover {
  background: linear-gradient(135deg, rgba(255,255,255,.3) 0%, rgba(255,255,255,.16) 100%);
  border-color: rgba(255,255,255,.75);
  color: var(--bet-navy) !important;
  -webkit-text-fill-color: var(--bet-navy) !important;
}
.bet-tax-readmore {
  margin-top: 16px;
  align-self: flex-start;
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(255,255,255,.08);
  color: #fff;
  -webkit-text-fill-color: #fff !important;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2px;
  cursor: pointer;
  transition: all .2s ease;
}
.bet-tax-readmore:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.6);
}

/* Responsive â€” stack on tablet/mobile */
@media (max-width: 960px) {
  .bet-tax-hero {
    grid-template-columns: 1fr;
    height: auto;
  }
  .bet-tax-hero-img-wrap {
    height: 260px;
    order: -1;
  }
  .bet-tax-hero-content {
    padding: 42px 28px 36px;
  }
  .bet-tax-hero-btns {
    left: 16px;
    right: 16px;
    bottom: 12px;
    justify-content: center;
    padding: 0;
  }
  .bet-tax-hero-btn {
    padding: 11px 20px;
    font-size: 13px;
  }
}
@media (max-width: 640px) {
  .bet-tax-hero-wrap { padding: 16px 16px 8px; }
  .bet-tax-hero { border-radius: 14px; }
  .bet-tax-hero-img-wrap { height: 220px; }
  .bet-tax-hero-content { padding: 36px 18px 28px; }
  .bet-tax-hero-title { font-size: 26px; margin-bottom: 12px; }
  .bet-tax-hero-desc { font-size: 14px; }
  .bet-tax-hero-btns {
    left: 10px;
    right: 10px;
    bottom: 10px;
    flex-direction: column;
  }
  .bet-tax-hero-btn,
  .bet-tax-hero-btn--outline { justify-content: center; width: 100%; padding: 10px 16px; }
}

/* ============================================================
   ARCHIVE â€” TYPE GRID (location archive sub-banners)
   ============================================================ */
.bet-section--types .bet-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
/* When only 1â€“3 cards, stretch them to fill the row */
.bet-section--types .bet-type-grid:has(.bet-type-card:nth-child(2)):not(:has(.bet-type-card:nth-child(3))) {
  grid-template-columns: repeat(2, 1fr);
}
.bet-section--types .bet-type-grid:has(.bet-type-card:nth-child(1)):not(:has(.bet-type-card:nth-child(2))) {
  grid-template-columns: 1fr;
}
.bet-section--types .bet-type-grid:has(.bet-type-card:nth-child(3)):not(:has(.bet-type-card:nth-child(4))) {
  grid-template-columns: repeat(3, 1fr);
}
.bet-section--types .bet-type-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  aspect-ratio: 3 / 4;
  text-decoration: none;
}
.bet-section--types .bet-type-card .bet-type-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.bet-section--types .bet-type-card:hover .bet-type-img { transform: scale(1.06); }
.bet-section--types .bet-type-card-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(10,22,40,.82) 0%, transparent 100%);
  z-index: 2;
}
.bet-section--types .bet-type-card-inner h3 {
  font-family: var(--bet-font-head);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
}
.bet-section--types .bet-type-count {
  font-size: 14px;
  font-weight: 700;
  color: var(--bet-gold);
}
.bet-section--types .bet-type-count i { font-size: 11px; margin-left: 4px; transition: transform .2s ease; }
.bet-section--types .bet-type-card:hover .bet-type-count i { transform: translateX(4px); }

/* ============================================================
   ARCHIVE GRID + PAGINATION
   ============================================================ */
.bet-tax-count {
  font-size: 15px;
  color: var(--bet-muted);
  font-weight: 700;
  margin-bottom: 28px;
}
.bet-tax-count-num {
  font-size: 20px;
  color: var(--bet-terra);
  font-family: var(--bet-font-head);
  font-weight: 700;
}
.bet-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.bet-archive-grid-item { display: flex; }
.bet-archive-grid-item .bet-card { width: 100%; }

.bet-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 4px;
}
.bet-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--bet-navy);
  text-decoration: none;
  border: 1.5px solid var(--bet-border);
  background: #fff;
  transition: all .2s ease;
}
.bet-pagination .page-numbers:hover,
.bet-pagination .page-numbers.current {
  background: var(--bet-navy);
  color: #fff;
  border-color: var(--bet-navy);
}

.bet-empty-state {
  text-align: center;
  padding: 80px 20px;
}
.bet-empty-state i {
  font-size: 48px;
  color: var(--bet-muted);
  opacity: .4;
  margin-bottom: 16px;
}
.bet-empty-state h3 {
  font-family: var(--bet-font-head);
  font-size: 24px;
  color: var(--bet-navy);
  margin: 0 0 8px;
}
.bet-empty-state p {
  color: var(--bet-muted);
  margin: 0 0 24px;
}

/* ============================================================
   SINGLE TOUR â€” HEADER
   ============================================================ */
.bet-single-hero {
  background: var(--bet-navy);
  padding: 40px 0 32px;
}
.bet-single-title {
  font-family: var(--bet-font-head);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
}
.bet-single-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.bet-single-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bet-single-rating .bet-stars { color: var(--bet-gold); font-size: 15px; }
.bet-single-rating-num {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.bet-single-rating-label {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  font-weight: 600;
}
.bet-single-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}
.bet-single-meta-chip i { font-size: 12px; color: var(--bet-gold); }

/* ============================================================
   SINGLE TOUR â€” INFO BAR
   ============================================================ */
.bet-single-info-bar {
  background: #fff;
  border-bottom: 1px solid var(--bet-border);
  padding: 18px 0;
}
.bet-single-info-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}
.bet-single-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bet-single-info-item i {
  font-size: 18px;
  color: var(--bet-navy);
  opacity: .6;
  width: 20px;
  text-align: center;
}
.bet-single-info-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--bet-muted);
}
.bet-single-info-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--bet-navy);
  margin-left: 4px;
}

/* ============================================================
   SINGLE TOUR â€” GALLERY
   ============================================================ */
.bet-single-gallery {
  padding: 28px 0 0;
}
.bet-single-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
  border-radius: 16px;
  overflow: hidden;
}
.bet-gallery-item {
  display: block;
  overflow: hidden;
  cursor: pointer;
}
.bet-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.bet-gallery-item:hover img { transform: scale(1.04); }
.bet-gallery-hero {
  grid-row: 1 / 3;
  grid-column: 1;
}
.bet-gallery-hero img { min-height: 380px; }
.bet-gallery-thumb img { aspect-ratio: 4 / 3; }

/* ============================================================
   ARCHIVE â€” DESTINATION CARDS (type archive sub-banners)
   ============================================================ */
.bet-archive-dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
/* Large cruise tier cards — 3 big cards per row */
.bet-cruise-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.bet-cruise-tiers-grid .bet-dest-card {
  aspect-ratio: 4 / 5;
  min-height: 480px;
}
.bet-cruise-tiers-grid .bet-dest-card-body h3 {
  font-size: 26px;
}
.bet-cruise-tiers-grid .bet-dest-card-subtitle {
  font-size: 14px;
}
.bet-cruise-tiers-grid .bet-dest-card-count {
  font-size: 15px;
}
.bet-dest-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  aspect-ratio: 3 / 4;
  text-decoration: none;
}
.bet-dest-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.bet-dest-card:hover .bet-dest-card-img { transform: scale(1.06); }
.bet-dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.82) 0%, rgba(10,22,40,.1) 50%);
  transition: background .3s ease;
}
.bet-dest-card:hover .bet-dest-card-overlay {
  background: linear-gradient(to top, rgba(10,22,40,.92) 0%, rgba(10,22,40,.2) 50%);
}
.bet-dest-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}
.bet-dest-card-body h3 {
  font-family: var(--bet-font-head);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.bet-dest-card-subtitle {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bet-gold-bright);
  margin-bottom: 6px;
}
.bet-dest-card-count {
  font-size: 13px;
  font-weight: 700;
  color: var(--bet-gold);
  text-decoration: none;
}
.bet-dest-card-count i {
  font-size: 11px;
  margin-left: 4px;
  transition: transform .2s ease;
}
.bet-dest-card:hover .bet-dest-card-count i { transform: translateX(4px); }

@media (max-width: 1024px) {
  .bet-archive-dest-grid { grid-template-columns: repeat(3, 1fr); }
  .bet-cruise-tiers-grid { grid-template-columns: repeat(3, 1fr); }
  .bet-cruise-tiers-grid .bet-dest-card { min-height: 400px; }
}
@media (max-width: 768px) {
  .bet-archive-dest-grid { grid-template-columns: repeat(2, 1fr); }
  .bet-cruise-tiers-grid { grid-template-columns: repeat(2, 1fr); }
  .bet-cruise-tiers-grid .bet-dest-card { min-height: 340px; }
}
@media (max-width: 480px) {
  .bet-archive-dest-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .bet-cruise-tiers-grid { grid-template-columns: 1fr; gap: 16px; }
  .bet-cruise-tiers-grid .bet-dest-card { min-height: 280px; }
  .bet-cruise-tiers-grid .bet-dest-card-body h3 { font-size: 20px; }
  .bet-dest-card { aspect-ratio: 3 / 4; }
  .bet-dest-card-body { padding: 16px; }
  .bet-dest-card-body h3 { font-size: 16px; }
}

/* ============================================================
   SINGLE TOUR â€” LAYOUT (Main + Sidebar)
   ============================================================ */
.bet-single-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
  padding: 48px 0 60px;
}
.bet-single-section {
  margin-bottom: 40px;
}
.bet-single-section-title {
  font-family: var(--bet-font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--bet-navy);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--bet-gold);
  display: inline-block;
}
.bet-single-content {
  font-size: 16px;
  line-height: 1.7;
  color: var(--bet-kohl);
}
.bet-single-content p { margin: 0 0 16px; }
.bet-single-content h2,
.bet-single-content h3 {
  font-family: var(--bet-font-head);
  color: var(--bet-navy);
}

/* ============================================================
   SINGLE TOUR â€” ITINERARY ACCORDION
   ============================================================ */
.bet-itinerary { display: flex; flex-direction: column; gap: 2px; }
.bet-itinerary-item {
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid var(--bet-border);
  overflow: hidden;
  transition: border-color .2s ease;
}
.bet-itinerary-item:hover { border-color: var(--bet-gold); }
.bet-itinerary-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s ease;
}
.bet-itinerary-toggle:hover { background: rgba(0,0,0,.02); }
.bet-itinerary-day {
  font-family: var(--bet-font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--bet-navy);
}
.bet-itinerary-toggle i {
  font-size: 13px;
  color: var(--bet-terra);
  transition: transform .3s ease;
}
.bet-itinerary-toggle[aria-expanded="true"] i { transform: rotate(180deg); }
.bet-itinerary-content {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--bet-kohl);
}
.bet-itinerary-content p { margin: 0 0 12px; }
.bet-itinerary-content p:last-child { margin-bottom: 0; }

/* ============================================================
   SINGLE TOUR â€” SIDEBAR
   ============================================================ */
.bet-single-sticky {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bet-single-price-box {
  background: #fff;
  border: 1.5px solid var(--bet-border);
  border-radius: 14px;
  padding: 22px 24px;
  text-align: center;
}
.bet-single-price-from {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--bet-muted);
  margin-bottom: 4px;
}
.bet-single-price-amount {
  display: block;
  font-family: var(--bet-font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--bet-navy);
}
.bet-single-price-per {
  font-size: 14px;
  font-weight: 600;
  color: var(--bet-muted);
}
.bet-single-booking-widget {
  background: #fff;
  border: 1.5px solid var(--bet-border);
  border-radius: 14px;
  overflow: hidden;
}
.bet-single-booking-widget .booking-form-block {
  padding: 20px;
}
.bet-single-support {
  background: #fff;
  border: 1.5px solid var(--bet-border);
  border-radius: 14px;
  padding: 20px 24px;
}
.bet-single-support h4 {
  font-family: var(--bet-font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--bet-navy);
  margin: 0 0 14px;
}
.bet-single-support-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  text-decoration: none;
  color: var(--bet-kohl);
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid var(--bet-border);
  transition: color .2s ease;
}
.bet-single-support-item:last-child { border-bottom: none; }
.bet-single-support-item:hover { color: var(--bet-terra); }
.bet-single-support-item i {
  font-size: 16px;
  color: var(--bet-navy);
  opacity: .6;
  width: 20px;
  text-align: center;
}

/* ============================================================
   RESPONSIVE â€” ARCHIVE & SINGLE TOUR
   ============================================================ */
@media (max-width: 1024px) {
  .bet-archive-grid { grid-template-columns: repeat(2, 1fr); }
  .bet-single-layout { grid-template-columns: 1fr; }
  .bet-single-sticky { position: static; }
  .bet-archive-dest-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .bet-single-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .bet-gallery-hero {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .bet-gallery-hero img { min-height: 240px; }
  .bet-single-info-bar-inner { gap: 20px; }
  .bet-archive-dest-grid { grid-template-columns: repeat(2, 1fr); }
  .bet-section--types .bet-type-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .bet-section--types .bet-type-grid:has(.bet-type-card:nth-child(1)):not(:has(.bet-type-card:nth-child(2))) {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 640px) {
  .bet-archive-grid { grid-template-columns: 1fr; gap: 20px; }
  .bet-single-gallery-grid { grid-template-columns: 1fr; }
  .bet-gallery-hero img { min-height: 200px; }
  .bet-gallery-thumb { display: none; }
  .bet-single-meta-row { gap: 10px; }
  .bet-single-info-bar-inner { flex-direction: column; gap: 12px; }
  .bet-pagination .page-numbers { width: 36px; height: 36px; font-size: 13px; }
  .bet-archive-dest-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .bet-section--types .bet-type-grid { grid-template-columns: 1fr !important; gap: 12px; }
}

/* ============================================================
   TOURS PAGE (search results) — design-system aligned
   ============================================================ */
.bet-tours-page {
  --bet-tours-hero-h: 380px;
}

.bet-tours-hero {
  position: relative;
  height: var(--bet-tours-hero-h);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.bet-tours-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.bet-tours-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,40,74,.55) 0%, rgba(20,40,74,.72) 100%);
}
.bet-tours-hero-inner {
  position: relative;
  z-index: 2;
}
.bet-tours-hero-title {
  color: #fff !important;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.1;
}
.bet-tours-hero-sub {
  color: rgba(255,255,255,.9) !important;
  font-size: 18px;
  margin: 0;
}

.bet-tours-search {
  position: relative;
  z-index: 5;
  margin-top: -64px;
  margin-bottom: 48px;
}
.bet-tours-search-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 56px rgba(20,40,74,.14);
  border: 1px solid var(--bet-line);
}
.bet-tours-search-card .bet-search-widget,
.bet-tours-search-card #search-box.babe-search-box,
.bet-tours-search-card #search_form {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.bet-tours-search-card #search_form {
  padding: 18px;
}
.bet-tours-search-card .add_ids_list,
.bet-tours-search-card .search_guests_select_wrapper,
.bet-tours-search-card .calendar-popup {
  z-index: 100 !important;
}

.bet-tours-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bet-line);
  flex-wrap: wrap;
}
.bet-tours-count {
  font-size: 15px;
  color: var(--bet-muted);
  font-weight: 600;
}
.bet-tours-count strong {
  color: var(--bet-navy);
  font-size: 22px;
  font-family: var(--bet-font-head);
  font-weight: 700;
}
.bet-tours-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bet-tours-sort-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--bet-kohl);
}
.bet-tours-sort-select {
  appearance: none;
  -webkit-appearance: none;
  padding: 9px 34px 9px 14px;
  border: 1px solid var(--bet-line);
  border-radius: 10px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%2314284A' d='M207 381.5l-176-184c-9.3-9.7-9-25.1.8-34.4 9.8-9.3 25.1-9 34.4.8L224 328.2l157.8-164.3c9.3-9.7 24.6-10.1 34.4-.8 9.7 9.3 10.1 24.6.8 34.4l-176 184c-9.1 9.5-24.1 9.8-33.6.6z'/%3E%3C/svg%3E") no-repeat right 12px center / 12px auto;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--bet-navy);
  cursor: pointer;
  min-width: 160px;
}

.bet-tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bet-tours-grid .bet-card {
  width: 100%;
}

.bet-tours-pagination {
  margin-top: 44px;
  display: flex;
  justify-content: center;
}
.bet-tours-pagination .page-numbers,
.bet-tours-pagination a,
.bet-tours-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  margin: 0 4px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--bet-line);
  color: var(--bet-navy);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.bet-tours-pagination .page-numbers.current,
.bet-tours-pagination a:hover {
  background: var(--bet-navy);
  border-color: var(--bet-navy);
  color: #fff;
}

.bet-tours-empty {
  text-align: center;
  padding: 64px 20px;
}
.bet-tours-empty h2 {
  font-family: var(--bet-font-head);
  font-size: 28px;
  color: var(--bet-navy);
  margin: 0 0 10px;
}
.bet-tours-empty p {
  color: var(--bet-muted);
  font-size: 15px;
  margin: 0;
}

@media (max-width: 1024px) {
  .bet-tours-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .bet-tours-hero { --bet-tours-hero-h: 300px; }
  .bet-tours-search { margin-top: -48px; margin-bottom: 36px; }
  .bet-tours-toolbar { gap: 14px; }
}
@media (max-width: 640px) {
  .bet-tours-grid { grid-template-columns: 1fr; gap: 20px; }
  .bet-tours-toolbar { flex-direction: column; align-items: flex-start; }
  .bet-tours-sort { width: 100%; }
  .bet-tours-sort-select { flex: 1 1 auto; }
}

/* Trip page styles moved to trip-page.css */

/* ============ 25. Blog Single ============ */
.bet-blog-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 48px;
}
.bet-blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,15,30,0.92) 0%, rgba(4,15,30,0.55) 50%, rgba(4,15,30,0.3) 100%);
  z-index: 1;
}
.bet-blog-hero-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 100%;
}
.bet-blog-hero-breadcrumb {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.8;
  margin-bottom: 16px;
}
.bet-blog-hero-breadcrumb a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color .2s; }
.bet-blog-hero-breadcrumb a:hover { color: #fff; }
.bet-blog-hero-sep { margin: 0 8px; opacity: 0.5; }
.bet-blog-hero-title {
  font-family: var(--bet-font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff !important;
  margin: 0 0 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.bet-blog-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 14px;
  font-weight: 500;
}
.bet-blog-hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bet-blog-hero-meta-item i { color: var(--bet-gold-bright); }

/* Layout */
.bet-blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.bet-blog-main { min-width: 0; }

/* Table of Contents */
.bet-blog-toc {
  background: var(--bet-cream);
  border: 1px solid rgba(20,40,74,0.08);
  border-radius: 12px;
  padding: 0;
  margin-bottom: 36px;
  overflow: hidden;
}
.bet-blog-toc-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  font-family: var(--bet-font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--bet-navy);
  cursor: pointer;
  transition: background .2s;
}
.bet-blog-toc-toggle:hover { background: rgba(20,40,74,0.04); }
.bet-blog-toc-toggle i { transition: transform .3s; font-size: 12px; color: var(--bet-gold-bright); }
.bet-blog-toc-toggle[aria-expanded="true"] i { transform: rotate(180deg); }
.bet-blog-toc-list {
  display: none;
  list-style: decimal;
  margin: 0;
  padding: 0 20px 16px 36px;
  font-size: 14px;
  line-height: 2;
}
.bet-blog-toc-list.bet-open { display: block; }
.bet-blog-toc-list a { color: var(--bet-navy); text-decoration: none; transition: color .2s; }
.bet-blog-toc-list a:hover { color: var(--bet-terra); }

/* Article Content */
.bet-blog-content {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}
.bet-blog-content h2 {
  font-family: var(--bet-font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--bet-navy);
  margin: 48px 0 20px;
  line-height: 1.3;
}
.bet-blog-content h3 {
  font-family: var(--bet-font-head);
  font-size: 21px;
  font-weight: 600;
  color: var(--bet-navy);
  margin: 32px 0 14px;
  line-height: 1.3;
}
.bet-blog-content p { margin: 0 0 20px; }
.bet-blog-content img {
  border-radius: 10px;
  margin: 28px 0;
  max-width: 100%;
  height: auto;
}
.bet-blog-content a {
  color: var(--bet-terra);
  text-decoration: underline;
  text-decoration-color: rgba(194,69,46,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color .2s;
}
.bet-blog-content a:hover { text-decoration-color: var(--bet-terra); }
.bet-blog-content ul,
.bet-blog-content ol {
  margin: 0 0 20px;
  padding-left: 24px;
}
.bet-blog-content li { margin-bottom: 6px; }
.bet-blog-content strong { color: var(--bet-navy); }
.bet-blog-content blockquote {
  border-left: 4px solid var(--bet-gold-bright);
  background: var(--bet-cream);
  padding: 20px 24px;
  margin: 28px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #555;
}
.bet-blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 15px;
}
.bet-blog-content th {
  background: var(--bet-navy);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}
.bet-blog-content td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(20,40,74,0.08);
}
.bet-blog-content tr:nth-child(even) td { background: rgba(20,40,74,0.02); }

/* Tags */
.bet-blog-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(20,40,74,0.08);
  font-size: 14px;
}
.bet-blog-tags-label { font-weight: 600; color: var(--bet-navy); margin-right: 4px; }
.bet-blog-tags-label i { color: var(--bet-gold-bright); margin-right: 4px; }
.bet-blog-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bet-cream);
  border-radius: 20px;
  color: var(--bet-navy);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: background .2s, color .2s;
}
.bet-blog-tag:hover { background: var(--bet-navy); color: #fff; }

/* Sidebar */
.bet-blog-sidebar-sticky {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.bet-blog-author-card {
  text-align: center;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid rgba(20,40,74,0.06);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.bet-blog-author-avatar { margin-bottom: 12px; }
.bet-blog-author-avatar img { border-radius: 50%; width: 72px; height: 72px; object-fit: cover; border: 3px solid var(--bet-gold-bright); }
.bet-blog-author-name { font-family: var(--bet-font-head); font-size: 18px; font-weight: 700; color: var(--bet-navy); margin: 0 0 4px; }
.bet-blog-author-role { font-size: 13px; color: var(--bet-muted); margin: 0; }

.bet-blog-cta-card {
  text-align: center;
  padding: 28px 24px;
  background: var(--bet-navy);
  border-radius: 14px;
  color: #fff;
}
.bet-blog-cta-card h4 { font-family: var(--bet-font-head); font-size: 18px; font-weight: 700; margin: 0 0 8px; color: #fff; }
.bet-blog-cta-card p { font-size: 14px; opacity: 0.85; margin: 0 0 16px; line-height: 1.5; }

.bet-blog-trust-strip {
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(20,40,74,0.06);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bet-blog-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bet-navy);
}
.bet-blog-trust-item i { color: var(--bet-gold-bright); font-size: 16px; width: 20px; text-align: center; }

/* Related Posts Grid */
.bet-blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.bet-blog-related-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(20,40,74,0.06);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .3s, transform .3s;
}
.bet-blog-related-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.bet-blog-related-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.bet-blog-related-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.bet-blog-related-card:hover .bet-blog-related-img img { transform: scale(1.05); }
.bet-blog-related-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--bet-navy);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.bet-blog-related-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.bet-blog-related-title {
  font-family: var(--bet-font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--bet-navy);
  margin: 0 0 8px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bet-blog-related-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0 0 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bet-blog-related-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--bet-muted);
  font-weight: 500;
}
.bet-blog-related-meta i { margin-right: 4px; color: var(--bet-gold-bright); }

/* CTA Band */
.bet-blog-cta-band {
  background: var(--bet-gradient-navy);
  padding: 64px 0;
  text-align: center;
}
.bet-blog-cta-band-inner h2 {
  font-family: var(--bet-font-head);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}
.bet-blog-cta-band-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Blog Responsive */
@media (max-width: 1024px) {
  .bet-blog-layout { grid-template-columns: 1fr; }
  .bet-blog-sidebar-sticky { position: static; }
}
@media (max-width: 768px) {
  .bet-blog-hero { min-height: 320px; padding-bottom: 32px; }
  .bet-blog-hero-title { font-size: 26px; }
  .bet-blog-content { font-size: 16px; }
  .bet-blog-content h2 { font-size: 22px; }
  .bet-blog-related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .bet-blog-hero { min-height: 280px; }
  .bet-blog-hero-meta { gap: 6px 16px; font-size: 13px; }
  .bet-blog-content { font-size: 15px; }
}

/* ============ 26. Contact Page ============ */
.bet-contact-hero {
  background: var(--bet-gradient-navy);
  padding: 96px 0 72px;
  text-align: center;
  color: var(--bet-white);
}
.bet-contact-hero .bet-eyebrow { color: var(--bet-gold); }
.bet-contact-hero .bet-eyebrow::before,
.bet-contact-hero .bet-eyebrow::after { background: linear-gradient(90deg, transparent, var(--bet-gold) 40%, var(--bet-gold)); }
.bet-contact-hero .bet-eyebrow::after { background: linear-gradient(90deg, var(--bet-gold) 60%, transparent); }
.bet-contact-hero-title {
  font-family: var(--bet-font-head);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  margin: 0 0 18px;
  color: #fff !important;
  line-height: 1.12;
}
.bet-contact-hero-sub {
  font-size: 18px;
  opacity: 0.85;
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.bet-contact-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.bet-btn--outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  color: var(--bet-white);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.bet-btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: var(--bet-white);
}

/* Layout */
.bet-contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: start;
}

/* Form card */
.bet-contact-form-intro {
  color: var(--bet-muted);
  margin: 0 0 28px;
  line-height: 1.6;
}
.bet-contact-form-card {
  background: var(--bet-white);
  border: 1px solid var(--bet-line);
  border-radius: var(--bet-radius);
  padding: 36px;
  box-shadow: var(--bet-shadow-sm);
}
/* CF7 form fields inside contact card */
.bet-contact-form-card .wpcf7-form {
  width: 100%;
  max-width: 100% !important;
  margin: 0 !important;
}
.bet-contact-form-card .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.bet-contact-form-card input[type="text"],
.bet-contact-form-card input[type="email"],
.bet-contact-form-card input[type="tel"],
.bet-contact-form-card input[type="url"],
.bet-contact-form-card textarea {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 14px 18px !important;
  border: 1px solid var(--bet-line) !important;
  border-radius: var(--bet-radius-sm) !important;
  font-size: 15px !important;
  font-family: var(--bet-font-body) !important;
  color: var(--bet-ink) !important;
  background: var(--bet-papyrus) !important;
  transition: border-color 0.25s;
  box-sizing: border-box !important;
  margin: 0 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
.bet-contact-form-card input[type="text"]:focus,
.bet-contact-form-card input[type="email"]:focus,
.bet-contact-form-card input[type="tel"]:focus,
.bet-contact-form-card textarea:focus {
  outline: none !important;
  border-color: var(--bet-gold) !important;
  box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.15) !important;
}
.bet-contact-form-card .wpcf7-submit {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 14px 36px !important;
  background: var(--bet-gradient-gold) !important;
  color: var(--bet-kohl) !important;
  border: none !important;
  border-radius: 50px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  font-family: var(--bet-font-body) !important;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
  margin-top: 8px;
}
.bet-contact-form-card .wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 164, 65, 0.35);
}
.bet-contact-form-card .wpcf7 .wpcf7-response-output {
  border: none;
  margin: 16px 0 0;
  padding: 12px 16px;
  border-radius: var(--bet-radius-sm);
  font-size: 14px;
}
.bet-contact-form-card .wpcf7 .wpcf7-response-output:not(:empty) {
  border: 1px solid var(--bet-line);
  background: var(--bet-papyrus);
}

/* Info sidebar */
.bet-contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0 32px;
}
.bet-contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bet-papyrus);
  border-radius: var(--bet-radius-sm);
  border: 1px solid var(--bet-line);
  transition: box-shadow 0.3s;
}
.bet-contact-info-card:hover {
  box-shadow: var(--bet-shadow-sm);
}
.bet-contact-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bet-gradient-gold);
  color: var(--bet-kohl);
  border-radius: 50%;
  font-size: 18px;
}
.bet-contact-info-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--bet-kohl);
}
.bet-contact-info-card p,
.bet-contact-info-card a {
  font-size: 15px;
  color: var(--bet-muted);
  text-decoration: none;
  line-height: 1.5;
  margin: 0;
}
.bet-contact-info-card a:hover {
  color: var(--bet-gold);
}

/* Social links */
.bet-contact-social {
  margin: 0 0 28px;
}
.bet-contact-social h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--bet-kohl);
}
.bet-contact-social-links {
  display: flex;
  gap: 12px;
}
.bet-contact-social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bet-terra);
  color: var(--bet-white);
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.2s, background 0.3s;
}
.bet-contact-social-link:hover {
  transform: translateY(-3px);
  background: var(--bet-faience);
  color: var(--bet-white);
}
.bet-contact-social-link--wa {
  background: #25D366;
}
.bet-contact-social-link--wa:hover {
  background: #1ebe5a;
}

/* Business hours */
.bet-contact-hours {
  padding: 20px;
  background: var(--bet-navy-soft);
  border-radius: var(--bet-radius-sm);
  border: 1px solid var(--bet-line);
}
.bet-contact-hours h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--bet-kohl);
}
.bet-contact-hours p {
  font-size: 15px;
  color: var(--bet-muted);
  margin: 0;
  line-height: 1.5;
}

/* Map */
.bet-contact-map {
  width: 100%;
  height: 400px;
  line-height: 0;
}
.bet-contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .bet-contact-layout { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .bet-contact-hero { padding: 72px 0 56px; }
  .bet-contact-hero-title { font-size: 32px; }
  .bet-contact-map { height: 280px; }
}
@media (max-width: 640px) {
  .bet-contact-hero { padding: 56px 0 40px; }
  .bet-contact-hero-title { font-size: 28px; }
  .bet-contact-hero-sub { font-size: 16px; }
  .bet-contact-form-card { padding: 24px; }
  .bet-contact-map { height: 220px; }
}
