/* ==========================================================================
   Swosti India – Global Styles
   ========================================================================== */

/* ── Variables ── */
:root {
  --gold: #c8993a;
  --gold-light: #e0b55a;
  --green: #173508;
  --green2: #254d3c;
  --green-light: #2e6048;
  --cream: #f5f8eb;
  --cream-alt: #b0e5ad17;
  --cream2: #b0e5ad2e;
  --white: #ffffff;
  --text: #1b2d24;
  --muted: #6b7b6e;
  --border: rgba(27, 58, 45, 0.15);
  --shadow: 0 8px 40px rgba(27, 58, 45, 0.12);
  --dark: #1b3a2d;
  --red: #c0392b;
  --success: #27ae60;
  --font-sans: "Roboto", sans-serif, system-ui, -apple-system;

  /* Buttons (site-wide) */
  --btn-radius: 4px;
  --btn-radius-pill: 999px;
  --btn-font-size: 0.9375rem;
  --btn-font-size-sm: 0.875rem;
  --btn-font-weight: 600;
  --btn-py: 0.35rem;
  --btn-px: 1.35rem;
  --btn-py-sm: 0.5rem;
  --btn-px-sm: 1.1rem;
  --btn-transition:
    background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease, box-shadow 0.2s ease;
  --btn-shadow: 0 4px 14px rgba(23, 53, 8, 0.18);
  --btn-shadow-hover: 0 6px 20px rgba(23, 53, 8, 0.26);
}

/* ── Reset & base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  font-family: var(--font-sans);
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  -webkit-user-modify: read-only;
  cursor: default;
}

input,
textarea,
select,
[contenteditable="false"] {
  -webkit-user-modify: read-write;
  cursor: auto;
}

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

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cream2);
}

::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 3px;
}

/* ── Site-wide button system ── */
body.layout-swosti .btn-primary-gold,
body.layout-swosti .btn-outline-white,
body.layout-swosti .btn-search,
body.layout-swosti .btn-exc-book,
body.layout-swosti .btn-pkg,
body.layout-swosti .btn-select-cab,
body.layout-swosti .btn-cab-book,
body.layout-swosti .btn-cta-solid,
body.layout-swosti .btn-cta-outline,
body.layout-swosti .btn-back,
body.layout-swosti .btn-pay,
body.layout-swosti .btn-pay-now,
body.layout-swosti .btn-promo,
body.layout-swosti .btn-retry,
body.layout-swosti .btn-action,
body.layout-swosti a.btn.btn-pkg,
body.layout-swosti button.btn-pkg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: var(--btn-font-size);
  letter-spacing: 0.5px;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--btn-radius);
  padding: var(--btn-py) var(--btn-px);
  transition: var(--btn-transition);
  white-space: nowrap;
}

body.layout-swosti .btn-primary-gold:focus-visible,
body.layout-swosti .btn-outline-white:focus-visible,
body.layout-swosti .btn-search:focus-visible,
body.layout-swosti .btn-exc-book:focus-visible,
body.layout-swosti .btn-pkg:focus-visible,
body.layout-swosti .btn-select-cab:focus-visible,
body.layout-swosti .btn-cab-book:focus-visible,
body.layout-swosti .btn-cta-solid:focus-visible,
body.layout-swosti .btn-cta-outline:focus-visible,
body.layout-swosti .btn-back:focus-visible,
body.layout-swosti .btn-pay:focus-visible,
body.layout-swosti .btn-pay-now:focus-visible,
body.layout-swosti .btn-promo:focus-visible,
body.layout-swosti .btn-retry:focus-visible,
body.layout-swosti .btn-action:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Primary — green fill (Book, Pay, Search, CTA, cards) */
body.layout-swosti .btn-search,
body.layout-swosti .btn-exc-book,
body.layout-swosti .btn-pkg,
body.layout-swosti .btn-select-cab,
body.layout-swosti .btn-cab-book,
body.layout-swosti .btn-cta-solid,
body.layout-swosti .btn-pay,
body.layout-swosti .btn-pay-now,
body.layout-swosti .btn-promo,
body.layout-swosti .btn-action.btn-primary-a {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: var(--btn-shadow);
}

body.layout-swosti .btn-search:hover,
body.layout-swosti .btn-exc-book:hover,
body.layout-swosti .btn-pkg:hover,
body.layout-swosti .btn-select-cab:hover,
body.layout-swosti .btn-cab-book:hover,
body.layout-swosti .btn-cta-solid:hover,
body.layout-swosti .btn-pay:hover,
body.layout-swosti .btn-pay-now:hover,
body.layout-swosti .btn-promo:hover,
body.layout-swosti .btn-action.btn-primary-a:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--btn-shadow-hover);
}

body.layout-swosti .btn-pay:disabled,
body.layout-swosti .btn-pay-now:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  pointer-events: none;
}

/* Accent — gold fill (hero, nav E-Book, modify search) */
body.layout-swosti .btn-primary-gold,
body.layout-swosti .btn-back,
body.layout-swosti .swosti-site-header .btn-ebook {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(200, 153, 58, 0.35);
}

body.layout-swosti .btn-primary-gold:hover,
body.layout-swosti .btn-back:hover,
body.layout-swosti .swosti-site-header .btn-ebook:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
  transform: translateY(-2px);
}

/* Secondary — green outline */
body.layout-swosti .btn-cta-outline,
body.layout-swosti .btn-action.btn-outline-a {
  background: transparent;
  color: white;
  border-color: white;
  box-shadow: none;
}

body.layout-swosti .btn-cta-outline:hover,
body.layout-swosti .btn-action.btn-outline-a:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--btn-shadow);
}

/* Hero on dark background */
body.layout-swosti .btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

body.layout-swosti .btn-outline-white:hover {
  background: rgba(200, 153, 58, 0.15);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* Danger */
body.layout-swosti .btn-retry {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(192, 57, 43, 0.28);
}

body.layout-swosti .btn-retry:hover {
  background: #a93226;
  border-color: #a93226;
  color: var(--white);
  transform: translateY(-2px);
}

/* Sizes & layout modifiers */
body.layout-swosti .btn-pkg--sm,
body.layout-swosti .btn.btn-pkg--sm {
  font-size: var(--btn-font-size-sm);
  padding: var(--btn-py-sm) var(--btn-px-sm);
}

body.layout-swosti .btn-lg.btn-cta-solid,
body.layout-swosti .btn-lg.btn-cta-outline {
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
}

body.layout-swosti .btn-exc-book,
body.layout-swosti .btn-select-cab,
body.layout-swosti .btn-cab-book,
body.layout-swosti .btn-pay,
body.layout-swosti .btn-pay-now {
  width: 100%;
}

body.layout-swosti .btn-action {
  flex: 1;
  min-width: 140px;
}

body.layout-swosti .promo-row .btn-promo {
  border-radius: 0 var(--btn-radius) var(--btn-radius) 0;
  padding: 0 1.125rem;
  height: 100%;
}

/* ── Hero swiper (home) ── */
.hero-swiper {
  height: 100vh;
  width: 100%;
}

.hero-swiper--front {
  z-index: 1;
}

.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-swiper .swiper-slide-active img {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(2, 2, 2, 0.72) 45%,
    rgba(5, 1, 1, 0.15) 100%
  );
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 680px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero-content h1 {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  color: white;
}

.hero-content h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero buttons: see site-wide button system */

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5) !important;
}

.swiper-pagination-bullet-active {
  background: var(--gold) !important;
  width: 28px !important;
  border-radius: 4px !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--gold) !important;
  width: 44px !important;
  height: 44px !important;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  border: 1px solid var(--gold);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1rem !important;
  font-weight: 900;
}

/* ── Search / filter ── */
.search-section {
  background-color: var(--green);
}

.search-section-container {
  margin-top: -120px;
  z-index: 10;
  position: relative;
  background: #ffffffb6;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(27, 58, 45, 0.07);
  border: 1px solid #e0e0e0;
  backdrop-filter: blur(10px);
}

.search-section-container.row {
  margin-left: 0;
  margin-right: 0;
  --bs-gutter-x: 0;
}

.search-section-container > * {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.search-section .container {
  overflow-x: clip;
}

.search-tabs {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
  padding: 0 24px;
  width: 30%;
  justify-content: center;
}

.search-tab {
  background: none;
  border: none;
  color: rgb(2, 32, 2);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 16px 22px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-tab.active {
  color: var(--green);
}

.search-tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 3px 3px 0 0;
}

.search-tab i {
  font-size: 1rem;
}

.search-hint {
  font-size: 0.82rem;
  color: rgba(91, 90, 90, 0.959);
  padding: 0 24px 8px;
  margin: 0;
}

.search-form-wrapper {
  padding: 24px;
}

.search-panel {
  display: none;
}

.search-panel.active {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
  gap: 12px;
  align-items: end;
}

.form-row.round-trip {
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--end {
  justify-content: flex-end;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.form-group label i {
  margin-right: 5px;
  color: var(--gold);
}

.form-group select,
.form-group input,
.search-section .form-select,
.search-section .form-control {
  background: var(--cream-alt);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  padding: 11px 14px;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.search-section .form-select:focus,
.search-section .form-control:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: none;
}

.form-group select:focus,
.form-group input:focus {
  border-color: var(--green);
  background: var(--white);
}

.form-group select option {
  background: var(--white);
  color: var(--text);
}

.form-group input::placeholder {
  color: var(--muted);
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
}

.btn-search {
  align-self: flex-end;
}

/* ── Stats ── */
.stats-bar {
  background: var(--green);
  padding: 32px 0 30px;
}

.stat-item {
  text-align: center;
  padding: 16px;
}

.stat-num {
  font-family: var(--font-sans);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* ── Section titles ── */
.airport-side-panel-sticky {
  position: sticky !important;
  top: 150px;
  overflow-y: auto;
}

/* .airport-service-panel-container{
  position: sticky !important;
  top: 100px;
  overflow-y: auto;
  padding: 20px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(27, 58, 45, 0.07);
  border: 1px solid var(--border);
} */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section-title {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
}

.section-title em {
  color: var(--gold);
  font-style: italic;
}

.section-sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 12px;
  /* max-width: 540px; */
}

/* ── Destinations ── */
.destinations {
  padding: 80px 0;
  /* background: var(--cream-alt); */
}

.dest-swiper {
  padding-bottom: 44px !important;
  overflow: hidden !important;
  width: 100%;
}

.dest-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  height: 300px;
  transition: transform 0.3s;
}

.dest-card:hover {
  transform: translateY(-6px);
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.dest-card:hover img {
  transform: scale(1.07);
}

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(27, 58, 45, 0.88) 0%,
    transparent 55%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.dest-card-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.dest-card h5 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.dest-card p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.dest-card .rating {
  color: var(--gold);
  font-size: 0.78rem;
  margin-bottom: 5px;
}

/* ── Day excursion ── */
.day-excursion {
  padding: 80px 0;
  background: white;
}

.exc-city-tabs {
  display: inline-flex;
  gap: 8px;
  margin: 24px 0 28px;
  padding: 4px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
}

.exc-tab {
  border: none;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.exc-tab.active {
  background: var(--green);
  color: var(--white);
}

.exc-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
  background: var(--cream);
  border: 1.5px solid #a8bc84;
  border-radius: 14px;
  overflow: hidden;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}

.exc-card:hover,
.exc-card.selected {
  border-color: #a8bc84;
  box-shadow: 0 8px 24px rgba(27, 58, 45, 0.1);
  transform: translateY(-2px);
}

.exc-card.selected {
  box-shadow: 0 12px 28px #a8bc84;
}

.exc-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.exc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.exc-card:hover .exc-card-img img {
  transform: scale(1.05);
}

.exc-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 50px;
}

.exc-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
  min-height: 0;
}

.exc-card-main-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
}

.exc-card-meta {
  flex: 1;
  min-width: 0;
}

.exc-card-pricing {
  flex: 0 0 auto;
  text-align: right;
  min-width: 0;
  margin-left: auto;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}

.exc-card-pricing .btn-exc-places {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin-top: 8px;
  padding: 0;
  width: auto;
  max-width: 100%;
  min-height: 1.25rem;
  white-space: nowrap;
}

.exc-card:not(.exc-card--local) .exc-card-pricing::after {
  content: "";
  display: block;
  min-height: 1.25rem;
  margin-top: 8px;
}

.exc-card-pricing .btn-exc-places .bi {
  font-size: 0.9rem;
  line-height: 1;
  transform: rotate(25deg);
}

.exc-places-covered {
  flex: 1 1 auto;
  min-height: 148px;
  max-height: 148px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(27, 58, 45, 0.1);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.exc-places-covered--spots {
  min-height: 0;
  max-height: none;
  margin-top: 14px;
  padding: 14px 12px 12px;
  border-top: none;
  background: linear-gradient(145deg, rgba(200, 153, 58, 0.14) 0%, rgba(176, 229, 173, 0.22) 55%, rgba(255, 255, 255, 0.9) 100%);
  border: 1.5px solid rgba(200, 153, 58, 0.4);
  border-radius: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 4px 14px rgba(23, 53, 8, 0.08);
}

.exc-places-covered--popup {
  margin-top: 16px;
  padding: 16px 14px 14px;
}

.btn-exc-places {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.btn-exc-places:hover,
.btn-exc-places:focus-visible {
  color: var(--green);
  outline: none;
  transform: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

.exc-card--local {
  border-color: rgba(200, 153, 58, 0.55);
}

.exc-card--local:hover,
.exc-card--local.selected {
  border-color: var(--gold);
  box-shadow: 0 10px 28px rgba(200, 153, 58, 0.18);
}

.exc-places-covered__title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 8px;
  line-height: 1.3;
}

.exc-places-covered--spots .exc-places-covered__title {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.exc-places-covered--spots .exc-places-covered__title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 153, 58, 0.25);
  flex-shrink: 0;
}

.exc-places-covered__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2px 14px;
}

.exc-places-covered--spots .exc-places-covered__list {
  gap: 8px;
}

.exc-places-covered__list li {
  flex: 0 0 100%;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  min-width: 0;
}

.exc-places-covered--spots .exc-places-covered__list li {
  flex: 0 0 calc(50% - 4px);
  line-height: 1.35;
}

.exc-places-covered__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid rgba(23, 53, 8, 0.1);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.35;
  box-shadow: 0 2px 8px rgba(23, 53, 8, 0.07);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.exc-places-covered__pill::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.exc-card:hover .exc-places-covered__pill,
.exc-card--local.selected .exc-places-covered__pill {
  border-color: rgba(200, 153, 58, 0.45);
  box-shadow: 0 3px 10px rgba(200, 153, 58, 0.15);
  transform: translateY(-1px);
}

.exc-places-covered__icon {
  flex-shrink: 0;
  line-height: 1.7;
  font-size: 0.85em;
}

@media (min-width: 576px) {
  .exc-places-covered__list li {
    flex: 0 0 calc(50% - 7px);
  }
}

#exc-grid > [class*="col-"] {
  display: flex;
}

.exc-card-body .btn-exc-book {
  margin-top: auto;
  padding-top: 14px;
  flex-shrink: 0;
  align-self: stretch;
}

/* .btn-exc-book: site-wide button system */

.exc-step-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 8px;
}

.exc-step-label--inline {
  margin-top: 0;
  margin-bottom: 16px;
}

.exc-dest {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 6px;
}

.exc-km {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0;
}

.exc-price {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.25;
}

.exc-rates {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.35;
}

.exc-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.exc-modal.show {
  display: flex;
}

.exc-places-modal {
  z-index: 2100;
}

.exc-places-dialog {
  width: min(520px, 100%);
  max-height: min(85vh, 640px);
  padding: 24px 22px 22px;
}

.exc-places-dialog .exc-close {
  top: 12px;
  right: 12px;
}

.exc-places-dialog h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green);
  margin: 0 0 6px;
}

.exc-places-route {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 4px;
  line-height: 1.45;
}

.exc-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 58, 45, 0.72);
}

.exc-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(90vh, 880px);
  overflow-y: auto;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

body.exc-modal-open {
  overflow: hidden;
}

.exc-cab-head {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding-right: 36px;
}

.exc-cab-head-text {
  flex: 1;
  min-width: 0;
}

.exc-cab-thumb {
  width: 96px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.exc-cab-thumb[hidden] {
  display: none;
}

.exc-cab-head h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 4px;
}

.exc-cab-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.exc-close {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  background: var(--cream);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}

.exc-close:hover {
  color: var(--green);
}

.exc-modal-dialog .cab-grid {
  align-items: stretch;
}

.cab-pick-card {
  border: 2px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.cab-pick-card:hover {
  border-color: var(--green);
  box-shadow: 0 12px 28px rgba(27, 58, 45, 0.12);
}

.cab-pick-card .cab-listing-img-wrap {
  margin-bottom: 0;
}

.cab-pick-card .cab-listing-img-wrap .cab-vehicle-swiper {
  border-radius: 0;
  aspect-ratio: 16 / 10;
}

.exc-modal-dialog .cab-capacity {
  margin-bottom: 8px;
}

.cab-pick-img {
  height: 150px;
  overflow: hidden;
}

.cab-pick-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cab-pick-body {
  padding: 16px 18px 20px;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cab-pick-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 2px;
}

.cab-pick-seats {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.cab-pick-desc {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 10px;
}

.cab-pick-itin {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  font-size: 0.78rem;
  color: var(--muted);
}

.cab-pick-itin li {
  position: relative;
  padding: 3px 0 3px 14px;
  line-height: 1.45;
}

.cab-pick-itin li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.cab-pick-body .cab-price {
  text-align: center;
  margin-bottom: 12px;
}

.cab-pick-body .btn-select-cab {
  margin-top: auto;
}

/* ── Packages ── */
.packages {
  padding: 80px 0;
  background: var(--white);
}

.pkg-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.pkg-filter-btn {
  background: var(--cream-alt);
  border: 2px solid var(--border);
  color: var(--muted);
  border-radius: var(--btn-radius-pill);
  padding: var(--btn-py-sm) var(--btn-px-sm);
  font-size: var(--btn-font-size-sm);
  font-weight: var(--btn-font-weight);
  font-family: var(--font-sans);
  cursor: pointer;
  transition: var(--btn-transition);
}

.pkg-filter-btn:hover,
.pkg-filter-btn.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.pkg-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(27, 58, 45, 0.07);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  height: 100%;
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(27, 58, 45, 0.15);
}

.pkg-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.pkg-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.pkg-card:hover .pkg-card-img img {
  transform: scale(1.07);
}

.pkg-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.pkg-badge.popular {
  background: #c0392b;
}

.pkg-badge.new {
  background: var(--green);
}

.pkg-card-body {
  padding: 20px;
}

.pkg-card-body h5 {
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 6px;
}

.pkg-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.pkg-meta span {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.pkg-meta span i {
  color: var(--gold);
}

.pkg-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.pkg-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.pkg-price {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  color: var(--green);
  font-weight: 700;
}

.pkg-price span {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
}

/* .btn-pkg: site-wide button system */

.pkg-card-item {
  display: none;
}

.pkg-card-item.show {
  display: block;
}

/* ── Why us ── */
.why-us {
  padding: 80px 0;
  background: var(--cream2);
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 24px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(27, 58, 45, 0.06);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(27, 58, 45, 0.13);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(27, 58, 45, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 16px;
}

.feature-card h6 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Testimonials ── */
.testimonials {
  padding: 80px 0;
  background: var(--green);
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials .section-sub {
  color: rgba(255, 255, 255, 0.65);
}

.testi-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.testi-card {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  height: 250px;
  display: flex;
  flex-direction: column;
  width: 100%;
  backdrop-filter: blur(4px);
}

.testi-swiper {
  padding-bottom: 48px;
}

.testi-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.testi-swiper .swiper-pagination-bullet-active {
  background: var(--gold);
}

.testi-google {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.testi-google > span:nth-child(2) {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.testi-g-mark {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%23FFC107' d='M44 20H24v8h12c-1 3-4 6-8 6-5 0-9-4-11-8l-7 5c3 7 10 11 18 11 10 0 18-8 18-18 0-1 0-2 0-2z'/%3E%3Cpath fill='%23FF3D00' d='M6 15l7 5C14 16 19 13 24 13c3 0 6 1 8 3l6-6C34 4 29 2 24 2 16 2 10 6 6 15z'/%3E%3Cpath fill='%234CAF50' d='M24 44c5 0 10-2 13-5l-6-5c-2 1-4 2-7 2-5 0-9-3-11-8l-7 5c4 6 10 11 18 11z'/%3E%3Cpath fill='%231976D2' d='M44 20H24v8h12c1 2 2 3 4 3 1 0 2 0 3l6 5c4-4 6-9 6-16 0-11-9-20-20-20z'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.testi-stars {
  color: #fbbc04;
  font-size: 0.72rem;
  letter-spacing: 1px;
}

.testi-stars i {
  margin-right: 1px;
}

.testi-quote {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0 0 12px;
  flex: 1;
  min-height: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  flex-shrink: 0;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.testi-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}

.testi-loc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ── CTA banner ── */
.cta-banner {
  padding: 80px 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  position: relative;
  isolation: isolate;
  overflow: visible;
  clear: both;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 50% 80% at 90% 50%,
    rgba(200, 153, 58, 0.12) 0%,
    transparent 70%
  );
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-banner .section-label {
  justify-content: center;
}

.cta-banner h2 {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--green);
}

.cta-banner h2 em {
  color: var(--gold);
  font-style: italic;
}

.cta-banner .cta-lead {
  color: var(--muted);
  font-size: 1rem;
  margin: 14px 0 28px;
}

.cta-hours {
  color: var(--muted);
  font-size: 0.8rem;
  margin: 20px 0 0;
}

/* .btn-cta-*: site-wide button system */

/* ── Footer ── */
footer {
  background: var(--green);
  position: relative;
  z-index: 2;
  clear: both;
}

footer.footer-full,
footer#contact.footer-full {
  padding: 64px 0 28px;
}

footer.footer-compact {
  padding: 20px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.81rem;
}

footer.footer-compact a,
footer a.footer-link {
  color: var(--gold-light);
  text-decoration: none;
}

.footer-brand img {
  height: 60px;
  width: auto;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: all 0.2s;
  text-decoration: none;
}

.social-link:hover {
  background: var(--gold);
  color: var(--white);
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 2px;
  font-size: 0.9rem;
}

.footer-contact-item span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 32px 0 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Booking flow: progress steps ── */
.prog-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stp {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.79rem;
  font-weight: 600;
  color: var(--muted);
}

.stp-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  background: #fff;
  flex-shrink: 0;
}

.stp.done .stp-dot {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.stp.done {
  color: var(--green);
}

.stp.active .stp-dot {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.stp.active {
  color: var(--green);
}

.stp-line {
  width: 44px;
  height: 2px;
  background: var(--border);
  margin: 0 5px;
  flex-shrink: 0;
}

.stp.done + .stp-line {
  background: var(--green);
}

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--green);
  color: #fff;
  padding: 34px 0 26px;
}

.page-hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 5px;
}

.page-hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.87rem;
  margin: 0;
}

/* ── Results hero (cab selection) ── */
.results-hero {
  background: var(--green);
  color: #fff;
  padding: 40px 0;
}

.results-hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.results-hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.trip-summary {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.trip-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 20px;
  margin-top: 4px;
}

.trip-summary-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 10px 12px;
  margin-top: 6px;
}

.trip-summary-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px 14px;
  margin-top: 0;
}

.trip-summary__row {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.trip-summary__label {
  font-size: 11px;
  line-height: 1.3;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.trip-summary__value {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  word-break: break-word;
}

.trip-summary__package {
  margin: 10px 0 0;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

.trip-summary strong {
  color: #fff;
}

.cab-results-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 12px 14px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #f8faf6 0%, #f3f7ef 100%);
  border: 1px solid rgba(23, 53, 8, 0.12);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(23, 53, 8, 0.06);
}

.cab-results-notice__icon {
  flex-shrink: 0;
  font-size: 1.15rem;
  line-height: 1.3;
}

.cab-results-notice__body {
  min-width: 0;
}

.cab-results-notice__title {
  margin: 0 0 4px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #173508;
  line-height: 1.35;
}

.cab-results-notice__text,
.cab-results-notice__sub {
  margin: 0;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 500;
  color: #4b5563;
}

.cab-results-notice__sub {
  margin-top: 4px;
  color: #6b7280;
}

@media (max-width: 575.98px) {
  .results-hero {
    padding: 20px 0;
  }

  .trip-summary-grid,
  .trip-summary-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 10px;
  }
}

.season-pill {
  display: inline-block;
  background: rgba(200, 153, 58, 0.2);
  border: 1px solid rgba(200, 153, 58, 0.45);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 8px;
}

.btn-back {
  margin-top: 10px;
}

/* ── Confirm hero ── */
.confirm-hero {
  background: linear-gradient(135deg, var(--green), var(--green2));
  padding: 60px 0 52px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.confirm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.check-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(111, 207, 151, 0.2);
  border: 3px solid #6fcf97;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: pop 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

.check-circle i {
  font-size: 2rem;
  color: #6fcf97;
}

.confirm-hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.confirm-hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.confirm-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto;
}

.bid-badge {
  display: inline-block;
  background: rgba(200, 153, 58, 0.2);
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 10px 24px;
  border-radius: 50px;
  margin: 18px 0 0;
  font-family: var(--font-sans);
}

/* ── Page sections ── */
.booking-body,
.pay-body,
.confirm-body,
.results-body {
  padding: 40px 0;
}

.results-body {
  padding-bottom: 40px;
}

@media (max-width: 575.98px) {
  .results-body {
    padding: 20px 0;
  }
}

.confirm-body {
  padding: 36px 0 64px;
}

.btn-back-link {
  color: var(--muted);
  font-size: 0.83rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}

.btn-back-link:hover {
  color: var(--green);
}

.booking-travellers-readonly {
  padding: 0.5rem 0.75rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-weight: 600;
  color: #173508;
  font-size: 0.95rem;
}

.booking-travellers-readonly__meta {
  display: block;
  margin-top: 2px;
  font-weight: 500;
  color: #64748b;
  font-size: 0.8rem;
}

.booking-travellers-change {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}

.booking-travellers-change:hover,
.booking-travellers-change:focus-visible {
  color: var(--green);
  text-decoration: underline;
}

/* ── Cards ── */
.card-box,
.order-card,
.summary-card,
.pay-card,
.service-card,
.detail-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(27, 58, 45, 0.06);
}

.card-box {
  padding: 26px;
}

/* ── Cab booking time notice (travel alert) ── */
.cab-booking-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff8e6 0%, #fff3d4 100%);
  border: 1px solid rgba(200, 153, 58, 0.35);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(200, 153, 58, 0.12); 
}

.cab-booking-notice__icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1.3;
}

.cab-booking-notice__body {
  min-width: 0;
}

.cab-booking-notice__text {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #7a5a12;
  line-height: 1.45;
}

.cab-booking-notice__sub {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  color: #8a7340;
  line-height: 1.5;
}

.cab-booking-notice--section {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25rem;
}

.cab-booking-notice--cta {
  max-width: 640px;
  margin: 0 auto 1.25rem;
  text-align: left;
  background: rgba(255, 248, 230, 0.95);
}

.cab-booking-notice--modal {
  margin-bottom: 1rem;
}

.page-cab-transport .cab-hero-widget .cab-booking-notice {
  margin-bottom: 0.875rem;
}

.swosti-cab-modal .cab-booking-notice {
  margin-bottom: 0.875rem;
}

/* ── Booking policy acceptance card ── */
.booking-ack-card {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(180deg, #fafcf9 0%, #f4f8f5 100%);
  border: 1px solid rgba(27, 58, 45, 0.12);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(27, 58, 45, 0.06);
}

.booking-ack-card.is-invalid {
  border-color: rgba(192, 57, 43, 0.45);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
}

.booking-ack-card__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.booking-ack-card__icon {
  font-size: 1.35rem;
  line-height: 1;
}

.booking-ack-card__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green);
}

.booking-ack-card__checks {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.booking-ack-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.booking-ack-check__input {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.15rem;
  cursor: pointer;
  accent-color: var(--green);
}

.booking-ack-check__label {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text);
  cursor: pointer;
}

.booking-ack-check__label a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.booking-ack-check__label a:hover {
  color: var(--green-light);
}

.booking-ack-card__notice {
  margin: 1rem 0 0;
  padding: 0.75rem 0.875rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--muted);
  background: rgba(27, 58, 45, 0.04);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
}

.booking-ack-error {
  margin: 0.85rem 0 0;
  padding: 0.65rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #a93226;
  background: #fdecea;
  border: 1px solid rgba(192, 57, 43, 0.25);
  border-radius: 10px;
}

@media (max-width: 575.98px) {
  .booking-ack-card {
    padding: 1rem;
  }

  .booking-ack-check__label {
    font-size: 0.875rem;
  }

  .cab-booking-notice {
    padding: 0.75rem 0.875rem;
  }
}

.service-card {
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: 0 8px 32px rgba(27, 58, 45, 0.08);
}

.service-card h2 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  color: var(--green);
  margin-bottom: 6px;
}

.service-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.service-meta span {
  margin-right: 16px;
}

.summary-card,
.order-card {
  padding: 22px;
  position: sticky;
  top: 94px;
}

.summary-card h5,
.order-card h5 {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 14px;
  font-size: 1rem;
}

.sec-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sec-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.form-label {
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.form-control,
.form-select {
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 10px 13px;
  font-size: 0.88rem;
  font-family: var(--font-sans);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--green);
  box-shadow: none;
}

/* ── Vehicle picker ── */
.veh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
}

.veh-opt {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  transition: all 0.18s;
}

.veh-opt input {
  display: none;
}

.veh-opt:has(input:checked) {
  border-color: var(--green);
  background: rgba(27, 58, 45, 0.05);
}

.veh-opt strong {
  display: block;
  color: var(--green);
  font-size: 0.8rem;
}

.veh-opt small {
  color: var(--muted);
  font-size: 0.72rem;
}

.veh-price {
  display: block;
  font-weight: 700;
  color: var(--gold);
  font-size: 0.86rem;
  margin-top: 2px;
}

.alert-vehicle-selected {
  font-size: 0.88rem;
  border-radius: 10px;
}

/* ── Promo ── */
.promo-row {
  display: flex;
  gap: 0;
}

.promo-row .form-control {
  border-radius: var(--btn-radius) 0 0 var(--btn-radius);
  border-right: none;
}

/* .btn-promo: site-wide button system */

.promo-msg {
  font-size: 0.77rem;
  margin-top: 5px;
}

.promo-msg.ok {
  color: var(--success);
}

.promo-msg.err {
  color: var(--red);
}

/* ── Summary rows ── */
.s-row,
.o-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.83rem;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}

.o-row {
  font-size: 0.82rem;
  padding: 6px 0;
}

.s-row:last-child,
.o-row:last-child {
  border: none;
  padding-top: 10px;
}

.s-lbl,
.o-lbl {
  color: var(--muted);
}

.s-val,
.o-val {
  font-weight: 600;
  text-align: right;
}

.s-val {
  max-width: 58%;
}

.s-total .s-lbl,
.o-total .o-lbl {
  font-weight: 700;
  color: var(--green);
}

.s-total .s-val {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  color: var(--green);
}

.o-total .o-val {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  color: var(--green);
}

.s-note {
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.5;
}

.o-row--discount .o-lbl,
.o-row--discount .o-val {
  color: var(--success);
}

/* ── Cab selection grid ── */
.cab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.cab-card {
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  background: var(--cream);
}

.cab-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(27, 58, 45, 0.12);
}

.cab-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(27, 58, 45, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--green);
}

.cab-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 4px;
}

.cab-card .seats {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.cab-price {
  font-family: var(--font-sans);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.cab-price small {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 400;
  display: block;
  margin-top: 4px;
}

/* .btn-select-cab: site-wide button system */

.empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--muted);
}

/* ── Package search: horizontal cab listing (creative card) ── */
.package-results-head {
  margin-bottom: 6px;
}

.service-card.package-results-head {
  padding: 15px 18px;
  margin-bottom: 15px;
}

.cab-listing-stack {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.cab-listing-card {
  --cab-orange: #ea580c;
  --cab-orange-soft: #fff7ed;
  --cab-teal: #0f766e;
  --cab-price-blue: #1d4ed8;
  --cab-offer-green: #15803d;
  --cab-muted: #64748b;
  position: relative;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 6px 28px rgba(15, 23, 42, 0.07);
  overflow: hidden;
  min-width: 0;
  height: 100%;
}

.cab-listing-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  background: linear-gradient(
    135deg,
    #c2410c 0%,
    var(--cab-orange) 55%,
    #fb923c 100%
  );
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 7px 16px 7px 12px;
  border-radius: 0 0 14px 0;
  box-shadow: 2px 3px 12px rgba(234, 88, 12, 0.35);
}

.cab-listing-inner {
  display: grid;
  grid-template-columns: minmax(250px, 140px) minmax(0, 1fr) minmax(
      128px,
      168px
    );
  gap: 0;
  align-items: stretch;
  padding: 15px 14px;
  padding-top: 42px;
  min-height: 100%;
}

.cab-listing-col {
  min-width: 0;
}

.cab-listing-col--image {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-right: 12px;
  border-right: 1px dashed rgba(148, 163, 184, 0.6);
}

.cab-listing-col--image .cab-gold-promo {
  width: 100%;
  margin-top: 12px;
  margin-bottom: 0;
  align-self: stretch;
}

.cab-listing-img-wrap {
  width: 100%;
  position: relative;
  margin-bottom: 10px;
}

.cab-listing-img-wrap .cab-vehicle-swiper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #f1f5f9;
}

.cab-listing-img-wrap .cab-vehicle-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
}

.cab-listing-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 8px 16px rgba(15, 23, 42, 0.12));
}

.cab-vehicle-swiper__prev,
.cab-vehicle-swiper__next {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.cab-vehicle-swiper__prev {
  left: 8px;
}
.cab-vehicle-swiper__next {
  right: 8px;
}

.cab-vehicle-swiper__prev:hover,
.cab-vehicle-swiper__next:hover {
  transform: scale(1.05);
  background: #fff;
}

.cab-vehicle-swiper__pagination {
  bottom: 6px !important;
}

.cab-vehicle-swiper__pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.85);
  opacity: 0.7;
}

.cab-vehicle-swiper__pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  opacity: 1;
}

.cab-capacity {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  justify-content: center;
  margin-top: 8px;
}

.cab-capacity__item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #475569;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.cab-capacity__item--bench {
  color: var(--green);
  border-color: rgba(200, 153, 58, 0.35);
  background: rgba(200, 153, 58, 0.08);
}

.hp-lux-glance-media__img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

.cab-listing-model {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--cab-teal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin: 0;
}

.cab-listing-col--desc {
  padding: 0 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cab-listing-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  align-items: start;
}

.cab-block-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
}

.cab-fare-dl {
  margin: 0;
}

.cab-fare-dl > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 0.8rem;
  padding: 5px 0;
  border-bottom: 1px solid #f1f5f9;
}

.cab-fare-dl > div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cab-fare-dl dt {
  color: var(--cab-muted);
  font-weight: 500;
  margin: 0;
}

.cab-fare-dl dd {
  margin: 0;
  font-weight: 600;
  color: #1e293b;
  text-align: right;
}

.cab-fare-dl .fare-total-row dt {
  font-weight: 700;
  color: #334155;
}

.cab-fare-dl .fare-total-row dd {
  color: var(--cab-orange);
  font-weight: 700;
}

.cab-fare-dl .fare-total-row dd s {
  color: #94a3b8;
}

.cab-fare-dl .fare-special-row {
  padding-top: 8px;
  margin-top: 2px;
  border-top: 1px dashed #e2e8f0;
  border-bottom: none;
}

.cab-fare-dl .fare-special-row dt {
  color: var(--cab-offer-green);
  font-weight: 700;
}

.cab-fare-dl .fare-special-row dd {
  color: var(--cab-offer-green);
  font-weight: 800;
  font-size: 0.9rem;
}

.cab-includes-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cab-includes-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.76rem;
  line-height: 1.45;
  color: #475569;
  margin-bottom: 8px;
}

.cab-includes-list li:last-child {
  margin-bottom: 0;
}

.cab-includes-list .fa-check {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--cab-orange);
  font-size: 0.72rem;
}

.cab-listing-itin {
  background: var(--cab-orange-soft);
  border: 1px solid #ffedd5;
  border-radius: 10px;
  padding: 10px 14px;
}

.cab-listing-itin-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #9a3412;
  margin-bottom: 8px;
}

.cab-listing-itin-list {
  margin: 0;
  padding-left: 18px;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #57534e;
}

.cab-listing-itin-list li {
  margin-bottom: 4px;
  padding-left: 2px;
}

.cab-listing-itin-list li:last-child {
  margin-bottom: 0;
}

.cab-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cab-feature-pill {
  flex: 1 1 calc(50% - 10px);
  min-width: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #475569;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.cab-feature-pill i {
  color: var(--cab-orange);
  font-size: 0.95rem;
  width: 1.1rem;
  text-align: center;
}

.cab-listing-col--deal {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  padding-left: 12px;
  border-left: 1px dashed rgba(148, 163, 184, 0.6);
}

.cab-listing-col--deal .cab-deal-badge {
  align-self: center;
}

.cab-qty-block {
  margin: 0 0 10px;
  text-align: center;
}

.cab-qty-warn {
  margin: 0 0 8px;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 500;
  color: #b45309;
  text-align: left;
}

.cab-qty-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.cab-qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  font-size: 1rem;
  font-weight: 700;
  color: #173508;
  line-height: 1;
  cursor: pointer;
}

.cab-qty-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.cab-qty-val {
  min-width: 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}

.cab-unit-rate {
  margin: 0 0 8px;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 500;
  color: #64748b;
}

.cab-save-pill {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cab-offer-green);
  background: rgba(22, 163, 74, 0.1);
  border-radius: 999px;
  padding: 5px 10px;
  line-height: 1.3;
}

.cab-gold-promo {
  text-align: left;
  background: linear-gradient(135deg, #fff9eb 0%, #fffdf8 52%, #fff6dc 100%);
  border: 1px solid rgba(200, 153, 58, 0.28);
  border-radius: 12px;
  padding: 0.75rem 0.8rem;
  margin-bottom: 12px;
  box-shadow: 0 4px 16px rgba(200, 153, 58, 0.08);

  margin-top: 20px;
}

.cab-gold-promo__title {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.35;
  color: #5c430d;
}

.cab-gold-promo__crown {
  flex-shrink: 0;
  font-size: 0.9rem;
  line-height: 1.2;
}

.cab-gold-promo__text {
  margin: 0 0 0.55rem;
  font-size: 0.68rem;
  line-height: 1.45;
  color: #7a6228;
}

.cab-gold-promo__ask {
  margin: 0 0 0.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: #64748b;
}

.cab-gold-promo__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.cab-gold-promo__link:hover,
.cab-gold-promo__link:focus-visible {
  color: var(--gold);
  gap: 0.5rem;
}

.cab-gold-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  max-width: calc(100% - 120px);
  padding: 0.38rem 0.65rem;
  background: linear-gradient(135deg, #b8860b 0%, var(--gold) 55%, #e0b55a 100%);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
  border-bottom-left-radius: 10px;
  box-shadow: 0 4px 12px rgba(200, 153, 58, 0.25);
}

.cab-gold-ribbon i {
  font-size: 0.62rem;
}

.cab-price-stack {
  margin-bottom: 12px;
}

.cab-price-stack__label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.cab-gold-savings-badge {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: 0.55rem 0 0.45rem;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(200, 153, 58, 0.12) 0%, rgba(255, 248, 232, 0.95) 100%);
  border: 1px solid rgba(200, 153, 58, 0.22);
}

.cab-gold-savings-badge__title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #7a6228;
}

.cab-gold-savings-badge__amt {
  font-size: 0.82rem;
  font-weight: 800;
  color: #5c430d;
}

.cab-gold-save-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  padding: 0.42rem 0.55rem;
  border-radius: 999px;
  background: rgba(200, 153, 58, 0.12);
  border: 1px solid rgba(200, 153, 58, 0.22);
  color: #7a5a12;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.3;
}

.cab-gold-save-pill i {
  color: var(--gold);
}

.cab-coupon-block {
  text-align: left;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 10px 8px;
  margin-bottom: 12px;
}

.cab-coupon-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #334155;
  margin-bottom: 4px;
}

.cab-coupon-title i {
  color: var(--cab-orange);
}

.cab-coupon-hint {
  margin: 0 0 8px;
  font-size: 0.65rem;
  color: var(--cab-muted);
}

.cab-coupon-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cab-coupon-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  padding: 5px 0;
  border-top: 1px solid #f1f5f9;
}

.cab-coupon-list li:first-of-type {
  border-top: none;
  padding-top: 0;
}

.cab-coupon-code {
  font-family: ui-monospace, monospace;
  font-weight: 700;
  font-size: 0.7rem;
  color: #1e40af;
  background: #eff6ff;
  padding: 2px 6px;
  border-radius: 4px;
}

.cab-coupon-pct {
  font-weight: 700;
  color: var(--cab-offer-green);
  white-space: nowrap;
}

.cab-aside-was {
  margin: 0 0 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #64748b;
}

.cab-deal-badge {
  display: inline-block;
  background: linear-gradient(180deg, #fef08a 0%, #facc15 100%);
  color: #422006;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
  box-shadow: 0 2px 6px rgba(202, 138, 4, 0.25);
}

.cab-aside-price {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--cab-price-blue);
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.cab-price-info {
  border: none;
  background: transparent;
  padding: 0 2px;
  color: var(--cab-orange);
  cursor: help;
  font-size: 1rem;
  line-height: 1;
  vertical-align: middle;
}

.cab-price-info:hover {
  color: #c2410c;
}

.btn-cab-book .fa-arrow-right {
  font-size: 0.85rem;
  opacity: 0.95;
}

@media (max-width: 1199px) {
  .cab-listing-stack {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cab-listing-inner {
    grid-template-columns: minmax(120px, 160px) minmax(0, 1fr) minmax(
        140px,
        190px
      );
    padding: 20px 18px 18px;
    padding-top: 46px;
  }

  .cab-listing-col--desc {
    padding: 0 16px;
  }

  .cab-listing-columns {
    gap: 16px 20px;
  }

  .cab-aside-price {
    font-size: 1.4rem;
  }
}

@media (max-width: 991px) {
  .cab-listing-inner {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .cab-listing-col--image {
    border-right: none;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.6);
    padding-right: 0;
    padding-bottom: 14px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .cab-listing-col--image .cab-gold-promo {
    flex: 1 1 100%;
    margin-top: 4px;
  }

  .cab-listing-img-wrap {
    max-width: 220px;
    margin-bottom: 0;
  }

  .cab-listing-model {
    flex: 1 1 100%;
  }

  .cab-listing-col--desc {
    padding: 14px 0 0;
  }

  .cab-listing-columns {
    grid-template-columns: 1fr;
  }

  .cab-listing-col--deal {
    border-left: none;
    border-top: 1px dashed rgba(148, 163, 184, 0.6);
    padding-left: 0;
    padding-top: 18px;
    margin-top: 2px;
  }

  .cab-feature-pill {
    flex: 1 1 calc(50% - 10px);
  }
}

@media (max-width: 576px) {
  .cab-feature-pill {
    flex: 1 1 100%;
  }

  .cab-aside-price {
    font-size: 1.25rem;
  }
}

/* ── Payment ── */
.pay-card {
  overflow: hidden;
}

.pay-tabs {
  display: none;
}

.pay-panel {
  display: none;
  padding: 26px;
}

.pay-panel.show {
  display: block;
}

.pay-intro {
  font-size: 0.88rem;
}

.sec-title--payment {
  margin-bottom: 12px;
}

.btn-pay {
  margin-top: 8px;
}

.btn-pay-now {
  margin-top: 16px;
}

.secure-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--muted);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px 10px;
}

.badge-item i {
  color: var(--green);
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(27, 58, 45, 0.75);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.overlay.show {
  display: flex;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.overlay p {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

.alert-fail {
  display: none;
  background: #fff3f3;
  border: 1.5px solid var(--red);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 18px;
  gap: 12px;
  align-items: flex-start;
}

.alert-fail.show {
  display: flex;
}

.alert-fail i {
  color: var(--red);
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.alert-fail strong {
  display: block;
  color: var(--red);
  margin-bottom: 3px;
}

.alert-fail p {
  margin: 0;
  font-size: 0.84rem;
}

.btn-retry {
  margin-top: 8px;
  width: auto;
}

/* Hidden payment UI blocks */
.d-none-upi,
.upi-apps--hidden,
.pay-label--hidden {
  display: none !important;
}

/* Brand icon colors (payment) */
.icon-phonepe {
  color: #5f259f;
}
.icon-paytm {
  color: #002970;
}
.icon-amazon {
  color: #ff9900;
}
.icon-mobikwik {
  color: #e91e63;
}
.icon-freecharge {
  color: #5c2d91;
}
.icon-airtel {
  color: #e40000;
}
.icon-jio {
  color: #0057a8;
}

/* ── Confirmation details ── */
.detail-card {
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(27, 58, 45, 0.07);
  border-radius: 16px;
}

.detail-header {
  background: linear-gradient(135deg, var(--green), var(--green2));
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-header i {
  color: var(--gold);
  font-size: 1.1rem;
}

.detail-header span {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

.detail-body {
  padding: 0;
}

.d-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
}

.d-row:last-child {
  border: none;
}

.d-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(200, 153, 58, 0.1);
  border: 1px solid rgba(200, 153, 58, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.d-icon i {
  color: var(--gold);
  font-size: 0.85rem;
}

.d-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--muted);
  margin-bottom: 1px;
}

.d-val {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.notif-strip {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 20px 24px;
  margin-top: 20px;
}

.notif-strip h6,
.next-card h6 {
  font-weight: 700;
  color: var(--green);
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.notif-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.notif-item:last-child {
  margin: 0;
}

.notif-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.notif-icon.sms {
  background: #e3f2fd;
  color: #1565c0;
}

.notif-icon.email {
  background: #fce4ec;
  color: #c62828;
}

.notif-icon.whatsapp {
  background: #e8f5e9;
  color: #2e7d32;
}

.notif-item p {
  margin: 0;
  font-size: 0.83rem;
  line-height: 1.5;
}

.notif-item p strong {
  display: block;
  color: var(--text);
  font-size: 0.85rem;
}

.fare-box {
  background: var(--green);
  border-radius: 14px;
  padding: 24px;
  color: #fff;
  text-align: center;
}

.fare-box .f-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}

.fare-box .f-amount {
  font-family: var(--font-sans);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}

.fare-box .f-note {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

.fare-box .f-method {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 12px;
}

.action-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* .btn-action / .btn-*-a: site-wide button system */

.next-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 22px;
  margin-top: 20px;
}

.next-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.next-item:last-child {
  margin: 0;
}

.next-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.next-item p {
  margin: 0;
  font-size: 0.83rem;
  line-height: 1.55;
  color: var(--text);
}

.next-item p strong {
  display: block;
  color: var(--green);
  margin-bottom: 1px;
}

/* ── Utilities ── */
.text-pay-intro {
  font-size: 0.88rem;
}

.text-discount {
  color: #27ae60;
}

.alert-promo {
  font-size: 0.88rem;
  border-radius: 10px;
}

.brand-phonepe {
  color: #5f259f;
}
.brand-paytm {
  color: #002970;
}
.brand-amazon {
  color: #ff9900;
}
.brand-mobikwik {
  color: #e91e63;
}
.brand-freecharge {
  color: #5c2d91;
}
.brand-airtel {
  color: #e40000;
}
.brand-jio {
  color: #0057a8;
}

.icon-gold {
  color: var(--gold);
}

.text-accent-green {
  color: var(--green);
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.fade-up {
  animation: fadeUp 0.6s ease forwards;
}

.fade-up-delay-1 {
  animation-delay: 0.15s;
  opacity: 0;
}

.fade-up-delay-2 {
  animation-delay: 0.3s;
  opacity: 0;
}

.fade-up-delay-3 {
  animation-delay: 0.45s;
  opacity: 0;
}

/* ── Responsive (home + shared) ── */
@media (max-width: 991px) {
  .hero-swiper {
    height: min(100vh, 680px);
    min-height: 400px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .search-section-container {
    margin-top: -56px;
    padding: 16px;
  }

  .search-tabs,
  .search-form-wrapper,
  .search-hint {
    padding-left: 12px;
    padding-right: 12px;
  }

  .search-tabs {
    /* flex-wrap: wrap;
    display: flex; */
    flex-direction: row !important;
    padding-top: 4px;
    width: 100%;
    justify-content: start;
    align-items: start;
    gap: 10px;
  }

  .search-tab {
    flex: 1 1 45%;
    justify-content: center;
    padding: 12px 10px;
    font-size: 0.82rem;
  }

  .destinations,
  .packages,
  .day-excursion,
  .why-us,
  .testimonials,
  .cta-banner {
    padding: 48px 0;
  }

  .stat-num {
    font-size: 1.85rem;
  }

  .exc-city-tabs {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }

  .pkg-footer {
    flex-wrap: wrap;
    gap: 10px;
  }

  .cab-grid {
    grid-template-columns: 1fr;
  }

  .exc-modal-dialog {
    padding: 16px;
    max-height: 92vh;
  }

  .exc-cab-head {
    flex-wrap: wrap;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .form-row,
  .form-row.round-trip {
    grid-template-columns: 1fr;
  }

  .hero-swiper {
    height: 72vh;
    min-height: 360px;
  }

  .hero-content h1 {
    font-size: 1.85rem;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
    text-align: center;
  }

  .search-section-container {
    margin-top: -36px;
    padding: 12px;
    border-radius: 12px;
  }

  .search-hint {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .search-form-wrapper {
    padding: 12px 8px 8px;
  }

  .btn-search {
    width: 100%;
    justify-content: center;
    align-self: stretch;
    white-space: normal;
  }

  .form-group select,
  .form-group input {
    width: 100%;
    max-width: 100%;
  }

  .dest-card {
    height: 260px;
  }

  .dest-card p {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .pkg-price {
    font-size: 1.1rem;
  }

  .cta-hours {
    font-size: 0.72rem;
    line-height: 1.5;
    padding: 0 8px;
  }

  .footer-brand img {
    height: 48px;
  }

  .stp span {
    display: none;
  }

  .stp-line {
    width: 20px;
  }
}

/* ==========================================================================
   Swosti site header & footer (layout-swosti)
   ========================================================================== */

.swosti-site-header {
  --sh-green: #023812;
  --sh-green-dark: #011f09;
  --sh-green-mid: #034a18;
  --sh-gold: #e07b18;
  --sh-gold-h: #c96b10;
}

.swosti-site-header .topbar {
  background: var(--sh-green-dark);
  font-size: 12.5px;
}
.swosti-site-header .topbar .translator-shell a {
  color: #282e29 !important;
}
.swosti-site-header .topbar a {
  color: #d8d8d8 !important;
  text-decoration: none;
  transition: color 0.2s;
}
.swosti-site-header .topbar a:hover {
  color: var(--sh-gold);
}
.swosti-site-header .navbar {
  /* background: var(--sh-green) !important; */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}
.swosti-site-header .navbar-brand img {
  height: 58px;
}
.swosti-site-header .navbar-toggler {
  border-color: var(--green);
  background-color: var(--green);
}
.swosti-site-header .navbar-toggler-icon {
  filter: invert(1);
  color: var(green);
}
.swosti-site-header .nav-link {
  color: rgba(27, 27, 27, 0.966) !important;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 12px !important;
  border-radius: 4px;
  transition: all 0.2s;
}
.swosti-site-header .nav-link:hover,
.swosti-site-header .nav-link.active {
  color: var(--sh-green-mid) !important;
}
.swosti-site-header .dropdown-menu {
  border-top: 3px solid var(--sh-gold);
  border-radius: 0 0 6px 6px;
}
.swosti-site-header .dropdown-item {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  padding: 9px 18px;
  transition: all 0.2s;
}
.dropdown-item.active, .dropdown-item:active {
  background: #063a12;
  color: #ffffff;
  padding-left: 22px;
}
.swosti-site-header .dropdown-item:hover {
  background: #f4fdf6;
  color: var(--sh-green);
  padding-left: 22px;
}
.swosti-site-header .mega-menu {
  width: 680px;
  max-width: calc(100vw - 24px);
  padding: 0;
  left: 50%;
  transform: translateX(-50%);
}
/* Desktop hover fallback so header dropdowns (Holidays mega + Services) open
   reliably on every page even if Bootstrap JS is late, blocked, or errors. */
@media (min-width: 992px) {
  .swosti-site-header .navbar-nav .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
  }
  /* Keep a hover bridge so the menu doesn't close in the gap under the toggle */
  .swosti-site-header .navbar-nav .nav-item.dropdown > .dropdown-menu {
    margin-top: 0;
  }
  /* Regular (non-mega) dropdown: position under its own toggle */
  .swosti-site-header .navbar-nav .nav-item.dropdown:not(.position-static) {
    position: relative;
  }
  .swosti-site-header .navbar-nav .nav-item.dropdown:not(.position-static):hover > .dropdown-menu {
    top: 100%;
    left: 0;
    right: auto;
  }
  /* Mega menu stays centered full-width */
  .swosti-site-header .navbar-nav .nav-item.dropdown.position-static:hover > .mega-menu {
    left: 50%;
    transform: translateX(-50%);
  }
}
.swosti-site-header .mega-left {
  background: var(--sh-green);
  padding: 28px 20px;
  border-radius: 0 0 0 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swosti-site-header .mega-left img {
  height: 52px;
  margin-bottom: 14px;
}
.swosti-site-header .mega-left .tagline {
  color: #aed6b5;
  font-size: 11.5px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.swosti-site-header .mega-left .review-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 5px 12px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.swosti-site-header .mega-left .review-badge:hover {
  background: rgba(255, 255, 255, 0.2);
}
.swosti-site-header .mega-left .stars {
  color: #fbbc04;
  font-size: 11px;
}
.swosti-site-header .mega-right {
  padding: 16px;
  background: #fff;
}
.swosti-site-header .mega-pkg {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  border-bottom: 1px solid #f0f0f0;
}
.swosti-site-header .mega-pkg:last-child {
  border-bottom: none;
}
.swosti-site-header .mega-pkg:hover {
  background: #f4fdf6;
}
.swosti-site-header .mega-pkg img {
  width: 72px;
  height: 52px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.swosti-site-header .mega-pkg-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--sh-green);
  line-height: 1.3;
}
.swosti-site-header .mega-pkg-sub {
  font-size: 11px;
  color: #888;
  margin-top: 2px;
}
.swosti-site-header .btn-ebook {
  background: var(--sh-gold) !important;
  border-color: var(--sh-gold) !important;
  color: #fff !important;
  border-radius: var(--btn-radius) !important;
  font-weight: var(--btn-font-weight) !important;
  padding: var(--btn-py-sm) var(--btn-px-sm) !important;
}
.swosti-site-header .btn-ebook:hover {
  background: var(--sh-gold-h) !important;
  border-color: var(--sh-gold-h) !important;
  color: #fff !important;
}

body.layout-swosti.page-inner {
  padding-top: 0 !important;
}
.layout-swosti .swosti-site-header.sticky-top {
  position: sticky !important;
  top: 0;
  z-index: 1030;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}
.layout-swosti .swosti-site-header .navbar {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  width: 100% !important;
  z-index: 1;
  background-color: #ffffffc0;
  backdrop-filter: blur(10px);
  padding: 0px;
}

@media (max-width: 991px) {
  .swosti-site-header .mega-menu {
    width: 100%;
    left: 0;
    transform: none;
    position: static !important;
  }
  .swosti-site-header .mega-menu .d-flex {
    flex-direction: column;
  }
  .swosti-site-header .mega-left {
    border-radius: 0;
  }
}

.swosti-site-footer {
  --sf-green: #023812;
  --sf-gold: #e07b18;
}
.swosti-site-footer .assoc-bar {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #f8fcf9 0%, #eef8f1 45%, #f2faf4 100%);
  border-top: 4px solid var(--sf-gold);
  padding: clamp(2rem, 5vw, 3rem) 0;
}

.swosti-site-footer .assoc-bar__accent {
  position: absolute;
  top: -80px;
  right: -60px;
  width: min(320px, 55vw);
  height: min(320px, 55vw);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(224, 123, 24, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.swosti-site-footer .assoc-bar__container {
  position: relative;
  z-index: 1;
}

.swosti-site-footer .assoc-bar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  align-items: start;
}

@media (min-width: 992px) {
  .swosti-site-footer .assoc-bar__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.5fr);
    gap: 2.5rem 3rem;
    align-items: center;
  }
}

.swosti-site-footer .assoc-bar__trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.swosti-site-footer .assoc-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--sf-green);
  background: var(--white);
  border: 1px solid rgba(2, 56, 18, 0.12);
  border-radius: var(--btn-radius-pill);
  box-shadow: 0 2px 8px rgba(2, 56, 18, 0.06);
}

.swosti-site-footer .assoc-trust-pill i {
  color: var(--sf-gold);
  font-size: 0.95rem;
}

.swosti-site-footer .assoc-bar__title {
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 700;
  color: var(--sf-green);
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

.swosti-site-footer .assoc-bar__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 0.5rem;
  background: linear-gradient(90deg, var(--sf-gold), transparent);
  border-radius: 2px;
}

.swosti-site-footer .assoc-bar__text {
  margin: 0;
  font-size: clamp(0.88rem, 2.2vw, 0.7rem);
  line-height: 1.7;
  color: #3d5244;
  max-width: 42rem;
}

.swosti-site-footer .assoc-bar__partners {
  background: var(--white);
  border: 1px solid rgba(2, 56, 18, 0.1);
  border-radius: 16px;
  padding: 1.15rem 1rem 1.25rem;
  box-shadow: 0 8px 28px rgba(2, 56, 18, 0.07);
}

.swosti-site-footer .assoc-bar__partners-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0 0 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sf-gold);
}

.swosti-site-footer .assoc-bar__logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.65rem;
}

@media (min-width: 400px) {
  .swosti-site-footer .assoc-bar__logos {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
  }
}

@media (min-width: 576px) {
  .swosti-site-footer .assoc-bar__logos {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 768px) {
  .swosti-site-footer .assoc-bar__logos {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 992px) {
  .swosti-site-footer .assoc-bar__logos {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.85rem;
  }
}

.swosti-site-footer .assoc-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.55rem 0.35rem 0.5rem;
  background: #fafdfb;
  border: 1px solid #e0efe4;
  border-radius: 10px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.swosti-site-footer .assoc-logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(224, 123, 24, 0.45);
  box-shadow: 0 8px 18px rgba(2, 56, 18, 0.1);
}

.swosti-site-footer .assoc-logo-card--award .assoc-label {
  color: var(--sf-gold);
}

.swosti-site-footer .assoc-logo {
  width: 100%;
  max-width: 100px;
  height: 50px;
  object-fit: contain;
}

.swosti-site-footer .assoc-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #555;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .swosti-site-footer .assoc-bar__trust-badges {
    justify-content: center;
  }

  .swosti-site-footer .assoc-bar__content {
    text-align: center;
  }

  .swosti-site-footer .assoc-bar__title::after {
    margin-left: auto;
    margin-right: auto;
  }

  .swosti-site-footer .assoc-bar__text {
    margin-left: auto;
    margin-right: auto;
  }

  .swosti-site-footer .assoc-bar__logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .swosti-site-footer .assoc-logo {
    max-width: 58px;
    height: 42px;
    padding: 4px;
  }

  .swosti-site-footer .assoc-logo-card {
    padding: 0.45rem 0.25rem;
  }
}
.swosti-site-footer footer {
  background: var(--sf-green);
}
.swosti-site-footer footer h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--sf-gold);
  display: inline-block;
  padding-bottom: 6px;
  color: #fff;
  margin-bottom: 14px;
}
.swosti-site-footer footer ul {
  list-style: none;
  padding: 0;
}
.swosti-site-footer footer ul.footer-menu-cols {
  columns: 2;
  column-gap: 0.85rem;
}
.swosti-site-footer footer ul.footer-menu-cols li {
  break-inside: avoid;
}
.swosti-site-footer footer ul li {
  margin-bottom: 7px;
}
.swosti-site-footer footer ul li a,
.swosti-site-footer footer ul li span {
  color: #aed6b5;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s;
}
.swosti-site-footer footer ul li a:hover {
  color: var(--sf-gold);
  padding-left: 4px;
}
.swosti-site-footer footer address {
  font-style: normal;
  font-size: 12.5px;
  color: #aed6b5;
  line-height: 1.8;
}
.swosti-site-footer footer address a {
  color: #aed6b5;
  text-decoration: none;
}
.swosti-site-footer footer address a:hover {
  color: var(--sf-gold);
}
.swosti-site-footer .office-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--sf-gold);
  text-transform: uppercase;
}
.swosti-site-footer .office-name {
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  margin-bottom: 4px;
}
.swosti-site-footer .social-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 11px;
  border-radius: 5px;
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition:
    opacity 0.2s,
    transform 0.15s;
}
.swosti-site-footer .social-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
  color: #fff;
}
.swosti-site-footer .fb {
  background: #1877f2;
}
.swosti-site-footer .tw {
  background: #1da1f2;
}
.swosti-site-footer .li {
  background: #0a66c2;
}
.swosti-site-footer .ig {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}
.swosti-site-footer .yt {
  background: #ff0000;
}

/* --------------------------------------------------------------------------
   Google Translate — creative shell (matches Swosti top bar)
   -------------------------------------------------------------------------- */

/* Prevent Translate widget from shifting body or enabling edit mode styling */
body.layout-swosti {
  top: 0 !important;
  position: static !important;
}

.goog-te-banner-frame.skiptranslate,
#goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
}

.translator-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.swosti-site-header .translator-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  /* padding: 3px 10px 3px 5px; */
  /* border-radius: 999px; */
  /* background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.11) 0%,
    rgba(255, 255, 255, 0.04) 50%,
    rgba(2, 56, 18, 0.4) 100%
  ); */
  /* border: 1px solid rgba(224, 123, 24, 0.45); */
  /* box-shadow:
    0 3px 12px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); */
  max-width: min(100%, 260px);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

.swosti-site-header .translator-shell:hover {
  border-color: rgba(244, 180, 90, 0.85);
  box-shadow:
    0 6px 22px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(224, 123, 24, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

/* Soft gold ring animation (decorative) */
.swosti-site-header .translator-shell__pulse {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(224, 123, 24, 0.2);
  opacity: 0.75;
  animation: translator-pulse 3.2s ease-in-out infinite;
}

@keyframes translator-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.95;
  }
}

.swosti-site-header .translator-shell__icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.95rem;
  color: #1a1208;
  background: linear-gradient(
    145deg,
    #f4c56a 0%,
    var(--sh-gold, #e07b18) 45%,
    #c96b10 100%
  );
  box-shadow:
    0 2px 8px rgba(224, 123, 24, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  transition: transform 0.25s ease;
}

.swosti-site-header .translator-shell:hover .translator-shell__icon {
  transform: scale(1.06) rotate(-6deg);
}

.swosti-site-header .translator-shell__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  flex: 1;
}

/* .swosti-site-header .translator-shell__label {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(174, 214, 181, 0.92);
  line-height: 1.2;
  margin: 0;
  padding-left: 2px;
} */

.swosti-site-header .translator-shell__widget {
  min-width: 0;
  width: 100%;
}

#google_translate_element {
  width: 100%;
}

.swosti-site-header .goog-te-gadget {
  font-family: var(--font-sans, Roboto, Arial, sans-serif) !important;
  color: transparent !important;
}

.swosti-site-header .goog-te-gadget .goog-te-combo {
  width: 100%;
  max-width: 168px;
  margin: 0 !important;
  padding: 4px 10px 4px 8px;
  border-radius: 7px;
  border: 1px solid rgba(1, 31, 9, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f4fbf6 100%);
  color: var(--sh-green-dark, #011f09);
  font-size: 11.5px;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.swosti-site-header .goog-te-gadget .goog-te-combo:focus {
  border-color: var(--sh-gold, #e07b18);
  box-shadow: 0 0 0 2px rgba(224, 123, 24, 0.22);
}

.swosti-site-header .goog-te-gadget .goog-te-combo:hover {
  border-color: rgba(224, 123, 24, 0.45);
  box-shadow: 0 2px 8px rgba(224, 123, 24, 0.1);
}

/* Hide Google branding clutter (keep combo usable) */
.swosti-site-header .goog-logo-link {
  display: none !important;
}

.swosti-site-header .goog-te-gadget > span {
  display: none !important;
}

@media (max-width: 768px) {
  .translator-box {
    width: 100%;
    justify-content: stretch;
    margin-top: 4px;
  }

  .swosti-site-header .translator-shell {
    max-width: none;
    width: 100%;
    border-radius: 12px;
    padding: 6px 10px;
  }

  .swosti-site-header .translator-shell__pulse {
    border-radius: 14px;
  }

  .swosti-site-header .goog-te-gadget .goog-te-combo {
    max-width: none;
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   Outstation + airport split — creative responsive layout
   -------------------------------------------------------------------------- */

.outstation-airport-split {
  position: relative;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.outstation-airport-split .container {
  position: relative;
}

/* Sticky sidebar: column must not stretch; avoid overflow:hidden on sticky box */
.outstation-airport-split
  > .container
  > .row.align-items-start
  > .col-md-4.col-lg-4 {
  align-self: flex-start;
}

/* Intro card — clean editorial block */
.outstation-hero {
  padding: 1.15rem 1.2rem 1.2rem;
  margin-bottom: 1.15rem;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(27, 58, 45, 0.06);
  border-left: 3px solid var(--gold);
}

.outstation-hero__label {
  margin-bottom: 0.25rem;
}

.outstation-hero__title {
  margin-bottom: 0.4rem;
}

.outstation-hero__tagline {
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  font-weight: 600;
  color: var(--text) !important;
  margin-bottom: 0.65rem !important;
  line-height: 1.4;
}

.outstation-hero__text {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--muted);
}

/* Three feature cards — restrained, same accent */
.outstation-card-box-row {
  margin-bottom: 1.15rem !important;
}

.outstation-airport-split .outstation-card-box {
  position: relative;
  padding: 1.2rem 1rem 1.15rem;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 4px 18px rgba(27, 58, 45, 0.05);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.outstation-airport-split .outstation-card-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 12px 12px 0 0;
  opacity: 1;
}

.outstation-airport-split .outstation-card-box:hover {
  border-color: rgba(200, 153, 58, 0.45);
  box-shadow: 0 8px 28px rgba(27, 58, 45, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .outstation-airport-split .outstation-card-box {
    transition: none;
  }
  .outstation-airport-split .outstation-card-box:hover {
    transform: none;
  }
}

.outstation-card-box__icon-wrap {
  margin-bottom: 0.65rem;
}

.outstation-card-box__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  font-size: 1.15rem;
  color: var(--green);
  background: var(--cream);
  border: 1px solid var(--border);
}

.outstation-card-box__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 0.35rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.outstation-card-box__text {
  font-size: 0.81rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

.outstation-tours-hint {
  opacity: 0.9;
}

/* Mobile: horizontal snap scroll for tour cards */
.outstation-tours-grid {
  margin-inline: -0.75rem;
  padding-inline: 0.75rem;
  padding-bottom: 0.35rem;
}

@media (max-width: 767.98px) {
  .outstation-tours-grid {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(27, 58, 45, 0.25) transparent;
  }

  .outstation-tours-grid::-webkit-scrollbar {
    height: 6px;
  }

  .outstation-tours-grid::-webkit-scrollbar-thumb {
    background: rgba(27, 58, 45, 0.22);
    border-radius: 999px;
  }

  .outstation-tours-grid .outstation-tours-row {
    flex-wrap: nowrap !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    gap: 0.9rem !important;
  }

  .outstation-tours-grid .outstation-tours-row > [class*="col-"] {
    flex: 0 0 min(88vw, 340px) !important;
    max-width: min(88vw, 340px) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    scroll-snap-align: start;
  }
}

@media (min-width: 768px) {
  .outstation-tours-grid {
    margin-inline: 0;
    padding-inline: 0;
    overflow: visible;
  }
}

.outstation-tour-card {
  --os-accent: var(--gold);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(27, 58, 45, 0.06);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.outstation-tour-card:hover {
  border-color: rgba(200, 153, 58, 0.4);
  box-shadow: 0 10px 32px rgba(27, 58, 45, 0.09);
}

@media (prefers-reduced-motion: reduce) {
  .outstation-tour-card {
    transition: none;
  }
}

.outstation-tours-row > div:nth-child(even) .outstation-tour-card {
  --os-accent: var(--gold);
}

.outstation-tour-card__media {
  position: relative;
  /* aspect-ratio: 16 / 10; */
  overflow: hidden;
  background: var(--green);
}

.outstation-tour-card__media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background: linear-gradient(
    to top,
    rgba(27, 58, 45, 0.55) 0%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.outstation-tour-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.outstation-tour-card:hover .outstation-tour-card__media img {
  transform: scale(1.03);
}

@media (prefers-reduced-motion: reduce) {
  .outstation-tour-card:hover .outstation-tour-card__media img {
    transform: none;
  }
}

.outstation-tour-card__badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 2;
  padding: 0.2rem 0.5rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: none;
}

.outstation-tour-card__num {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  min-width: 28px;
  height: 28px;
  padding: 0 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.outstation-tour-card__body {
  position: relative;
  padding: 0.85rem 1rem 1rem;
  flex: 1 1 auto;
  gap: 0.65rem;
  background: var(--white);
}

.outstation-tour-card__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  opacity: 0.65;
}

.outstation-tour-card__title {
  font-size: clamp(0.92rem, 2.2vw, 1rem);
  font-weight: 700;
  color: var(--green);
  margin: 0.28rem 0 0;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.outstation-tour-card__btn {
  width: 100%;
}

@media (min-width: 576px) {
  .outstation-tour-card__btn {
    width: auto;
    align-self: flex-start;
  }
}

/* Airport sidebar (sticky only lg+: md stack has no horizontal scroll room issue) */
.airport-service-panel {
  position: sticky !important;
  top: 6rem !important;
  padding: 1.25rem 1.15rem;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 4px 22px rgba(27, 58, 45, 0.06);
  overflow: visible;
}

.airport-service-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 12px 12px 0 0;
}

@media (min-width: 992px) {
  .airport-service-panel {
    position: sticky;
    top: max(5.5rem, calc(env(safe-area-inset-top, 0px) + 5rem));
    z-index: 2;
  }
}

.airport-service-panel__lead {
  font-size: clamp(0.94rem, 2vw, 1.02rem);
  line-height: 1.45;
}

.airport-service-panel__read {
  background: white !important;
  border-color: var(--border) !important;
  box-shadow: none !important;
}

.cab-hire-read-body {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: #333;
}

.cab-hire-read-body h2 {
  font-size: 1.15rem;
  margin-top: 1rem;
}

.cab-hire-read-body ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.cab-hire-read-body li {
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   Page home — premium restraint (editorial rhythm, green + gold + cream only)
   ========================================================================== */

.page-home .slide-overlay {
  background: linear-gradient(
    100deg,
    rgba(6, 14, 10, 0.78) 0%,
    rgba(11, 24, 18, 0.651) 48%,
    rgba(9, 19, 14, 0.219) 100%
  );
}

.page-home .hero-badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
  border: 1px solid rgba(200, 153, 58, 0.5);
  letter-spacing: 0.1em;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  font-size: 0.68rem;
}

.page-home .hero-content h1 {
  font-weight: 600;
  letter-spacing: -0.03em;
}

.page-home .hero-content p {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.page-home .search-section-container {
  margin-top: -5.5rem;
  padding: 1.15rem 1.2rem 0.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 36px rgba(27, 58, 45, 0.08);
}

@media (min-width: 768px) {
  .page-home .search-section-container {
    margin-top: -6rem;
    padding: 1.3rem 1.45rem 0.5rem;
  }
}
.custome-search-btn {
  margin-bottom: 7px;
}
.page-home .search-form-wrapper {
  padding: 0.65rem 0 0.25rem;
}

@media (min-width: 576px) {
  .page-home .search-form-wrapper {
    padding: 0.75rem 0.35rem 0.35rem;
  }
}

.page-home .search-tab {
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
}

.page-home .stats-bar {
  padding: 1.35rem 0 1.25rem;
}

.page-home .stat-item {
  padding: 0.5rem;
}

.page-home .stat-num {
  font-size: 1.75rem;
  font-weight: 600;
}

.page-home .stat-label {
  font-size: 0.76rem;
}

.page-home .section-label {
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
  font-size: 0.7rem;
}

.page-home .section-title {
  font-weight: 600;
  letter-spacing: -0.02em;
}

.page-home .section-sub {
  max-width: 38rem;
  line-height: 1.6;
}

.page-home .destinations,
.page-home .day-excursion,
.page-home .rental-cabs,
.page-home .how-to-book,
.page-home .site-faq,
.page-home .packages,
.page-home .why-us,
.page-home .testimonials,
.page-home .cta-banner {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

@media (min-width: 992px) {
  .page-home .destinations,
  .page-home .day-excursion,
  .page-home .rental-cabs,
  .page-home .how-to-book,
  .page-home .site-faq,
  .page-home .packages,
  .page-home .why-us,
  .page-home .testimonials,
  .page-home .cta-banner {
    padding-top: 2.85rem !important;
    padding-bottom: 2.85rem !important;
  }
}

body.layout-swosti {
  top: 0 !important;
  overflow-x: clip;
}

/* ── Rental cabs section ── */
.rental-cabs {
  background: var(--white);
}

.rental-tabs {
  margin-bottom: 0.5rem;
}

.rental-tab {
  background: var(--cream-alt);
  border: 2px solid var(--border);
  color: var(--muted);
  border-radius: var(--btn-radius-pill);
  padding: var(--btn-py-sm) var(--btn-px);
  font-size: var(--btn-font-size-sm);
  font-weight: var(--btn-font-weight);
  font-family: var(--font-sans);
  cursor: pointer;
  transition: var(--btn-transition);
}

.rental-tab:hover,
.rental-tab.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.rental-panel {
  position: relative;
  padding-bottom: 2.5rem;
}

.rental-panel[hidden] {
  display: none !important;
}

.rental-fleet-swiper {
  padding-bottom: 2.75rem;
  overflow: hidden;
}

.rental-cab-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.rental-cab-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(27, 58, 45, 0.12);
}

.rental-cab-card__img {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: var(--cream2);
}

.rental-cab-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.rental-cab-card:hover .rental-cab-card__img img {
  transform: scale(1.05);
}

.rental-cab-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--btn-radius-pill);
}

.rental-cab-card__body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1;
}

.rental-cab-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin: 0;
  line-height: 1.35;
}

.rental-cab-card__body .btn {
  margin-top: auto;
}

.rental-swiper-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: -2.25rem;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.rental-swiper-nav--center {
  justify-content: center;
  margin-top: 0.5rem;
}

.rental-swiper-prev,
.rental-swiper-next {
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--btn-transition);
  box-shadow: 0 2px 10px rgba(27, 58, 45, 0.08);
}

.rental-swiper-prev:hover,
.rental-swiper-next:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.rental-swiper-prev.swiper-button-disabled,
.rental-swiper-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.rental-block-title {
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.rental-block-title em {
  color: var(--gold);
  font-style: italic;
}

.rental-block-title--light {
  color: var(--white);
}

.rental-block-title--light em {
  color: var(--gold-light);
}

.rental-lead {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.rental-lead--light {
  color: rgba(255, 255, 255, 0.82);
}

.rental-best-block {
  border-top: 1px solid var(--border);
}

.rental-points-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: rental-point;
}

.rental-points-list li {
  position: relative;
  padding-left: 2.75rem;
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text);
  counter-increment: rental-point;
}

.rental-points-list li::before {
  content: counter(rental-point);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(27, 58, 45, 0.08);
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rental-points-list li:last-child {
  margin-bottom: 0;
}

.rental-advantages-block {
  background: linear-gradient(135deg, var(--green) 0%, var(--green2) 100%);
}

.rental-points-list--light li {
  color: rgba(255, 255, 255, 0.92);
}

.rental-points-list--light li::before {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.rental-fleet-swiper .swiper-pagination-bullet-active {
  background: var(--green) !important;
}

@media (max-width: 575px) {
  .rental-swiper-nav {
    justify-content: center;
    margin-top: 0.35rem;
  }

  .rental-panel {
    padding-bottom: 3rem;
  }
}

/* ── How to book a cab ── */
.how-to-book {
  background: var(--cream);
}

.how-to-book__intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 1.25rem;
}

.how-to-book__intro strong {
  color: var(--green);
}

.how-to-book__quote {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin: 0;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(27, 58, 45, 0.06);
}

.how-to-book__quote i {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.how-to-book__quote p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1.55;
}

.book-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.35rem 1.4rem 1.4rem;
  box-shadow: 0 4px 20px rgba(27, 58, 45, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.book-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(27, 58, 45, 0.1);
}

.book-step--accent {
  border-color: rgba(200, 153, 58, 0.45);
  background: linear-gradient(
    145deg,
    var(--white) 0%,
    rgba(200, 153, 58, 0.08) 100%
  );
}

.book-step__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.book-step__num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(23, 53, 8, 0.25);
}

.book-step--accent .book-step__num {
  background: var(--gold);
  box-shadow: 0 4px 12px rgba(200, 153, 58, 0.35);
}

.book-step__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 0.35rem;
  line-height: 1.35;
}

.book-step__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.book-step__options {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 0.65rem;
}

.book-step--wide .book-step__options {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.book-step__options li a,
.book-step__options li span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.85rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--btn-radius);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  transition: var(--btn-transition);
  height: 100%;
}

.book-step__options li a:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.book-step__options li a:hover i {
  color: var(--gold-light);
}

.book-step__options li i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.book-step__options--compact {
  grid-template-columns: 1fr;
}

.how-to-book__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 575px) {
  .book-step__head {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .book-step__options {
    grid-template-columns: 1fr;
  }
}

/* ── FAQ section ── */
.site-faq {
  background: var(--white);
}

.site-faq__lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0.75rem 0 0;
}

.site-faq__chat-link {
  font-weight: 700;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-faq__chat-link:hover {
  color: var(--gold);
}

.site-faq__accordion {
  --bs-accordion-border-color: var(--border);
  --bs-accordion-border-radius: 12px;
  --bs-accordion-inner-border-radius: 11px;
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1.1rem;
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1.15rem;
  --bs-accordion-active-color: var(--green);
  --bs-accordion-active-bg: rgba(23, 53, 8, 0.06);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem rgba(200, 153, 58, 0.25);
}

.site-faq__accordion .accordion-item {
  margin-bottom: 0.65rem;
  border: 1px solid var(--border);
  border-radius: 12px !important;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 2px 12px rgba(27, 58, 45, 0.04);
}

.site-faq__accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.site-faq__accordion .accordion-button {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--green);
  background: var(--white);
  line-height: 1.4;
}

.site-faq__accordion .accordion-button:not(.collapsed) {
  color: var(--green);
  background: rgba(23, 53, 8, 0.06);
  box-shadow: none;
}

.site-faq__accordion .accordion-button::after {
  background-size: 1.1rem;
  filter: none;
}

.site-faq__accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0.6) sepia(1) hue-rotate(60deg) saturate(4);
}

.site-faq__accordion .accordion-body {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  border-top: 1px solid var(--border);
}

.site-faq__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

/* ── Thank you (post-payment) ── */
.page-thank-you {
  text-align: center;
}

.page-thank-you .thank-you-hero {
  background: linear-gradient(
    165deg,
    var(--green) 0%,
    var(--green2) 50%,
    #163d28 100%
  );
  padding: clamp(2.25rem, 6vw, 3.75rem) 0 clamp(2.5rem, 5vw, 3.25rem);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-thank-you .thank-you-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-thank-you .thank-you-hero__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}

.page-thank-you .thank-you-hero__blob--1 {
  width: 200px;
  height: 200px;
  top: -40px;
  left: -30px;
  background: rgba(200, 153, 58, 0.2);
}

.page-thank-you .thank-you-hero__blob--2 {
  width: 160px;
  height: 160px;
  bottom: -20px;
  right: -20px;
  background: rgba(111, 207, 151, 0.15);
}

.page-thank-you .thank-you-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
}

.page-thank-you .thank-you-hero__badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 4vw, 1.5rem);
  margin-bottom: 1.35rem;
}

.page-thank-you .thank-you-float-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--gold-light);
}

.page-thank-you .thank-you-float-icon--main {
  position: relative;
  width: 96px;
  height: 96px;
  background: rgba(111, 207, 151, 0.28);
  border: 3px solid #6fcf97;
  font-size: 2.5rem;
  color: #6fcf97;
  animation: thankYouPop 0.55s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

.page-thank-you .thank-you-hero__ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px solid rgba(200, 153, 58, 0.5);
  animation: thankYouPulse 2.2s ease-out infinite;
}

.page-thank-you .thank-you-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.page-thank-you .thank-you-hero__title {
  font-family: var(--font-sans);
  font-size: clamp(2.1rem, 6vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.65rem;
  line-height: 1.15;
}

.page-thank-you .thank-you-hero__title em {
  color: var(--gold);
  font-style: italic;
}

.page-thank-you .thank-you-hero__lead {
  max-width: 34rem;
  margin: 0 auto 1.35rem;
  font-size: clamp(0.95rem, 2.5vw, 1.08rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.page-thank-you .thank-you-ref {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem 1.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(200, 153, 58, 0.55);
  border-radius: 14px;
  backdrop-filter: blur(6px);
}

.page-thank-you .thank-you-ref__icon {
  font-size: 1.5rem;
  color: var(--gold-light);
}

.page-thank-you .thank-you-ref__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.page-thank-you .thank-you-ref__code {
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 3.5vw, 1.45rem);
  letter-spacing: 0.1em;
  color: var(--gold-light);
}

.page-thank-you .thank-you-pills {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.page-thank-you .thank-you-pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--btn-radius-pill);
}

.page-thank-you .thank-you-pills li i {
  color: var(--gold-light);
  font-size: 0.9rem;
}

.page-thank-you .thank-you-body {
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  background: var(--cream);
  margin-top: -2rem;
}

.page-thank-you .thank-you-loader {
  width: 52px;
  height: 52px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.5rem;
  animation: thankYouSpin 1s linear infinite;
}

.page-thank-you .thank-you-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(1.5rem, 4vw, 2rem) clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: var(--shadow);
  max-width: 52rem;
  text-align: center;
}

.page-thank-you .thank-you-card--error {
  max-width: 28rem;
  padding: 2rem 1.5rem;
}

.page-thank-you .thank-you-card__icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(23, 53, 8, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--green);
}

.page-thank-you .thank-you-card__icon-wrap--error {
  background: rgba(192, 57, 43, 0.1);
  color: var(--red);
}

.page-thank-you .thank-you-card__title {
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.35rem;
}

.page-thank-you .thank-you-card__subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.35rem;
}

.page-thank-you .thank-you-card__text {
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.page-thank-you .thank-you-highlight {
  color: var(--green);
  font-weight: 700;
}

.page-thank-you .thank-you-invoice-note {
  max-width: 28rem;
  padding: 1.35rem 1.25rem;
  margin-bottom: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(27, 58, 45, 0.08);
}

.page-thank-you .thank-you-invoice-note__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    rgba(200, 153, 58, 0.2),
    rgba(200, 153, 58, 0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
}

.page-thank-you .thank-you-invoice-note p {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text);
}

.page-thank-you .thank-you-contact {
  max-width: 28rem;
  padding: 1rem 1.15rem;
  margin-bottom: 1.5rem;
  text-align: center;
  background: rgba(23, 53, 8, 0.04);
  border: 1px solid rgba(23, 53, 8, 0.1);
  border-radius: 14px;
}

.page-thank-you .thank-you-contact--inline {
  margin-top: 1rem;
  margin-bottom: 0;
}

.page-thank-you .thank-you-contact__label {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
}

.page-thank-you .thank-you-contact__phones {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.page-thank-you .thank-you-contact__phones a {
  color: var(--green);
  text-decoration: none;
}

.page-thank-you .thank-you-contact__phones a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.page-thank-you .thank-you-contact__sep {
  color: var(--text-muted, #6c757d);
  font-weight: 500;
}

.page-thank-you .thank-you-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  text-align: center;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .page-thank-you .thank-you-summary {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.page-thank-you .thank-you-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem 0.65rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.page-thank-you .thank-you-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(27, 58, 45, 0.08);
}

.page-thank-you .thank-you-stat__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
}

.page-thank-you .thank-you-stat__lbl {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-thank-you .thank-you-stat__val {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1.35;
  word-break: break-word;
}

.page-thank-you .thank-you-paid-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.25rem 1rem;
  margin-bottom: 1rem;
  background: linear-gradient(
    145deg,
    rgba(23, 53, 8, 0.06),
    rgba(200, 153, 58, 0.1)
  );
  border: 2px solid rgba(200, 153, 58, 0.35);
  border-radius: 14px;
}

.page-thank-you .thank-you-paid-box > i {
  font-size: 1.75rem;
  color: var(--gold);
}

.page-thank-you .thank-you-paid-box__lbl {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-thank-you .thank-you-paid-box__amount {
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.page-thank-you .thank-you-paid-box__secure {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
}

.page-thank-you .thank-you-payment-id {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--border);
}

.page-thank-you .thank-you-payment-id > i {
  font-size: 1.25rem;
  color: var(--muted);
}

.page-thank-you .thank-you-payment-id__lbl {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-thank-you .thank-you-payment-id__val {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  background: var(--cream);
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  word-break: break-all;
  max-width: 100%;
}

.page-thank-you .thank-you-steps-title {
  font-size: clamp(1.05rem, 3vw, 1.2rem);
  font-weight: 700;
  color: var(--green);
  margin: 2rem 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.page-thank-you .thank-you-steps-title i {
  color: var(--gold);
}

.page-thank-you .thank-you-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 52rem;
  margin: 0 auto 1.5rem;
}

@media (min-width: 576px) {
  .page-thank-you .thank-you-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-thank-you .thank-you-step-card {
  padding: 1.25rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(27, 58, 45, 0.05);
  text-align: center;
  transition: transform 0.2s ease;
}

.page-thank-you .thank-you-step-card:hover {
  transform: translateY(-4px);
}

.page-thank-you .thank-you-step-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: rgba(23, 53, 8, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--green);
}

.page-thank-you .thank-you-step-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.4rem;
}

.page-thank-you .thank-you-step-card p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--muted);
}

.page-thank-you .thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.page-thank-you .thank-you-actions--center {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.page-thank-you .thank-you-actions .btn {
  min-width: min(100%, 200px);
}

@media (max-width: 575px) {
  .page-thank-you .thank-you-summary {
    grid-template-columns: 1fr;
  }

  .page-thank-you .thank-you-float-icon:not(.thank-you-float-icon--main) {
    display: none;
  }

  .page-thank-you .thank-you-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-thank-you .thank-you-actions .btn {
    width: 100%;
  }
}

@keyframes thankYouPop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes thankYouPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes thankYouSpin {
  to {
    transform: rotate(360deg);
  }
}

@media print {
  .swosti-site-header,
  .navbar,
  .prog-bar,
  .action-row,
  .next-card,
  .thank-you-actions,
  footer,
  .assoc-bar {
    display: none !important;
  }

  .confirm-hero,
  .page-thank-you .thank-you-hero {
    background: var(--green) !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}

/* ==========================================================================
   Premium homepage — home.php only (.home-premium)
   ========================================================================== */

.home-premium {
  --home-hero-h: 700px;
  background: var(--cream);
}

.home-premium.hp-lux {
  background: #ffffff;
}

/* ── Hero (full-bleed background slider) ── */
.home-hero {
  position: relative;
  min-height: var(--home-hero-h);
  height: var(--home-hero-h);
  overflow: hidden;
  background-color: var(--green2);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.home-hero-swiper,
.home-hero-swiper .swiper-wrapper,
.home-hero-swiper .swiper-slide,
.home-hero-slide {
  height: 100%;
  min-height: var(--home-hero-h);
}

.home-hero-swiper {
  position: relative;
  z-index: 2;
  width: 100%;
  background-color: transparent;
}

.home-hero-swiper.swiper-fade .swiper-slide {
  background: transparent !important;
}
.swiper-wrapper {
  padding-bottom: 50px;
}
.home-hero-swiper .swiper-wrapper {
  background-color: transparent;
}

/* Before Swiper initializes: show first slide only (no layout jump) */
.home-hero-swiper:not(.swiper-initialized) .swiper-slide {
  display: none;
}

.home-hero-swiper:not(.swiper-initialized) .swiper-slide:first-child {
  display: block;
}

.home-hero-swiper:not(.swiper-initialized)
  .swiper-slide:first-child
  .home-hero-slide__inner {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.home-hero-slide {
  position: relative;
  display: block;
  text-align: left;
  color: var(--white);
  background: transparent;
}

.home-hero-slide__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: #000;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  will-change: transform;
}

/* Left-side gradient on image layer — keeps hero text readable */
.home-hero-slide__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.62) 34%,
    rgba(0, 0, 0, 0.02) 62%,
    rgba(0, 0, 0, 0) 100%
  );
 
}

.home-hero-slide__bg img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
  display: block;
  transform: scale(1);
  backface-visibility: hidden;
}

.swiper-slide-active .home-hero-slide__bg img {
  animation: homeHeroZoom 8s ease-out forwards;
}

@keyframes homeHeroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

.home-hero-slide__inner {
  position: absolute;
  inset: 0 auto 0 max(0px, calc((100% - 1320px) / 2));
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: min(620px, calc(100% - 2.5rem));
  max-width: 620px;
  padding: 2rem 1.25rem 4rem calc(var(--bs-gutter-x, 1.5rem) * 0.5);
  margin: 0;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease,
    visibility 0.65s ease;
  pointer-events: none;
}

.home-hero-swiper .swiper-slide-active .home-hero-slide__inner {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.home-hero-slide__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(224, 181, 90, 0.45);
  border-radius: var(--btn-radius-pill);
  background: rgba(23, 53, 8, 0.35);
  text-shadow: 0 1px 8px rgba(23, 53, 8, 0.5);
}

.home-hero-slide__title {
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(23, 53, 8, 0.65);
}

.home-hero-slide__title em {
  font-style: normal;
  color: var(--gold-light);
  text-shadow: 0 0 32px rgba(224, 181, 90, 0.35);
}

.home-hero-slide__text {
  font-size: clamp(0.9375rem, 1.8vw, 1.125rem);
  color: var(--white);
  /* color: #000; */
  margin-bottom: 1.5rem;
  line-height: 1.55;
  text-shadow: 0 1px 12px rgba(23, 53, 8, 0.55);
}

.home-hero-swiper .swiper-slide-active .home-hero-slide__cta .btn {
  animation: homeHeroBtnIn 0.7s ease 0.25s both;
}

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

.home-hero-slide__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}

.home-hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(23, 53, 8, 0.45);
  color: var(--white);
  cursor: pointer;
  transition: var(--btn-transition);
}

.home-hero-nav::after {
  font-size: 1rem;
  font-weight: 700;
}

.home-hero-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green);
}

.home-hero-swiper .swiper-button-prev {
  left: 1rem;
}

.home-hero-swiper .swiper-button-next {
  right: 1rem;
}

.home-hero-swiper .swiper-pagination {
  bottom: 1.25rem !important;
  z-index: 5;
}

.home-hero-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.home-hero-swiper .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 4px;
  background: var(--gold);
}

/* ── Sections ── */
.home-section {
  padding: 3rem 0;
}

.home-section--light {
  background: var(--white);
}

.home-section--alt {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream2) 100%);
}

.home-section__head {
  margin-bottom: 2rem;
}

.home-premium .section-sub {
  max-width: 560px;
  color: var(--muted);
}

/* Reveal */
.home-premium .home-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.home-premium .home-reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ── Destination cards ── */
.home-dest-card {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.home-dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.home-dest-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(23, 53, 8, 0.82) 0%, transparent 55%);
  transition: opacity 0.3s ease;
}

.home-dest-card__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.1rem;
  color: var(--white);
  z-index: 1;
}

.home-dest-card__label strong {
  display: block;
  font-size: 1.125rem;
}

.home-dest-card__label small {
  opacity: 0.85;
  font-size: 0.8125rem;
}

.home-dest-card:hover img {
  transform: scale(1.06);
}

.home-dest-card:hover {
  box-shadow: 0 12px 36px rgba(23, 53, 8, 0.22);
}

/* ── Odisha glance ── */
.home-glance__copy {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.home-glance__icons {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem 1rem;
}

.home-glance__icons li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}

.home-glance__icons i {
  color: var(--gold);
  font-size: 1.1rem;
}

.home-video {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* ── Awards ── */
.home-awards__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

.home-awards__rail {
  height: 220px;
  overflow: hidden;
  border-radius: 8px;
}

.home-awards__rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.home-awards__stats {
  max-width: 360px;
  margin: 1.25rem auto 0;
}

.home-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.85rem 0.5rem;
  text-align: center;
}

.home-stat i {
  display: block;
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.home-stat strong {
  display: block;
  font-size: 1.125rem;
  color: var(--green);
}

.home-stat span {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Package cards ── */
.home-filter__btn {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: var(--btn-radius-pill);
  cursor: pointer;
  transition: var(--btn-transition);
}

.home-filter__btn:hover,
.home-filter__btn.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.home-filter-panel[hidden] {
  display: none !important;
}

.home-pkg {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.home-pkg:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(23, 53, 8, 0.14);
}

.home-pkg__img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.home-pkg__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-pkg__tag {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  background: var(--green);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: var(--btn-radius-pill);
}

.home-pkg__lux {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: var(--gold);
  color: var(--green);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.55rem;
  border-radius: var(--btn-radius);
}

.home-pkg__body {
  padding: 1rem 1.1rem 1.15rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-pkg__body h3 {
  margin-bottom: 0.25rem;
}

.home-pkg__meta {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.home-pkg__price {
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.home-pkg__price strong {
  color: var(--gold);
  font-size: 1.05rem;
}

.home-pkg__desc {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  flex: 1;
}

.home-pkg--lux .home-pkg__body {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.home-premium .swiper-pagination-bullet-active {
  background: var(--gold);
}

.home-premium .swiper-button-prev,
.home-premium .swiper-button-next {
  color: var(--green);
}

.home-premium .swiper-button-prev::after,
.home-premium .swiper-button-next::after {
  font-size: 1.25rem;
  font-weight: 700;
}

/* ── Transport ── */
.home-svc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1rem;
  height: 100%;
  text-align: center;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.home-svc:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.home-svc__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream2);
  color: var(--green);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.home-svc h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.4rem;
}

.home-svc p {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

/* ── Testimonials (creative) ── */
.home-testi {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    var(--cream) 0%,
    var(--white) 42%,
    var(--cream2) 100%
  );
}

.home-testi__deco {
  position: absolute;
  font-size: clamp(4rem, 12vw, 7rem);
  color: var(--green);
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.home-testi__deco--1 {
  top: 8%;
  right: 6%;
  transform: rotate(18deg);
}

.home-testi__deco--2 {
  bottom: 12%;
  left: 4%;
  transform: rotate(-12deg);
}

.home-testi__intro {
  margin-bottom: 0.5rem;
}

.home-testi__lead {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 520px;
  margin-top: 0.5rem;
}

.home-testi-score {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow);
}

.home-testi-score__ring {
  position: relative;
  width: 88px;
  height: 88px;
  flex-shrink: 0;
}

.home-testi-score__ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.home-testi-score__track {
  fill: none;
  stroke: var(--cream2);
  stroke-width: 8;
}

.home-testi-score__fill {
  fill: none;
  stroke: var(--gold);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 327;
  stroke-dashoffset: 33;
}

.home-testi-score__num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
}

.home-testi-score__meta strong {
  display: block;
  font-size: 1rem;
  color: var(--green);
}

.home-testi-score__meta > span {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 0.2rem 0 0.45rem;
}

.home-testi-score__stars {
  color: var(--gold);
  font-size: 0.875rem;
}

.home-testi-trust {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
}

.home-testi-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--btn-radius-pill);
  padding: 0.35rem 0.75rem;
}

.home-testi-trust i {
  color: var(--gold);
}

.home-testi-stage {
  position: relative;
  padding: 0 2.75rem 2.5rem;
}

.home-testi-swiper {
  overflow: visible;
  padding: 1rem 0 0.5rem;
}

.home-testi-swiper .swiper-slide {
  height: auto;
  opacity: 0.45;
  transform: scale(0.9);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.home-testi-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.home-testi-card {
  position: relative;
  margin: 0;
  padding: 1.5rem 1.35rem 1.25rem;
  border-radius: 14px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: var(--white);
}

.home-testi-card--green {
  border-top: 4px solid var(--green);
}

.home-testi-card--gold {
  border-top: 4px solid var(--gold);
}

.home-testi-card__quote-icon {
  position: absolute;
  top: 0.65rem;
  right: 1rem;
  font-size: 3.25rem;
  line-height: 1;
  color: var(--green);
  opacity: 0.08;
}

.home-testi-card--gold .home-testi-card__quote-icon {
  color: var(--gold);
}

.home-testi-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  align-self: flex-start;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green);
  background: var(--cream2);
  border-radius: var(--btn-radius-pill);
  padding: 0.3rem 0.65rem;
  margin-bottom: 0.75rem;
}

.home-testi-card__rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.home-testi-card__stars {
  color: var(--gold);
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
}

.home-testi-card__rating time {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

.home-testi-card__text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  flex: 1;
  margin-bottom: 1.15rem;
  font-style: italic;
}

.home-testi-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--border);
}

.home-testi-card__avatar {
  position: relative;
  flex-shrink: 0;
}

.home-testi-card__avatar::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--green) 100%);
  z-index: 0;
}

.home-testi-card__avatar img {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  display: block;
}

.home-testi-card__author cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--green);
}

.home-testi-card__author > div > span {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted);
}

.home-testi-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.6875rem;
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
  margin-top: 0.2rem;
}

.home-testi-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--btn-transition);
}

.home-testi-nav:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.home-testi-nav--prev {
  left: 0;
}

.home-testi-nav--next {
  right: 0;
}

.home-testi-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.75rem;
  padding: 0 0.25rem;
}

.home-testi-swiper-pagination {
  position: static !important;
  width: auto !important;
  flex: 1;
}

.home-testi-swiper-pagination .swiper-pagination-bullet {
  background: var(--muted);
  opacity: 0.35;
}

.home-testi-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  opacity: 1;
  width: 22px;
  border-radius: 4px;
}

.home-testi-counter {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.08em;
}

.home-testi-counter__cur {
  color: var(--gold);
  font-size: 1.125rem;
}

@media (max-width: 991.98px) {
  .home-testi-score {
    margin-top: 0.5rem;
  }
}

@media (max-width: 575.98px) {
  .home-testi-stage {
    padding: 0 0 2rem;
  }

  .home-testi-nav {
    display: none;
  }

  .home-testi-swiper .swiper-slide {
    opacity: 1;
    transform: none;
  }

  .home-testi-card {
    min-height: 0;
  }

  .home-testi-trust li {
    font-size: 0.6875rem;
  }
}

/* ── FAQ ── */
.home-faq .accordion-item {
  border: 1px solid var(--border);
  border-radius: 8px !important;
  margin-bottom: 0.5rem;
  overflow: hidden;
  background: var(--white);
}

.home-faq .accordion-button {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--green);
  background: var(--white);
  box-shadow: none;
}

.home-faq .accordion-button:not(.collapsed) {
  background: var(--cream);
  color: var(--green);
}

.home-faq .accordion-button:focus {
  box-shadow: none;
  border-color: var(--gold);
}

.home-faq .accordion-body {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── CTA ── */
.home-cta {
  padding-bottom: 3.5rem;
}

.home-cta__box {
  background: linear-gradient(135deg, var(--green) 0%, var(--green2) 100%);
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  color: var(--white);
  box-shadow: var(--shadow);
}

.home-cta__box .section-label {
  color: var(--gold-light);
}

.home-cta__box .section-label::before {
  background: var(--gold-light);
}

.home-cta__title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.home-cta__title em {
  font-style: normal;
  color: var(--gold-light);
}

.home-cta__sub {
  max-width: 520px;
  margin: 0 auto 1.5rem;
  opacity: 0.9;
  font-size: 0.9375rem;
}

.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ── Responsive ── */
@media (min-width: 768px) {
  .home-awards__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 1.25rem;
  }

  .home-awards__rail {
    height: 320px;
  }
}

@media (max-width: 991.98px) {
  .home-premium {
    --home-hero-h: clamp(520px, 72vh, 640px);
  }
}

@media (max-width: 575.98px) {
  .home-premium {
    --home-hero-h: 500px;
  }

  .home-section {
    padding: 2.25rem 0;
  }

  .home-hero-nav {
    width: 36px;
    height: 36px;
  }

  .home-hero-swiper .swiper-button-prev {
    left: 0.5rem;
  }

  .home-hero-swiper .swiper-button-next {
    right: 0.5rem;
  }

  .home-glance__icons {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Premium Destination Explorer (home.php)
   ========================================================================== */

.home-dest-explorer {
  padding: 2rem 0 2.25rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--border);
}

.home-dest-explorer__head {
  margin-bottom: 1.25rem;
}

.home-dest-explorer__title {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 700;
  color: var(--green);
  margin: 0 0 0.35rem;
}

.home-dest-explorer__sub {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.home-dest-explorer__left {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 0.85rem 0.75rem;
  box-shadow: var(--shadow);
  height: 100%;
}

.home-dest-explorer__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.home-dest-explorer__tab {
  border: 1px solid var(--border);
  border-radius: var(--btn-radius-pill);
  padding: 0.38rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  background: var(--cream);
  cursor: pointer;
  transition: var(--btn-transition);
}

.home-dest-explorer__tab:hover {
  border-color: var(--gold);
  color: var(--green);
}

.home-dest-explorer__tab.is-active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  box-shadow: var(--btn-shadow);
}

.home-dest-explorer__panel {
  animation: homeDestExplorerFade 0.4s ease;
}

.home-dest-explorer__panel[hidden] {
  display: none !important;
}

@keyframes homeDestExplorerFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.home-dest-explorer__slider-wrap {
  position: relative;
  padding-right: 2rem;
}

.home-dest-explorer-swiper {
  height: min(380px, 56vh);
  overflow: hidden;
}

.home-dest-explorer__panel.is-active {
  display: block;
}

.home-dest-explorer-swiper .swiper-slide {
  height: auto;
  width: 100%;
}

.home-dest-explorer__dest {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.45rem 0.5rem;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.home-dest-explorer__dest:hover,
.home-dest-explorer__dest.is-active {
  background: var(--cream);
  border-color: var(--border);
  transform: translateX(4px);
}

.home-dest-explorer__dest.is-active {
  border-color: rgba(200, 153, 58, 0.45);
  box-shadow: 0 4px 14px rgba(23, 53, 8, 0.06);
}

.home-dest-explorer__thumb {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(23, 53, 8, 0.12);
}

.home-dest-explorer__thumb img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.home-dest-explorer__dest-text {
  flex: 1;
  min-width: 0;
}

.home-dest-explorer__dest-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.25;
}

.home-dest-explorer__dest-text small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.3;
  margin-top: 0.1rem;
}

.home-dest-explorer__dest-arrow {
  font-size: 0.75rem;
  color: var(--gold);
  opacity: 0;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.home-dest-explorer__dest:hover .home-dest-explorer__dest-arrow,
.home-dest-explorer__dest.is-active .home-dest-explorer__dest-arrow {
  opacity: 1;
  transform: translateX(2px);
}

.home-dest-explorer__nav {
  position: absolute;
  right: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  cursor: pointer;
  transition: var(--btn-transition);
  z-index: 2;
}

.home-dest-explorer__nav:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.home-dest-explorer__nav--prev {
  top: 0.25rem;
}

.home-dest-explorer__nav--next {
  bottom: 0.25rem;
}

.home-dest-explorer__featured-wrap {
  position: relative;
  min-height: 100%;
  height: 100%;
}

.home-dest-explorer__pkg {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.home-dest-explorer__pkg.is-visible {
  opacity: 1;
  transform: none;
}

.home-dest-explorer__pkg[hidden] {
  display: none !important;
}

.home-dest-explorer__pkg-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.home-dest-explorer__pkg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-dest-explorer__pkg:hover .home-dest-explorer__pkg-media img {
  transform: scale(1.04);
}

.home-dest-explorer__pkg-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.28rem 0.55rem;
  border-radius: var(--btn-radius-pill);
  background: var(--gold);
  color: var(--green);
}

.home-dest-explorer__pkg-body {
  padding: 0.9rem 1rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-dest-explorer__pkg-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.home-dest-explorer__pkg-stars {
  color: var(--gold);
  font-size: 0.7rem;
}

.home-dest-explorer__pkg-rating strong {
  color: var(--green);
}

.home-dest-explorer__pkg-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 0.35rem;
  line-height: 1.25;
}

.home-dest-explorer__pkg-desc {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 0.65rem;
  flex: 1;
}

.home-dest-explorer__pkg-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.8125rem;
  color: var(--text);
}

.home-dest-explorer__pkg-meta i {
  color: var(--gold);
  margin-right: 0.2rem;
}

.home-dest-explorer__pkg-meta strong {
  color: var(--gold);
}

.home-dest-explorer__pkg-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (max-width: 991.98px) {
  .home-dest-explorer__featured-wrap {
    min-height: 0;
  }

  .home-dest-explorer-swiper {
    height: auto;
    min-height: 88px;
  }

  .home-dest-explorer__slider-wrap {
    padding-right: 0;
    padding-bottom: 0;
  }

  .home-dest-explorer__nav {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .home-dest-explorer {
    padding: 1.5rem 0 1.75rem;
  }

  .home-dest-explorer__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 0.15rem;
  }

  .home-dest-explorer__tabs::-webkit-scrollbar {
    display: none;
  }

  .home-dest-explorer__tab {
    flex-shrink: 0;
  }
}

/* ==========================================================================
   Homepage luxury redesign — .hp-lux (index.php below hero)
   ========================================================================== */

.hp-lux {
  --hp-font-display: "Playfair Display", Georgia, serif;
  --hp-font-body: "Inter", var(--font-sans);
  --hp-pad-y: 70px;
  --hp-green: #173508;
  --hp-gold: #c8993a;
  --hp-charcoal: #1f2937;
  --hp-black: #111827;
  --hp-body: #4b5563;
  --hp-muted: #6b7280;
  --hp-ivory: #faf8f3;
  --hp-champagne: #f7f4ec;
  --hp-white: #ffffff;
  --hp-card-border: rgba(0, 0, 0, 0.06);
  --hp-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --hp-shadow-hover: 0 14px 36px rgba(0, 0, 0, 0.12);
  --hp-overlay-dark: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.25),
    transparent
  );
  font-family: var(--hp-font-body);
  color: var(--hp-body);
}

.hp-lux .hp-lux-container {
  max-width: 1400px;
}

/* Typography */
.hp-lux .hp-lux-label,
.hp-lux .section-label {
  font-family: var(--hp-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.5rem;
}

.hp-lux .hp-lux-title,
.hp-lux .section-title {
  font-family: var(--hp-font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--hp-black);
  margin: 0 0 0.5rem;
}

.hp-lux .hp-lux-title em,
.hp-lux .section-title em {
  font-style: italic;
  color: var(--hp-gold);
}

.hp-lux .hp-lux-sub,
.hp-lux .section-sub {
  font-size: 15px;
  line-height: 1.55;
  color: var(--hp-body);
  margin: 0;
  /* max-width: 560px; */
}

.hp-lux .hp-lux-sub strong {
  color: var(--hp-charcoal);
}

.hp-lux .hp-lux-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--hp-body);
}

.hp-lux .hp-lux-head--center .hp-lux-sub,
.hp-lux .hp-lux-head--center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.hp-lux .hp-lux-pkg-card__title,
.hp-lux .home-pkg__body h3 {
  font-family: var(--hp-font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--hp-black);
}

/* Sections */
.hp-lux .hp-lux-section {
  padding: var(--hp-pad-y) 0;
  background: var(--hp-white);
}

.hp-lux .hp-lux-section--cream {
  background: var(--hp-ivory);
}

.hp-lux #home-explore,
.hp-lux #home-featured-packages,
.hp-lux #home-glance,
.hp-lux #home-india,
.hp-lux #home-transport,
.hp-lux #home-inspiration {
  background: var(--hp-champagne);
}

.hp-lux .hp-lux-head {
  margin-bottom: 1.75rem;
}

/* Trust strip */
.hp-lux-trust {
  background: var(--hp-champagne);
  color: var(--hp-charcoal);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hp-lux-trust__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0;
}

.hp-lux-trust__list li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 13px;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
}

.hp-lux-trust__list i {
  color: var(--hp-gold);
  transition: color 0.25s ease;
}

.hp-lux-trust__list li:hover i {
  color: var(--hp-green);
}

.hp-lux-trust__sep {
  width: 1px;
  height: 18px;
  background: rgba(0, 0, 0, 0.1);
  padding: 0 !important;
}

/* Tabs */
.hp-lux-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.hp-lux-tab {
  border: 1px solid transparent;
  background: rgba(0, 0, 0, 0.04);
  color: var(--hp-charcoal);
  font-size: 13px;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: var(--btn-radius-pill);
  cursor: pointer;
  transition: var(--btn-transition);
}

.hp-lux-tab:hover {
  background: rgba(200, 153, 58, 0.12);
  color: var(--hp-charcoal);
  border-color: rgba(200, 153, 58, 0.25);
}

.hp-lux-tab.is-active {
  background: var(--hp-green);
  color: var(--hp-white);
  border-color: var(--hp-green);
  box-shadow: 0 4px 14px rgba(23, 53, 8, 0.18);
}

/* Explore Popular Destinations — Swiper grid */
.hp-lux-dest .hp-lux-tabs {
  margin-bottom: 1.25rem;
}

.hp-lux-dest-panel[hidden] {
  display: none !important;
}

.hp-lux-dest-slider {
  position: relative;
  padding: 0 2.75rem;
}

.hp-lux-dest-swiper {
  overflow: hidden;
  padding: 0.25rem 0 0.5rem;
}

.hp-lux-dest-swiper .swiper-slide {
  height: auto;
}

.hp-lux-dest-card {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(280px, 28vw, 320px);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--hp-card-border);
  box-shadow: var(--hp-shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hp-lux-dest-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.hp-lux-dest-card__thumb {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
}

.hp-lux-dest-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--hp-overlay-dark);
  transition: background 0.3s ease;
}

.hp-lux-dest-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1rem 1.1rem 1.05rem;
  color: var(--white);
}

.hp-lux-dest-card__body strong {
  display: block;
  font-family: var(--hp-font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.2;
}

.hp-lux-dest-card__body small {
  display: block;
  font-size: 13px;
  line-height: 1.35;
  opacity: 0.92;
  margin-top: 0.25rem;
}

.hp-lux-dest-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.55rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: var(--btn-radius-pill);
  background: #c8993a;
  color: #173508;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease;
}

.hp-lux-dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hp-shadow-hover);
}

.hp-lux-dest-card:hover > img {
  transform: scale(1.05);
}

.hp-lux-dest-card:hover .hp-lux-dest-card__overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92),
    rgba(0, 0, 0, 0.35),
    transparent
  );
}

.hp-lux-dest-card:hover .hp-lux-dest-card__cta {
  opacity: 1;
  transform: translateY(0);
}

/* Premium circular arrows */
.hp-lux-dest-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #c8993a;
  background: var(--hp-white);
  color: var(--hp-charcoal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--hp-shadow);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.hp-lux-dest-arrow--prev {
  left: 0;
}

.hp-lux-dest-arrow--next {
  right: 0;
}

.hp-lux-dest-arrow:hover {
  background: var(--hp-green);
  border-color: var(--hp-green);
  color: var(--hp-white);
}

.hp-lux-dest-arrow.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* Pagination — centered gold indicator */
.hp-lux-dest-pagination {
  position: static !important;
  margin-top: 1rem !important;
  text-align: center;
}

.hp-lux-dest-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.15);
  opacity: 1;
  margin: 0 4px !important;
  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.hp-lux-dest-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 4px;
  background: #c8993a;
}

@media (max-width: 767.98px) {
  .hp-lux-dest-slider {
    padding: 0 2.25rem;
  }

  .hp-lux-dest-arrow {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .hp-lux-dest-slider {
    padding: 0 2.25rem;
  }

  .hp-lux-dest-arrow {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }

  .hp-lux-dest-card__cta {
    opacity: 1;
    transform: none;
  }
}

/* Highlight grid */
.hp-lux-highlight-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--hp-card-border);
  box-shadow: var(--hp-shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hp-lux-highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.hp-lux-highlight-card__overlay {
  position: absolute;
  inset: 0;
  background: var(--hp-overlay-dark);
}

.hp-lux-highlight-card__text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  color: var(--white);
  z-index: 1;
}

.hp-lux-highlight-card__text strong {
  font-family: var(--hp-font-display);
  font-size: 20px;
  display: block;
}

.hp-lux-highlight-card__text small {
  font-size: 13px;
  opacity: 0.9;
}

.hp-lux-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hp-shadow-hover);
}

.hp-lux-highlight-card:hover img {
  transform: scale(1.05);
}

/* Premium package card */
.hp-lux-pkg-card {
  background: var(--hp-white);
  border: 1px solid var(--hp-card-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--hp-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hp-lux-pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hp-shadow-hover);
}

.hp-lux-pkg-card__media {
  position: relative;
  /* aspect-ratio: 16/10; */
  height: 250px;
  width: 100%;
  overflow: hidden;
}

.hp-lux-pkg-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.hp-lux-pkg-card:hover .hp-lux-pkg-card__media img {
  transform: scale(1.05);
}

.hp-lux-pkg-card__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.5rem;
  border-radius: var(--btn-radius-pill);
}

.hp-lux-pkg-card__badge--gold {
  background: var(--hp-gold);
  color: var(--hp-black);
}

.hp-lux-pkg-card__badge--green {
  background: var(--hp-charcoal);
  color: var(--hp-gold);
}

.hp-lux-pkg-card__rating {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  background: rgba(0, 0, 0, 0.65);
  color: var(--hp-gold);
  font-size: 12px;
  font-weight: 600;
  padding: 0.2rem 0.45rem;
  border-radius: var(--btn-radius-pill);
}

.hp-lux-pkg-card__body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hp-lux-pkg-card__meta {
  font-size: 13px;
  color: var(--hp-muted);
  margin: 0 0 0.25rem;
}

.hp-lux-pkg-card__price {
  font-size: 15px;
  margin: 0 0 0.75rem;
}

.hp-lux-pkg-card__price strong {
  color: var(--hp-gold);
  font-size: 1.15rem;
}

.hp-lux-pkg-card__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

/* Glass feature cards */
.hp-lux-glass-card {
  background: var(--hp-white);
  border: 1px solid var(--hp-card-border);
  border-radius: 14px;
  padding: 20px 18px;
  box-shadow: var(--hp-shadow);
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hp-lux-glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hp-shadow-hover);
}

.hp-lux-glass-card__icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(200, 153, 58, 0.12);
  color: var(--hp-gold);
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
  transition:
    color 0.3s ease,
    background 0.3s ease;
}

.hp-lux-glass-card:hover .hp-lux-glass-card__icon {
  color: var(--hp-green);
  background: rgba(23, 53, 8, 0.08);
}

.hp-lux-glass-card__title {
  font-family: var(--hp-font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--hp-black);
  margin: 0 0 0.35rem;
}

.hp-lux-glass-card__text {
  font-size: 13px;
  color: var(--hp-body);
  margin: 0;
  line-height: 1.5;
}

/* Glance */
.hp-lux-glance-copy {
  margin-bottom: 1.25rem;
}

.hp-lux-glance-copy .hp-lux-text {
  max-width: none;
}

.hp-lux-glance-copy .hp-lux-text + .hp-lux-text {
  margin-top: 1rem;
}

.hp-lux-glance-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.hp-lux-glance-list li {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--hp-charcoal);
}

.hp-lux-glance-list i {
  color: var(--hp-gold);
  transition: color 0.25s ease;
}

.hp-lux-glance-list li:hover i {
  color: var(--hp-green);
}

.hp-lux-video {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--hp-shadow);
}

/* Awards — brand story & trust */
.hp-lux-awards__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.hp-lux-awards__label {
  letter-spacing: 0.14em;
  font-size: 11px;
  line-height: 1.45;
  max-width: 36rem;
  text-transform: uppercase;
}

.hp-lux-awards__editorial .hp-lux-title {
  margin-bottom: 0.85rem;
  max-width: 18em;
}

.hp-lux-awards__copy {
  margin-bottom: 1.15rem;
}

.hp-lux-awards__copy .hp-lux-text {
  max-width: none;
  font-size: 14px;
  line-height: 1.65;
}

.hp-lux-awards__copy .hp-lux-text + .hp-lux-text {
  margin-top: 0.85rem;
}

/* Animated counter cards */
.hp-lux-awards__counters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.1rem;
}

.hp-lux-awards__counter-card {
  background: var(--hp-white);
  border: 1px solid var(--hp-card-border);
  border-radius: 14px;
  padding: 0.85rem 0.75rem;
  text-align: center;
  box-shadow: var(--hp-shadow);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.hp-lux-awards__counter-card.is-counted {
  transform: translateY(-3px);
  box-shadow: var(--hp-shadow-hover);
  border-color: rgba(200, 153, 58, 0.35);
}

.hp-lux-awards__counter-value {
  display: block;
  font-family: var(--hp-font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 600;
  color: var(--hp-black);
  line-height: 1.15;
}

.hp-lux-awards__counter-card.is-counted .hp-lux-awards__counter-value {
  color: var(--hp-black);
}

.hp-lux-awards__counter-card.is-counted .hp-lux-awards__counter-label {
  color: var(--hp-gold);
}

.hp-lux-awards__counter-label {
  display: block;
  margin-top: 0.3rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--hp-muted);
  line-height: 1.35;
}

/* Trust badges */
.hp-lux-awards__badges {
  list-style: none;
  padding: 0;
  margin: 0 0 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hp-lux-awards__badges li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hp-charcoal);
  border: 1px solid var(--hp-gold);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--hp-shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.hp-lux-awards__badges li:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--hp-shadow-hover);
}

.hp-lux-awards__badges i {
  color: var(--hp-gold);
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.hp-lux-awards__badges li:hover i {
  color: var(--hp-green);
}

.hp-lux-awards__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Hero image + glass cards */
.hp-lux-awards__figure {
  position: relative;
  margin: 0;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--hp-shadow-hover);
}

.hp-lux-awards__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2));
}

.hp-lux-awards__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.hp-lux-awards__figure:hover img {
  transform: scale(1.06);
}

.hp-lux-awards__glass {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  max-width: calc(100% - 2rem);
}

.hp-lux-awards__glass-emoji {
  font-size: 1rem;
  line-height: 1;
}

.hp-lux-awards__glass--1 {
  top: 1.25rem;
  left: 1.25rem;
}

.hp-lux-awards__glass--2 {
  bottom: 5.5rem;
  left: 1.25rem;
}

.hp-lux-awards__glass--3 {
  top: 42%;
  right: 1.25rem;
}

.hp-lux-awards__showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.hp-lux-awards__showcase-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--hp-card-border);
  box-shadow: var(--hp-shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hp-lux-awards__showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hp-lux-awards__showcase-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 0.55rem 0.7rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(to top, rgba(23, 53, 8, 0.92), transparent);
}

.hp-lux-awards__showcase-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--hp-shadow-hover);
}

.hp-lux-awards__showcase-card:hover img {
  transform: scale(1.04);
}

/* Package section banners */
.hp-lux-pkg-banner {
  position: relative;
  min-height: clamp(180px, 22vw, 240px);
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  margin-bottom: 1.75rem;
  overflow: hidden;
  border: 1px solid var(--hp-card-border);
  box-shadow: var(--hp-shadow);
}

.hp-lux-pkg-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(14, 32, 5, 0.849) 0%,
    rgba(23, 53, 8, 0.55) 48%,
    rgba(23, 53, 8, 0.2) 100%
  );
}

.hp-lux-pkg-banner__text {
  position: relative;
  z-index: 1;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  color: #fff;
  max-width: 36rem;
}

.hp-lux-pkg-banner__text .hp-lux-label {
  color: var(--hp-gold);
}

.hp-lux-pkg-banner__text .hp-lux-title {
  color: #fff;
  margin-bottom: 0.35rem;
}

.hp-lux-pkg-banner__text .hp-lux-sub {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Theme experience cards */
.hp-lux-theme-card {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--hp-shadow);
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hp-lux-theme-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hp-lux-theme-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.1),
    transparent
  );
  transition: background 0.35s ease;
}

.hp-lux-theme-card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1.1rem;
  z-index: 1;
  color: var(--white);
}

.hp-lux-theme-card__body strong {
  font-family: var(--hp-font-display);
  font-size: 20px;
  display: block;
}

.hp-lux-theme-card__body small {
  font-size: 13px;
  opacity: 0.9;
}

.hp-lux-theme-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.hp-lux-theme-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hp-shadow-hover);
}

.hp-lux-theme-card:hover img {
  transform: scale(1.05);
}

.hp-lux-theme-card:hover .hp-lux-theme-card__overlay {
  background: rgba(0, 0, 0, 0.65);
}

.hp-lux-theme-card:hover .hp-lux-theme-card__cta {
  opacity: 1;
  transform: none;
}

/* Fleet */
.hp-lux-fleet {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hp-lux-fleet-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--hp-white);
  border: 1px solid var(--hp-card-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--hp-shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hp-lux-fleet-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--hp-shadow-hover);
}

.hp-lux-fleet-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.hp-lux-fleet-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-lux-fleet-card__body {
  padding: 1rem 1.1rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hp-lux-fleet-card__body h3,
.hp-lux-fleet-card__title {
  font-family: var(--hp-font-display);
  font-size: 1.15rem;
  color: var(--hp-black);
  margin: 0 0 0.35rem;
}

.hp-lux-fleet-card__cap {
  font-size: 13px;
  color: var(--hp-gold);
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.hp-lux-fleet-card__text,
.hp-lux-fleet-card__desc {
  font-size: 0.9rem;
  color: var(--hp-body);
  margin: 0 0 0.85rem;
  flex: 1;
}

.hp-lux-fleet-card__body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Google Reviews showcase */
.hp-gr-head {
  text-align: center;
  margin-bottom: 1.75rem;
}

.hp-gr-head .hp-lux-title {
  max-width: 20em;
  margin-left: auto;
  margin-right: auto;
}

.hp-gr-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1.15rem;
}

.hp-gr-brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.85rem;
  padding: 0.85rem 1.25rem;
  background: var(--hp-white);
  border: 1px solid var(--hp-card-border);
  border-radius: 14px;
  box-shadow: var(--hp-shadow);
}

.hp-gr-brand__logo {
  flex-shrink: 0;
}

.hp-gr-brand__stars,
.hp-gr-stats__stars {
  color: #fbbc04;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1;
}

.hp-gr-brand__score {
  font-size: 14px;
  color: var(--hp-charcoal);
}

.hp-gr-brand__score strong {
  color: var(--hp-black);
  font-weight: 700;
}

.hp-gr-brand__verified {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 12px;
  font-weight: 600;
  color: var(--hp-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hp-gr-brand__verified i {
  color: #4285f4;
}

.hp-gr-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.85rem;
  font-size: 14px;
  color: var(--hp-body);
}

.hp-gr-stats strong {
  color: var(--hp-black);
  font-weight: 700;
}

.hp-gr-stats__sep {
  width: 1px;
  height: 16px;
  background: rgba(0, 0, 0, 0.12);
}

.hp-gr-slider {
  position: relative;
  padding: 0 2.75rem 2.5rem;
}

.hp-gr-swiper {
  overflow: hidden;
}

.hp-gr-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.hp-gr-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 420px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--hp-card-border);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hp-gr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.hp-gr-card__top {
  flex-shrink: 0;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hp-gr-card__logo {
  display: block;
  margin-bottom: 0.5rem;
}

.hp-gr-card__stars {
  display: block;
  color: #fbbc04;
  font-size: 13px;
  letter-spacing: 0.06em;
  margin-bottom: 0.45rem;
}

.hp-gr-card__name {
  font-family: var(--hp-font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--hp-black);
  margin: 0 0 0.2rem;
  line-height: 1.25;
}

.hp-gr-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--hp-muted);
}

.hp-gr-card__badge i {
  color: #4285f4;
  font-size: 0.9rem;
}

.hp-gr-card__quote {
  flex: 1;
  margin: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.hp-gr-card__quote p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--hp-body);
  flex: 1;
  overflow: hidden;
}

.hp-gr-card__more {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 13px;
  font-weight: 600;
  color: #1a73e8;
  text-decoration: none;
}

.hp-gr-card__more:hover {
  text-decoration: underline;
}

.hp-gr-card__foot {
  flex-shrink: 0;
  margin-top: auto;
  padding-top: 1rem;
}

.hp-gr-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--hp-black);
  text-decoration: none;
  transition:
    color 0.25s ease,
    gap 0.25s ease;
}

.hp-gr-card__link:hover {
  color: var(--hp-gold);
  gap: 0.5rem;
}

.hp-gr-arrow {
  position: absolute;
  top: calc(50% - 1.25rem);
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--hp-gold);
  background: var(--hp-white);
  color: var(--hp-charcoal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--hp-shadow);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.hp-gr-arrow--prev {
  left: 0;
}

.hp-gr-arrow--next {
  right: 0;
}

.hp-gr-arrow:hover {
  background: var(--hp-green);
  border-color: var(--hp-green);
  color: var(--hp-white);
}

.hp-gr-arrow.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.hp-gr-pagination {
  position: static !important;
  margin-top: 1.25rem !important;
  text-align: center;
}

.hp-gr-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.15);
  opacity: 1;
  margin: 0 4px !important;
  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.hp-gr-pagination .swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 4px;
  background: var(--hp-gold);
}

.hp-gr-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.hp-gr-cta__outline {
  background: var(--hp-white);
  color: var(--hp-charcoal);
  border: 2px solid var(--hp-gold);
  border-radius: var(--btn-radius);
  padding: var(--btn-py) var(--btn-px);
  font-size: var(--btn-font-size);
  font-weight: 500;
  text-decoration: none;
  transition: var(--btn-transition);
}

.hp-gr-cta__outline:hover {
  background: var(--hp-gold);
  color: var(--hp-black);
  border-color: var(--hp-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 153, 58, 0.35);
}

@media (max-width: 767.98px) {
  .hp-gr-slider {
    padding: 0 2.25rem 2.25rem;
  }

  .hp-gr-arrow {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .hp-gr-slider {
    padding: 0 0.25rem 2rem;
  }

  .hp-gr-arrow {
    display: none;
  }

  .hp-gr-card {
    height: 420px;
  }

  .hp-gr-brand {
    flex-direction: column;
    text-align: center;
  }

  .hp-gr-stats__sep {
    display: none;
  }

  .hp-gr-cta .btn {
    flex: 1 1 100%;
    justify-content: center;
  }
}

/* Articles */
.hp-lux-article-card__link {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--hp-shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hp-lux-article-card__link:hover {
  transform: translateY(-5px);
  box-shadow: var(--hp-shadow-hover);
}

.hp-lux-article-card__link img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.hp-lux-article-card__link:hover img {
  transform: scale(1.05);
}

.hp-lux-article-card__body {
  display: block;
  padding: 18px 20px 20px;
  background: var(--hp-white);
  border-top: 1px solid var(--hp-card-border);
}

.hp-lux-article-card__body h3 {
  font-family: var(--hp-font-display);
  font-size: 20px;
  color: var(--hp-black);
  margin: 0 0 0.4rem;
}

.hp-lux-article-card__body p {
  font-size: 15px;
  color: var(--hp-body);
  margin: 0 0 0.5rem;
  line-height: 1.5;
}

.hp-lux-article-card__more {
  font-size: 13px;
  font-weight: 600;
  color: var(--hp-gold);
  transition: color 0.25s ease;
}

.hp-lux-article-card__link:hover .hp-lux-article-card__more {
  color: var(--hp-green);
}

/* FAQ */
.hp-lux-faq .accordion-item {
  border: 1px solid var(--hp-card-border);
  border-radius: 10px !important;
  margin-bottom: 0.5rem;
  overflow: hidden;
  box-shadow: var(--hp-shadow);
  background: var(--hp-white);
}

.hp-lux-faq .accordion-button {
  font-family: var(--hp-font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--hp-charcoal);
  background: var(--hp-white);
  box-shadow: none;
  padding: 1rem 1.15rem;
}

.hp-lux-faq .accordion-button:not(.collapsed) {
  background: var(--hp-ivory);
  color: var(--hp-black);
}

.hp-lux-faq .accordion-body {
  font-size: 15px;
  color: var(--hp-body);
  line-height: 1.6;
}

/* CTA */
.hp-lux-cta__box {
  background: linear-gradient(135deg, var(--green) 0%, var(--green2) 100%);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  color: var(--white);
  box-shadow: var(--hp-shadow-hover);
}

.hp-lux-cta__box .hp-lux-label {
  color: var(--gold-light);
}

.hp-lux-cta__title {
  color: var(--white) !important;
}

.hp-lux-cta__box .hp-lux-sub {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 1.25rem;
}

.hp-lux-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Legacy package sliders inside luxury layout */
.hp-lux .home-pkg {
  border: 1px solid var(--hp-card-border);
  border-radius: 14px;
  box-shadow: var(--hp-shadow);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hp-lux .home-pkg:hover {
  transform: translateY(-5px);
  box-shadow: var(--hp-shadow-hover);
}

.hp-lux .home-pkg__body h3 {
  color: var(--hp-black);
}

.hp-lux .home-pkg__tag {
  background: var(--hp-charcoal);
  color: var(--hp-gold);
}

.hp-lux .home-pkg__meta,
.hp-lux .home-pkg__desc {
  color: var(--hp-body);
}

.hp-lux .home-pkg--lux .home-pkg__body {
  background: var(--hp-white);
}

.hp-lux.home-premium .swiper-button-prev,
.hp-lux.home-premium .swiper-button-next {
  color: var(--hp-gold);
}

.hp-lux.home-premium .swiper-button-prev:hover,
.hp-lux.home-premium .swiper-button-next:hover {
  color: var(--hp-green);
}

/* Homepage CTAs — green primary, gold-outline secondary */
.hp-lux .btn-cta-outline {
  background: var(--hp-white);
  color: var(--hp-charcoal);
  border-color: var(--hp-gold);
}

.hp-lux .btn-cta-outline:hover {
  background: var(--hp-gold);
  color: var(--hp-black);
  border-color: var(--hp-gold);
}

.hp-lux .btn-cta-solid {
  background: var(--hp-green);
  border-color: var(--hp-green);
  color: var(--hp-white);
}

.hp-lux .btn-cta-solid:hover {
  background: var(--green2);
  border-color: var(--green2);
  color: var(--hp-white);
}

.hp-lux .btn-pkg {
  background: var(--hp-green);
  border-color: var(--hp-green);
  color: var(--hp-white);
}

.hp-lux .btn-pkg:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  color: var(--hp-white);
}

.hp-lux .home-filter-panel[hidden] {
  display: none !important;
}

.hp-lux .home-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.hp-lux .home-reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Responsive typography & spacing */
@media (max-width: 991.98px) {
  .hp-lux {
    --hp-pad-y: 60px;
  }

  .hp-lux .hp-lux-title,
  .hp-lux .section-title {
    font-size: 32px;
  }

  .hp-lux-awards__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hp-lux-awards__hero {
    order: -1;
  }

  .hp-lux-awards__figure {
    height: min(420px, 72vw);
    border-radius: 20px;
  }

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

@media (max-width: 575.98px) {
  .hp-lux {
    --hp-pad-y: 50px;
  }

  .hp-lux .hp-lux-title,
  .hp-lux .section-title {
    font-size: 26px;
  }

  .hp-lux-awards__glass {
    font-size: 10px;
    padding: 0.45rem 0.65rem;
  }

  .hp-lux-awards__glass--2 {
    bottom: 4.5rem;
  }

  .hp-lux-awards__glass--3 {
    top: auto;
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .hp-lux-awards__cta .btn {
    flex: 1 1 100%;
    justify-content: center;
  }

  .hp-lux-trust__sep {
    display: none;
  }

  .hp-lux-trust__list {
    gap: 0.35rem;
  }

  .hp-lux-pkg-banner__text {
    padding: 1.25rem 1.35rem;
  }

  .hp-lux-awards__showcase {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }

  .hp-lux-glance-list {
    grid-template-columns: 1fr;
  }

  .hp-lux-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    /* Override .justify-content-center: a centered flex row that overflows
       clips its first items off-screen and they become unreachable */
    justify-content: flex-start !important;
    width: 100%;
    max-width: 100%;
    padding: 2px 2px 6px;
    -webkit-overflow-scrolling: touch;
  }

  .hp-lux-tabs::-webkit-scrollbar {
    display: none;
  }

  .hp-lux-tab {
    flex-shrink: 0;
    white-space: nowrap;
  }
}

/* ==========================================================================
   Mobile off-canvas navigation (header.php)
   ========================================================================== */

.swosti-mobile-nav {
  pointer-events: none;
  visibility: hidden;
}

.swosti-mobile-nav.is-open {
  pointer-events: auto;
  visibility: visible;
}

body.swosti-mobile-nav-open {
  overflow: hidden;
  touch-action: none;
}

.swosti-mobile-nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 1090;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.swosti-mobile-nav.is-open .swosti-mobile-nav__overlay {
  opacity: 1;
}

.swosti-mobile-nav__drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 50%;
  min-width: 260px;
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  z-index: 1100;
  background: #0d2401dc;
  color: var(--white);
  display: flex;
  flex-direction: column;
  box-shadow: 8px 0 32px rgba(0, 0, 0, 0.35);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.swosti-mobile-nav.is-open .swosti-mobile-nav__drawer {
  transform: translateX(0);
}

.swosti-mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1rem 0.85rem;
  border-bottom: 1px solid rgba(200, 153, 58, 0.25);
  flex-shrink: 0;
}

.swosti-mobile-nav__logo img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.swosti-mobile-nav__close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.swosti-mobile-nav__close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #173508;
}

.swosti-mobile-nav__body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0 1.25rem;
}

.swosti-mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.swosti-mobile-nav__link,
.swosti-mobile-nav__expand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.9rem 1.15rem;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.swosti-mobile-nav__link::before,
.swosti-mobile-nav__expand::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #c8993a;
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.swosti-mobile-nav__link:hover,
.swosti-mobile-nav__link:focus-visible,
.swosti-mobile-nav__expand:hover,
.swosti-mobile-nav__expand:focus-visible,
.swosti-mobile-nav__link.is-active {
  color: #c8993a;
  background: rgba(255, 255, 255, 0.06);
}

.swosti-mobile-nav__link:hover::before,
.swosti-mobile-nav__link:focus-visible::before,
.swosti-mobile-nav__expand:hover::before,
.swosti-mobile-nav__expand:focus-visible::before,
.swosti-mobile-nav__link.is-active::before {
  transform: scaleY(1);
}

.swosti-mobile-nav__chev {
  font-size: 0.85rem;
  transition: transform 0.25s ease;
}

.swosti-mobile-nav__expand.is-open .swosti-mobile-nav__chev {
  transform: rotate(180deg);
}

.swosti-mobile-nav__sub {
  list-style: none;
  margin: 0;
  padding: 0 0 0.35rem;
  background: rgba(0, 0, 0, 0.15);
}

.swosti-mobile-nav__sub[hidden] {
  display: none !important;
}

.swosti-mobile-nav__sublink {
  display: block;
  padding: 0.65rem 1.15rem 0.65rem 1.65rem;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  position: relative;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.swosti-mobile-nav__sublink::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #c8993a;
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.swosti-mobile-nav__sublink:hover,
.swosti-mobile-nav__sublink:focus-visible {
  color: #c8993a;
  background: rgba(255, 255, 255, 0.05);
}

.swosti-mobile-nav__sublink:hover::before,
.swosti-mobile-nav__sublink:focus-visible::before {
  transform: scaleY(1);
}

.swosti-mobile-nav__divider {
  height: 1px;
  margin: 0.5rem 1.15rem 1rem;
  background: rgba(200, 153, 58, 0.35);
}

.swosti-mobile-nav__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0 1.15rem;
}

.swosti-mobile-nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.swosti-mobile-nav__btn--call {
  background: #c8993a;
  color: #173508;
  border: 1px solid #c8993a;
}

.swosti-mobile-nav__btn--call:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.swosti-mobile-nav__btn--wa {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.swosti-mobile-nav__btn--wa:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: #25d366;
  color: #25d366;
}

.swosti-mobile-nav-toggle {
  border-color: var(--green) !important;
}

/* Desktop: hide mobile drawer UI */
@media (min-width: 992px) {
  .swosti-mobile-nav {
    display: none !important;
  }
}

@media (max-width: 380px) {
  .swosti-mobile-nav__drawer {
    width: 50%;
    min-width: 200px;
  }
}

/* ==========================================================================
   Premium floating action buttons — site-wide
   ========================================================================== */

.swosti-fab {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1040;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}

.swosti-fab__btn {
  position: relative;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(10, 61, 6, 0.979);
  background: rgba(163, 177, 160, 0.548);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--green);
  font-size: 1.15rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.swosti-fab__btn:hover,
.swosti-fab__btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(200, 153, 58, 0.45);
  outline: none;
}

.swosti-fab__btn[data-fab-tooltip]::after {
  content: attr(data-fab-tooltip);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  padding: 0.4rem 0.7rem;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: #1f2937;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
}

.swosti-fab__btn:hover::after,
.swosti-fab__btn:focus-visible::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.swosti-fab__btn--wa {
  color: #128c7e;
}

.swosti-fab__btn--wa:hover,
.swosti-fab__btn--wa:focus-visible {
  color: #0d6e63;
}

.swosti-fab__btn--call {
  color: var(--green);
}

.swosti-fab__top-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
}

.swosti-fab__top-wrap.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}

.swosti-fab__route-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  border-radius: 50%;
  border: 1px dashed rgba(17, 95, 10, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  animation: swostiFabRouteSpin 36s linear infinite;
}

.swosti-fab__top-wrap.is-visible .swosti-fab__route-ring {
  opacity: 1;
}

@keyframes swostiFabRouteSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.swosti-fab__btn--top {
  width: 52px;
  height: 52px;
  margin: 0;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(200, 153, 58, 0.3);
  box-shadow: 0 8px 22px rgba(23, 53, 8, 0.1);
  z-index: 1;
}

.swosti-fab__btn--top:hover,
.swosti-fab__btn--top:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(23, 53, 8, 0.16);
  border-color: rgba(200, 153, 58, 0.48);
  background: rgba(255, 255, 255, 0.94);
  color: var(--green);
}

.swosti-fab__airplane {
  display: block;
  font-size: 1.12rem;
  transform: rotate(-18deg);
  transition: transform 0.3s ease;
}

.swosti-fab__btn--top:hover .swosti-fab__airplane,
.swosti-fab__btn--top:focus-visible .swosti-fab__airplane {
  transform: translateY(-3px) rotate(-28deg);
}

@keyframes swostiFabTakeoff {
  0% {
    transform: translateY(0) rotate(-18deg);
  }
  45% {
    transform: translateY(-8px) rotate(-15deg);
  }
  100% {
    transform: translateY(0) rotate(-18deg);
  }
}

.swosti-fab__airplane.is-takeoff {
  animation: swostiFabTakeoff 0.75s ease;
}

@media (max-width: 767.98px) {
  .swosti-fab {
    right: 20px;
    bottom: 20px;
    gap: 12px;
  }

  .swosti-fab__btn {
    width: 46px;
    height: 46px;
    font-size: 1.05rem;
  }

  .swosti-fab__btn[data-fab-tooltip]::after {
    display: none;
  }

  .swosti-fab__top-wrap {
    width: 48px;
    height: 48px;
  }

  .swosti-fab__btn--top {
    width: 48px;
    height: 48px;
  }

  .swosti-fab__route-ring {
    width: 58px;
    height: 58px;
    margin: -29px 0 0 -29px;
  }

  .swosti-fab__airplane {
    font-size: 1.02rem;
  }
}

/* Day excursion — extra charges (rate sheet footer) */
.exc-extra-charges__inner {
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(23, 53, 8, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.exc-extra-charges__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.85rem;
}

.exc-extra-card {
  height: 100%;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  border: 1px solid rgba(200, 153, 58, 0.25);
  background: #fff;
  font-size: 0.88rem;
  line-height: 1.55;
}

.exc-extra-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--green);
}

/* ==========================================================================
   Contact Us page — premium travel contact (contact-us.php)
   ========================================================================== */

.cu-page {
  background: #f8f6f1;
  overflow-x: hidden;
}

/* —— Section 1: Hero banner —— */
.cu-hero {
  position: relative;
  height: 450px;
  color: #fff;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.534);
}

.cu-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.cu-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(14, 32, 5, 0.726) 0%,
    rgba(10, 22, 4, 0.72) 45%,
    rgba(10, 22, 5, 0.88) 100%
  );
}

.cu-hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1rem 2.5rem;
}

.cu-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  list-style: none;
  margin: 0 0 auto;
  padding: 0;
  font-size: 0.82rem;
}

.cu-breadcrumb__list li + li::before {
  content: "›";
  margin-right: 8px;
  opacity: 0.65;
}

.cu-breadcrumb__list a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.cu-breadcrumb__list a:hover {
  color: var(--gold-light);
}

.cu-breadcrumb__list li[aria-current="page"] {
  color: var(--gold-light);
}

.cu-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
}

.cu-hero__title {
  font-family: var(--font-sans);
  font-size: clamp(1.65rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.65rem;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.cu-hero__sub {
  margin: 0 0 1.35rem;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
}

.cu-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* —— Shared section typography —— */
.cu-section {
  padding: 56px 0;
}

.cu-section__head {
  margin-bottom: 2rem;
}

.cu-section__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.5rem;
}

.cu-section__title {
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 700;
  color: #152510;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.cu-section__title em {
  color: var(--gold);
  font-style: italic;
}

.cu-section__sub {
  color: #5c6b78;
  font-size: 0.94rem;
  margin: 0 auto;
  /* max-width: 540px; */
  line-height: 1.6;
}

.cu-section__head .cu-section__sub {
  margin-left: auto;
  margin-right: auto;
}

/* —— Section 2: Intro —— */
.cu-intro__box {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(23, 53, 8, 0.06);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.06);
}

.cu-intro__text {
  color: #4a5d6a;
  font-size: 0.96rem;
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.cu-intro__services {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 1.25rem;
  text-align: left;
}

.cu-intro__services li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.5;
}

.cu-intro__services i {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
  font-size: 1rem;
}

.cu-intro__services strong {
  color: var(--green);
}

/* —— Section 3: Office tiles —— */
.cu-offices {
  background: #fff;
}

.cu-offices-swiper .swiper-wrapper {
  align-items: stretch;
}

.cu-offices-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.cu-office-tile {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 0;
  border: 1px solid rgba(23, 53, 8, 0.08);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.cu-office-tile:hover,
.cu-office-tile.is-active {
  transform: translateY(-6px);
  border-color: rgba(200, 153, 58, 0.45);
  box-shadow: 0 18px 42px rgba(23, 53, 8, 0.12);
}

.cu-office-tile.is-active .cu-office-tile__cta {
  color: var(--green);
}

.cu-office-tile__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.cu-office-tile__media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.cu-office-tile__pin {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--gold);
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.cu-office-tile__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1rem 1rem 1.1rem;
}

.cu-office-tile__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.3;
}

.cu-office-tile__addr {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.55;
}

.cu-office-tile__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.76rem;
  color: #475569;
}

.cu-office-tile__meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.cu-office-tile__meta i {
  color: var(--gold);
  font-size: 0.72rem;
}

.cu-office-tile__cta {
  margin-top: auto;
  padding-top: 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.cu-offices-swiper__pagination {
  position: relative;
  margin-top: 1rem;
}

.cu-offices-swiper__pagination .swiper-pagination-bullet {
  background: rgba(23, 53, 8, 0.25) !important;
  opacity: 1 !important;
}

.cu-offices-swiper__pagination .swiper-pagination-bullet-active {
  background: var(--gold) !important;
}

/* —— Section 4: Map panel —— */
.cu-map-panel {
  padding-top: 0;
}

.cu-map-panel__card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(23, 53, 8, 0.07);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
  padding: 1.75rem 1.5rem;
}

@media (min-width: 992px) {
  .cu-map-panel__card {
    padding: 2rem 2.25rem;
  }
}

.cu-map-panel__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 0.75rem;
  transition: opacity 0.3s ease;
}

.cu-map-panel__addr {
  font-style: normal;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 1rem;
}

.cu-map-panel__contacts {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.88rem;
}

.cu-map-panel__contacts li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  color: #334155;
}

.cu-map-panel__contacts i {
  color: var(--gold);
}

.cu-map-panel__contacts a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.cu-map-panel__contacts a:hover {
  color: var(--gold);
}

.cu-map-panel__frame {
  position: relative;
  height: 100%;
  min-height: 320px;
  border-radius: 14px;
  overflow: hidden;
  background: #e8edf0;
  transition: opacity 0.35s ease;
}

.cu-map-panel__frame.is-changing {
  opacity: 0.35;
}

.cu-map-panel__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* —— Section 5: Form split —— */
.cu-form-visual {
  position: relative;
  height: 100%;
  min-height: 420px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--green);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.1);
}

.cu-form-swiper,
.cu-form-swiper .swiper-wrapper,
.cu-form-swiper .swiper-slide {
  height: 100%;
  min-height: 420px;
}

.cu-form-swiper .swiper-wrapper {
  padding-bottom: 0 !important;
}

.cu-form-swiper.swiper-fade .swiper-slide {
  background: transparent !important;
}

.cu-form-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.cu-form-swiper__pagination {
  bottom: 14px !important;
  z-index: 2;
}

.cu-form-swiper__pagination .swiper-pagination-bullet {
  width: 7px !important;
  height: 7px !important;
  background: rgba(255, 255, 255, 0.55) !important;
  opacity: 1 !important;
}

.cu-form-swiper__pagination .swiper-pagination-bullet-active {
  width: 7px !important;
  background: var(--gold) !important;
}

.cu-form-visual__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 2.5rem 1.25rem 2.75rem;
  background: linear-gradient(to top, rgba(23, 53, 8, 0.92), transparent);
  color: #fff;
  pointer-events: none;
}

.cu-form-visual__caption p:last-child {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.9;
}

.cu-form-panel {
  height: 100%;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(23, 53, 8, 0.07);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  padding: 1.75rem 1.5rem;
}

@media (min-width: 992px) {
  .cu-form-panel {
    padding: 2rem 2.25rem;
  }
}

.cu-form-panel__head {
  margin-bottom: 1.5rem;
}

.cu-float {
  position: relative;
}

.cu-float__input {
  width: 100%;
  padding: 1.15rem 1rem 0.5rem;
  font-size: 0.92rem;
  color: #1e293b;
  background: #fff;
  border: 1px solid #e8e4dc;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.cu-float__input:focus {
  outline: none;
  border-color: rgba(200, 153, 58, 0.55);
  box-shadow:
    0 0 0 3px rgba(200, 153, 58, 0.14),
    0 6px 20px rgba(15, 23, 42, 0.06);
}

.cu-float__label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.88rem;
  font-weight: 500;
  color: #64748b;
  pointer-events: none;
  background: #fff;
  padding: 0 6px;
  z-index: 2;
  transition: all 0.3s ease;
}

.cu-float__input:focus ~ .cu-float__label,
.cu-float__input:not(:placeholder-shown) ~ .cu-float__label,
.cu-float.is-filled .cu-float__label,
.cu-float__input:-webkit-autofill ~ .cu-float__label {
  top: 0;
  transform: translateY(-50%) scale(0.85);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}

.cu-float--area .cu-float__input {
  min-height: 130px;
  resize: vertical;
  padding-top: 1.35rem;
}

.cu-float--area .cu-float__label {
  top: 1.15rem;
  transform: none;
}

.cu-float--area .cu-float__input:focus ~ .cu-float__label,
.cu-float--area .cu-float__input:not(:placeholder-shown) ~ .cu-float__label,
.cu-float--area.is-filled .cu-float__label,
.cu-float--area .cu-float__input:-webkit-autofill ~ .cu-float__label {
  top: 0;
  transform: translateY(-50%) scale(0.85);
}

.cu-float__input:-webkit-autofill {
  animation: cuAutofillStart 0.01s;
}

@keyframes cuAutofillStart {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}

.cu-float.is-invalid .cu-float__input {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.12);
}

.cu-req {
  color: #c0392b;
}

.cu-form__invalid {
  display: none;
  font-size: 0.74rem;
  color: #e74c3c;
  margin-top: 0.35rem;
}

.cu-float.is-invalid .cu-form__invalid {
  display: block;
}

.cu-form__submit {
  min-width: 200px;
}

/* Contact form — static labels above fields */
.cu-form .cu-float {
  position: relative;
}

.cu-form .cu-float__label {
  position: static;
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  transform: none;
  top: auto;
  left: auto;
  padding: 0;
  background: transparent;
  pointer-events: auto;
  letter-spacing: normal;
  text-transform: none;
  color: #173508;
}

.cu-form .cu-float__input {
  padding: 0.75rem 1rem;
}

.cu-form .cu-float__input::placeholder {
  color: #94a3b8;
}

.cu-form .cu-float--area .cu-float__input {
  min-height: 130px;
  resize: vertical;
  padding-top: 0.75rem;
}

.cu-form__success {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Contact enquiry result popup */
.cu-enquiry-modal .modal-dialog {
  max-width: 420px;
}

.cu-enquiry-modal__content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.cu-enquiry-modal__body {
  position: relative;
  padding: 2rem 1.75rem 1.75rem;
}

.cu-enquiry-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.cu-enquiry-modal__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.cu-enquiry-modal__content--success .cu-enquiry-modal__icon {
  background: #ecfdf3;
  color: #16a34a;
}

.cu-enquiry-modal__content--error .cu-enquiry-modal__icon {
  background: #fef2f2;
  color: #dc2626;
}

.cu-enquiry-modal__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.65rem;
}

.cu-enquiry-modal__msg {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 1.35rem;
}

.cu-enquiry-modal__btn {
  min-width: 140px;
}

/* —— Section 6: Quick strip —— */
.cu-quick-strip {
  padding: 0;
  background: linear-gradient(135deg, var(--green) 0%, #1f4510 100%);
}

.cu-quick-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.cu-quick-strip__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.35rem 1.25rem;
  color: #fff;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.25s ease;
}

.cu-quick-strip__item:last-child {
  border-right: none;
}

.cu-quick-strip__item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.cu-quick-strip__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 153, 58, 0.2);
  color: var(--gold-light);
  font-size: 1.1rem;
}

.cu-quick-strip__icon--wa {
  background: rgba(37, 211, 102, 0.18);
  color: #5dffb0;
}

.cu-quick-strip__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.cu-quick-strip__text small {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
}

.cu-quick-strip__text strong {
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* —— Section 7: Trust —— */
.cu-trust {
  background: #fff;
}

.cu-trust__grid {
  max-width: 1000px;
  margin: 0 auto;
}

.cu-trust-card {
  height: 100%;
  text-align: center;
  padding: 1.5rem 1rem;
  background: #f8f6f1;
  border-radius: 16px;
  border: 1px solid rgba(23, 53, 8, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cu-trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.cu-trust-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(200, 153, 58, 0.14);
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.cu-trust-card__value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.cu-trust-card__text {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.45;
}

.cu-trust-card__label {
  display: block;
  font-size: 0.76rem;
  color: #64748b;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* —— Section 8: CTA —— */
.cu-cta {
  position: relative;
  padding: 72px 0;
  background-image: var(--cu-cta-bg);
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}

.cu-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(23, 53, 8, 0.92) 0%,
    rgba(23, 53, 8, 0.68) 55%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

.cu-cta__inner {
  position: relative;
  z-index: 1;
}

.cu-cta__title {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
}

.cu-cta__text {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 auto 1.5rem;
  max-width: 480px;
}

.cu-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* —— Responsive —— */
@media (max-width: 991.98px) {
  .cu-hero {
    height: 350px;
  }

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

  .cu-quick-strip__item:nth-child(2) {
    border-right: none;
  }

  .cu-quick-strip__item:nth-child(1),
  .cu-quick-strip__item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 767.98px) {
  .cu-intro__services {
    grid-template-columns: 1fr;
  }

  .cu-section {
    padding: 44px 0;
  }
}

@media (max-width: 575.98px) {
  .cu-hero {
    height: 300px;
  }

  .cu-hero__actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .cu-quick-strip__inner {
    grid-template-columns: 1fr;
  }

  .cu-quick-strip__item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .cu-quick-strip__item:last-child {
    border-bottom: none;
  }

  .cu-cta {
    padding: 52px 0;
  }

  .cu-cta__actions .btn {
    width: 100%;
    max-width: 300px;
  }

  .cu-form-panel,
  .cu-map-panel__card {
    padding: 1.25rem 1rem;
  }
}

.hp-lux-awards__figure--slider {
  background-color: #000;
}

.hp-lux-awards__figure--slider:hover .hp-awards-slider__img {
  transform: translateZ(0);
}

.hp-lux-awards__figure--slider .hp-awards-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}

.hp-lux-awards__figure--slider .hp-awards-slider__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: opacity;
  animation: hpAwardsFade var(--hp-awards-slide-total, 24s) linear infinite;
  animation-fill-mode: both;
}

.hp-lux-awards__figure--slider .hp-awards-slider__img--lead {
  animation-name: hpAwardsFadeLead;
}

@media (prefers-reduced-motion: reduce) {
  .hp-lux-awards__figure--slider .hp-awards-slider__img {
    animation: none;
    opacity: 0;
    transform: none;
    will-change: auto;
  }

  .hp-lux-awards__figure--slider .hp-awards-slider__img--lead {
    opacity: 1;
  }
}

/* Theme Based Tour Packages — theme-based-tour-packages.php */
.tbp-page {
  --tbp-charcoal: #1c1c1c;
  --tbp-ivory: #f8f6f1;
  --tbp-ivory-deep: #f0ebe3;
  background: var(--white);
  color: var(--tbp-charcoal);
}
.tbp-section {
  padding: 3.5rem 0;
}
.tbp-section--ivory {
  background: var(--tbp-ivory);
}
.tbp-hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--tbp-charcoal);
}
.tbp-hero-swiper,
.tbp-hero-swiper .swiper-slide {
  height: 100%;
}
.tbp-hero-swiper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.tbp-hero-swiper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.62) 34%,
    rgba(0, 0, 0, 0.2) 62%,
    rgba(0, 0, 0, 0) 100%
  );
}
.tbp-hero-swiper .swiper-slide {
  position: relative;
}
.tbp-hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.tbp-hero-swiper.swiper-fade .swiper-slide {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.tbp-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.45)
  );
}
.tbp-hero__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.tbp-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.78rem;
}
.tbp-breadcrumb__list li + li::before {
  content: "/";
  margin-right: 0.5rem;
  opacity: 0.5;
  color: rgba(255, 255, 255, 0.7);
}
.tbp-breadcrumb__list a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.tbp-breadcrumb__list a:hover {
  color: var(--gold-light);
}
.tbp-breadcrumb__list li[aria-current="page"] {
  color: var(--gold);
}
.tbp-hero__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}
.tbp-hero__title {
  font-family: var(--font-sans);
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 0.75rem;
}
.tbp-hero__sub {
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 1.5rem;
}
.tbp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.tbp-hero__pagination {
  bottom: 1.25rem !important;
  z-index: 4;
}
.tbp-hero__pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.45) !important;
  opacity: 1 !important;
}
.tbp-hero__pagination .swiper-pagination-bullet-active {
  background: var(--gold) !important;
  width: 28px !important;
  border-radius: 4px !important;
}
.tbp-hero__prev,
.tbp-hero__next {
  color: var(--gold) !important;
  z-index: 4;
}
.tbp-intro__text {
  max-width: 1020px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
 
}
.tbp-intro__text p {
  margin-bottom: 0.85rem;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.tbp-intro__text p:last-child {
  margin-bottom: 0;
}
.tbp-page .section-title {
  color: var(--tbp-charcoal);
}
.tbp-page .section-title em {
  color: var(--gold);
}
.tbp-page .section-label {
  color: var(--gold);
}
.tbp-page .section-label::before {
  background: var(--gold);
}
.tbp-theme-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 340px;
  display: block;
}
.tbp-theme-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.tbp-theme-card:hover > img {
  transform: scale(1.08);
}
.tbp-theme-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.25) 55%,
    rgba(0, 0, 0, 0.15) 100%
  );
}
.tbp-theme-card__body {
  position: absolute;
  inset: auto 0 0;
  padding: 1.25rem 1.15rem 1.35rem;
  z-index: 2;
}
.tbp-theme-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.tbp-theme-card__desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  margin-bottom: 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tbp-page .pkg-card {
  border-color: rgba(28, 28, 28, 0.08);
}
.tbp-page .pkg-card-body h5 {
  color: var(--tbp-charcoal);
}
.tbp-feature-card {
  border-color: rgba(28, 28, 28, 0.08);
  background: var(--white);
}
.tbp-feature-card__icon {
  background: rgba(200, 153, 58, 0.12) !important;
  color: var(--gold) !important;
}
.tbp-feature-card h6 {
  color: var(--tbp-charcoal);
}
.tbp-why {
  background: var(--white);
}
.tbp-masonry {
  columns: 1;
  column-gap: 1rem;
}
.tbp-masonry__item {
  position: relative;
  display: block;
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
}
.tbp-masonry__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.55s ease;
  object-fit: cover;
}
.tbp-masonry__item:not(.tbp-masonry__item--tall) img {
  aspect-ratio: 4/3;
}
.tbp-masonry__item--tall img {
  aspect-ratio: 3/4;
}
.tbp-masonry__item:hover img {
  transform: scale(1.06);
}
.tbp-masonry__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 55%);
  opacity: 0.85;
}
.tbp-masonry__item:hover .tbp-masonry__overlay {
  opacity: 1;
}
.tbp-masonry__label {
  position: absolute;
  left: 1rem;
  bottom: 3rem;
  z-index: 2;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
.tbp-masonry__btn {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.tbp-masonry__item:hover .tbp-masonry__btn {
  opacity: 1;
  transform: translateY(0);
}
.tbp-cta {
  position: relative;
  padding: 4rem 1.5rem;
  background-color: var(--tbp-charcoal);
  background-image: url("../assets/images/odisha-holiday-packages/puri-romantic-escape.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.tbp-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(28, 28, 28, 0.78) 100%
  );
}
.tbp-cta__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-sans);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.tbp-cta__text {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto 1.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.65;
}
.tbp-cta .d-flex {
  position: relative;
  z-index: 1;
}
.tbp-faq {
  background: var(--tbp-ivory-deep);
}
@media (max-width: 991.98px) {
  .tbp-hero {
    height: 500px;
  }
}
@media (max-width: 767.98px) {
  .tbp-hero {
    height: 400px;
  }
  .tbp-hero__actions {
    width: 100%;
  }
  .tbp-hero__actions .btn {
    flex: 1 1 100%;
    text-align: center;
  }
  .tbp-theme-card {
    height: 300px;
  }
  .tbp-section {
    padding: 2.75rem 0;
  }
  .tbp-hero__prev,
  .tbp-hero__next {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .tbp-masonry {
    columns: 2;
  }
}
@media (min-width: 992px) {
  .tbp-masonry {
    columns: 3;
  }
  .tbp-section {
    padding: 4.5rem 0;
  }
}

/* India Holiday Packages — india-holiday-packages.php */
.ihp-page .ihp-hero__overlay {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.35)
  );
}
.ihp-split__media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(28, 28, 28, 0.12);
}
.ihp-split__media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.ihp-split__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 50%);
  pointer-events: none;
}
.ihp-split__title {
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin-bottom: 1rem;
  text-align: left;
}
.ihp-split__text {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.ihp-split__text p {
  margin-bottom: 0.75rem;
}
.ihp-split__text p:last-child {
  margin-bottom: 0;
}
.ihp-split__quote {
  margin: 0 0 1.25rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--gold);
  background: rgba(200, 153, 58, 0.08);
  border-radius: 0 12px 12px 0;
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--tbp-charcoal);
}
.ihp-split__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.ihp-dest-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--tbp-charcoal);
  background: var(--white);
  border: 1px solid rgba(200, 153, 58, 0.35);
  box-shadow: 0 2px 8px rgba(28, 28, 28, 0.06);
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.ihp-dest-badge:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(200, 153, 58, 0.15);
}
.ihp-pkg-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.ihp-pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(28, 28, 28, 0.1);
}
.ihp-pkg-card .pkg-card-img img {
  transition: transform 0.45s ease;
}
.ihp-pkg-card:hover .pkg-card-img img {
  transform: scale(1.05);
}
.ihp-pkg-card .pkg-card-img {
  overflow: hidden;
}
.ihp-feature-card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.ihp-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(28, 28, 28, 0.08);
}
.ihp-cta {
  background-image:
    url("../assets/images/india-holiday-packages.webp"),
    url("../assets/images/india-holiday-packages/kolkata.jpg");
}
@media (max-width: 991.98px) {
  .ihp-split__title {
    text-align: center;
  }
  .ihp-split__text {
    text-align: center;
  }
  .ihp-split__quote {
    text-align: center;
    border-left: none;
    border-top: 3px solid var(--gold);
    border-radius: 12px;
  }
  .ihp-split__badges {
    justify-content: center;
  }
}

/* Odisha Holiday Packages — odisha-holiday-packages.php */
.ohp-page .ohp-hero__overlay {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.35)
  );
}
.ohp-hero-swiper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ohp-hero__content {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  pointer-events: none;
}
.ohp-hero__content a,
.ohp-hero__content button {
  pointer-events: auto;
}
.ohp-hero__stats {
  pointer-events: auto;
}
.ohp-hero__main {
  flex: 1 1 320px;
  max-width: 620px;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ohp-hero__main .tbp-breadcrumb {
  width: 100%;
  margin-bottom: 0;
}
.ohp-hero__main .tbp-breadcrumb__list {
  margin-bottom: 1rem;
}
.ohp-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 0 1 auto;
  align-self: flex-end;
}
.ohp-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 1rem;
  min-width: 120px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}
.ohp-hero__stat:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 153, 58, 0.5);
}
.ohp-hero__stat-value {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}
.ohp-hero__stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

/* Split-screen story + video + featured tours */
.ohp-split-section {
  padding: 4rem 0 4.5rem;
  background-color: #ffffff;
  background-image:
    radial-gradient(
      circle at 12% 18%,
      rgba(200, 153, 58, 0.06) 0%,
      transparent 42%
    ),
    radial-gradient(
      circle at 88% 82%,
      rgba(28, 28, 28, 0.03) 0%,
      transparent 38%
    ),
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 48px,
      rgba(200, 153, 58, 0.018) 48px,
      rgba(200, 153, 58, 0.018) 49px
    );
}
.ohp-split__row {
  --ohp-split-gap: 2.5rem;
}
@media (min-width: 992px) {
  .ohp-split__row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: var(--ohp-split-gap);
  }
  .ohp-split__row > .order-lg-1 {
    flex: 0 0 55%;
    max-width: 55%;
    width: 55%;
  }
  .ohp-split__row > .order-lg-2 {
    flex: 0 0 calc(45% - var(--ohp-split-gap));
    max-width: calc(45% - var(--ohp-split-gap));
    width: calc(45% - var(--ohp-split-gap));
  }
}
.ohp-split__content {
  max-width: 600px;
}
.ohp-split__title {
  font-family: var(--font-sans);
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--tbp-charcoal);
  margin-bottom: 1.25rem;
}
.ohp-split__title em {
  color: var(--gold);
  font-style: normal;
}
.ohp-split__text {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.78;
  margin-bottom: 1.35rem;
}
.ohp-split__text p {
  margin-bottom: 0.85rem;
}
.ohp-split__text p:last-child {
  margin-bottom: 0;
}
.ohp-split__quote {
  margin: 0 0 1.35rem;
  padding: 1.15rem 1.35rem;
  max-width: 420px;
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.5;
  color: var(--tbp-charcoal);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(200, 153, 58, 0.45);
  border-left: 3px solid var(--gold);
  border-radius: 0 16px 16px 0;
  box-shadow: 0 8px 32px rgba(28, 28, 28, 0.06);
}
.ohp-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ohp-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--tbp-charcoal);
  background: var(--white);
  border: 1px solid rgba(200, 153, 58, 0.32);
  box-shadow: 0 2px 10px rgba(28, 28, 28, 0.05);
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}
.ohp-trust-badge i {
  color: var(--gold);
  font-size: 0.85rem;
}
.ohp-trust-badge:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(200, 153, 58, 0.14);
  transform: translateY(-2px);
}

/* Premium video card */
.ohp-video-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  background: var(--tbp-charcoal);
}
.ohp-video-card__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.4s ease;
}
.ohp-video-card__gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15));
  transition: opacity 0.4s ease;
}
.ohp-video-card__badge {
  position: absolute;
  left: 1.15rem;
  bottom: 1.15rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.ohp-video-card__badge i {
  color: var(--gold);
  font-size: 0.9rem;
}
.ohp-video-card__inner {
  position: relative;
  z-index: 0;
}
.ohp-video-card__inner iframe {
  border: 0;
  width: 100%;
  height: 100%;
}
.ohp-video-card--embed .ohp-video-card__inner,
.au-video-card--embed .au-video-card__inner {
  z-index: 1;
}

.ohp-video-card--embed .ohp-video-card__inner iframe,
.au-video-card--embed .au-video-card__inner iframe,
.hp-lux-video iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.ohp-video-card__play {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.ohp-video-card__play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.ohp-video-card__play-icon i {
  font-size: 2.1rem;
  margin-left: 4px;
}
.ohp-video-card__play:hover .ohp-video-card__play-icon {
  transform: scale(1.08);
  box-shadow: 0 14px 44px rgba(200, 153, 58, 0.45);
}
.ohp-video-card--playing .ohp-video-card__play,
.ohp-video-card--playing .ohp-video-card__poster,
.ohp-video-card--playing .ohp-video-card__gradient,
.ohp-video-card--playing .ohp-video-card__badge {
  opacity: 0;
  pointer-events: none;
}
.ohp-video-card--playing .ohp-video-card__inner {
  z-index: 3;
}

/* Featured tour cards below split */
.ohp-featured {
  margin-top: 4rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(28, 28, 28, 0.08);
}
.ohp-featured__header {
  margin-bottom: 2rem;
}
.ohp-featured-card {
  height: 340px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.ohp-featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(28, 28, 28, 0.14);
}
.ohp-featured-card .tbp-theme-card__body {
  padding-bottom: 1.5rem;
}
.ohp-featured-card .tbp-theme-card__title {
  margin-bottom: 0.85rem;
}

.ohp-pkg-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.ohp-pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(28F, 28, 28, 0.1);
}
.ohp-pkg-card .pkg-card-img {
  overflow: hidden;
}
.ohp-pkg-card .pkg-card-img img {
  transition: transform 0.45s ease;
}
.ohp-pkg-card:hover .pkg-card-img img {
  transform: scale(1.05);
}
.ohp-pkg-badge--cultural {
  background: var(--tbp-charcoal);
  color: var(--gold);
  border: 1px solid rgba(200, 153, 58, 0.4);
}
.ohp-feature-card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.ohp-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(28, 28, 28, 0.08);
}
.ohp-cta {
  background-image:
    url("../assets/images/odisha-packages.webp"),
    url("../assets/images/india-holiday-packages/kolkata.jpg");
}
@media (max-width: 767.98px) {
  .ohp-hero__content {
    flex-direction: column;
    align-items: flex-start;
  }
  .ohp-hero__main {
    align-self: flex-start;
    max-width: 100%;
  }
  .ohp-hero__stats {
    width: 100%;
  }
  .ohp-hero__stat {
    flex: 1 1 calc(50% - 0.35rem);
    min-width: 0;
  }
  .ohp-hero .tbp-hero__prev,
  .ohp-hero .tbp-hero__next {
    display: none !important;
  }
  .ohp-split-section {
    padding: 2.75rem 0 3rem;
  }
  .ohp-split__quote {
    max-width: 100%;
    border-radius: 12px;
    border-left: none;
    border-top: 3px solid var(--gold);
    text-align: center;
  }
  .ohp-trust-badges {
    justify-content: center;
  }
  .ohp-featured {
    margin-top: 2.75rem;
    padding-top: 2.5rem;
  }
  .ohp-featured-card {
    height: 300px;
  }
  .ohp-video-card__play-icon {
    width: 58px;
    height: 58px;
  }
  .ohp-video-card__play-icon i {
    font-size: 1.65rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .ohp-hero__stat {
    min-width: 110px;
  }
}

/* International Holiday Packages — international-holiday-packages.php */
.intl-page .intl-hero__overlay {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.35)
  );
}
.intl-hero-swiper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.intl-hero__content {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  pointer-events: none;
}
.intl-hero__content a,
.intl-hero__content button {
  pointer-events: auto;
}
.intl-hero__stats {
  pointer-events: auto;
}
.intl-hero__main {
  flex: 1 1 320px;
  max-width: 620px;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.intl-hero__main .tbp-breadcrumb {
  width: 100%;
  margin-bottom: 0;
}
.intl-hero__main .tbp-breadcrumb__list {
  margin-bottom: 1rem;
}
.intl-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 0 1 auto;
  align-self: flex-end;
}
.intl-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 1rem;
  min-width: 120px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}
.intl-hero__stat:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 153, 58, 0.5);
}
.intl-hero__stat-value {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}
.intl-hero__stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

/* Top destinations split */
.intl-top-section {
  padding: 4rem 0 4.5rem;
  background: #ffffff;
  background-image:
    radial-gradient(
      circle at 8% 12%,
      rgba(200, 153, 58, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 92% 88%,
      rgba(28, 28, 28, 0.03) 0%,
      transparent 38%
    ),
    repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 52px,
      rgba(200, 153, 58, 0.012) 52px,
      rgba(200, 153, 58, 0.012) 53px
    );
}
@media (min-width: 992px) {
  .intl-top__row {
    display: flex;
    flex-wrap: nowrap;
    gap: 2.5rem;
  }
  .intl-top__row > .order-lg-1 {
    flex: 0 0 55%;
    max-width: 55%;
    width: 55%;
  }
  .intl-top__row > .order-lg-2 {
    flex: 0 0 calc(45% - 2.5rem);
    max-width: calc(45% - 2.5rem);
    width: calc(45% - 2.5rem);
  }
}
.intl-top__content {
  max-width: 600px;
}
.intl-top__title {
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--tbp-charcoal);
  margin-bottom: 1.15rem;
}
.intl-top__title em {
  color: var(--gold);
  font-style: normal;
}
.intl-top__text {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 1.15rem;
}
.intl-top__text p {
  margin-bottom: 0.75rem;
}
.intl-top__text p:last-child {
  margin-bottom: 0;
}
.intl-top__quote {
  margin: 0 0 1.25rem;
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.55;
  color: var(--tbp-charcoal);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 153, 58, 0.4);
  border-left: 3px solid var(--gold);
  border-radius: 0 14px 14px 0;
  box-shadow: 0 8px 28px rgba(28, 28, 28, 0.06);
}
.intl-top__body {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.78;
}
.intl-top__body p {
  margin-bottom: 0.8rem;
}
.intl-top__body p:last-child {
  margin-bottom: 0;
}

/* Destination showcase 2x2 grid */
.intl-dest-grid {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}
@media (min-width: 768px) {
  .intl-dest-grid {
    display: grid;
  }
  .intl-dest-swiper {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  .intl-dest-swiper {
    display: block;
  }
}
.intl-dest-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 220px;
  display: block;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.intl-dest-card > img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.intl-dest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(28, 28, 28, 0.14);
}
.intl-dest-card:hover > img {
  transform: scale(1.07);
}
.intl-dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.2) 55%,
    rgba(0, 0, 0, 0.1) 100%
  );
}
.intl-dest-card__body {
  position: absolute;
  inset: auto 0 0;
  padding: 1rem 0.95rem 1.1rem;
  z-index: 2;
}
.intl-dest-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.intl-dest-card__price {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.65rem;
  letter-spacing: 0.03em;
}
.intl-dest-card--slide {
  min-height: 280px;
}
.intl-dest-card--slide > img {
  min-height: 280px;
}
.intl-dest-swiper {
  padding-bottom: 2rem;
}
.intl-dest-swiper__pagination {
  bottom: 0 !important;
}
.intl-dest-swiper__pagination .swiper-pagination-bullet {
  background: rgba(28, 28, 28, 0.25) !important;
  opacity: 1 !important;
}
.intl-dest-swiper__pagination .swiper-pagination-bullet-active {
  background: var(--gold) !important;
}

.intl-pkg-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.intl-pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(28, 28, 28, 0.1);
}
.intl-pkg-card .pkg-card-img {
  overflow: hidden;
}
.intl-pkg-card .pkg-card-img img {
  transition: transform 0.45s ease;
}
.intl-pkg-card:hover .pkg-card-img img {
  transform: scale(1.05);
}
.intl-why {
  background: var(--white);
}
.intl-feature-card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.intl-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(28, 28, 28, 0.08);
}

/* Travel services horizontal cards */
.intl-service-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.35rem 1.25rem;
  height: 100%;
  background: var(--white);
  border: 1px solid rgba(28, 28, 28, 0.08);
  border-radius: 16px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.intl-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(28, 28, 28, 0.08);
  border-color: rgba(200, 153, 58, 0.35);
}
.intl-service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200, 153, 58, 0.12);
  color: var(--gold);
  font-size: 1.2rem;
}
.intl-service-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--tbp-charcoal);
  margin: 0;
}
.intl-service-card__text {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Honeymoon split */
.intl-honeymoon__media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(28, 28, 28, 0.12);
}
.intl-honeymoon__media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.intl-honeymoon__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 50%);
  pointer-events: none;
}
.intl-honeymoon__title {
  text-align: left;
  margin-bottom: 0.85rem;
}
.intl-honeymoon__text {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.15rem;
}
.intl-honeymoon__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.intl-honeymoon-badge {
  display: inline-flex;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--tbp-charcoal);
  background: var(--white);
  border: 1px solid rgba(200, 153, 58, 0.32);
  box-shadow: 0 2px 8px rgba(28, 28, 28, 0.05);
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.intl-honeymoon-badge:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.intl-cta {
  background-image:
    url("../assets/images/international-holiday-packages.webp"),
    url("../assets/images/india-holiday-packages/kolkata.jpg");
  background-color: var(--tbp-charcoal);
}
.intl-faq {
  background: var(--tbp-ivory-deep);
}

@media (max-width: 767.98px) {
  .intl-hero__content {
    flex-direction: column;
    align-items: flex-start;
  }
  .intl-hero__main {
    align-self: flex-start;
    max-width: 100%;
  }
  .intl-hero__stats {
    width: 100%;
  }
  .intl-hero__stat {
    flex: 1 1 calc(33.33% - 0.45rem);
    min-width: 0;
  }
  .intl-hero .tbp-hero__prev,
  .intl-hero .tbp-hero__next {
    display: none !important;
  }
  .intl-top-section {
    padding: 2.75rem 0 3rem;
  }
  .intl-top__quote {
    border-radius: 12px;
    border-left: none;
    border-top: 3px solid var(--gold);
  }
  .intl-honeymoon__title {
    text-align: center;
  }
  .intl-honeymoon__text {
    text-align: center;
  }
  .intl-honeymoon__badges {
    justify-content: center;
  }
  .intl-honeymoon .btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .intl-hero__stat {
    min-width: 100px;
  }
  .intl-dest-card {
    min-height: 200px;
  }
  .intl-dest-card > img {
    min-height: 200px;
  }
}

/* About Us — about-us.php */
.au-page .au-hero {
  height: 350px;
}
.au-page .au-hero__overlay {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.4)
  );
}
.au-section {
  padding: 3.75rem 0;
  background: var(--white);
}
.au-section--ivory {
  background: var(--tbp-ivory, #f8f6f1);
}
.au-story__title {
  text-align: left;
  margin-bottom: 1rem;
}
.au-story__text {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.78;
  margin-bottom: 1.35rem;
}
.au-story__text p {
  margin-bottom: 0.85rem;
}
.au-story__text p:last-child {
  margin-bottom: 0;
}
.au-story__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 576px) {
  .au-story__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
.au-story__stat {
  padding: 0.85rem 0.75rem;
  text-align: center;
  background: var(--tbp-ivory, #f8f6f1);
  border-radius: 12px;
  border: 1px solid rgba(200, 153, 58, 0.25);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.au-story__stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(28, 28, 28, 0.08);
}
.au-story__stat-value {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 0.2rem;
}
.au-story__stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--tbp-charcoal, #1c1c1c);
}
.au-story__media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(28, 28, 28, 0.12);
}
.au-story__media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.au-story__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent 50%);
  pointer-events: none;
}
.au-video-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  background: var(--tbp-charcoal, #1c1c1c);
}
.au-video-card__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.4s ease;
}
.au-video-card__gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15));
}
.au-video-card__badge {
  position: absolute;
  left: 1.15rem;
  bottom: 1.15rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}
.au-video-card__badge i {
  color: var(--gold);
}
.au-video-card__inner {
  position: relative;
  z-index: 0;
}
.au-video-card__inner iframe {
  border: 0;
  width: 100%;
  height: 100%;
}
.au-video-card__play {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.au-video-card__play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.au-video-card__play-icon i {
  font-size: 2.1rem;
  margin-left: 4px;
}
.au-video-card__play:hover .au-video-card__play-icon {
  transform: scale(1.08);
  box-shadow: 0 14px 44px rgba(200, 153, 58, 0.45);
}
.au-video-card--playing .au-video-card__play,
.au-video-card--playing .au-video-card__poster,
.au-video-card--playing .au-video-card__gradient,
.au-video-card--playing .au-video-card__badge {
  opacity: 0;
  pointer-events: none;
}
.au-video-card--playing .au-video-card__inner {
  z-index: 3;
}
.au-expertise-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.25rem 1.1rem;
  height: 100%;
  background: var(--white);
  border: 1px solid rgba(28, 28, 28, 0.08);
  border-radius: 14px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.au-expertise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(28, 28, 28, 0.1);
  border-color: rgba(200, 153, 58, 0.35);
}
.au-expertise-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(200, 153, 58, 0.12);
  color: var(--gold);
  font-size: 1.15rem;
}
.au-expertise-card__title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--tbp-charcoal, #1c1c1c);
  margin: 0;
  line-height: 1.35;
}
.au-expertise-card__text {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  flex-grow: 1;
}
.au-glass-card {
  padding: 1.35rem 1.2rem;
  height: 100%;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(200, 153, 58, 0.22);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(28, 28, 28, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.au-glass-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(28, 28, 28, 0.1);
  border-color: rgba(200, 153, 58, 0.45);
}
.au-glass-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 0.65rem;
  background: rgba(200, 153, 58, 0.12);
  color: var(--gold);
  font-size: 1.2rem;
}
.au-glass-card__title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--tbp-charcoal, #1c1c1c);
  margin: 0 0 0.4rem;
}
.au-glass-card__text {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.au-timeline-section {
  background: var(--white);
}
.au-timeline--horizontal {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  position: relative;
  padding-top: 2rem;
}
.au-timeline--horizontal::before {
  content: "";
  position: absolute;
  top: 2.35rem;
  left: 4%;
  right: 4%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(200, 153, 58, 0.25));
}
.au-timeline--vertical {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 1.5rem;
  border-left: 2px solid rgba(200, 153, 58, 0.35);
}
.au-timeline__item {
  position: relative;
}
.au-timeline--horizontal .au-timeline__item {
  text-align: center;
  padding: 0 0.35rem;
}
.au-timeline--vertical .au-timeline__item {
  padding: 0 0 1.75rem 1.25rem;
}
.au-timeline--vertical .au-timeline__item:last-child {
  padding-bottom: 0;
}
.au-timeline__year {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.au-timeline__dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px rgba(200, 153, 58, 0.35);
  margin: 0 auto 0.65rem;
}
.au-timeline--vertical .au-timeline__dot {
  position: absolute;
  left: -1.56rem;
  top: 0.15rem;
  margin: 0;
}
.au-timeline__title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--tbp-charcoal, #1c1c1c);
  margin: 0 0 0.35rem;
  line-height: 1.35;
}
.au-timeline__text {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.au-cta {
  background-image:
    url("../assets/images/odisha-packages.webp"),
    url("../assets/images/india-holiday-packages/kolkata.jpg");
  background-color: var(--tbp-charcoal, #1c1c1c);
}
@media (max-width: 767.98px) {
  .au-page .au-hero {
    height: 250px;
  }
  .au-section {
    padding: 2.75rem 0;
  }
  .au-story__title {
    text-align: center;
  }
  .au-story__text {
    text-align: center;
  }
  .au-video-card__play-icon {
    width: 58px;
    height: 58px;
  }
  .au-video-card__play-icon i {
    font-size: 1.65rem;
  }
}

/* Cab Transport — cab-transport.php full-width hero + floating widget */
@keyframes cabWidgetFloat {
  0%,
  100% {
    transform: translateY(-50%) translateY(0);
  }
  50% {
    transform: translateY(-50%) translateY(-8px);
  }
}

@keyframes cabWidgetFloatTablet {
  0%,
  100% {
    transform: translate(-50%, 42%) translateY(0);
  }
  50% {
    transform: translate(-50%, 42%) translateY(-6px);
  }
}

.page-cab-transport .cab-hero-float {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.page-cab-transport .cab-hero-float__stage {
  position: relative;
  width: 100%;
}

.page-cab-transport .cab-hero-float__stage .hero-swiper {
  width: 100%;
  max-height: none;
}

.page-cab-transport .cab-hero-widget,
.page-cab-transport .transport-search-widget {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Desktop 1200px+ — floating widget overlaps hero bottom edge */
@media (min-width: 1200px) {
  .page-cab-transport .cab-hero-float {
    overflow: visible;
  }

  .page-cab-transport .cab-hero-float__stage .hero-swiper {
    height: 650px;
    min-height: 650px;
  }

  .page-cab-transport .cab-hero-widget,
  .page-cab-transport .transport-search-widget {
    position: absolute;
    top: 50%;
    right: 8%;
    left: auto;
    bottom: auto;
    width: 520px;
    max-width: calc(100% - 2rem);
    z-index: 100;
    transform: translateY(-50%);
    /* animation: cabWidgetFloat 4s ease-in-out infinite; */
  }

  .page-cab-transport .stats-bar {
    margin-top: 0;
  }
}

.page-cab-transport .cab-hero-widget__title {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.page-cab-transport .cab-hero-widget__sub {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0 0 1rem;
  line-height: 1.55;
  font-weight: 400;
}

.page-cab-transport .cab-hero-widget__divider {
  display: block;
  height: 1px;
  margin: 0 0 1.15rem;
  background: linear-gradient(
    to right,
    rgba(200, 153, 58, 0.45),
    rgba(229, 231, 235, 0.9),
    transparent
  );
  border: none;
}

.page-cab-transport .cab-hero-widget__tabs {
  width: 100% !important;
  padding: 0 !important;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
  justify-content: stretch !important;
}

.page-cab-transport .cab-hero-widget__tabs .search-tab {
  flex: 1 1 50%;
  justify-content: center;
  padding: 0.7rem 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.02em;
}

.page-cab-transport .cab-hero-widget__tabs .search-tab.active {
  color: #173508;
}

.page-cab-transport .cab-hero-widget__tabs .search-tab.active::after {
  background: #c8993a;
}

.page-cab-transport .cab-hero-widget__form {
  padding: 0 !important;
}

.page-cab-transport .cab-search-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: end;
}

.page-cab-transport .cab-search-grid__full {
  grid-column: 1 / -1;
}

.page-cab-transport .cab-hero-widget .form-group {
  gap: 5px;
  margin: 0;
  min-width: 0;
}

.page-cab-transport .cab-hero-widget .form-group label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #374151;
  line-height: 1.2;
}

.page-cab-transport .cab-field-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.page-cab-transport .cab-field-wrap__icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.95rem;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}

.page-cab-transport .cab-hero-widget .form-select,
.page-cab-transport .cab-hero-widget .form-control {
  height: 52px;
  min-height: 52px;
  padding: 0 12px 0 2.35rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 0.875rem;
  color: #111827;
  box-shadow: none;
  width: 100%;
}

.page-cab-transport .cab-hero-widget .form-select {
  padding-right: 2rem;
  background-image: var(
    --bs-form-select-bg-img,
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23374151' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e")
  );
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  background-size: 14px 10px;
}

.page-cab-transport .cab-hero-widget .form-select:focus,
.page-cab-transport .cab-hero-widget .form-control:focus {
  border-color: #c8993a;
  box-shadow: 0 0 0 4px rgba(200, 153, 58, 0.15);
  background-color: #ffffff;
  outline: none;
}

.page-cab-transport .cab-hero-widget__submit {
  width: 100%;
  height: 52px;
  min-height: 52px;
  margin-top: 0;
  align-self: stretch;
  background: #173508 !important;
  border-color: #173508 !important;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(23, 53, 8, 0.22);
  white-space: nowrap;
}

.page-cab-transport .cab-hero-widget__submit:hover,
.page-cab-transport .cab-hero-widget__submit:focus-visible {
  background: #c8993a !important;
  border-color: #c8993a !important;
  color: #111827 !important;
}

.page-cab-transport .stats-bar {
  position: relative;
  z-index: 2;
  margin-top: 0;
}

/* Tablet 768px–1199px — reduced overlap, widget sits on hero lower edge */
@media (min-width: 768px) and (max-width: 1199.98px) {
  .page-cab-transport .cab-hero-float {
    padding-bottom: 11rem;
    overflow: visible;
  }

  .page-cab-transport .cab-hero-float__stage .hero-swiper {
    height: 520px;
    min-height: 520px;
  }

  .page-cab-transport .cab-hero-widget,
  .page-cab-transport .transport-search-widget {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 90%;
    max-width: 560px;
    z-index: 100;
    transform: translate(-50%, 42%);
    animation: cabWidgetFloatTablet 4s ease-in-out infinite;
  }

  .page-cab-transport .stats-bar {
    margin-top: 0;
    padding-top: 1.5rem;
  }
}

/* Mobile below 768px — document flow: hero → search → stats */
@media (max-width: 767.98px) {
  .page-cab-transport .cab-hero-float {
    padding-bottom: 0;
    overflow: hidden;
  }

  .page-cab-transport .cab-hero-float__stage {
    display: flex;
    flex-direction: column;
  }

  .page-cab-transport .cab-hero-float__stage .hero-swiper {
    order: 1;
    flex-shrink: 0;
    height: min(68vh, 420px);
    min-height: 340px;
  }

  .page-cab-transport .cab-hero-widget,
  .page-cab-transport .transport-search-widget {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    order: 2;
    transform: none;
    width: calc(100% - 2rem);
    max-width: none;
    margin: 1.25rem auto 1.5rem;
    padding: 22px;
    border-radius: 20px;
    z-index: 1;
    animation: none;
  }

  .page-cab-transport .cab-search-grid {
    grid-template-columns: 1fr;
  }

  .page-cab-transport .stats-bar {
    margin-top: 0;
    padding-top: 1.35rem;
    padding-bottom: 1.5rem;
  }

  .page-cab-transport .stats-bar .stat-item {
    padding: 0.75rem 0.5rem;
  }

  .page-cab-transport .airport-side-panel-sticky {
    position: relative !important;
    top: auto !important;
    overflow-y: visible;
  }

  .page-cab-transport .hero-content h1 {
    font-size: clamp(1.65rem, 6vw, 2.1rem);
  }

  .page-cab-transport .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
}

/* Small mobile */
@media (max-width: 575.98px) {
  .page-cab-transport .cab-hero-float__stage .hero-swiper {
    min-height: 300px;
    height: min(62vh, 380px);
  }

  .page-cab-transport .cab-hero-widget,
  .page-cab-transport .transport-search-widget {
    width: calc(100% - 1.25rem);
    margin-top: 1rem;
    margin-bottom: 1.25rem;
    padding: 18px;
    border-radius: 18px;
  }

  .page-cab-transport .cab-hero-widget__title {
    font-size: 1.15rem;
  }

  .page-cab-transport .cab-hero-widget .form-select,
  .page-cab-transport .cab-hero-widget .form-control,
  .page-cab-transport .cab-hero-widget__submit {
    height: 48px;
    min-height: 48px;
  }

  .page-cab-transport .stat-num {
    font-size: 1.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-cab-transport .cab-hero-widget,
  .page-cab-transport .transport-search-widget {
    animation: none;
  }
}

/* Ticket Services — ticket-services.php */
.ts-page {
  --ts-charcoal: #1c1c1c;
  --ts-ivory: #f8f6f1;
  --ts-ivory-deep: #f0ece4;
}

.ts-hero {
  height: 350px;
}

.ts-hero__overlay {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.4)
  ) !important;
}

.ts-split {
  background: var(--ts-ivory);
}

.ts-form-sticky {
  position: relative;
}

@media (min-width: 992px) {
  .ts-form-sticky {
    position: sticky;
    top: 96px;
  }
}

.ts-form-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border: 1px solid rgba(200, 153, 58, 0.12);
}

.ts-form-card__head {
  margin-bottom: 1.35rem;
}

.ts-form-card__title {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ts-charcoal);
  margin: 0 0 0.45rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.ts-form-card__sub {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

.ts-select-wrap {
  position: relative;
}

.ts-select-wrap__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.4rem;
}

.ts-select {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  font-size: 0.92rem;
  color: var(--ts-charcoal);
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  appearance: auto;
}

.ts-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 153, 58, 0.15);
}

.ts-select-wrap.is-invalid .ts-select {
  border-color: #dc3545;
}

.ts-select-wrap.is-invalid .cu-form__invalid {
  display: block;
}

.ts-form__submit {
  height: 54px;
  margin-top: 0.25rem;
  background: #173508 !important;
  border-color: #173508 !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(23, 53, 8, 0.2);
}

.ts-form__submit:hover,
.ts-form__submit:focus-visible {
  background: #c8993a !important;
  border-color: #c8993a !important;
  color: #111827 !important;
}

.ts-form__success {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  color: #173508;
  font-weight: 500;
}

.ts-split-content__text {
  color: #4b5563;
  font-size: 0.94rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.ts-split-content__text p {
  margin-bottom: 0.85rem;
}

.ts-advantages__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .ts-advantages__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .ts-advantages__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ts-advantage-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  height: 100%;
  min-height: 120px;
  padding: 1.15rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(28, 28, 28, 0.08);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(28, 28, 28, 0.04);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.ts-advantage-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(28, 28, 28, 0.08);
  border-color: rgba(200, 153, 58, 0.35);
}

.ts-advantage-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(200, 153, 58, 0.12);
  color: var(--gold);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.ts-advantage-card__title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ts-charcoal);
  margin: 0;
  line-height: 1.45;
}

.ts-why {
  background: #fff;
}

.ts-feature-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: 100%;
  height: 100%;
  padding: 1.25rem 1.1rem;
  background: var(--ts-ivory);
  border: 1px solid rgba(200, 153, 58, 0.18);
  border-radius: 16px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.ts-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(28, 28, 28, 0.08);
  border-color: rgba(200, 153, 58, 0.45);
}

.ts-feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200, 153, 58, 0.12);
  color: var(--gold);
  font-size: 1.2rem;
}

.ts-feature-card__title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ts-charcoal);
  margin: 0;
  line-height: 1.35;
}

.ts-feature-card__text {
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.55;
  margin: 0;
  flex-grow: 1;
}

.ts-services {
  background: var(--ts-ivory-deep);
}

.ts-service-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  height: 100%;
  min-height: 130px;
  padding: 1.25rem 1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(28, 28, 28, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.ts-service-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(28, 28, 28, 0.1);
  border-color: rgba(200, 153, 58, 0.35);
}

.ts-service-tile__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(200, 153, 58, 0.12);
  color: var(--gold);
  font-size: 1.25rem;
}

.ts-service-tile__title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ts-charcoal);
  margin: 0;
  line-height: 1.35;
}

.ts-cta__overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82),
    rgba(0, 0, 0, 0.45)
  ) !important;
}

.ts-faq {
  background: var(--ts-ivory);
}

.ts-faq .section-title {
  color: var(--ts-charcoal);
}

.ts-faq .section-title em {
  color: var(--gold);
}

.ts-faq-list {
  margin: 0;
  padding-left: 1.15rem;
  line-height: 1.7;
}

.ts-faq-list li {
  margin-bottom: 0.25rem;
}

.page-ticket-services .section-label {
  color: var(--gold);
}

@media (max-width: 991.98px) {
  .ts-hero {
    height: 300px;
  }
}

@media (max-width: 575.98px) {
  .ts-hero {
    height: 250px;
  }

  .ts-form-card {
    padding: 1.35rem 1.15rem;
    border-radius: 20px;
  }
}

/* ==========================================================================
   Visa Assistance — premium landing (visa-assistance.php)
   ========================================================================== */

.va-page {
  background: #f4f2ec;
  overflow-x: hidden;
}

.va-page .container-xl {
  max-width: 1320px;
}

/* Shared section typography */
.va-sec {
  padding: clamp(2.75rem, 5vw, 4rem) 0;
  background: #fff;
}

.va-sec--ivory {
  background: #f8f6f1;
}

.va-sec--pattern {
  background-color: #f8f6f1;
  background-image:
    radial-gradient(rgba(200, 153, 58, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
}

.va-sec-head {
  margin-bottom: 2rem;
}

.va-sec-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.5rem;
}

.va-sec-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.va-sec-label.justify-content-center::before {
  display: none;
}

.va-sec-title {
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 700;
  color: #152510;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.va-sec-title em {
  color: var(--gold);
  font-style: italic;
}

.va-sec-sub {
  color: #5c6b78;
  font-size: 0.94rem;
  margin: 0 auto;
  max-width: 540px;
  line-height: 1.6;
}

/* SECTION 1 — Hero */
.va-hero {
  position: relative;
  height: 350px;
  overflow: hidden;
  background: var(--green);
}

.va-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
}

.va-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 22, 5, 0.88) 0%, rgb(0 0 0 / 62%) 48%, rgba(0, 0, 0, 0.45) 100%);
}

.va-hero__grid {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1rem 2rem;
}

.va-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  list-style: none;
  margin: 0 0 auto;
  padding: 0;
  font-size: 0.8rem;
}

.va-breadcrumb__list li + li::before {
  content: "›";
  margin-right: 8px;
  opacity: 0.65;
  color: #fff;
}

.va-breadcrumb__list a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.va-breadcrumb__list a:hover {
  color: var(--gold-light);
}

.va-breadcrumb__list li[aria-current="page"] {
  color: var(--gold-light);
}

.va-hero__main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: end;
  flex: 1;
}

.va-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  margin-bottom: 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.va-hero__badge i {
  color: var(--gold-light);
}

.va-hero__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-sans);
  font-size: clamp(1.65rem, 4vw, 2.65rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.va-hero__sub {
  margin: 0 0 1.15rem;
  max-width: 480px;
  font-size: clamp(0.92rem, 1.8vw, 1.05rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

.va-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.va-hero__glass {
  align-self: center;
  min-width: 240px;
  padding: 1.15rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.va-hero__glass-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.va-hero__glass-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
}

.va-hero__glass-list i {
  color: var(--gold-light);
  font-size: 0.95rem;
}

/* SECTION 2 — Video + intro */
.va-video-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
  border: 1px solid rgba(23, 53, 8, 0.08);
  background: #0a0a0a;
  /* height: 100%; */
}

.va-video-wrap__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 999px;
  background: rgba(23, 53, 8, 0.82);
  border: 1px solid rgba(200, 153, 58, 0.4);
}

.va-video-wrap__badge i {
  color: var(--gold-light);
}

.va-video-wrap__player {
  display: block;
  width: 100%;
  /* aspect-ratio: 9 / 16; */
  object-fit: contain;
}

.va-intro-panel {
  height: 100%;
  padding: 1.5rem 1.35rem;
  border-radius: 20px;
  border: 1px solid rgba(23, 53, 8, 0.07);
  background: #fff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
}

.va-intro-panel__lead {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green);
  margin: 0 0 1.15rem;
}

.va-intro-blocks {
  margin-bottom: 1.25rem;
}

.va-intro-block {
  display: flex;
  gap: 0.85rem;
  height: 100%;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(23, 53, 8, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.va-intro-block__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 153, 58, 0.14);
  color: var(--gold);
  font-size: 1.1rem;
}

.va-intro-block__title {
  margin: 0 0 0.25rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--green);
}

.va-intro-block__text {
  margin: 0 0 0.4rem;
  font-size: 0.84rem;
  color: #5c6b78;
  line-height: 1.55;
}

.va-intro-block__checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.va-intro-block__checks li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #334155;
}

.va-intro-block__checks i {
  color: var(--gold);
}

.va-intro-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* SECTION 3 — Folder document cards */
.va-folder-card {
  position: relative;
  padding: 1.5rem 1.15rem 1.15rem;
  border-radius: 0 14px 14px 14px;
  background: linear-gradient(160deg, #fff 0%, #faf8f4 100%);
  border: 1px solid rgba(23, 53, 8, 0.08);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.va-folder-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(23, 53, 8, 0.12);
}

.va-folder-card__tab {
  position: absolute;
  top: -10px;
  left: 0;
  width: 72px;
  height: 14px;
  border-radius: 8px 8px 0 0;
  background: var(--gold);
}

.va-folder-card__icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.65rem;
  border-radius: 11px;
  background: rgba(23, 53, 8, 0.06);
  color: var(--green);
  font-size: 1.2rem;
}

.va-folder-card__title {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--green);
}

.va-folder-card__desc {
  margin: 0;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
}

/* SECTION 4 — Journey timeline */
.va-journey {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 0;
  position: relative;
}

.va-journey::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(200, 153, 58, 0.25));
  z-index: 0;
}

.va-journey__step {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.35rem;
  min-width: 0;
}

.va-journey__node {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--gold-light);
  font-size: 1.2rem;
  box-shadow: 0 8px 24px rgba(23, 53, 8, 0.22);
  margin-bottom: 0.5rem;
}

.va-journey__num {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
}

.va-journey__label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.3;
}

.va-journey__arrow {
  display: none;
  color: var(--gold);
  font-size: 0.9rem;
  line-height: 1;
}

.va-journey__arrow-d {
  display: none;
}

.text-center .va-sec-label {
  justify-content: center;
}

.va-faq-acc__item .accordion-button::after {
  display: none;
}

/* SECTION 5 — Why + glass cards */
.va-why-slider {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
  background: var(--green);
}

.va-why-swiper,
.va-why-swiper .swiper-wrapper,
.va-why-swiper .swiper-slide {
  min-height: 380px;
  height: 100%;
}

.va-why-swiper .swiper-wrapper {
  padding-bottom: 0 !important;
}

.va-why-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.va-why-swiper__pagination {
  bottom: 12px !important;
}

.va-why-swiper__pagination .swiper-pagination-bullet {
  width: 7px !important;
  height: 7px !important;
  background: rgba(255, 255, 255, 0.5) !important;
  opacity: 1 !important;
}

.va-why-swiper__pagination .swiper-pagination-bullet-active {
  background: var(--gold) !important;
}

.va-glass-card {
  padding: 1.15rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.va-glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(23, 53, 8, 0.1);
}

.va-glass-card__icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.55rem;
  border-radius: 50%;
  background: rgba(200, 153, 58, 0.16);
  color: var(--gold);
  font-size: 1.05rem;
}

.va-glass-card__title {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--green);
}

.va-glass-card__text {
  margin: 0;
  font-size: 0.82rem;
  color: #5c6b78;
  line-height: 1.55;
}

/* SECTION 6 — Counters */
.va-counters {
  background-color: #f0ede6;
  background-image:
    radial-gradient(rgba(23, 53, 8, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #f4f2ec 0%, #ebe7de 100%);
  background-size: 24px 24px, 100% 100%;
}

.va-counter-card {
  text-align: center;
  padding: 1.35rem 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(200, 153, 58, 0.22);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.va-counter-card__value {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.va-counter-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

/* SECTION 7 — Destination premium cards */
.va-dest-swiper {
  position: relative;
  padding-bottom: 2.75rem;
}

.va-dest-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.va-dest-premium {
  position: relative;
  display: block;
  width: 100%;
  height: 320px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
  transition: transform 0.35s ease;
}

.va-dest-premium:hover {
  transform: translateY(-8px);
}

.va-dest-premium img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.va-dest-premium:hover img {
  transform: scale(1.07);
}

.va-dest-premium__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 5, 0.92) 0%, rgba(10, 22, 5, 0.15) 55%, transparent 100%);
}

.va-dest-premium__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.15rem 1.2rem;
}

.va-dest-premium__name {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
}

.va-dest-premium__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.va-dest-swiper__prev,
.va-dest-swiper__next {
  position: absolute;
  top: 42%;
  z-index: 2;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  border: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: transform 0.25s ease;
}

.va-dest-swiper__prev { left: 4px; }
.va-dest-swiper__next { right: 4px; }

.va-dest-swiper__prev:hover,
.va-dest-swiper__next:hover {
  transform: scale(1.06);
}

.va-dest-swiper__pagination .swiper-pagination-bullet {
  background: rgba(23, 53, 8, 0.25) !important;
  opacity: 1 !important;
}

.va-dest-swiper__pagination .swiper-pagination-bullet-active {
  background: var(--gold) !important;
}

/* SECTION 8 — FAQ */
.va-faq-acc {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.va-faq-acc__item {
  border: 1px solid rgba(23, 53, 8, 0.08) !important;
  border-radius: 14px !important;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.04);
}

.va-faq-acc__item .accordion-button {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  background: #fff;
  padding: 1.1rem 1.2rem;
  box-shadow: none;
}

.va-faq-acc__item .accordion-button:not(.collapsed) {
  background: rgba(200, 153, 58, 0.08);
}

.va-faq-acc__item .accordion-button:not(.collapsed) .va-faq-acc__icon i {
  transform: rotate(180deg);
  color: var(--gold);
}

.va-faq-acc__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(23, 53, 8, 0.06);
}

.va-faq-acc__icon i {
  font-size: 1rem;
  color: var(--green);
  transition: transform 0.3s ease, color 0.3s ease;
}

.va-faq-acc__q {
  flex: 1;
  text-align: left;
  line-height: 1.45;
}

.va-faq-acc__body {
  font-size: 0.88rem;
  color: #4a5d6a;
  line-height: 1.7;
  padding: 0 1.2rem 1.15rem 3.5rem;
}

/* SECTION 9 — Final CTA */
.va-final-cta {
  position: relative;
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  overflow: hidden;
  background: var(--green);
}

.va-final-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.va-final-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgb(0 0 0 / 85%) 0%, rgb(8 18 3 / 55%) 48%, rgb(12 26 4 / 20%) 100%);
}

.va-final-cta__inner {
  position: relative;
  z-index: 1;
}

.va-final-cta__title {
  margin: 0 0 1.35rem;
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

.va-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Responsive */
@media (max-width: 991.98px) {
  .va-hero__main {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .va-hero__glass {
    align-self: stretch;
    min-width: 0;
  }

  .va-hero__glass-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
  }

  .va-journey {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-width: 320px;
    margin: 0 auto;
  }

  .va-journey::before {
    top: 0;
    bottom: 0;
    left: 27px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--gold), rgba(200, 153, 58, 0.2));
  }

  .va-journey__step {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto auto;
    align-items: center;
    text-align: left;
    gap: 0.1rem 0.85rem;
    padding: 0 0 1.35rem 0;
  }

  .va-journey__node {
    grid-row: 1 / 3;
    margin-bottom: 0;
    width: 48px;
    height: 48px;
    font-size: 1.05rem;
    align-self: center;
  }

  .va-journey__num,
  .va-journey__label {
    display: block;
    grid-column: 2;
  }

  .va-journey__arrow {
    display: flex;
    justify-content: center;
    grid-column: 1 / -1;
    margin: 0.25rem 0 0;
  }

  .va-why-swiper,
  .va-why-swiper .swiper-slide img {
    min-height: 300px;
  }
}

@media (max-width: 767.98px) {
  .va-hero {
    height: auto;
    min-height: 250px;
  }

  .va-hero__grid {
    min-height: 0;
    padding-bottom: 1.25rem;
  }

  .va-hero__title {
    font-size: 1.55rem;
  }

  .va-hero__sub {
    font-size: 0.88rem;
    margin-bottom: 0.85rem;
  }

  .va-hero__actions .btn-lg {
    padding: 0.55rem 1rem;
    font-size: 0.88rem;
  }

  .va-hero__glass-list {
    grid-template-columns: 1fr;
  }

  .va-faq-acc__body {
    padding-left: 1.2rem;
  }

  .va-intro-panel {
    padding: 1.2rem 1rem;
  }
}

@media (max-width: 575.98px) {

  .va-hero__actions .btn,
  .va-intro-panel__actions .btn,
  .va-final-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .va-dest-premium {
    height: 260px;
  }
}

/* Payment Policy — payment-policy.php */
.pp-page .pp-hero {
  height: 350px;
}

.pp-page .pp-hero__overlay {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.42)
  );
}

.pp-section {
  padding: clamp(3rem, 5vw, 3.75rem) 0;
  background: var(--white);
}

.pp-section--ivory {
  background: var(--tbp-ivory, #f8f6f1);
}

.pp-sec-head {
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.pp-sec-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.pp-sec-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.pp-sec-label.justify-content-center::before {
  display: none;
}

.pp-sec-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 600;
  color: var(--green);
  line-height: 1.25;
}

.pp-sec-title em {
  font-style: italic;
  color: var(--gold);
}

.pp-intro-card {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(200, 153, 58, 0.22);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(28, 28, 28, 0.07);
}

.pp-section--ivory .pp-intro-card {
  background: var(--white);
}

.pp-intro-card .section-title {
  margin-bottom: 0.45rem;
}

.pp-intro-card__sub {
  margin: 0 0 1.15rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green);
}

.pp-intro-card__text {
  margin: 0 auto;
  max-width: 52rem;
  font-size: 0.92rem;
  line-height: 1.78;
  color: var(--muted);
}

.pp-policy-card {
  padding: 1.35rem 1.25rem 1.2rem;
  background: var(--white);
  border: 1px solid rgba(23, 53, 8, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.pp-policy-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 153, 58, 0.35);
  box-shadow: 0 16px 36px rgba(23, 53, 8, 0.1);
}

.pp-policy-card__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  border-radius: 12px;
  background: rgba(23, 53, 8, 0.06);
  color: var(--green);
  font-size: 1.25rem;
}

.pp-policy-card__title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.35;
}

.pp-policy-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pp-policy-card__list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.55rem;
  font-size: 0.86rem;
  line-height: 1.65;
  color: #4a5d6a;
}

.pp-policy-card__list li:last-child {
  margin-bottom: 0;
}

.pp-policy-card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.pp-notice {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: linear-gradient(135deg, rgba(200, 153, 58, 0.12), rgba(23, 53, 8, 0.05));
  border: 1px solid rgba(200, 153, 58, 0.35);
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(28, 28, 28, 0.06);
}

.pp-notice__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(200, 153, 58, 0.18);
  color: var(--gold);
  font-size: 1.2rem;
}

.pp-notice__title {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
}

.pp-notice__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pp-notice__list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #4a5d6a;
}

.pp-notice__list li:last-child {
  margin-bottom: 0;
}

.pp-notice__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.pp-final-cta__text {
  max-width: 42rem;
  margin: 0 auto 1.35rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 767.98px) {
  .pp-page .pp-hero {
    height: 320px;
  }

  .pp-notice {
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .pp-page .pp-hero {
    height: 300px;
  }

  .pp-final-cta .va-final-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Legal pages — terms-and-conditions.php, privacy-policy.php */
.legal-section {
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
  background: var(--tbp-ivory, #f8f6f1);
}

.legal-content-card {
  background: #fff;
  border: 1px solid rgba(23, 53, 8, 0.08);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(28, 28, 28, 0.07);
  padding: 40px;
}

.legal-content-card__title {
  margin: 0 0 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(200, 153, 58, 0.28);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--green);
  line-height: 1.3;
}

.legal-block {
  margin-bottom: 2rem;
}

.legal-block--last {
  margin-bottom: 0;
}

.legal-block__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.35;
}

.legal-block__text {
  margin: 0 0 1rem;
  font-size: 0.94rem;
  line-height: 1.78;
  color: var(--muted);
}

.legal-block__text:last-child {
  margin-bottom: 0;
}

.legal-block__text--lead {
  font-size: 1rem;
  color: #374151;
}

.legal-block__list {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.legal-block__list li {
  margin-bottom: 0.35rem;
}

.legal-block__list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .legal-content-card {
    padding: 28px 24px;
  }
}

@media (max-width: 575.98px) {
  .legal-content-card {
    padding: 24px 18px;
  }

  .legal-section {
    padding: 2rem 0;
  }
}

/* Cancellation & Refund Policy — cancellation-refund-policy.php */
.crp-intro-card__icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(23, 53, 8, 0.07);
  color: var(--green);
  font-size: 1.45rem;
}

.crp-charge-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.15rem 1.15rem;
  background: var(--white);
  border: 1px solid rgba(23, 53, 8, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.crp-charge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(23, 53, 8, 0.1);
}

.crp-charge-card--success {
  border-top: 4px solid #2e7d32;
}

.crp-charge-card--warning {
  border-top: 4px solid var(--gold);
}

.crp-charge-card--danger {
  border-top: 4px solid #c62828;
}

.crp-charge-card--success .crp-charge-card__icon {
  color: #2e7d32;
  background: rgba(46, 125, 50, 0.1);
}

.crp-charge-card--warning .crp-charge-card__icon {
  color: var(--gold);
  background: rgba(200, 153, 58, 0.14);
}

.crp-charge-card--danger .crp-charge-card__icon {
  color: #c62828;
  background: rgba(198, 40, 40, 0.1);
}

.crp-charge-card__icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  font-size: 1.25rem;
}

.crp-charge-card__window {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.35;
}

.crp-charge-card__body {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px dashed rgba(23, 53, 8, 0.12);
}

.crp-charge-card__label {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.crp-charge-card__value {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.45;
}

.crp-charge-card__value--solo {
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
}

.crp-charge-card__refund {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: var(--tbp-ivory, #f8f6f1);
}

.crp-charge-card__refund-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.crp-charge-card__refund-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gold);
}

.crp-charge-card--success .crp-charge-card__refund-value {
  color: #2e7d32;
}

.crp-charge-card--danger .crp-charge-card__refund-value {
  color: #c62828;
  font-size: 0.82rem;
}

.crp-support-card {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: var(--white);
  border: 1px solid rgba(200, 153, 58, 0.22);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(28, 28, 28, 0.07);
}

.crp-support-card__icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: rgba(23, 53, 8, 0.07);
  color: var(--green);
  font-size: 1.4rem;
}

.crp-support-card__text {
  max-width: 40rem;
  margin: 0.75rem auto 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--muted);
}

.crp-support-card__contacts {
  list-style: none;
  margin: 1.5rem 0 1.35rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.crp-support-card__contacts li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  background: var(--tbp-ivory, #f8f6f1);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
}

.crp-support-card__contacts i {
  color: var(--gold);
  font-size: 1rem;
}

.crp-support-card__contacts a {
  color: inherit;
  text-decoration: none;
}

.crp-support-card__contacts a:hover {
  color: var(--gold);
}

.crp-support-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

@media (max-width: 575.98px) {
  .crp-support-card__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Global floating cab booking widget — site-wide
   ========================================================================== */

.swosti-cab-tab {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1038;
  pointer-events: none;
}

.swosti-cab-tab__btn {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 46px;
  padding: 0.85rem 0.55rem 0.75rem;
  border: none;
  border-radius: 0 14px 14px 0;
  position: relative;
  isolation: isolate;
  background: transparent;
  color: #fff;
  box-shadow: 0 8px 28px rgba(23, 53, 8, 0.28);
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    padding 0.28s ease;
}

/* Animated green → gold border sweep */
.swosti-cab-tab__btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  left: 0;
  border-radius: 0 16px 16px 0;
  background: conic-gradient(
    from 0deg,
    var(--green) 0deg,
    #c8993a 72deg,
    var(--green2) 144deg,
    #e0b55a 216deg,
    var(--green) 288deg,
    #c8993a 360deg
  );
  animation: swostiCabBorderSpin 2.8s linear infinite;
  pointer-events: none;
  z-index: 0;
}

/* Static green fill inside animated border */
.swosti-cab-tab__btn::after {
  content: "";
  position: absolute;
  inset: 2px;
  left: 0;
  border-radius: 0 12px 12px 0;
  /* background: linear-gradient(185deg, var(--green) 0%, var(--gold) 100%); */
  background-color:#013A19 ;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
  pointer-events: none;
  z-index: 0;
}

.swosti-cab-tab__btn > * {
  position: relative;
  z-index: 1;
}

.swosti-cab-tab__btn:hover,
.swosti-cab-tab__btn:focus-visible {
  transform: translateX(4px);
  padding-right: 0.7rem;
  box-shadow:
    0 14px 36px rgba(200, 153, 58, 0.45),
    0 0 0 2px rgba(255, 255, 255, 0.2);
  outline: none;
}

.swosti-cab-tab__btn:hover::before,
.swosti-cab-tab__btn:focus-visible::before {
  animation: none;
  background: linear-gradient(180deg, #c8993a 0%, #e0b55a 50%, #c8993a 100%);
}

.swosti-cab-tab__btn:hover::after,
.swosti-cab-tab__btn:focus-visible::after {
  background: linear-gradient(135deg, #c8993a 0%, #b8862e 100%);
}

.swosti-cab-tab__icon {
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.35s ease;
}

.swosti-cab-tab__btn:hover .swosti-cab-tab__icon,
.swosti-cab-tab__btn:focus-visible .swosti-cab-tab__icon {
  transform: scale(1.08);
}

.swosti-cab-tab__label {
  writing-mode: vertical-lr;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  color: rgba(255, 255, 255, 0.95);
}

.swosti-cab-tab__label--mobile {
  display: none;
}

.swosti-cab-tab--home .swosti-cab-tab__btn {
  animation: swostiCabTabPulse 2.4s ease-in-out infinite;
}

@keyframes swostiCabBorderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes swostiCabTabPulse {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
}

.swosti-cab-modal__dialog {
  max-width: 800px;
}

.swosti-cab-modal__widget-slot .cab-hero-widget {
  width: 100%;
  box-shadow: none;
  background: transparent;
  padding: 0;
}

.cab-hero-widget--in-modal .cab-hero-widget__head {
  display: none;
}
.cab-hero-widget__head{
  text-align: center;
}

.swosti-cab-modal .search-form-wrapper {
  padding: 0;
}

.swosti-cab-modal__content {
  border: none;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
}

.swosti-cab-modal__header {
  background: linear-gradient(135deg, var(--green) 0%, var(--green2) 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 1.35rem;
}

.swosti-cab-modal__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.swosti-cab-modal__sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
}

.swosti-cab-modal__body {
  padding: 1.35rem;
  background: var(--tbp-ivory, #f8f6f1);
}

.swosti-cab-modal .cab-hero-widget__tabs {
  width: 100%;
  padding: 0;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
  justify-content: stretch;
}

.swosti-cab-modal .cab-hero-widget__tabs .search-tab {
  flex: 1 1 50%;
  justify-content: center;
  padding: 0.7rem 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.02em;
}

.swosti-cab-modal .cab-hero-widget__tabs .search-tab.active {
  color: #173508;
}

.swosti-cab-modal .cab-hero-widget__tabs .search-tab.active::after {
  background: #c8993a;
}

.swosti-cab-modal .cab-hero-widget__form {
  padding: 0;
}

.swosti-cab-modal .cab-search-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: end;
}

.swosti-cab-modal .cab-search-grid__full {
  grid-column: 1 / -1;
}

.swosti-cab-modal .form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
  min-width: 0;
}

.swosti-cab-modal .form-group label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #374151;
  line-height: 1.2;
}

.swosti-cab-modal .cab-field-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.swosti-cab-modal .cab-field-wrap__icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.95rem;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}

.swosti-cab-modal .form-select,
.swosti-cab-modal .form-control {
  height: 52px;
  min-height: 52px;
  padding: 0 12px 0 2.35rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 0.875rem;
  color: #111827;
  box-shadow: none;
  width: 100%;
}

.swosti-cab-modal .form-select:focus,
.swosti-cab-modal .form-control:focus {
  border-color: rgba(200, 153, 58, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(200, 153, 58, 0.12);
}

.swosti-cab-modal .cab-hero-widget__submit {
  width: 100%;
  height: 52px;
  min-height: 52px;
  margin-top: 0;
  align-self: stretch;
  background: #173508 !important;
  border-color: #173508 !important;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(23, 53, 8, 0.22);
  white-space: nowrap;
}

.swosti-cab-modal .cab-hero-widget__submit:hover,
.swosti-cab-modal .cab-hero-widget__submit:focus-visible {
  background: #c8993a !important;
  border-color: #c8993a !important;
  color: #111827 !important;
}

.swosti-cab-form__field .form-control,
.swosti-cab-form__field .form-select {
  border-radius: 12px;
  border-color: rgba(23, 53, 8, 0.12);
  min-height: 52px;
}

.swosti-cab-form__field .form-control:focus,
.swosti-cab-form__field .form-select:focus {
  border-color: rgba(200, 153, 58, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(200, 153, 58, 0.15);
}

.swosti-cab-form__field label {
  color: #64748b;
}

.swosti-cab-form__submit {
  min-height: 52px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 12px;
}

@media (max-width: 991.98px) {
  .swosti-cab-tab__btn {
    min-width: 42px;
    padding: 0.75rem 0.5rem 0.65rem;
  }

  .swosti-cab-tab__label {
    font-size: 0.58rem;
  }
}

@media (max-width: 767.98px) {
  .swosti-cab-tab {
    top: auto;
    bottom: 92px;
    left: 16px;
    transform: none;
  }

  .swosti-cab-tab__btn {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    min-width: 55px;
    padding: 0;
    border-radius: 50%;
    gap: 0.15rem;
  }

  .swosti-cab-tab__btn::before {
    inset: -3px;
    left: -3px;
    border-radius: 50%;
  }

  .swosti-cab-tab__btn::after {
    inset: 2px;
    left: 2px;
    border-radius: 50%;
  }

  .swosti-cab-tab__btn:hover,
  .swosti-cab-tab__btn:focus-visible {
    transform: translateY(-3px);
    padding: 0;
  }

  .swosti-cab-tab__icon {
    font-size: 1.1rem;
  }

  .swosti-cab-tab__label--desktop {
    display: none;
  }

  .swosti-cab-tab__label--mobile {
    display: block;
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 0.48rem;
    letter-spacing: 0.04em;
    line-height: 1;
  }

  .swosti-cab-modal__dialog {
    margin: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }

  .swosti-cab-modal .cab-search-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .swosti-cab-tab {
    bottom: 86px;
    left: 12px;
  }

  .swosti-cab-modal .cab-hero-widget__submit,
  .swosti-cab-form__submit {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .swosti-cab-tab__btn,
  .swosti-cab-tab--home .swosti-cab-tab__btn {
    animation: none;
  }

  .swosti-cab-tab__btn::before {
    animation: none;
    background: linear-gradient(180deg, var(--green) 0%, #c8993a 50%, var(--green) 100%);
  }
}

/* ==========================================================================
   Gold Membership page
   ========================================================================== */

.gm-page .gm-hero {
  min-height: 350px;
}

.gm-page .gm-hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.55) 0%,
    rgba(23, 53, 8, 0.72) 100%
  );
}

.gm-section {
  padding: 4rem 0;
}

.gm-section--ivory {
  background: var(--tbp-ivory, #f8f6f1);
}

.gm-sec-head {
  margin-bottom: 2rem;
}

.gm-sec-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.gm-sec-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.gm-sec-label.justify-content-center::before {
  display: none;
}

.gm-sec-title {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0;
}

.gm-sec-title em {
  color: var(--gold);
  font-style: normal;
}

.gm-benefit-card,
.gm-eligibility-card {
  background: #fff;
  border: 1px solid rgba(200, 153, 58, 0.14);
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.gm-benefit-card:hover,
.gm-eligibility-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 153, 58, 0.35);
  box-shadow: 0 14px 32px rgba(200, 153, 58, 0.12);
}

.gm-benefit-card__icon,
.gm-eligibility-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 0.85rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(200, 153, 58, 0.16) 0%, rgba(255, 248, 232, 0.95) 100%);
  color: #7a5a12;
  font-size: 1.2rem;
}

.gm-benefit-card__title,
.gm-eligibility-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.45rem;
}

.gm-benefit-card__text,
.gm-eligibility-card__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #475569;
}

.gm-stat-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #173508 0%, #254d3c 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(23, 53, 8, 0.18);
}

.gm-stat-card__value {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
}

.gm-stat-card__label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.gm-compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  border: 1px solid rgba(200, 153, 58, 0.16);
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.gm-compare-table {
  width: 100%;
  min-width: 640px;
  margin: 0;
  border-collapse: collapse;
}

.gm-compare-table th,
.gm-compare-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid #eef2f7;
  vertical-align: top;
  font-size: 0.92rem;
  line-height: 1.5;
}

.gm-compare-table thead th {
  background: linear-gradient(135deg, #173508 0%, #254d3c 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gm-compare-table tbody th {
  width: 28%;
  font-weight: 700;
  color: var(--green);
  background: #fafaf8;
}

.gm-compare-table tbody td {
  color: #475569;
}

.gm-compare-table tbody tr:last-child th,
.gm-compare-table tbody tr:last-child td {
  border-bottom: none;
}

.gm-compare-gold {
  display: inline-block;
  font-weight: 700;
  color: #7a5a12;
}

.gm-journey__node {
  background: linear-gradient(135deg, #b8860b 0%, var(--gold) 100%);
  color: #fff;
}

.gm-apply__lead {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 1rem;
}

.gm-apply__checks {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gm-apply__checks li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  color: #334155;
}

.gm-apply__checks li i {
  color: var(--gold);
  margin-top: 0.15rem;
}

.gm-form-card {
  background: #fff;
  border: 1px solid rgba(200, 153, 58, 0.16);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.07);
}

.gm-form .form-floating > .form-control,
.gm-form .form-floating > .form-select {
  min-height: 58px;
  border-radius: 12px;
  border-color: #e2e8f0;
}

.gm-form .form-floating > label {
  color: #64748b;
}

.gm-form .form-floating > .form-control:focus,
.gm-form .form-floating > .form-select:focus {
  border-color: rgba(200, 153, 58, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(200, 153, 58, 0.12);
}

.gm-form__success {
  margin-bottom: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(22, 163, 74, 0.1);
  color: #166534;
  font-size: 0.92rem;
  font-weight: 600;
}

.gm-testi-swiper {
  padding-bottom: 2.5rem;
}

.gm-testi-card {
  height: 100%;
  margin: 0;
  padding: 1.5rem 1.35rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(200, 153, 58, 0.14);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.gm-testi-card__icon {
  display: inline-flex;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.gm-testi-card__quote {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #334155;
  margin-bottom: 1rem;
}

.gm-testi-card__footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.gm-testi-card__footer strong {
  color: var(--green);
  font-size: 0.92rem;
}

.gm-testi-card__footer span {
  font-size: 0.78rem;
  color: #64748b;
}

.gm-testi-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
}

.gm-final-cta__overlay {
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.72) 0%,
    rgba(23, 53, 8, 0.82) 100%
  );
}

.gm-final-cta__text {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 767.98px) {
  .gm-section {
    padding: 3rem 0;
  }

  .gm-form-card {
    padding: 1.15rem;
  }

  .cab-gold-ribbon {
    position: static;
    display: flex;
    max-width: none;
    width: 100%;
    border-radius: 0;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .gm-compare-table {
    min-width: 560px;
  }
}

/* ==========================================================================
   MICE Services — mice.php
   ========================================================================== */

.mice-page {
  background: #f8f6f1;
}

.mice-page .mice-hero {
  height: 350px;
}

.mice-page .mice-hero__overlay {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.42)
  );
}

.mice-hero__desc {
  max-width: 720px;
  margin: 0 auto 1.35rem;
  font-size: clamp(0.88rem, 1.8vw, 1.02rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.mice-section {
  padding: 3.75rem 0;
  background: var(--white);
}

.mice-section--ivory {
  background: var(--tbp-ivory, #f8f6f1);
}

.mice-section--pattern {
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 153, 58, 0.08), transparent 42%),
    radial-gradient(circle at 88% 82%, rgba(23, 53, 8, 0.06), transparent 45%),
    var(--white);
}

.mice-sec-head {
  margin-bottom: 2rem;
}

.mice-sec-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.mice-sec-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.mice-sec-label.justify-content-center::before {
  display: none;
}

.mice-sec-title {
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
  font-weight: 800;
  color: var(--tbp-charcoal, #1c1c1c);
  margin: 0 0 0.65rem;
  line-height: 1.25;
}

.mice-sec-title em {
  font-style: normal;
  color: var(--gold);
}

.mice-sec-sub {
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

.mice-video-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(28, 28, 28, 0.12);
  border: 1px solid rgba(200, 153, 58, 0.22);
  background: var(--tbp-charcoal, #1c1c1c);
}

.mice-video-wrap__player,
.mice-video-wrap__fallback {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #111;
}

.mice-video-wrap__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(23, 53, 8, 0.88);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.mice-video-wrap__badge i {
  color: var(--gold-light);
}

.mice-about__sub {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 1rem;
  line-height: 1.45;
}

.mice-about__text {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.78;
  margin-bottom: 1.35rem;
}

.mice-about__text p {
  margin-bottom: 0.85rem;
}

.mice-about__text p:last-child {
  margin-bottom: 0;
}

.mice-about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.mice-service-card {
  padding: 1.35rem 1.25rem 1.4rem;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid rgba(200, 153, 58, 0.2);
  box-shadow: 0 8px 28px rgba(28, 28, 28, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.mice-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 153, 58, 0.45);
  box-shadow: 0 14px 36px rgba(28, 28, 28, 0.1);
}

.mice-service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(200, 153, 58, 0.18), rgba(23, 53, 8, 0.08));
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}

.mice-service-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--tbp-charcoal, #1c1c1c);
  margin: 0 0 0.55rem;
}

.mice-service-card__text {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.mice-expertise-card {
  display: flex;
  gap: 1rem;
  padding: 1.35rem 1.25rem;
  border-radius: 14px;
  background: linear-gradient(145deg, #fff 0%, #faf8f3 100%);
  border: 1px solid rgba(27, 58, 45, 0.1);
  box-shadow: 0 8px 24px rgba(28, 28, 28, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mice-expertise-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(28, 28, 28, 0.1);
}

.mice-expertise-card__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green);
  color: var(--gold-light);
  font-size: 1.3rem;
}

.mice-expertise-card__title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--tbp-charcoal, #1c1c1c);
  margin: 0 0 0.45rem;
}

.mice-expertise-card__text {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.mice-feature-card {
  padding: 1.15rem 1rem;
  text-align: center;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid rgba(200, 153, 58, 0.22);
  box-shadow: 0 6px 20px rgba(28, 28, 28, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mice-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(28, 28, 28, 0.08);
}

.mice-feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(200, 153, 58, 0.15);
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.mice-feature-card__title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--tbp-charcoal, #1c1c1c);
  line-height: 1.35;
  margin: 0;
}

.mice-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mice-timeline--horizontal {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.35rem;
  position: relative;
  padding-top: 0.5rem;
}

.mice-timeline--horizontal::before {
  content: "";
  position: absolute;
  top: 2.15rem;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(200, 153, 58, 0.25));
  z-index: 0;
}

.mice-timeline--vertical {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 1.5rem;
  border-left: 2px solid rgba(200, 153, 58, 0.35);
  max-width: 420px;
  margin: 0 auto;
}

.mice-timeline__step {
  position: relative;
  flex: 1;
  text-align: center;
  padding: 0 0.25rem;
  z-index: 1;
}

.mice-timeline--vertical .mice-timeline__step {
  text-align: left;
  padding: 0 0 1.65rem 1.15rem;
}

.mice-timeline--vertical .mice-timeline__step:last-child {
  padding-bottom: 0;
}

.mice-timeline__node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold-light);
  font-size: 1.05rem;
  margin: 0 auto 0.65rem;
  box-shadow: 0 6px 18px rgba(23, 53, 8, 0.22);
}

.mice-timeline--vertical .mice-timeline__node {
  position: absolute;
  left: -1.72rem;
  top: 0;
  margin: 0;
  width: 36px;
  height: 36px;
  font-size: 0.95rem;
}

.mice-timeline__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--tbp-charcoal, #1c1c1c);
  line-height: 1.35;
}

.mice-timeline__arrow {
  display: none;
}

.mice-timeline--vertical .mice-timeline__arrow {
  display: block;
  position: absolute;
  left: -1.05rem;
  bottom: 0.35rem;
  color: var(--gold);
  font-size: 0.85rem;
  opacity: 0.7;
}

.mice-stats {
  background: linear-gradient(135deg, var(--green) 0%, var(--green2) 100%);
  color: #fff;
}

.mice-stat-card {
  text-align: center;
  padding: 1.35rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(4px);
  height: 100%;
}

.mice-stat-card__value {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.mice-stat-card__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
}

.mice-faq-acc {
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.mice-faq-acc__item {
  border: 1px solid rgba(200, 153, 58, 0.22);
  border-radius: 12px !important;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(28, 28, 28, 0.04);
}

.mice-faq-acc__item .accordion-button {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--tbp-charcoal, #1c1c1c);
  background: var(--white);
  padding: 1rem 1.15rem;
  gap: 0.75rem;
  box-shadow: none !important;
}

.mice-faq-acc__item .accordion-button:not(.collapsed) {
  color: var(--green);
  background: rgba(200, 153, 58, 0.08);
}

.mice-faq-acc__item .accordion-button::after {
  filter: hue-rotate(10deg) saturate(1.2);
}

.mice-faq-acc__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(200, 153, 58, 0.15);
  color: var(--gold);
}

.mice-faq-acc__q {
  text-align: left;
  line-height: 1.45;
}

.mice-faq-acc__body {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  padding: 0 1.15rem 1.1rem 3.35rem;
}

.mice-final-cta {
  position: relative;
  padding: 4.5rem 0;
  color: #fff;
  overflow: hidden;
}

.mice-final-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.mice-final-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(23, 53, 8, 0.88) 0%,
    rgba(10, 22, 5, 0.78) 100%
  );
}

.mice-final-cta__inner {
  position: relative;
  z-index: 2;
}

.mice-final-cta__title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.mice-final-cta__text {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.mice-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.mice-fab-proposal {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 1040;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.15rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold) 0%, #b8862e 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 8px 28px rgba(200, 153, 58, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.mice-fab-proposal:hover,
.mice-fab-proposal:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200, 153, 58, 0.55);
  color: #fff;
}

.mice-fab-proposal i {
  font-size: 1rem;
}

.mice-modal__content {
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(28, 28, 28, 0.2);
}

.mice-modal__header {
  background: linear-gradient(135deg, var(--green) 0%, var(--green2) 100%);
  color: #fff;
  border-bottom: 0;
  padding: 1.25rem 1.5rem;
  align-items: flex-start;
}

.mice-modal__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.mice-modal__sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 0.25rem;
}

.mice-modal__header .btn-close {
  filter: invert(1);
  opacity: 0.85;
}

.mice-modal__body {
  padding: 1.35rem 1.5rem 1.5rem;
  background: #faf8f3;
}

.mice-form .form-floating > .form-control,
.mice-form .form-floating > .form-select {
  border-radius: 10px;
  border-color: rgba(27, 58, 45, 0.18);
  background: var(--white);
}

.mice-form .form-floating > .form-control:focus,
.mice-form .form-floating > .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(200, 153, 58, 0.18);
}

.mice-form__success {
  padding: 0.75rem 1rem;
  margin-bottom: 0.85rem;
  border-radius: 10px;
  background: rgba(39, 174, 96, 0.12);
  color: var(--success);
  font-size: 0.88rem;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .mice-timeline--horizontal {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .mice-page .mice-hero {
    height: auto;
    min-height: 320px;
  }

  .mice-section {
    padding: 2.75rem 0;
  }

  .mice-about__actions .btn,
  .mice-final-cta__actions .btn,
  .mice-page .cu-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .mice-faq-acc__body {
    padding-left: 1.15rem;
  }

  .mice-fab-proposal span {
    display: none;
  }

  .mice-fab-proposal {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

@media (max-width: 575.98px) {
  .mice-expertise-card {
    flex-direction: column;
    text-align: center;
  }

  .mice-expertise-card__icon {
    margin: 0 auto;
  }
}

/* ==========================================================================
   What's New — whats-new.php
   ========================================================================== */

.wn-page {
  background: #f8f6f1;
  overflow: visible;
}

.wn-page .wn-hero {
  height: 350px;
}

.wn-page .wn-hero__overlay {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.42)
  );
}

.wn-hero__desc {
  max-width: 680px;
  margin: 0 auto;
  font-size: clamp(0.88rem, 1.8vw, 1.02rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.wn-body {
  padding: 3.25rem 0 3.75rem;
  background: var(--white);
  overflow: visible;
}

.wn-body > .container,
.wn-body > .container > .row {
  overflow: visible;
}

@media (min-width: 992px) {
  .wn-body > .container > .row {
    align-items: stretch;
  }

  .wn-sidebar {
    align-self: stretch;
  }
}

.wn-page .sidebar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 992px) {
  .wn-page .sidebar-wrapper {
    position: sticky;
    top: max(7.5rem, calc(env(safe-area-inset-top, 0px) + 6.5rem));
    z-index: 2;
  }
}

@media (max-width: 991.98px) {
  .wn-page .sidebar-wrapper {
    position: relative;
    top: auto;
  }
}

.wn-page .tpd-sidebar-card {
  background: #fff;
  border: 1px solid rgba(23, 53, 8, 0.06);
  border-radius: 14px;
  padding: 1.15rem 1.1rem;
  box-shadow: 0 4px 18px rgba(23, 53, 8, 0.06);
}

.wn-page .tpd-sidebar-card__title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 0.85rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(200, 153, 58, 0.28);
  letter-spacing: 0.03em;
}

.wn-page .tpd-contact-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.wn-page .tpd-contact-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--muted);
}

.wn-page .tpd-contact-list i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 0.1rem;
}

.wn-page .tpd-contact-list a {
  color: var(--green);
  text-decoration: none;
}

.wn-page .tpd-contact-list a:hover {
  color: var(--gold);
}

.wn-page .tpd-sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(23, 53, 8, 0.08);
}

.wn-pkg-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.wn-pkg-links a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.62rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(23, 53, 8, 0.05);
  background: #fafaf8;
  text-decoration: none;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 600;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.wn-pkg-links a:hover {
  background: var(--tbp-ivory, #f8f6f1);
  border-color: rgba(200, 153, 58, 0.35);
  box-shadow: 0 6px 16px rgba(28, 28, 28, 0.06);
  color: var(--green);
}

.wn-pkg-links a > .bi:first-child {
  color: var(--gold);
  font-size: 1rem;
}

.wn-pkg-links__arrow {
  margin-left: auto;
  color: var(--gold);
  font-size: 0.85rem;
}

.wn-trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.wn-trust-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.wn-trust-list i {
  color: var(--gold);
  flex-shrink: 0;
}

.wn-main {
  min-width: 0;
}

.wn-main__head {
  margin-bottom: 2rem;
}

.wn-sec-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.wn-sec-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.wn-sec-label.justify-content-center::before {
  display: none;
}

.wn-sec-title {
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 800;
  color: var(--tbp-charcoal, #1c1c1c);
  margin: 0 0 0.55rem;
  line-height: 1.25;
}

.wn-sec-sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.wn-gallery-block {
  margin-bottom: 2.75rem;
}

.wn-gallery-block:last-child {
  margin-bottom: 0;
}

.wn-gallery-block__head {
  margin-bottom: 1.15rem;
}

.wn-gallery-block__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green);
  margin: 0 0 0.35rem;
}

.wn-gallery-block__desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.wn-swiper {
  position: relative;
  padding-bottom: 2.5rem;
  border-radius: 16px;
}

.wn-swiper-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green);
  box-shadow: 0 6px 20px rgba(28, 28, 28, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.wn-swiper-nav:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-50%) scale(1.05);
}

.wn-swiper-nav--prev {
  left: 8px;
}

.wn-swiper-nav--next {
  right: 8px;
}

.wn-swiper-pagination {
  bottom: 0 !important;
}

.wn-swiper-pagination .swiper-pagination-bullet {
  background: rgba(23, 53, 8, 0.25);
  opacity: 1;
}

.wn-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 22px;
  border-radius: 999px;
}

.wn-gallery-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 14px;
  text-align: left;
}

.wn-gallery-trigger img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.wn-gallery-trigger:hover img {
  transform: scale(1.04);
}

.wn-gallery-trigger__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 55%);
  opacity: 0.75;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.wn-gallery-trigger:hover .wn-gallery-trigger__shade {
  opacity: 1;
}

.wn-gallery-trigger--landscape {
  aspect-ratio: 16 / 9;
  box-shadow: 0 14px 40px rgba(28, 28, 28, 0.12);
  border: 1px solid rgba(200, 153, 58, 0.18);
}

.wn-gallery-trigger__zoom {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.wn-card-slide {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 153, 58, 0.18);
  border-radius: 14px;
  padding: 0.65rem;
  box-shadow: 0 8px 24px rgba(28, 28, 28, 0.08);
  height: 100%;
}

.wn-gallery-trigger--card {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
}

.wn-card-slide__caption {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green);
  margin: 0.65rem 0.15rem 0.1rem;
}

.wn-grid-slide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.wn-gallery-trigger--grid {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(28, 28, 28, 0.08);
}

.wn-grid-slide__label {
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.65rem;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  pointer-events: none;
}

.wn-masonry-slide--tall .wn-gallery-trigger--masonry {
  aspect-ratio: 3 / 4;
}

.wn-masonry-slide--wide .wn-gallery-trigger--masonry {
  aspect-ratio: 16 / 10;
}

.wn-gallery-trigger--masonry {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(28, 28, 28, 0.1);
}

.wn-masonry-slide__title {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 2;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  pointer-events: none;
}

.wn-section {
  padding: 3.75rem 0;
  background: var(--white);
}

.wn-section--ivory {
  background: var(--tbp-ivory, #f8f6f1);
}

.wn-sec-head {
  margin-bottom: 2rem;
}

.wn-moment-card {
  padding: 1.35rem 1.2rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 153, 58, 0.2);
  box-shadow: 0 8px 28px rgba(28, 28, 28, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wn-moment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(28, 28, 28, 0.1);
}

.wn-moment-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(200, 153, 58, 0.18), rgba(23, 53, 8, 0.08));
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
}

.wn-moment-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 0.5rem;
}

.wn-moment-card__text {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.wn-final-cta {
  position: relative;
  padding: 4.5rem 0;
  color: #fff;
  overflow: hidden;
}

.wn-final-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.wn-final-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(23, 53, 8, 0.88), rgba(10, 22, 5, 0.78));
}

.wn-final-cta__inner {
  position: relative;
  z-index: 2;
}

.wn-final-cta__title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.wn-final-cta__text {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.wn-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

body.wn-lightbox-open {
  overflow: hidden;
}

.wn-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.wn-lightbox[hidden] {
  display: none !important;
}

.wn-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 6, 0.92);
  backdrop-filter: blur(6px);
}

.wn-lightbox__panel {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wn-lightbox__figure {
  flex: 1;
  margin: 0;
  min-width: 0;
}

.wn-lightbox__img {
  display: block;
  width: 100%;
  max-height: min(78vh, 820px);
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  background: #111;
}

.wn-lightbox__title {
  margin-top: 0.85rem;
  text-align: center;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

.wn-lightbox__close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wn-lightbox__nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.wn-lightbox__nav:hover {
  background: var(--gold);
}

@media (max-width: 767.98px) {
  .wn-page .wn-hero {
    height: auto;
    min-height: 320px;
  }

  .wn-body {
    padding: 2.5rem 0 3rem;
  }

  .wn-swiper-nav {
    width: 36px;
    height: 36px;
  }

  .wn-lightbox__panel {
    flex-direction: column;
  }

  .wn-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .wn-lightbox__nav--prev {
    left: 0.25rem;
  }

  .wn-lightbox__nav--next {
    right: 0.25rem;
  }

  .wn-final-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .wn-grid-slide {
    gap: 0.5rem;
  }

  .wn-grid-slide__label {
    font-size: 0.65rem;
  }
}

/* ==========================================================================
   What New — what-new.php
   ========================================================================== */

body.page-what-new .cu-page,
body.page-what-new .tpd-page,
body.page-what-new .tpd-body,
body.page-what-new .tpd-body > .container,
body.page-what-new .tpd-body > .container > .row,
body.page-what-new .tpd-sidebar,
body.page-what-new .sidebar-wrapper {
  overflow: visible;
}

body.page-what-new .cu-page.tpd-page {
  color: #1c1c1c;
  overflow: visible;
}

body.page-what-new .tpd-body {
  padding: 2rem 0 2.5rem;
  background: #fff;
}

@media (min-width: 992px) {
  body.page-what-new .tpd-body > .container > .row {
    align-items: stretch;
  }

  body.page-what-new .tpd-sidebar {
    align-self: stretch;
    min-width: 0;
  }
}

body.page-what-new .sidebar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
}

@media (min-width: 992px) {
  body.page-what-new .sidebar-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: max(7.5rem, calc(env(safe-area-inset-top, 0px) + 6.5rem));
    z-index: 2;
  }
}

@media (max-width: 991.98px) {
  body.page-what-new .sidebar-wrapper {
    position: relative;
    top: auto;
  }
}

body.page-what-new .swosti-site-header.sticky-top {
  z-index: 1030;
}

body.page-what-new .swosti-site-header .dropdown-menu {
  z-index: 1040;
}

body.page-what-new .tpd-sidebar-card {
  background: #fff;
  border: 1px solid rgba(23, 53, 8, 0.06);
  border-radius: 14px;
  padding: 0.9rem 0.95rem;
  box-shadow: 0 4px 18px rgba(23, 53, 8, 0.06);
}

body.page-what-new .tpd-sidebar-card__title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 0.6rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(200, 153, 58, 0.28);
  letter-spacing: 0.03em;
}

body.page-what-new .wn-pkg-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

body.page-what-new .wn-pkg-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.6rem;
  border-radius: 10px;
  border: 1px solid rgba(23, 53, 8, 0.05);
  background: #fafaf8;
  text-decoration: none;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 600;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

body.page-what-new .wn-pkg-links a:hover {
  background: #f8f6f1;
  border-color: rgba(200, 153, 58, 0.35);
  box-shadow: 0 6px 16px rgba(28, 28, 28, 0.06);
}

body.page-what-new .wn-pkg-links__arrow {
  margin-left: auto;
  color: var(--gold);
  font-size: 0.8rem;
}

body.page-what-new .tpd-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

body.page-what-new .tpd-contact-list li {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.45;
}

body.page-what-new .tpd-contact-list a {
  color: var(--green);
  text-decoration: none;
}

body.page-what-new .tpd-contact-list a:hover {
  color: var(--gold);
}

body.page-what-new .tpd-contact-list__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.1rem;
}

body.page-what-new .wn-sidebar-company {
  margin: 0 0 0.55rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1.35;
}

body.page-what-new .wn-wa-card {
  text-align: center;
  padding: 0.75rem 0.95rem;
}

body.page-what-new .wn-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.86rem;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.28);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

body.page-what-new .wn-wa-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

body.page-what-new .wn-galleries-wrap {
  min-width: 0;
}

body.page-what-new .wn-galleries {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  body.page-what-new .wn-galleries {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

body.page-what-new .wn-gallery-block {
  min-width: 0;
}

body.page-what-new .wn-gallery-block__title {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.3;
}

body.page-what-new .wn-gallery-carousel {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.1);
}

body.page-what-new .wn-gallery-carousel .carousel-inner {
  border-radius: 16px;
}

body.page-what-new .wn-gallery-img-btn {
  display: block;
  width: auto;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

body.page-what-new .wn-gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

@media (min-width: 768px) {
  body.page-what-new .wn-gallery-img {
    height: 280px;
  }
}

@media (min-width: 1200px) {
  body.page-what-new .wn-gallery-img {
    height: auto;
    width: 100%;
  }
}

body.page-what-new .carousel-control-prev,
body.page-what-new .carousel-control-next {
  width: 36px;
  opacity: 0.92;
}

body.page-what-new .carousel-control-prev-icon,
body.page-what-new .carousel-control-next-icon {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

@media (max-width: 575.98px) {
  body.page-what-new .tpd-body {
    padding: 1.25rem 0 1.75rem;
  }
}
.cab-transportation-whatsapp-btn{
  color: var(--green)!important;
}
.cab-transportation-whatsapp-btn:hover{
  color: var(--white)!important;
  border-color: var(--green);
  transition: all 0.3s ease;
}

/* ==========================================================================
   National Parks in India & Kolkata Tour hubs — np-page layout
   ========================================================================== */

body.np-modal-open {
  overflow: hidden;
}

.np-page {
  background: #fff;
  color: #1c1c1c;
  overflow: visible;
}

.np-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.np-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.np-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 53, 8, 0.88) 0%, rgba(23, 53, 8, 0.45) 55%, rgba(23, 53, 8, 0.2) 100%);
  z-index: 1;
}

.np-hero__content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 0 2.75rem;
  color: #fff;
}

.np-breadcrumb__list {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  font-size: 0.82rem;
}

.np-breadcrumb__list a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.np-breadcrumb__list a:hover {
  color: var(--gold);
}

.np-breadcrumb__list li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: rgba(255, 255, 255, 0.45);
}

.np-hero__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
}

.np-hero__sub {
  margin: 0;
  max-width: 42rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.np-cards-section {
  padding: 2.75rem 0 3.5rem;
}

body.page-national-parks .cu-page,
body.page-kolkata-hub .cu-page,
body.page-national-parks .tpd-page,
body.page-kolkata-hub .tpd-page,
body.page-national-parks .tpd-body,
body.page-kolkata-hub .tpd-body,
body.page-national-parks .tpd-body > .container,
body.page-kolkata-hub .tpd-body > .container,
body.page-national-parks .tpd-body > .container > .row,
body.page-kolkata-hub .tpd-body > .container > .row,
body.page-national-parks .tpd-sidebar,
body.page-kolkata-hub .tpd-sidebar,
body.page-national-parks .sidebar-wrapper,
body.page-kolkata-hub .sidebar-wrapper {
  overflow: visible;
}

body.page-national-parks .cu-page.tpd-page,
body.page-kolkata-hub .cu-page.tpd-page {
  overflow: visible;
}

body.page-national-parks .tpd-body,
body.page-kolkata-hub .tpd-body {
  padding: 2rem 0 2.5rem;
  background: #fff;
}

@media (min-width: 992px) {
  body.page-national-parks .tpd-body > .container > .row,
  body.page-kolkata-hub .tpd-body > .container > .row {
    align-items: stretch;
  }

  body.page-national-parks .tpd-sidebar,
  body.page-kolkata-hub .tpd-sidebar {
    align-self: stretch;
    min-width: 0;
  }
}

body.page-national-parks .sidebar-wrapper,
body.page-kolkata-hub .sidebar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
}

@media (min-width: 992px) {
  body.page-national-parks .sidebar-wrapper,
  body.page-kolkata-hub .sidebar-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: max(7.5rem, calc(env(safe-area-inset-top, 0px) + 6.5rem));
    z-index: 2;
  }
}

@media (max-width: 991.98px) {
  body.page-national-parks .sidebar-wrapper,
  body.page-kolkata-hub .sidebar-wrapper {
    position: relative;
    top: auto;
  }
}

body.page-national-parks .swosti-site-header.sticky-top,
body.page-kolkata-hub .swosti-site-header.sticky-top {
  z-index: 1030;
}

body.page-national-parks .swosti-site-header .dropdown-menu,
body.page-kolkata-hub .swosti-site-header .dropdown-menu {
  z-index: 1040;
}

body.page-national-parks .tpd-sidebar-card,
body.page-kolkata-hub .tpd-sidebar-card {
  background: #fff;
  border: 1px solid rgba(23, 53, 8, 0.06);
  border-radius: 14px;
  padding: 0.9rem 0.95rem;
  box-shadow: 0 4px 18px rgba(23, 53, 8, 0.06);
}

body.page-national-parks .tpd-sidebar-card__title,
body.page-kolkata-hub .tpd-sidebar-card__title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 0.6rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(200, 153, 58, 0.28);
  letter-spacing: 0.03em;
}

body.page-national-parks .wn-pkg-links,
body.page-kolkata-hub .wn-pkg-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

body.page-national-parks .wn-pkg-links a,
body.page-kolkata-hub .wn-pkg-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.6rem;
  border-radius: 10px;
  border: 1px solid rgba(23, 53, 8, 0.05);
  background: #fafaf8;
  text-decoration: none;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 600;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

body.page-national-parks .wn-pkg-links a:hover,
body.page-kolkata-hub .wn-pkg-links a:hover {
  background: #f8f6f1;
  border-color: rgba(200, 153, 58, 0.35);
  box-shadow: 0 6px 16px rgba(28, 28, 28, 0.06);
}

body.page-national-parks .wn-pkg-links__arrow,
body.page-kolkata-hub .wn-pkg-links__arrow {
  margin-left: auto;
  color: var(--gold);
  font-size: 0.8rem;
}

body.page-national-parks .tpd-contact-list,
body.page-kolkata-hub .tpd-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

body.page-national-parks .tpd-contact-list li,
body.page-kolkata-hub .tpd-contact-list li {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.45;
}

body.page-national-parks .tpd-contact-list a,
body.page-kolkata-hub .tpd-contact-list a {
  color: var(--green);
  text-decoration: none;
}

body.page-national-parks .tpd-contact-list a:hover,
body.page-kolkata-hub .tpd-contact-list a:hover {
  color: var(--gold);
}

body.page-national-parks .tpd-contact-list__label,
body.page-kolkata-hub .tpd-contact-list__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.1rem;
}

body.page-national-parks .wn-sidebar-company,
body.page-kolkata-hub .wn-sidebar-company {
  margin: 0 0 0.55rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1.35;
}

body.page-national-parks .wn-wa-card,
body.page-kolkata-hub .wn-wa-card {
  text-align: center;
  padding: 0.75rem 0.95rem;
}

body.page-national-parks .wn-wa-btn,
body.page-kolkata-hub .wn-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.86rem;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.28);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

body.page-national-parks .wn-wa-btn:hover,
body.page-kolkata-hub .wn-wa-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

body.page-national-parks .np-cards-wrap,
body.page-kolkata-hub .np-cards-wrap {
  min-width: 0;
}

.np-cards-row {
  align-items: stretch;
}

.np-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(23, 53, 8, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(23, 53, 8, 0.07);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.np-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(23, 53, 8, 0.1);
}

.np-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.np-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.np-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.1rem 1.15rem 1.2rem;
  gap: 0.45rem;
}

.np-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.3;
}

.np-card__meta {
  margin: 0;
  flex: 1;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.np-card__btn {
  align-self: flex-start;
  margin-top: 0.35rem;
}

.np-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.np-modal[hidden] {
  display: none;
}

.np-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 53, 8, 0.72);
}

.np-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(88vh, 820px);
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  padding: 1.35rem 1.35rem 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.np-modal__close {
  position: sticky;
  top: 0;
  float: right;
  margin: -0.25rem -0.25rem 0.5rem 0.5rem;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #f3f4f6;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.np-modal__close:hover {
  background: #e8ebe4;
}

.np-modal__head {
  clear: both;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(200, 153, 58, 0.28);
}

.np-modal__title {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1.3;
}

.np-modal__intro {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.np-modal__days {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.np-day__title {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1c1c1c;
  line-height: 1.35;
}

.np-day__list {
  margin: 0;
  padding-left: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.np-day__list li {
  font-size: 0.86rem;
  color: #4b5563;
  line-height: 1.45;
}

.np-modal__closing {
  margin: 1.1rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(23, 53, 8, 0.08);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--green);
}

.np-modal__actions {
  margin-top: 1rem;
}

@media (max-width: 767.98px) {
  .np-hero {
    min-height: 240px;
  }

  .np-cards-section {
    padding: 2rem 0 2.75rem;
  }

  .np-modal__dialog {
    padding: 1.1rem 1rem 1.25rem;
  }
  .custome-footer-col{
    padding-left: 0px !important;
  }
}

.payment-image{
  width: 220px;
  height: auto;
}
.custome-footer-col{
  padding-left: 30px !important;
}

/* Sitewide destination + tour package autolinks (footer JS + PHP content) */
a.td-autolink,
a.tp-autolink {
  color: #173508;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(200, 153, 58, 0.55);
}
a.td-autolink:hover,
a.tp-autolink:hover {
  color: #c8993a;
}
