﻿/*
Theme Name: 1tripwiser
Author: Neeraj Nishad
Version: 11.0
Description: This is my custom theme for the website 1tripwiser.
*/

@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400;1,9..144,600;1,9..144,700&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Saira:wght@400;500;600&display=swap");

/* ── Brand colour tokens — pink + blue only, sampled from the logo mark. (LUXE / LUXURY keep their own gold identity by design — untouched.) ── */

/* Root variables */
:root {
  --heading-font: "Fraunces", serif;
  --body-font: "Poppins", sans-serif;
  --accent-font: "Saira", sans-serif;
  --white:#ffffff;
  --pastel-pink:#fce4ec;
  --tw-pink:#e5127d;
  --tw-crimson:#d5374f;
  --tw-blue: #25d7f2;
  --tw-yellow:#ffd700;
  --luxe-gold: 212, 175, 55;
  --tw-navy: #0d1526;
  --tw-bodyColor: #1a2535;
  --tw-lightBase: #eef2f6;
  --tw-bodyBg:#f5f8fa;
}

/* ── Reset ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* ── Smooth scroll ── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}


/* ── Base ── */
body {
  font-family: var(--body-font);
  line-height: 1.4;
  color: var(--tw-bodyColor);
  background-color: var(--tw-bodyBg);
}

a:hover{
  text-decoration: none;
}

/* ================================================================
   TYPOGRAPHY SYSTEM — consistent headings across all pages
   ================================================================ */

h1,
h2 {
  font-family: var(--heading-font);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h3,
h4 {
  font-family: var(--body-font);
  font-weight: 800;
  line-height: 1.35;
}

h5,
h6 {
  font-family: var(--body-font);
  font-weight: 700;
  line-height: 1.4;
}

/* Section kicker (small label above heading) */
.tw-blog-kicker,
.tw-community-kicker,
.tw-cta-kicker,
.ba-hero-kicker,
.sb-hero-kicker,
.plan-hero-kicker,
.auth-hero-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Section heading h2 — used in packages, itineraries, visa, etc. */
.section-heading h2 {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(1.8rem, 2.9vw, 2.6rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--tw-navy);
}

.section-heading span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tw-blue);
  display: block;
  margin-bottom: 10px;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo a {
  color: var(--white);
  text-decoration: none;
  font-size: 28px;
  font-weight: bold;
}


.logo img {
  max-height: 50px;
}

/* Navigation */
.main-nav {
  flex: 1;
  margin: 0 30px;
}

.nav-menu {
  list-style: none;
  display: flex;
  justify-content: end;
}

.nav-menu li {
  /* margin: 0 15px; */
  /* border: 2px solid red ; */
}

.nav-menu a {
  color: var(--tw-bodyColor);
  text-decoration: none;
  padding: 10px 15px;
  transition: background 0.3s;
  border-radius: 5px;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
  background: var(--tw-blue);
}

.cta-btn {
  background: var(--tw-yellow) !important;
  color: #333 !important;
  font-weight: bold;
}

.travel-tabs {
  background: #0b1220;
  border-bottom: 1px solid rgba(27, 147, 176, 0.15);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 5;
  font-family: var(--body-font);
  overflow: hidden; /* contain tabs — prevents horizontal body overflow */
}

.travel-tabs-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 0 24px;
  height: 44px;
  /* scrollable on all viewports where tabs don't fit */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.travel-tabs-inner::-webkit-scrollbar {
  display: none;
}

.travel-tabs a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 6px;
  border: 1px solid transparent;
  letter-spacing: 0.01em;
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.travel-tabs a:hover {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
}

.travel-tabs a.active {
  color: var(--tw-pink);
  background: rgba(216, 53, 80, 0.08);
  border-color: rgba(216, 53, 80, 0.2);
}

.search-form {
  /* display: flex !important;
  justify-content: center !important;
  align-items: center !important; */
}

.search-field {
  padding: 8px 12px;
  border: none;
  border-radius: 8px 0 0 8px;
  width: 200px;
}

.search-submit {
  padding: 8px 15px;
  background: var(--tw-yellow);
  border: none;
  border-radius: 0 20px 20px 0;
  cursor: pointer;
  color: #333;
  font-weight: bold;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  margin: 3px 0;
  transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.social-links a {
  font-size: 18px;
  margin-right: 15px;
}

/* Main Content */
.main-content {
  /* padding: 50px 0; */
  min-height: 60vh;
  padding-top: 3.5%;
  /* margin-top: -132px; */
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.post-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid #e7eaf0;
  overflow: hidden;
  padding-top: 0;
  box-shadow: 0 2px 8px rgba(13, 21, 38, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(13, 21, 38, 0.12);
}

.post-thumbnail img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.post-card:hover .post-thumbnail img {
  transform: scale(1.05);
}

.post-content {
  padding: 20px;
}

.post-content h2,
.post-content h3 {
  margin-bottom: 10px;
  font-size: 1.2em;
}

.post-content h2 a,
.post-content h3 a {
  color: #333;
  text-decoration: none;
}

.post-meta {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 15px;
}

.post-meta span {
  margin-right: 15px;
}

.post-excerpt {
  margin-bottom: 15px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--tw-blue) 0%, #056d83 100%);
  color: var(--white);
  padding: 10px 22px;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(27, 147, 176, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.read-more:hover {
  background: linear-gradient(135deg, var(--tw-blue) 0%, #056d83 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(27, 147, 176, 0.4);
  filter: brightness(1.08);
}

/* Pagination */
.pagination {
  margin-top: 40px;
  text-align: center;
}

.pagination .page-numbers {
  display: inline-block;
  padding: 10px 15px;
  margin: 0 5px;
  background: var(--white);
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid #ddd;
  transition: all 0.3s;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: #0d6b68;
  color: var(--white);
  border-color: #0d6b68;
}

.tag-label {
  font-weight: bold;
  margin-right: 10px;
}

/* Post Navigation */
.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.nav-previous,
.nav-next {
  flex: 1;
}

.nav-previous {
  text-align: left;
}

.nav-next {
  text-align: right;
}

/* Page Content */
.page-content {
  background: var(--white);
  border-radius: 5px;
  padding: 30px;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
  margin: 4rem 0;
}

.page-content h1 {
  margin-bottom: 20px;
  color: #333;
}

/* Archive Header */
.archive-header {
  margin-bottom: 40px;
  text-align: center;
}

.archive-title {
  font-size: 2em;
  margin-bottom: 10px;
}

.archive-description {
  font-size: 1.1em;
  color: #666;
}

/* 404 Page */
.error-404 {
  text-align: center;
  padding: 50px 0;
}

.error-404 h1 {
  font-size: 3em;
  margin-bottom: 20px;
  color: #333;
}

.error-404 p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #666;
}

.error-actions {
  margin-bottom: 40px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 4px;
  margin: 0 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

/* Primary CTA — brand yellow gradient */
.btn-primary {
  background: var(--tw-pink);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(216, 53, 80, 0.32);
}
.btn-primary:hover {
  background: var(--tw-pink);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(216, 53, 80, 0.45);
  filter: brightness(1.05);
}

/* Secondary — brand teal gradient */
.btn-secondary {
  background: linear-gradient(135deg, var(--tw-blue) 0%, #056d83 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 6px 18px rgba(27, 147, 176, 0.28);
}
.btn-secondary:hover {
  background: linear-gradient(135deg, var(--tw-blue) 0%, #056d83 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(27, 147, 176, 0.4);
  filter: brightness(1.08);
}


.search-results p {
  font-size: 1.1em;
  margin-bottom: 30px;
}

/* No Posts */
.no-posts,
.no-results {
  text-align: center;
  padding: 50px 0;
}

.no-posts h2,
.no-results h2 {
  margin-bottom: 20px;
  color: #333;
}

.travel-empty-state {
  background: #f8fbfc;
  border: 1px solid #e0e8f0;
  border-radius: 8px;
  margin: 20px 0;
  padding: 34px 24px;
}

.travel-empty-state > span {
  color: var(--tw-blue);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.travel-empty-state h2 {
  color: var(--tw-navy);
  margin-bottom: 10px;
}

.travel-empty-state p {
  color: #667085;
  line-height: 1.7;
  margin: 0 auto 20px;
  max-width: 620px;
}

.travel-empty-actions,
.travel-empty-suggestions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.travel-empty-actions {
  margin-bottom: 18px;
}

.travel-empty-actions .btn-primary,
.travel-empty-actions .btn-secondary {
  border-radius: 6px;
  display: inline-flex;
  font-weight: 800;
  padding: 11px 18px;
  text-decoration: none;
}

.travel-empty-suggestions a {
  background: var(--white);
  border: 1px solid #d9e2ec;
  border-radius: 4px;
  color: #0d6b68;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 8px 13px;
  text-decoration: none;
}

.travel-empty-suggestions a:hover {
  border-color: var(--tw-blue);
  color: var(--tw-blue);
}


/* Each stat */
.stat {
  text-align: center;
  position: relative;
  padding: 0 20px;
  border-right: 2px solid #e0e8f0;
}

/* Vertical divider */
.stat:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.3);
  font-size: 20px;
}

/* Gradient number */
.stat h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
  background: linear-gradient(135deg, rgb(216, 53, 80), rgb(27, 147, 176));

  /* background: linear-gradient(90deg, #38bdf8, #6366f1, #a855f7); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  letter-spacing: 1px;
}

/* Label text */
.stat p {
  font-size: 13px;
  color: #6b7a8f;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}

.tag-pill {
  background: rgba(27, 147, 176, 0.1);
  border: 1px solid rgba(27, 147, 176, 0.25);
  color: var(--tw-bodyColor);
  font-size: 11px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 8px;
}

.section-heading span,
.travel-archive-header span,
.travel-single-header > span {
  font-size: 16px;
  font-weight: 800;
  color: var(--tw-blue);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  animation: fadeUp 1s ease 0.5s both;
}


/* Featured Posts */
.featured-posts {
  padding: 50px 0;
  background: #f8f9fa;
}

.featured-posts h2 {
  text-align: center;
  margin-bottom: 0;
  font-size: 2em;
  color: #333;
}

.travel-section {
  background: var(--white);
}

.itinerary-section {
  background: #eef7f6;
  padding: 40px 0;
}

.section-heading {
  margin-bottom: 36px;
  text-align: start;
}

.section-heading h2 {
  text-align: start;
}

.travel-filter-box {
  align-items: center;
  background: var(--white);
  border: 1px solid #e7eaf0;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(13, 21, 38, 0.06);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin: -14px 0 28px;
  padding: 14px;
}

.travel-filter-label {
  color: #667085;
  flex: 0 0 auto;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.travel-filter-options {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 8px;
}

.travel-filter-options a {
  background: #f8fbfc;
  border: 1px solid #dceff3;
  border-radius: 4px;
  color: var(--tw-navy);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 8px 13px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.travel-filter-options a:hover,
.travel-filter-options a.active {
  background: var(--tw-blue);
  border-color: var(--tw-blue);
  color: var(--white);
}

/* ── New tw-filter-bar — redesigned filter UI ── */
.tw-filter-bar {
  background: var(--white);
  border: 1px solid #e8edf5;
  border-radius: 6px;
  padding: 16px 22px;
  margin: 0 0 32px;
  box-shadow: 0 4px 20px rgba(13, 21, 38, 0.06);
}
.tw-filter-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.tw-filter-row + .tw-filter-row {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #e8edf5;
}
.tw-filter-row--type {
}
.tw-filter-row-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ba8bb;
  white-space: nowrap;
  min-width: 72px;
}
.tw-filter-pills {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  flex: 1;
}
.tw-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 15px;
  border-radius: 4px;
  border: 1.5px solid #e2e8f4;
  background: transparent;
  color: #4a5568;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s, border-color 0.18s, color 0.18s,
    box-shadow 0.18s;
}
.tw-filter-pill:hover {
  border-color: var(--tw-blue);
  color: var(--tw-blue);
  background: rgba(27, 147, 176, 0.06);
}
.tw-filter-pill.active {
  background: var(--tw-blue);
  border-color: var(--tw-blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(27, 147, 176, 0.28);
}
.tw-filter-pill--budget:hover {
  border-color: var(--tw-pink);
  color: #b07a00;
  background: rgba(216, 53, 80, 0.08);
}
.tw-filter-pill--budget.active {
  background: var(--tw-pink);
  border-color: var(--tw-pink);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(216, 53, 80, 0.3);
}
.tw-filter-pill--type:hover {
  border-color: var(--tw-blue);
  color: var(--tw-blue);
  background: rgba(27, 147, 176, 0.06);
}
.tw-filter-pill--type.active {
  background: var(--tw-pink);
  border-color: var(--tw-pink);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(216, 53, 80, 0.3);
}
.tw-filter-pill-icon {
  font-size: 0.9rem;
  line-height: 1;
}
@media (max-width: 768px) {
  .tw-filter-bar {
    padding: 12px 14px;
    border-radius: 6px;
  }
  .tw-filter-row {
    gap: 8px;
  }
  .tw-filter-pill {
    font-size: 0.76rem;
    padding: 6px 11px;
  }
  .tw-filter-row-label {
    min-width: 56px;
    font-size: 0.62rem;
  }
}
/* AJAX grid fade transition */
.tw-ajax-grid {
  transition: opacity 0.2s ease;
}

/* Homepage package / itinerary grids — fixed 3 columns so a single filtered
   result never stretches to full width (auto-fit collapses empty tracks). */
#tw-cards-packages {
  grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 900px) {
  #tw-cards-packages {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 600px) {
  #tw-cards-packages {
    grid-template-columns: 1fr !important;
  }
}

/* Itineraries — single-column list of rows (image left, details right),
   editorial and image-led, matching the Design reference layout. */
#tw-cards-itineraries {
  display: block !important;
}
.tw-itin-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(13, 21, 38, 0.08);
  padding: 12px 0;
  margin: 0;
}
.tw-itin-row:hover {
  transform: none;
  box-shadow: none;
}
.tw-itin-row:first-child {
  padding-top: 4px;
}
.tw-itin-media {
  display: block;
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  background: #f0f4f8;
}
.tw-itin-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.tw-itin-row:hover .tw-itin-media img {
  transform: scale(1.05);
}
.tw-itin-media-ph {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.3rem;
  color: rgba(13, 21, 38, 0.25);
}
.tw-itin-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tw-itin-title {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 1.05rem;
  margin: 0 0 6px;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.tw-itin-title a {
  color: var(--tw-navy);
  text-decoration: none;
  transition: color 0.2s;
}
.tw-itin-title a:hover {
  color: var(--tw-pink);
}
.tw-itin-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 6px;
  line-height: 1;
}
.tw-itin-meta span {
  font-size: 0.76rem;
  line-height: 1;
  font-weight: 700;
  color: rgba(13, 21, 38, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.tw-itin-meta i {
  color: var(--tw-blue);
}
.tw-itin-route {
  font-size: 0.82rem;
  color: rgba(13, 21, 38, 0.55);
  line-height: 1.4;
  margin: 0 0 10px;
  max-width: 620px;
}
.tw-itin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tw-itin-open {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  padding: 6px 16px;
  border: 1.5px solid rgba(13, 21, 38, 0.2);
  border-radius: 4px;
  color: var(--tw-navy);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.tw-itin-open:hover {
  border-color: var(--tw-blue);
  background: rgba(27, 147, 176, 0.06);
}
.tw-itin-book {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  padding: 6px 16px;
  background: var(--tw-pink);
  border-radius: 4px;
  color: var(--white) !important;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.tw-itin-book:hover {
  background: #b82940;
}
/* Beat the generic .travel-card/.post-content card rules (same or higher
   specificity, defined earlier) that were re-padding/re-margining these
   rows and roughly tripling the section's height. */
#tw-cards-itineraries .tw-itin-body {
  padding: 0;
}
#tw-cards-itineraries .tw-itin-title {
  margin: 0 0 6px;
  font-size: 1.05rem;
}
#tw-cards-itineraries .tw-itin-meta {
  margin: 0 0 6px;
}
#tw-cards-itineraries .tw-itin-actions {
  margin-top: 4px;
}
@media (max-width: 640px) {
  .tw-itin-row {
    grid-template-columns: 80px 1fr;
    gap: 14px;
    padding: 14px 0;
  }
  .tw-itin-title {
    font-size: 1rem;
  }
  .tw-itin-route {
    display: none;
  }
}

.package-search-page {
  background: #f8f9fa;
  padding-bottom: 56px;
}

.package-search-form {
  background: var(--white);
  border: 1px solid #e7eaf0;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(13, 21, 38, 0.07);
  margin-bottom: 34px;
  padding: 22px;
}

.package-search-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.package-search-grid label {
  display: block;
  margin: 0;
}

.package-search-grid span {
  color: var(--tw-navy);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.package-search-grid input,
.package-search-grid select {
  background: var(--white);
  border: 1px solid #d9e2ec;
  border-radius: 6px;
  color: var(--tw-navy);
  font: inherit;
  min-height: 44px;
  padding: 10px 12px;
  width: 100%;
}

.package-search-grid input:focus,
.package-search-grid select:focus {
  border-color: var(--tw-blue);
  outline: none;
}

.package-search-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.package-search-actions button {
  background: #0d6b68;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  padding: 12px 18px;
}

.package-search-actions button:hover {
  background: #095654;
}

.package-search-actions a {
  color: #667085;
  font-weight: 800;
  text-decoration: none;
}

.package-search-results-heading {
  margin-bottom: 18px;
}

.package-search-results-heading h2 {
  color: var(--tw-navy);
  font-size: 1.35rem;
  margin: 0;
}

.travel-card .post-content {
  padding: 20px;
}

/* Trip.com-style card: image dominant, title overlaid on dark gradient,
   minimal footer with price + CTA. */
.package-card,
.destination-card {
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--white);
  border: 1px solid #e7eaf0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13, 21, 38, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.package-card:hover,
.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(13, 21, 38, 0.12);
}

.package-media {
  aspect-ratio: 4 / 3;
  background: #eef7f6;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.package-media > a {
  display: block;
  height: 100%;
}

.package-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  width: 100%;
}

.package-card:hover .package-media img,
.destination-card:hover .package-media img {
  transform: scale(1.05);
}

/* Dark gradient at the bottom of the image so overlaid text is readable */
.package-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 21, 38, 0.78) 0%,
    rgba(13, 21, 38, 0) 55%
  );
  pointer-events: none;
  z-index: 1;
}

.package-tag {
  background: var(--tw-pink);
  border-radius: 4px;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  left: 12px;
  padding: 4px 10px;
  position: absolute;
  text-transform: uppercase;
  top: 12px;
  z-index: 2;
  letter-spacing: 0.04em;
}

.package-compare-check {
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 4px;
  color: var(--tw-navy);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 700;
  gap: 6px;
  padding: 5px 9px;
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.package-compare-check input {
  accent-color: var(--tw-pink);
  height: 15px;
  width: 15px;
}

.package-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px 16px 16px;
  position: relative;
}

/* Location + Title slide UP and overlay the bottom of the image */
.package-card .package-location {
  position: absolute;
  left: 16px;
  right: 16px;
  top: -78px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  pointer-events: none;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.package-card .package-location i {
  color: var(--tw-pink);
  margin: 0;
}

.package-card .package-content h2,
.package-card .package-content h3 {
  position: absolute;
  left: 16px;
  right: 16px;
  top: -54px;
  z-index: 2;
  font-size: 1.15rem;
  line-height: 1.25;
  margin: 0;
  color: var(--white);
  font-weight: 800;
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  /* Allow clicks on the link inside */
}
.package-card .package-content h2 a,
.package-card .package-content h3 a {
  color: var(--white);
  text-decoration: none;
  pointer-events: auto;
}

/* Below image: clean facts row */
.package-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.82rem;
  color: #667085;
}

.package-facts span {
  background: transparent;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #667085;
  font-weight: 600;
}
.package-facts span i {
  color: var(--tw-blue);
}

.package-price-row {
  align-items: center;
  border-top: 1px solid #f1f3f7;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
}

.package-price-row strong {
  color: var(--tw-blue);
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.1;
}

.package-price-row small {
  color: #9ba8bb;
  display: block;
  font-size: 0.72rem;
  margin-top: 3px;
  font-weight: 600;
}

.book-now-btn {
  background: var(--tw-blue);
  border-radius: 6px;
  color: var(--white);
  flex: 0 0 auto;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 9px 16px;
  text-decoration: none;
  transition: background 0.18s;
}
.book-now-btn:hover {
  background: #057a92;
  color: var(--white);
}

.book-now-btn:hover {
  background: #095654;
  color: var(--white);
}

.package-compare-section {
  background: var(--white) !important;
  border: 1px solid #e0e8f0 !important;
  border-radius: 8px !important;
  margin-bottom: 28px !important;
  padding: 24px !important;
}

.package-compare-heading {
  margin-bottom: 18px !important;
}

.package-compare-heading span {
  color: var(--tw-blue) !important;
  display: block !important;
  font-size: 0.78rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.1em !important;
  margin-bottom: 8px !important;
  text-transform: uppercase !important;
}

.package-compare-heading h2 {
  color: var(--tw-navy) !important;
  font-size: 1.6rem !important;
  margin: 0 0 8px !important;
}

.package-compare-heading p {
  color: #667085 !important;
  margin: 0 !important;
}

.package-compare-table-wrap {
  overflow-x: auto !important;
}

.package-compare-table {
  border-collapse: collapse !important;
  min-width: 760px !important;
  table-layout: fixed !important;
  width: 100% !important;
}

.package-compare-detail-col {
  width: 180px !important;
}

.package-compare-table--count-2 .package-compare-package-col {
  width: calc((100% - 180px) / 2) !important;
}

.package-compare-table--count-3 .package-compare-package-col {
  width: calc((100% - 180px) / 3) !important;
}

.package-compare-table th,
.package-compare-table td {
  border: 1px solid #e7eaf0;
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.55;
  padding: 14px;
  text-align: left;
  vertical-align: top;
}

.package-compare-table thead th {
  background: #f8fbfc;
  color: var(--tw-navy);
}

.package-compare-table tbody th {
  background: #fbfcfd;
  color: var(--tw-navy);
  font-weight: 900;
}

.package-compare-title {
  color: var(--tw-navy);
  display: grid;
  gap: 10px;
  grid-template-rows: auto minmax(2.7em, auto);
  text-decoration: none;
}

.package-compare-title img {
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  display: block;
  object-fit: cover;
  width: 100%;
}

.package-compare-title strong {
  font-size: 1rem;
  line-height: 1.35;
}

.package-compare-tray {
  align-items: center;
  background: var(--tw-navy);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  bottom: 18px;
  box-shadow: 0 18px 44px rgba(13, 21, 38, 0.24);
  color: var(--white);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  left: 50%;
  max-width: calc(100% - 32px);
  padding: 14px 16px;
  position: fixed;
  transform: translateX(-50%);
  width: 560px;
  z-index: 9990;
}

.package-compare-tray[hidden] {
  display: none;
}

.package-compare-tray strong,
.package-compare-tray span {
  display: block;
}

.package-compare-tray strong {
  font-size: 0.96rem;
}

.package-compare-tray span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
}

.package-compare-tray-actions {
  display: flex;
  gap: 8px;
}

.package-compare-tray button {
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--body-font);
  font-size: 0.84rem;
  font-weight: 900;
  padding: 9px 14px;
}

.package-compare-tray button:first-child {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.package-compare-tray button:last-child {
  background: var(--tw-pink);
  color: var(--white);
}

.travel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 15px;
}

.travel-meta span {
  background: #eef7f6;
  border: 1px solid #cfe7e5;
  border-radius: 4px;
  color: #0d6b68;
  display: inline-block;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 5px 10px;
}

.travel-archive-header {
  max-width: 760px;
  /* border: 2px solid red; */
  margin: 2rem 0rem;
  /* text-align: start; */
  margin-left: auto;
  margin-right: auto;
}

.travel-header-image-section {
  position: relative;
  display: block;
  margin-bottom: 28px;
  overflow: hidden;
}

/* Image container */
.travel-hero-image {
  width: 100%;
  height: 400px;
  position: relative;
}

.travel-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay header */
.travel-single-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;

  color: var(--white);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.1),
    transparent
  );
}

.travel-single-header h1 {
  margin: 10px 0;
}

.travel-single-header h1 {
  max-width: 850px;
}

.tw-breadcrumbs {
  align-items: center;
  color: #667085;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.86rem;
  gap: 8px;
  margin: 24px 0 16px;
}

.tw-breadcrumbs a {
  color: var(--tw-blue);
  font-weight: 700;
  text-decoration: none;
}

.tw-breadcrumbs a:hover {
  color: #0d6b68;
}

.tw-breadcrumb-separator {
  color: #a7b0bd;
}

.travel-hero-image {
  margin-bottom: 0;
}

.travel-hero-image img {
  border-radius: 0;
  display: block;
  max-height: 460px;
  object-fit: cover;
  width: 100%;
}

.travel-detail-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  padding: 24px 30px 10px;
}

.travel-detail {
  background: #f8f9fa;
  border: 1px solid #e7eaf0;
  border-radius: 8px;
  padding: 16px;
}

.travel-detail span {
  color: #667085;
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.travel-detail strong {
  color: var(--tw-navy);
  display: block;
  font-size: 1rem;
}

.travel-cta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tw-package-enquiry,
.tw-faq-section {
  padding: 30px;
}

.destination-guide-section {
  background: #f8fbfc;
  border-top: 1px solid #e7eaf0;
  padding: 30px;
}

.destination-guide-heading {
  margin-bottom: 18px;
}

.destination-guide-heading span {
  color: var(--tw-blue);
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.destination-guide-heading h2 {
  color: var(--tw-navy);
  font-size: 1.55rem;
  margin: 0;
}

.destination-guide-layout {
  display: grid;
  align-items: start;
  gap: 24px;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
}

.destination-guide-toc {
  background: var(--white);
  border: 1px solid #e7eaf0;
  border-radius: 8px;
  padding: 14px;
  position: sticky;
  top: 90px;
}

.destination-guide-toc ol {
  counter-reset: destination-guide;
  list-style: none;
  margin: 0;
  padding: 0;
}

.destination-guide-toc li + li {
  border-top: 1px solid #eef1f5;
  margin-top: 6px;
  padding-top: 6px;
}

.destination-guide-toc a {
  align-items: center;
  border-radius: 8px;
  color: #334155;
  display: grid;
  font-size: 0.92rem;
  font-weight: 700;
  gap: 10px;
  grid-template-columns: 32px minmax(0, 1fr);
  line-height: 1.35;
  padding: 8px;
  text-decoration: none;
}

.destination-guide-toc a:hover,
.destination-guide-toc a:focus {
  background: #eef9fc;
  color: var(--tw-blue);
}

.destination-guide-toc span {
  align-items: center;
  background: #eef9fc;
  border: 1px solid #d3eef5;
  border-radius: 50%;
  color: var(--tw-blue);
  display: inline-flex;
  font-size: 0.82rem;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.destination-guide-content-list {
  display: grid;
  gap: 16px;
}

.destination-guide-card {
  background: var(--white);
  border: 1px solid #e7eaf0;
  border-radius: 8px;
  padding: 18px;
  scroll-margin-top: 110px;
}

.destination-guide-card h3 {
  color: var(--tw-navy);
  font-size: 1rem;
  margin: 0 0 10px;
}

.destination-guide-content {
  color: #526070;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════
   SINGLE DESTINATION — wide editorial layout
   Sticky contents rail + one continuous article column, instead of
   a stack of separately-boxed sections.
   ══════════════════════════════════════════════════════════════ */
/* header.php forces .main-content{overflow-x:hidden!important}, which makes the
   element a scroll container and silently kills position:sticky for everything
   inside it. `clip` contains horizontal overflow the same way but does NOT
   create a scroll container, so the rail can actually stick. */
main.dest-single {
  overflow-x: clip !important;
}

.dest-single-wrap {
  max-width: 1400px;
  padding-top: 40px;
  padding-bottom: 72px;
}
/* Three columns: contents on the left, article in the middle, booking card on
   the right. Both rails stick; the article scrolls between them. */
.dest-single-layout {
  display: grid;
  grid-template-columns: 264px minmax(0, 1fr) 304px;
  gap: 44px;
  align-items: start;
}

/* ── Sticky rails ──
   max-height + internal scroll so a long contents list can never grow taller
   than the viewport (which would push its lower half permanently off-screen). */
.dest-rail,
.dest-booking {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: thin;
}
.dest-rail::-webkit-scrollbar,
.dest-booking::-webkit-scrollbar {
  width: 6px;
}
.dest-rail::-webkit-scrollbar-thumb,
.dest-booking::-webkit-scrollbar-thumb {
  background: rgba(13, 21, 38, 0.18);
  border-radius: 3px;
}
.dest-toc {
  background: var(--white);
  border: 1px solid #e6edf3;
  border-radius: 10px;
  padding: 18px 16px;
}
.dest-toc-title {
  font-family: var(--body-font);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(13, 21, 38, 0.45);
  padding: 0 8px 12px;
  border-bottom: 1px solid var(--tw-lightBase);
  margin-bottom: 8px;
}
.dest-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: dest-toc;
}
.dest-toc-list a {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 8px;
  text-decoration: none;
  color: #475569;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
  transition: background 0.18s, color 0.18s;
}
.dest-toc-list a:hover {
  background: #f2f8fb;
  color: var(--tw-blue);
}
.dest-toc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #eef9fc;
  border: 1px solid #d3eef5;
  color: var(--tw-blue);
  font-size: 0.76rem;
  font-weight: 800;
  flex-shrink: 0;
}
.dest-toc-list a.is-current {
  background: rgba(37, 215, 242, 0.12);
  color: var(--tw-navy);
}
.dest-toc-list a.is-current .dest-toc-num {
  background: var(--tw-blue);
  border-color: var(--tw-blue);
  color: var(--white);
}

/* Nested contents entries (itinerary days) */
.dest-toc-sublist {
  list-style: none;
  margin: 2px 0 4px;
  padding: 0 0 0 12px;
}
.dest-toc-sublist a {
  grid-template-columns: 30px minmax(0, 1fr);
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748b;
  padding: 6px 8px;
}
.dest-toc-subnum {
  font-size: 0.72rem;
  font-weight: 800;
  color: #94a3b8;
}
.dest-toc-sublist a.is-current {
  background: rgba(37, 215, 242, 0.1);
  color: var(--tw-navy);
}
.dest-toc-sublist a.is-current .dest-toc-subnum {
  color: var(--tw-blue);
}

.dest-rail-card {
  background: var(--white);
  border: 1px solid #e6edf3;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dest-rail-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--tw-lightBase);
}
.dest-rail-price span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(13, 21, 38, 0.45);
}
.dest-rail-price strong {
  font-family: var(--heading-font);
  font-size: 1.7rem;
  color: var(--tw-pink);
  line-height: 1.1;
}
.dest-rail-price small {
  font-size: 0.76rem;
  color: #6b7a8f;
}
.dest-rail-facts {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dest-rail-fact {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}
.dest-rail-fact dt {
  font-size: 0.78rem;
  font-weight: 700;
  color: #6b7a8f;
  margin: 0;
}
.dest-rail-fact dd {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--tw-navy);
  margin: 0;
  text-align: right;
}
.dest-rail-btn {
  display: block;
  text-align: center;
  padding: 11px 18px;
  border-radius: 8px;
  background: var(--tw-pink);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  transition: filter 0.2s;
}
.dest-rail-btn:hover {
  filter: brightness(1.06);
}
.dest-rail-btn--ghost {
  background: transparent;
  color: var(--tw-navy);
  border: 1.5px solid rgba(13, 21, 38, 0.16);
}
.dest-rail-btn--ghost:hover {
  border-color: var(--tw-blue);
  color: var(--tw-blue);
}

/* ── Article column — one continuous read ── */
.dest-article {
  max-width: none;
  margin-top: 0;
  min-width: 0;
}
.dest-article-section {
  scroll-margin-top: 130px;
}
.dest-article-section + .dest-article-section {
  margin-top: 44px;
}
/* Reset the boxed heading treatment inherited from .ev-content-styled —
   this layout wants headings that read as an article, not as panels.
   Doubled-up class selector so these win over .ev-content-styled, which
   has equal specificity but is defined later in this file. */
.dest-article.ev-content-styled h2,
.dest-article.ev-content-styled h3,
.dest-article.ev-content-styled h4 {
  background: none;
  border-left: none;
  border-radius: 0;
  padding: 0;
}
.dest-article.ev-content-styled h2 {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  color: var(--tw-navy);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0 0 16px;
}
.dest-article.ev-content-styled h3 {
  font-family: var(--body-font);
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--tw-navy);
  margin: 28px 0 10px;
}
.dest-article.ev-content-styled h4 {
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 800;
  color: var(--tw-navy);
  margin: 22px 0 8px;
}
.dest-article.ev-content-styled p {
  font-size: 1rem;
  line-height: 1.8;
  color: #3f4b5a;
  margin: 0 0 16px;
}
.dest-article.ev-content-styled ul li,
.dest-article.ev-content-styled ol li {
  font-size: 1rem;
  line-height: 1.8;
  color: #3f4b5a;
}
.dest-article.ev-content-styled ul,
.dest-article.ev-content-styled ol {
  gap: 10px;
  margin-bottom: 20px;
}
.dest-article img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 8px 0 20px;
}
/* Only style genuine inline content links. .ev-content-styled a paints every
   link blue-and-underlined, which was bleeding onto the CTA buttons and the
   back link and making them look broken. */
.dest-article.ev-content-styled .dest-article-cta a {
  text-decoration: none;
}
.dest-article.ev-content-styled .dest-article-cta .btn-primary,
.dest-article.ev-content-styled .dest-article-cta .btn-secondary {
  color: var(--white);
}
.dest-article.ev-content-styled .tribe-back-link {
  color: var(--tw-blue);
  text-decoration: none;
}
.dest-article.ev-content-styled .dest-lede p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #2b3644;
}

/* FAQ block sits inside the flow — strip its standalone section chrome */
.dest-article .dest-article-faqs .tw-faq-section,
.dest-article-faqs .tw-faq-section {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
}
.dest-article.ev-content-styled .dest-article-faqs .tw-faq-section > h2,
.dest-article.ev-content-styled .tw-faq-section > h2 {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  color: var(--tw-navy);
  margin: 0 0 16px;
  background: none;
  border-left: none;
  border-radius: 0;
  padding: 0;
}

/* Day accordion sits inside the article flow — give it breathing room and let
   each day be a scroll target for the nested contents links. */
.dest-itin-days {
  margin-top: 4px;
}
.dest-itin-days .itinerary-day {
  scroll-margin-top: 130px;
}
.dest-article.ev-content-styled .itinerary-day-copy p {
  font-size: 0.96rem;
  line-height: 1.75;
}
.dest-article.ev-content-styled .itinerary-day-copy ul li {
  font-size: 0.96rem;
}
.dest-article.ev-content-styled .itinerary-day summary strong {
  font-family: var(--body-font);
}

.dest-article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid #e6edf3;
}
.dest-article .tribe-back-link {
  display: inline-block;
  margin-top: 26px;
}

/* Tighten both rails before giving up on the three-column read. */
@media (max-width: 1280px) {
  .dest-single-layout {
    grid-template-columns: 228px minmax(0, 1fr) 264px;
    gap: 30px;
  }
  .dest-toc {
    padding: 14px 12px;
  }
  .dest-rail-card {
    padding: 16px;
  }
}
@media (max-width: 1080px) {
  .dest-single-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .dest-rail,
  .dest-booking {
    position: static;
    max-height: none;
    overflow: visible;
  }
  .dest-toc {
    padding: 14px;
  }
  .dest-article {
    max-width: none;
  }
}

.destination-guide-content p:last-child,
.destination-guide-content ul:last-child,
.destination-guide-content ol:last-child {
  margin-bottom: 0;
}

.destination-guide-content ul,
.destination-guide-content ol {
  padding-left: 20px;
}

.tw-package-enquiry {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-top: 1px solid #e7eaf0;
}
/* Pink + blue glow overlay — same two-tone corner-glow pattern as the CTA
   and Events sections (pink top-right, blue bottom-left), toned down so the
   white form card stays legible on top. */
.tw-package-enquiry::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
      circle 520px at 100% 0%,
      rgba(229, 18, 125, 0.16) 0%,
      rgba(229, 18, 125, 0.07) 45%,
      transparent 75%
    ),
    radial-gradient(
      circle 520px at 0% 100%,
      rgba(37, 215, 242, 0.14) 0%,
      rgba(37, 215, 242, 0.05) 45%,
      transparent 70%
    );
}
.tw-package-enquiry-copy,
.tw-package-enquiry-form,
.tw-package-enquiry .tw-form-notice {
  position: relative;
  z-index: 1;
}

.tw-package-enquiry-copy {
  margin-bottom: 22px;
}

.tw-package-enquiry-copy span {
  color: var(--tw-blue);
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.tw-package-enquiry-copy h2,
.tw-faq-section h2 {
  color: var(--tw-navy);
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.tw-package-enquiry-copy p {
  color: #667085;
  margin: 0;
  max-width: 720px;
}

.tw-package-enquiry-form {
  background: transparent;
  border: 1px solid #e7eaf0;
  border-radius: 8px;
  padding: 20px;
}

.tw-form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tw-form-grid label {
  display: block;
  margin: 0;
}

.tw-form-grid span {
  color: var(--tw-navy);
  display: block;
  font-size: 0.86rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.tw-form-grid input,
.tw-form-grid select,
.tw-form-grid textarea {
  border: 1px solid #d9e2ec;
  border-radius: 6px;
  font: inherit;
  padding: 11px 12px;
  width: 100%;
}

.tw-form-grid input:focus,
.tw-form-grid select:focus,
.tw-form-grid textarea:focus {
  border-color: var(--tw-blue);
  outline: none;
}

.tw-form-full {
  grid-column: 1 / -1;
}

.tw-package-enquiry-form button {
  background: var(--tw-pink);
  border: 0;
  border-radius: 6px;
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  margin-top: 16px;
  padding: 12px 18px;
  box-shadow: 0 6px 18px rgba(229, 18, 125, 0.32);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.tw-package-enquiry-form button:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.tw-form-notice {
  border-radius: 8px;
  font-weight: 700;
  margin-bottom: 16px;
  padding: 12px 14px;
}

.tw-form-notice.success {
  background: #eaf7ef;
  color: #25603c;
}

.tw-form-notice.error {
  background: var(--pastel-pink);
  color: #9f1f2d;
}

.tw-faq-section {
  background: var(--white);
  border-top: 1px solid #e7eaf0;
}

.tw-faq-list {
  display: grid;
  gap: 14px;
}

.tw-faq-item {
  background: var(--white);
  border: 1px solid #e7eaf0;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tw-faq-item:hover {
  border-color: rgba(27, 147, 176, 0.35);
}

.tw-faq-item[open] {
  border-color: rgba(27, 147, 176, 0.35);
  box-shadow: 0 10px 28px rgba(13, 21, 38, 0.06);
}

.tw-faq-item summary {
  align-items: center;
  color: var(--tw-navy);
  cursor: pointer;
  display: flex;
  gap: 14px;
  font-weight: 800;
  justify-content: space-between;
  list-style: none;
  padding: 16px 18px;
}

.tw-faq-item summary::-webkit-details-marker {
  display: none;
}

.tw-faq-question {
  min-width: 0;
}

.tw-faq-toggle {
  color: var(--tw-blue);
  flex-shrink: 0;
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.tw-faq-item[open] .tw-faq-toggle {
  transform: rotate(90deg);
}

.tw-faq-answer {
  border-top: 1px solid #e7eaf0;
  color: #667085;
  line-height: 1.7;
  padding: 14px 18px 18px;
}
.tw-faq-answer p:last-child {
  margin-bottom: 0;
}

.travel-detail-grid.compact {
  padding: 0;
}

.itinerary-timeline {
  position: relative;
}

.itinerary-day {
  background: var(--white);
  border: 1px solid #e0e8f0;
  border-radius: 8px;
  margin: 0 0 14px 48px;
  overflow: visible;
  position: relative;
}

.itinerary-day summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 14px;
  grid-template-columns: 48px minmax(0, 1fr) 28px;
  list-style: none;
  min-height: 78px;
  padding: 16px 18px 16px 0;
}

.itinerary-day summary::-webkit-details-marker {
  display: none;
}

.itinerary-day-marker {
  align-items: center;
  background: linear-gradient(135deg, var(--tw-blue) 0%, #056d83 100%);
  border: 4px solid #f8fbfc;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(27, 147, 176, 0.24);
  color: var(--white);
  display: inline-flex;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  left: -22px;
  position: relative;
  width: 48px;
  z-index: 1;
}

.itinerary-day-summary {
  min-width: 0;
}

.itinerary-day-summary strong,
.itinerary-day h3 {
  color: var(--tw-navy);
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.35;
}

.itinerary-day-summary em {
  color: #667085;
  display: block;
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.45;
  margin-top: 4px;
}

.itinerary-day-toggle {
  border: 1px solid #d9e2ec;
  border-radius: 50%;
  height: 28px;
  position: relative;
  width: 28px;
}

.itinerary-day-toggle::before,
.itinerary-day-toggle::after {
  background: var(--tw-blue);
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.itinerary-day-toggle::before {
  height: 2px;
  width: 12px;
}

.itinerary-day-toggle::after {
  height: 12px;
  width: 2px;
}

.itinerary-day[open] {
  border-color: rgba(27, 147, 176, 0.35);
  box-shadow: 0 14px 38px rgba(13, 21, 38, 0.08);
}

.itinerary-day[open] .itinerary-day-toggle::after {
  display: none;
}

.itinerary-day-panel {
  border-top: 1px solid var(--tw-lightBase);
  padding: 18px 20px 20px 28px;
}

.itinerary-day-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.itinerary-day-chips span {
  align-items: center;
  background: #f8fbfc;
  border: 1px solid #dfe7ef;
  border-radius: 4px;
  color: #334155;
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 800;
  gap: 7px;
  padding: 7px 11px;
}

.itinerary-day-chips i {
  color: var(--tw-blue);
}

.itinerary-day-copy {
  color: #526070;
  font-size: 0.96rem;
  line-height: 1.75;
}

.itinerary-day-copy p:last-child,
.itinerary-day-copy ul:last-child,
.itinerary-day-copy ol:last-child {
  margin-bottom: 0;
}

.itinerary-day-copy ul,
.itinerary-day-copy ol {
  padding-left: 20px;
}

.post-card.featured {
  margin-bottom: 30px;
}

.view-all {
  text-align: center;
  margin-top: 40px;
}

.visa-services-section {
  background: #f7f9fb;
  border-bottom: 1px solid #e0e8f0;
  border-top: 1px solid #e0e8f0;
  padding: 64px 0;
}

.visa-services-heading {
  text-align: start;
}

.visa-services-heading h2 {
  color: var(--tw-navy);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.visa-services-heading .highlight {
  display: inline;
  font-size: inherit;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 0;
  color: var(--tw-blue) !important;
  font-style: italic;
  font-weight: 400;
}

.visa-services-heading span {
  display: block;
  text-align: start;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tw-pink);
  margin-bottom: 10px;
}

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

.visa-service-card {
  background: var(--white);
  border: 1px solid #dceff3;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(13, 21, 38, 0.07);
  color: var(--tw-navy);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  text-decoration: none;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.visa-service-card:hover {
  border-color: var(--tw-blue);
  box-shadow: 0 16px 34px rgba(13, 21, 38, 0.12);
  color: var(--tw-navy);
  transform: translateY(-4px);
}

.visa-service-icon {
  align-items: center;
  background: var(--tw-blue) 1a;
  border-radius: 8px;
  display: inline-flex;
  font-size: 2rem;
  height: 58px;
  justify-content: center;
  margin-bottom: 20px;
  width: 58px;
}

.visa-service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.visa-service-card p {
  color: #667085;
  line-height: 1.7;
  margin-bottom: 20px;
}

.visa-service-link {
  color: var(--tw-blue);
  font-weight: 800;
  margin-top: auto;
}

.community-section-container {
  background: linear-gradient(
    135deg,
    rgba(213, 55, 79, 0.03),
    rgba(216, 53, 80, 0.03)
  );
  padding: 4rem 32px;
  border-top: 1px solid #e0e8f0;
  border-bottom: 1px solid #e0e8f0;
}
.community-section {
  border-radius: 8px;
  text-align: center;
}

.community-heading span {
  color: var(--tw-blue);
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.community-heading h2 {
  color: var(--tw-navy);
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 16px;
}

.community-heading p {
  color: #667085;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 auto 30px;
  max-width: 720px;
}

.community-heading .highlight {
  color: var(--tw-blue) !important;
  font-size: 2.8rem;
  font-weight: 500;
  /* margin-left: 0; */
  /* line-height: 1; */
}

.community-stats {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.community-stat {
  background: #f8fbfc;
  border: 1px solid #dceff3;
  border-radius: 8px;
  padding: 22px 14px;
}

.community-stat strong {
  color: var(--tw-blue);
  display: block;
  font-size: 1.85rem;
  line-height: 1;
  margin-bottom: 8px;
}

.community-stat span {
  color: #6b7a8f;
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
}

.instagram-feed-section {
  background: var(--white);
  border-bottom: 1px solid #e0e8f0;
  padding: 60px 0;
}

.instagram-feed-heading {
  text-align: center;
}

.instagram-feed-heading h2,
.instagram-feed-heading span {
  text-align: center;
}

.instagram-feed-wrap {
  background: var(--white);
  border: 1px solid #e7eaf0;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(13, 21, 38, 0.06);
  overflow: hidden;
  padding: 16px;
}

.instagram-feed-wrap:empty {
  display: none;
}

.free-itinerary-copy h2 {
  color: var(--tw-navy);
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 12px;
  font-family: var(--heading-font);
  text-align: center;
}

.free-itinerary-copy p {
  color: #6b7a8f;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  text-align: center;
  /* max-width: 620px; */
}

.free-itinerary-copy .highlight {
  color: var(--tw-pink);
  font-weight: 700;
}



.free-itinerary-link {
  background: var(--tw-pink);
  border-radius: 4px;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(216, 53, 80, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.free-itinerary-link:hover {
  background: #b82940;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(216, 53, 80, 0.45);
}



/* Sidebar */
.sidebar {
  margin-top: 50px;
}

.sidebar-widget {
  background: var(--white);
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sidebar-widget h3 {
  margin-bottom: 15px;
  color: #333;
  border-bottom: 2px solid #0d6b68;
  padding-bottom: 10px;
}

.sidebar-widget ul {
  list-style: none;
  padding: 0;
}

.sidebar-widget ul li {
  margin-bottom: 10px;
}

.sidebar-widget ul li a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.sidebar-widget ul li a:hover {
  color: #0d6b68;
}

.tag-cloud {
  line-height: 2;
}

/* Comments */
.comments-area {
  margin-top: 50px;
}

.comments-title {
  margin-bottom: 30px;
  font-size: 1.5em;
}

.comment-list {
  list-style: none;
  padding: 0;
}

.comment {
  background: var(--white);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.comment-author {
  margin-bottom: 10px;
}

.comment-author img {
  border-radius: 50%;
  margin-right: 10px;
}

.comment-meta {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 10px;
}

.comment-content {
  line-height: 1.6;
}

.reply {
  margin-top: 10px;
}

.comment-reply-link {
  background: #0d6b68;
  color: var(--white);
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 3px;
  font-size: 0.9em;
}

.comment-reply-link:hover {
  background: #095654;
}

/* Comment Form */
.comment-form {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.comment-form p {
  margin-bottom: 15px;
}

.comment-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
}

.comment-form textarea {
  height: 150px;
  resize: vertical;
}

.comment-form input[type="submit"] {
  background: #0d6b68;
  color: var(--white);
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: background 0.3s;
}

.comment-form input[type="submit"]:hover {
  background: #095654;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-nav {
    margin: 20px 0;
    width: 100%;
  }

  .nav-menu {
    flex-direction: column;
    display: none;
  }

  .nav-menu.active,
  .main-nav.active .nav-menu {
    display: flex;
  }

  .nav-menu li {
    margin: 10px 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }
  .posts-grid {
    grid-template-columns: 1fr;
  }
  .travel-filter-box {
    align-items: flex-start;
    flex-direction: column;
  }
  .package-search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .travel-tabs-inner {
    justify-content: flex-start; /* don't stretch — allow scroll */
  }
  .travel-tabs a {
    flex: 0 0 auto; /* keep natural width — don't squeeze */
    padding: 8px 12px;
    text-align: center;
  }
  .community-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .free-itinerary-copy p {
    margin-left: auto;
    margin-right: auto;
  }
  .post-card {
    margin-bottom: 20px;
  }
  .tw-form-grid {
    grid-template-columns: 1fr;
  }
  .tw-package-enquiry,
  .destination-guide-section,
  .tw-faq-section {
    padding: 22px;
  }
  .destination-guide-layout {
    grid-template-columns: 1fr;
  }
  .destination-guide-toc {
    position: static;
  }
  .package-compare-section {
    padding: 18px;
  }
  .package-compare-table {
    min-width: 640px;
  }
  .package-compare-table--count-3 {
    min-width: 820px;
  }
  .package-compare-tray {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    width: calc(100% - 24px);
  }
  .package-compare-tray-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .visa-services-grid {
    grid-template-columns: 1fr;
  }
  .sidebar {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .error-404 h1 {
    font-size: 2em;
  }
 
  .comment-form {
    padding: 20px;
  }
  .package-search-grid {
    grid-template-columns: 1fr;
  }
  .community-section {
    padding: 36px 18px;
  }
  .community-heading h2 {
    font-size: 2rem;
  }

  .community-stats {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   NAV STYLES (moved from header.php)
   ================================================================ */
/* Header + subheader are an "isolated island": inset from the screen edges,
   rounded, floating on a light page with their own shadow — instead of a
   dark edge-to-edge bar. Vertical stack height/offsets are unchanged so
   every page's "peel under the nav" hero trick keeps working untouched. */
.tw-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  /* backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%); */
  border: none;
  box-shadow: 0 10px 30px rgba(13, 21, 38, 0.08);
  font-family: var(--body-font);
  padding: 0;
}
/* Body offset so fixed nav + subheader don't cover content */
body {
  padding-top: 132px;
  background: var(--white);
}
@media (max-width: 600px) {
  body {
    padding-top: 112px;
  }
}
/* Plan-a-Trip page — .plan-hero handles its own top offset via padding-top, so cancel the global body offset here */
body.page-template-page-plan-a-trip-php {
  padding-top: 0;
}
.tw-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tw-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}
/* Logo-only header: hide the wordmark, let the mark itself do the work. */
.tw-custom-logo {
  max-height: 85px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.tw-logo-ring {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid var(--tw-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(216, 53, 80, 0.06);
  flex-shrink: 0;
}
.tw-compass {
  width: 44px;
  height: 44px;
}
.tw-brand-text {
  display: none;
}
.tw-brand-name {
  font-family: var(--accent-font);
  font-size: 1.45rem;
  color: var(--tw-navy);
  letter-spacing: 0.04em;
}
.tw-gold {
  color: var(--tw-pink);
}
.tw-brand-tag {
  font-size: 0.6rem;
  color: rgba(13, 21, 38, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
@media (max-width: 600px) {
  .tw-nav {
    left: 0;
    right: 0;
    border-radius: 0 0 10px 10px;
  }
  .tw-nav-inner {
    height: 64px;
  }
  .tw-custom-logo {
    max-height: 48px;
  }
  .tw-logo-ring {
    width: 48px;
    height: 48px;
  }
  .tw-compass {
    width: 32px;
    height: 32px;
  }
}
.tw-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex-wrap: nowrap;
}
.tw-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.tw-menu-item {
  margin: 0;
}
.instagram-follow {
  margin-left: 12px;
}
/* .tw-f-social is styled for the dark footer (light icon on dark bg) — override for the
   light header context so the Instagram button is actually visible here. */
.instagram-follow.tw-f-social a {
  color: var(--tw-navy);
  background: rgba(13, 21, 38, 0.05);
  border-color: rgba(13, 21, 38, 0.14);
}
.instagram-follow.tw-f-social a:hover {
  color: var(--white);
  background: var(--tw-blue);
  border-color: var(--tw-blue);
}
.tw-nav-link {
  color: rgba(13, 21, 38, 0.7);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 400;
  padding: 6px 11px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  display: block;
  white-space: nowrap;
}
.tw-nav-link:hover,
.tw-nav-link.tw-active {
  background: rgba(27, 147, 176, 0.1);
  color: var(--tw-navy);
}
.tw-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  padding: 8px 16px;
  background: var(--tw-pink);
  color: var(--white) !important;
  font-size: 0.84rem;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0;
  transition: background 0.18s;
  white-space: nowrap;
  flex-shrink: 0;
}
.tw-cta:hover {
  background: #b82940;
}
.tw-user-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 6px;
  flex-shrink: 0;
}
.tw-auth-link {
  color: rgba(13, 21, 38, 0.7);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 6px 11px;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.tw-auth-link:hover {
  background: rgba(13, 21, 38, 0.06);
  color: var(--tw-navy);
}
.tw-auth-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border: 1.5px solid rgba(216, 53, 80, 0.6);
  border-radius: 8px;
  color: var(--tw-pink);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.tw-auth-btn:hover {
  background: var(--tw-pink);
  color: var(--white);
  border-color: var(--tw-pink);
}
.tw-user-dropdown {
  position: relative;
}
.tw-user-trigger {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(13, 21, 38, 0.04);
  border: 1px solid rgba(13, 21, 38, 0.1);
  border-radius: 4px;
  padding: 5px 11px 5px 5px;
  cursor: pointer;
  color: var(--tw-navy);
  font-family: var(--body-font);
  font-size: 0.84rem;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.tw-user-trigger:hover {
  background: rgba(13, 21, 38, 0.08);
  border-color: rgba(216, 53, 80, 0.4);
}
.tw-user-avatar-wrap {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(216, 53, 80, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(216, 53, 80, 0.1);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.tw-user-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tw-user-display {
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tw-user-chevron {
  font-size: 0.55rem;
  opacity: 0.6;
  transition: transform 0.2s;
}
.tw-user-trigger[aria-expanded="true"] .tw-user-chevron {
  transform: rotate(180deg);
}
.tw-user-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white);
  border: 1px solid rgba(13, 21, 38, 0.08);
  border-radius: 6px;
  min-width: 200px;
  box-shadow: 0 20px 60px rgba(13, 21, 38, 0.16);
  overflow: hidden;
  z-index: 9000;
  animation: tw-dropdown-in 0.2s ease;
}
.tw-user-menu.open {
  display: block;
}
@keyframes tw-dropdown-in {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.tw-user-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  color: rgba(13, 21, 38, 0.75);
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(13, 21, 38, 0.06);
  transition: background 0.15s, color 0.15s;
}
.tw-user-menu a:last-child {
  border-bottom: none;
}
.tw-user-menu a:hover {
  background: rgba(13, 21, 38, 0.05);
  color: var(--tw-navy);
}
.tw-user-menu a.tw-logout:hover {
  background: rgba(213, 55, 79, 0.1);
  color: var(--tw-pink);
}
.tw-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  flex-shrink: 0;
}
.tw-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(13, 21, 38, 0.8);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.tw-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.tw-toggle.open span:nth-child(2) {
  opacity: 0;
}
.tw-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.tw-mobile-menu {
  display: none;
  padding: 12px 24px 20px;
  border-top: 1px solid rgba(13, 21, 38, 0.06);
}
.tw-mobile-menu.open {
  display: block;
}
.tw-mobile-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}
.tw-mobile-list li {
  border-bottom: 1px solid rgba(13, 21, 38, 0.05);
}
.tw-mobile-list a {
  display: block;
  color: rgba(13, 21, 38, 0.78);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 11px 4px;
  transition: color 0.2s;
}
.tw-mobile-list a:hover {
  color: var(--tw-pink);
}
.tw-cta-mobile {
  display: block;
  text-align: center;
  margin: 0;
  width: 100%;
}
.tw-mobile-auth {
  display: flex;
  gap: 10px;
  padding: 14px 4px 0;
  border-top: 1px solid rgba(13, 21, 38, 0.06);
  margin-top: 8px;
}
.tw-mobile-auth a {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 9px;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  color: inherit;
}
.tw-mobile-auth .login {
  background: rgba(13, 21, 38, 0.05);
  color: rgba(13, 21, 38, 0.75);
}
.tw-mobile-auth .signup {
  background: var(--tw-pink);
  color: var(--white);
}
@media (max-width: 900px) {
  .tw-links {
    display: none;
  }
  .tw-toggle {
    display: flex;
  }
  .tw-user-nav {
    display: none;
  }
}
.tw-nav {
  transition: box-shadow 0.25s ease;
}
/* Keep nav height stable on scroll so subheader (top:84px) stays flush — no gap, no width-shift. */
.tw-nav-scrolled .tw-nav-inner {
  height: 84px;
}
@media (max-width: 600px) {
  .tw-nav-scrolled .tw-nav-inner {
    height: 64px;
  }
}
.tw-nav-scrolled {
  box-shadow: 0 10px 34px rgba(13, 21, 38, 0.14);
}

/* ================================================================
   FOOTER STYLES (moved from footer.php)
   ================================================================ */
.tw-footer {
  background: #07101c;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--body-font);
  border-top: 1px solid rgba(27, 147, 176, 0.1);
}
.tw-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 32px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.tw-f-brand-name {
  font-family: var(--accent-font);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.tw-f-brand-tag {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.tw-f-desc {
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
  margin-bottom: 20px;
}
.tw-f-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tw-f-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(27, 147, 176, 0.1);
  border: 1px solid rgba(27, 147, 176, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.tw-f-social a:hover {
  background: rgba(27, 147, 176, 0.25);
  border-color: rgba(27, 147, 176, 0.5);
  color: var(--white);
}
.tw-f-col-head {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 18px;
}
.tw-f-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tw-f-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.tw-f-links a:hover {
  color: var(--tw-pink);
}
.tw-aff-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.tw-aff-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.87rem;
}
.tw-aff-btn {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--tw-pink);
  border: 1px solid rgba(216, 53, 80, 0.35);
  border-radius: 4px;
  padding: 3px 9px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.tw-aff-btn:hover {
  background: var(--tw-pink);
  color: var(--white);
}
.tw-f-bottom-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.tw-f-bottom {
  background: #07101c;
  padding: 18px 32px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.tw-f-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
  margin: 0;
}
.tw-f-bottom-links {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tw-f-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.tw-f-bottom-links a:hover {
  color: var(--tw-pink);
}
@media (max-width: 900px) {
  .tw-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
@media (max-width: 560px) {
  .tw-footer-grid {
    grid-template-columns: 1fr;
    padding: 36px 20px 24px;
  }
  .tw-f-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
  }
}

/* ================================================================
   PAGE LOADER + ANIMATIONS (moved from tw-animations.css)
   ================================================================ */
#tw-page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--tw-navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#tw-page-loader.tw-loader-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.tw-loader-logo {
  font-family: var(--accent-font);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.08em;
}
.tw-loader-logo span {
  color: var(--tw-pink);
}
.tw-loader-bar {
  width: 160px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.tw-loader-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--tw-pink),
    var(--tw-blue),
    transparent
  );
  animation: tw-bar-sweep 1.1s ease-in-out infinite;
}
@keyframes tw-bar-sweep {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.tw-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s cubic-bezier(0.22, 0.68, 0, 1.2),
    transform 0.55s cubic-bezier(0.22, 0.68, 0, 1.2);
  will-change: opacity, transform;
}
.tw-reveal.tw-revealed {
  opacity: 1;
  transform: translateY(0);
}
@keyframes tw-ripple-anim {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* ── Auth pages ── */
.auth-page {
  min-height: 100vh;
  background: var(--tw-bodyBg);
  font-family: var(--body-font);
}
.auth-hero {
  background: #eef3f6;
  margin-top: -132px;
  padding: 196px 24px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 600px) {
  .auth-hero {
    margin-top: -112px;
    padding-top: 176px;
  }
}
.auth-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(27, 147, 176, 0.16) 0%,
    transparent 70%
  );
}
.auth-hero-kicker {
  position: relative;
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tw-blue);
  background: rgba(27, 147, 176, 0.12);
  border: 1px solid rgba(27, 147, 176, 0.3);
  border-radius: 4px;
  padding: 5px 18px;
  margin-bottom: 18px;
}
.auth-hero h1 {
  position: relative;
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  color: var(--tw-navy);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 12px;
}
.auth-hero h1 span {
  color: var(--tw-pink);
}
.auth-hero p {
  position: relative;
  font-size: 0.97rem;
  color: rgba(13, 21, 38, 0.55);
  margin: 0 auto;
  max-width: 420px;
  line-height: 1.7;
}
.auth-wrap {
  max-width: 480px;
  margin: 0 auto;
  padding: 48px 24px 88px;
}
.auth-card {
  background: var(--white);
  border: 1px solid #dde5ef;
  border-radius: 8px;
  padding: 40px 40px 36px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}
.tw-float-group {
  position: relative;
  margin-bottom: 20px;
}
.tw-float-group label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.92rem;
  font-weight: 600;
  color: #b0bac9;
  pointer-events: none;
  transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease,
    transform 0.2s ease;
  background: var(--white);
  padding: 0 4px;
  border-radius: 4px;
}
.tw-float-group input {
  width: 100%;
  padding: 18px 16px 6px;
  border: 1.5px solid #dde5ef;
  border-radius: 10px;
  font-family: var(--body-font);
  font-size: 0.95rem;
  color: var(--tw-bodyColor);
  background: var(--tw-bodyBg);
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.tw-float-group input:focus,
.tw-float-group.has-value input {
  border-color: var(--tw-blue);
  background: var(--white);
}
.tw-float-group input:focus {
  box-shadow: 0 0 0 3px rgba(27, 147, 176, 0.12);
}
.tw-float-group input:focus + label,
.tw-float-group.has-value label {
  top: 10px;
  transform: translateY(0);
  font-size: 0.72rem;
  color: var(--tw-blue);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tw-float-group .toggle-pw {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #b0bac9;
  font-size: 1rem;
  transition: color 0.2s;
  padding: 4px;
}
.tw-float-group .toggle-pw:hover {
  color: var(--tw-blue);
}
.pw-strength {
  height: 4px;
  border-radius: 4px;
  background: #e0e8f0;
  margin-top: 8px;
  overflow: hidden;
}
.pw-strength-bar {
  height: 100%;
  border-radius: 4px;
  width: 0%;
  transition: width 0.35s ease, background 0.35s ease;
}
.pw-strength-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #6b7a8f;
  margin-top: 4px;
  display: block;
  min-height: 1em;
}
.auth-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--tw-pink);
  color: var(--white);
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 800;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  margin-top: 8px;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
.auth-submit-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.auth-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.auth-msg {
  padding: 13px 16px;
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: none;
  line-height: 1.5;
}
.auth-msg.success {
  background: rgba(27, 147, 176, 0.1);
  border: 1px solid rgba(27, 147, 176, 0.25);
  color: var(--tw-blue);
}
.auth-msg.error {
  background: rgba(213, 55, 79, 0.08);
  border: 1px solid rgba(213, 55, 79, 0.25);
  color:  var(--tw-crimson);
}
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  color: #b0bac9;
  font-size: 0.78rem;
  font-weight: 700;
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e0e8f0;
}
.auth-footer-text {
  text-align: center;
  margin-top: 24px;
  font-size: 0.88rem;
  color: #6b7a8f;
}
.auth-footer-text a {
  color: var(--tw-blue);
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s;
}
.auth-footer-text a:hover {
  color: var(--tw-pink);
}
.auth-check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: #6b7a8f;
  line-height: 1.5;
}
.auth-check-row input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--tw-blue);
  cursor: pointer;
  flex-shrink: 0;
}
.auth-check-row a {
  color: var(--tw-blue);
  font-weight: 700;
  text-decoration: none;
}
.auth-forgot {
  text-align: right;
  margin-top: -12px;
  margin-bottom: 20px;
}
.auth-forgot a {
  font-size: 0.8rem;
  font-weight: 700;
  color: #6b7a8f;
  text-decoration: none;
  transition: color 0.2s;
}
.auth-forgot a:hover {
  color: var(--tw-blue);
}
.auth-benefits {
  margin-top: 28px;
  padding: 20px 24px;
  background: rgba(27, 147, 176, 0.06);
  border: 1px solid rgba(27, 147, 176, 0.15);
  border-radius: 6px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.auth-benefit {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.83rem;
  color: #374151;
  line-height: 1.45;
}
.auth-benefit .icon {
  font-size: 1rem;
  flex-shrink: 0;
}
@media (max-width: 520px) {
  .auth-card {
    padding: 28px 20px;
  }
  .auth-benefits {
    grid-template-columns: 1fr;
  }
  .tw-user-display {
    display: none;
  }
}

/* ================================================================
   HOMEPAGE — HERO + STATS (moved from front-page.php)
   ================================================================ */
/* Light, full-width split hero — copy left, video in its own right-aligned
   container (not a full-bleed section background). No section background
   image/gradient: flat white, per brand simplification to red + blue only. */
.tw-hero {
  position: relative;
  background: var(--white);
  padding: 40px 0 36px;
  overflow: hidden;
}
.tw-hero-split {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.tw-hero-copy {
  max-width: 620px;
}

/* Right-aligned media container. */
.tw-hero-media {
  position: relative;
}
.tw-hero-media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 5/4;
  border-radius: 8px;
  overflow: hidden;
  background: var(--tw-navy);
  box-shadow: 0 24px 64px rgba(13, 21, 38, 0.16);
}
.tw-hero-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border: 1px solid rgba(13, 21, 38, 0.08);
  pointer-events: none;
}
.tw-hero-yt-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.tw-hero-yt {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.tw-hero-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tw-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.tw-hero-mobile-img {
  display: none;
}

/* Floating images — small tilted photos around the hero video. Each starts
   as a single point (scale 0.01, no opacity) and pops open to full size on
   load, then hands off into a gentle infinite bob — the two animations are
   time-sliced back to back (delay of the bob = delay + duration of the pop)
   so they never fight over the transform property at the same instant. */
.tw-hero-float {
  position: absolute;
  width: 154px;
  height: 154px;
  border-radius: 10px;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 14px 34px rgba(13, 21, 38, 0.22);
  z-index: 3;
  opacity: 0;
  transform: scale(0.01);
  pointer-events: none;
}
.tw-hero-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tw-hero-float--tr {
  top: -24px;
  right: -16px;
  animation: tw-float-pop-tr 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both,
    tw-float-bob-tr 5.5s ease-in-out 1.15s infinite;
}
.tw-hero-float--ml {
  top: 40%;
  left: -32px;
  width: 145px;
  height: 145px;
  animation: tw-float-pop-ml 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.75s both,
    tw-float-bob-ml 6s ease-in-out 1.4s infinite;
}
.tw-hero-float--br {
  bottom: -18px;
  right: 16%;
  animation: tw-float-pop-br 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 1s both,
    tw-float-bob-br 5s ease-in-out 1.65s infinite;
}
@keyframes tw-float-pop-tr {
  0% {
    opacity: 0;
    transform: scale(0.01) rotate(0deg);
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(-8deg);
  }
}
@keyframes tw-float-bob-tr {
  0%,
  100% {
    transform: scale(1) rotate(-8deg) translateY(0);
  }
  50% {
    transform: scale(1) rotate(-6deg) translateY(-12px);
  }
}
@keyframes tw-float-pop-ml {
  0% {
    opacity: 0;
    transform: scale(0.01) rotate(0deg);
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(6deg);
  }
}
@keyframes tw-float-bob-ml {
  0%,
  100% {
    transform: scale(1) rotate(6deg) translateY(0);
  }
  50% {
    transform: scale(1) rotate(8deg) translateY(-10px);
  }
}
@keyframes tw-float-pop-br {
  0% {
    opacity: 0;
    transform: scale(0.01) rotate(0deg);
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(-5deg);
  }
}
@keyframes tw-float-bob-br {
  0%,
  100% {
    transform: scale(1) rotate(-5deg) translateY(0);
  }
  50% {
    transform: scale(1) rotate(-3deg) translateY(-13px);
  }
}
@media (max-width: 900px) {
  .tw-hero-float {
    width: 76px;
    height: 76px;
  }
  .tw-hero-float--ml {
    width: 64px;
    height: 64px;
  }
  .tw-hero-float--tr {
    top: -14px;
    right: -10px;
  }
  .tw-hero-float--ml {
    top: 38%;
    left: -18px;
  }
  .tw-hero-float--br {
    bottom: -12px;
    right: 10%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .tw-hero-float {
    animation: none;
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 768px) {
  .tw-hero-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tw-hero-copy {
    max-width: none;
  }
  .tw-hero-media-frame {
    aspect-ratio: 16/11;
  }
}
.tw-hero-bg {
  display: none;
}

/* On mobile, the mobile-only image replaces the video/YT embed inside the frame. */
@media (max-width: 768px) {
  .tw-hero-yt-wrap,
  .tw-hero-vid,
  .tw-hero-img {
    display: none !important;
  }
  .tw-hero-mobile-img {
    display: block !important;
  }
}

.tw-hero-kicker {
  display: none;
}
.tw-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(27, 147, 176, 0.07);
  border: 1px solid rgba(27, 147, 176, 0.22);
  color: var(--tw-navy);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.tw-hero-pill-dot {
  width: 7px;
  height: 7px;
  background: var(--tw-blue);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(27, 147, 176, 0.25);
  animation: tw-pulse 2s ease infinite;
}
.tw-hero-tags-prompt {
  display: none;
}
@keyframes tw-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(27, 147, 176, 0.25);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(27, 147, 176, 0.08);
  }
}
.tw-hero-title {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  color: var(--tw-navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 14px;
}
.tw-hero-title-gold {
  color: var(--tw-pink);
}
.tw-hero-title-accent {
  color: var(--tw-pink);
}
.tw-hero-title-quiet {
  color: rgba(13, 21, 38, 0.55);
  font-weight: 400;
  font-style: italic;
}
.tw-hero-tagline {
  display: none;
}
.tw-hero-desc {
  font-family: var(--heading-font);
  font-style: italic;
  font-size: 1.08rem;
  color: rgba(13, 21, 38, 0.65);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 0 20px;
  font-weight: 400;
}
.tw-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.tw-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.tw-cta-btn--primary {
  background: var(--tw-pink);
  color: var(--white);
}
.tw-cta-btn--primary:hover {
  background: #b82940;
  color: var(--white);
}
.tw-cta-btn--outline {
  background: transparent;
  border: 1.5px solid rgba(13, 21, 38, 0.25);
  color: var(--tw-navy);
}
.tw-cta-btn--outline:hover {
  background: rgba(27, 147, 176, 0.08);
  border-color: var(--tw-blue);
  color: var(--tw-navy);
}
.tw-hero-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.tw-hero-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(13, 21, 38, 0.04);
  border: 1px solid rgba(13, 21, 38, 0.09);
  color: rgba(13, 21, 38, 0.7);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.tw-hero-tag:hover {
  background: rgba(216, 53, 80, 0.08);
  border-color: rgba(216, 53, 80, 0.35);
  color: var(--tw-pink);
}
.tw-hero-scroll {
  display: none;
}
@media (max-width: 600px) {
  .tw-hero-actions {
    flex-direction: column;
  }
  .tw-cta-btn {
    justify-content: center;
    text-align: center;
  }
}
.tw-stats-bar {
  background: #f7f9fb;
  border-bottom: 1px solid rgba(13, 21, 38, 0.06);
}
.tw-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.tw-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 28px 36px;
  gap: 8px;
  flex: 1 1 140px;
  transition: background 0.2s;
}
.tw-stat:hover {
  background: rgba(13, 21, 38, 0.03);
}
.tw-stat-num {
  font-family: var(--heading-font);
  font-size: 2.1rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--tw-pink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tw-stat-star {
  font-size: 0.55em;
  color: var(--tw-pink);
}
.tw-stat-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(13, 21, 38, 0.5);
  text-align: center;
  min-height: 2.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tw-stat-divider {
  width: 1px;
  background: rgba(13, 21, 38, 0.1);
  align-self: stretch;
  margin: 12px 0;
}
@media (max-width: 600px) {
  .tw-stat-divider {
    display: none;
  }
  .tw-stat {
    padding: 20px 16px;
    flex: 1 1 90px;
  }
  .tw-stat-num {
    font-size: 1.6rem;
  }
}

/* ══════════════════════════════════════════════════════════════
   DESTINATIONS MARQUEE — scrolling strip between Packages & Itineraries
   ══════════════════════════════════════════════════════════════ */
.tw-marquee-section {
  background: var(--tw-pink);
  overflow: hidden;
  padding: 22px 0;
}
.tw-marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: tw-marquee-scroll 32s linear infinite;
}
.tw-marquee-section:hover .tw-marquee-track {
  animation-play-state: paused;
}
.tw-marquee-item {
  font-family: var(--heading-font);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  color: var(--white);
  letter-spacing: 0.01em;
}
.tw-marquee-dot {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  margin: 0 28px;
}
@keyframes tw-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .tw-marquee-track {
    animation: none;
  }
}
@media (max-width: 600px) {
  .tw-marquee-section {
    padding: 16px 0;
  }
  .tw-marquee-item {
    font-size: 1.15rem;
  }
  .tw-marquee-dot {
    margin: 0 16px;
  }
}

/* ══════════════════════════════════════════════════════════════
   WOMEN'S GROUP TRIPS — Homepage showcase + landing page
   ══════════════════════════════════════════════════════════════ */

/* ── Homepage showcase section ── */
.tw-womens-section {
  position: relative;
  padding: 80px 0 88px;
  overflow: hidden;
  background: var(--white);
}
.tw-womens-bg {
  display: none;
}
.tw-womens-inner {
  position: relative;
  z-index: 1;
}
.tw-womens-header {
  text-align: center;
  margin-bottom: 36px;
}
.tw-womens-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tw-pink);
  background: rgba(216, 53, 80, 0.08);
  border: 1px solid rgba(216, 53, 80, 0.25);
  border-radius: 4px;
  padding: 5px 18px;
  margin-bottom: 16px;
}
.tw-womens-title {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(2.3rem, 4.6vw, 3.5rem);
  color: var(--tw-navy);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 12px;
}
.tw-womens-title span {
  font-style: italic;
  font-weight: 400;
  color: var(--tw-pink);
}
.tw-womens-sub {
  font-family: var(--heading-font);
  font-style: italic;
  font-size: 1.08rem;
  color: rgba(13, 21, 38, 0.62);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

/* Trust pills — single line, 4 equal columns */
.tw-womens-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 44px;
}
.tw-womens-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f7f9fb;
  border: 1px solid rgba(13, 21, 38, 0.07);
  border-radius: 6px;
  padding: 12px 16px;
}
.tw-womens-trust-item span {
  font-size: 1.3rem;
  flex-shrink: 0;
}
.tw-womens-trust-item strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--tw-navy);
  white-space: nowrap;
}
.tw-womens-trust-item small {
  font-size: 0.7rem;
  color: rgba(13, 21, 38, 0.5);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .tw-womens-trust {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .tw-womens-trust {
    grid-template-columns: 1fr 1fr;
  }
}

/* Cards grid */
.tw-womens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.tw-womens-card {
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(13, 21, 38, 0.08);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  box-shadow: 0 4px 20px rgba(13, 21, 38, 0.05);
}
.tw-womens-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(216, 53, 80, 0.16);
  border-color: rgba(216, 53, 80, 0.3);
}
.tw-womens-card-img {
  position: relative;
  height: 200px;
  background: var(--tw-bodyColor) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tw-womens-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 21, 38, 0.55) 0%,
    transparent 55%
  );
}
.tw-womens-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--tw-pink);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  z-index: 2;
}
.tw-womens-card-placeholder {
  font-size: 2.5rem;
  opacity: 0.4;
}
.tw-womens-card-body {
  padding: 16px 18px;
  flex: 1;
}
.tw-womens-card-loc {
  font-size: 0.75rem;
  color: rgba(13, 21, 38, 0.55);
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}
.tw-womens-card-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--tw-navy);
  margin: 0 0 10px;
  line-height: 1.3;
}
.tw-womens-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.tw-womens-card-dur {
  font-size: 0.75rem;
  color: rgba(13, 21, 38, 0.5);
  font-weight: 700;
}
.tw-womens-card-price {
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--tw-pink);
}

/* CTA */
.tw-womens-cta {
  text-align: center;
}
.tw-womens-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--tw-pink);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.18s;
}
.tw-womens-cta-btn:hover {
  background: var(--tw-crimson);
  color: var(--white);
}

/* ── Landing page styles ── */
.tw-womens-hero {
  background: var(--pastel-pink) !important;
}
.tw-womens-hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
      ellipse at 50% 0%,
      rgba(216, 53, 80, 0.14) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 85% 80%,
      rgba(216, 53, 80, 0.06) 0%,
      transparent 50%
    );
}

/* Why cards */
.tw-womens-why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 40px 0;
}
.tw-womens-why-card {
  background: var(--white);
  border-radius: 6px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--pastel-pink);
  transition: transform 0.2s, box-shadow 0.2s;
}
.tw-womens-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 105, 135, 0.12);
}
.tw-womens-why-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}
.tw-womens-why-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--tw-navy);
  margin: 0 0 8px;
}
.tw-womens-why-card p {
  font-size: 0.82rem;
  color: #6b7a8f;
  line-height: 1.6;
  margin: 0;
}

/* Section heading */
.tw-womens-section-head {
  margin-bottom: 28px;
}
.tw-womens-section-head h2 {
  font-family: var(--heading-font);
  font-size: 2rem;
  color: var(--tw-navy);
  letter-spacing: 0.04em;
  margin: 0 0 4px;
}
.tw-womens-section-head p {
  font-size: 0.85rem;
  color: #6b7a8f;
  margin: 0;
}

/* Trip cards grid (landing page) */
.tw-womens-trips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.tw-womens-trip-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--pastel-pink);
  transition: transform 0.3s, box-shadow 0.3s;
}
.tw-womens-trip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(255, 105, 135, 0.15);
}
.tw-womens-trip-img {
  display: block;
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--pastel-pink);
}
.tw-womens-trip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.tw-womens-trip-card:hover .tw-womens-trip-img img {
  transform: scale(1.06);
}
.tw-womens-trip-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--tw-pink);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 4px;
  z-index: 2;
}
.tw-womens-trip-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  opacity: 0.4;
}
.tw-womens-trip-body {
  padding: 20px;
}
.tw-womens-trip-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.tw-womens-trip-meta span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #6b7a8f;
}
.tw-womens-trip-body h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--tw-navy);
  margin: 0 0 8px;
  line-height: 1.35;
}
.tw-womens-trip-body h3 a {
  color: inherit;
  text-decoration: none;
}
.tw-womens-trip-body h3 a:hover {
  color: var(--tw-pink);
}
.tw-womens-trip-body p {
  font-size: 0.83rem;
  color: #6b7a8f;
  margin: 0 0 16px;
  line-height: 1.6;
}
.tw-womens-trip-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.tw-womens-trip-price {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--tw-pink);
  display: block;
}
.tw-womens-trip-foot small {
  font-size: 0.72rem;
  color: #9ba8bb;
}
.tw-womens-book-btn {
  display: inline-flex;
  padding: 9px 20px;
  background: var(--tw-pink);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.tw-womens-book-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: var(--white);
}

/* Testimonials section */
.tw-womens-testimonials {
  margin-bottom: 56px;
}
.tw-womens-testi-head {
  text-align: center;
  margin-bottom: 36px;
}
.tw-womens-testi-title {
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--tw-navy);
  letter-spacing: 0.04em;
  margin: 12px 0 0;
}
.tw-womens-testi-title span {
  color: var(--tw-pink);
}
.tw-womens-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tw-womens-testi-card {
  background: var(--white);
  border: 1px solid var(--pastel-pink);
  border-radius: 8px;
  padding: 28px 26px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.tw-womens-testi-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--tw-pink);
  border-radius: 0 0 20px 20px;
}
.tw-womens-testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(255, 105, 135, 0.14);
}
.tw-womens-testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.tw-womens-testi-stars span {
  color: var(--tw-yellow);
  font-size: 1rem;
}
.tw-womens-testi-quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--pastel-pink);
  line-height: 0.5;
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
}
.tw-womens-testi-text {
  font-size: 0.92rem;
  color: #4a5568;
  line-height: 1.75;
  font-style: italic;
  margin: 0 0 20px;
  flex: 1;
}
.tw-womens-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.tw-womens-testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--tw-pink);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tw-womens-testi-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--tw-navy);
}
.tw-womens-testi-author span {
  display: block;
  font-size: 0.75rem;
  color: #9ba8bb;
  font-weight: 600;
  margin-top: 2px;
}
@media (max-width: 768px) {
  .tw-womens-testi-grid {
    grid-template-columns: 1fr;
  }
}

/* Subheader womens accent */
.tw-sub-link--womens {
  color: var(--tw-pink) !important;
}

/* ══════════════════════════════════════════════════════════════
   LUXE — Luxury / Concierge section
   ══════════════════════════════════════════════════════════════ */
/* Subheader nav accent */
.tw-sub-link--luxe {
  color: rgb(var(--luxe-gold))!important;
  letter-spacing: 0.14em;
  font-weight: 800;
}
.tw-mega--luxe {
  min-width: 300px;
  background: #0a0a0a !important;
  border-color: rgba(var(--luxe-gold), 0.25) !important;
}
.tw-mega-luxe-hero {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px 12px;
  border-bottom: 1px solid rgba(var(--luxe-gold), 0.2);
  margin-bottom: 8px;
}
.tw-mega-luxe-icon {
  font-size: 1.8rem;
  color: rgb(var(--luxe-gold));
}
.tw-mega-luxe-hero strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: rgb(var(--luxe-gold));
  letter-spacing: 0.2em;
}
.tw-mega-luxe-hero small {
  font-size: 0.7rem;
  color: rgba(var(--luxe-gold), 0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
/* Dark mega-menu — override default light styles so journey names are readable */
.tw-mega--luxe .tw-mega-event {
  padding: 11px 14px;
  border-radius: 2px;
  border-bottom: 1px solid rgba(var(--luxe-gold), 0.08);
}
.tw-mega--luxe .tw-mega-event:last-child {
  border-bottom: none;
}
.tw-mega--luxe .tw-mega-event:hover,
.tw-mega--luxe .tw-mega-event.active {
  background: rgba(var(--luxe-gold), 0.08);
}
.tw-mega--luxe .tw-mega-event-icon {
  color: rgb(var(--luxe-gold));
  font-size: 0.9rem;
}
.tw-mega--luxe .tw-mega-event-name {
  color: #f3e9c8 !important;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}
.tw-mega--luxe .tw-mega-event:hover .tw-mega-event-name {
  color: rgb(var(--luxe-gold)) !important;
}
.tw-mega--luxe .tw-mega-empty {
  padding: 18px 14px;
}
.tw-mega--luxe .tw-mega-empty p {
  color: rgba(230, 230, 230, 0.6);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 0.88rem;
  margin: 0;
}
.tw-mega--luxe .tw-mega-allcta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px 14px 6px;
  padding: 9px 16px;
  border: 1px solid rgba(var(--luxe-gold), 0.5);
  color: rgb(var(--luxe-gold));
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.tw-mega--luxe .tw-mega-allcta:hover {
  background: rgb(var(--luxe-gold));
  color: #0a0a0a;
}

/* Homepage showcase */
.tw-luxe-section {
  position: relative;
  background: var(--tw-navy)
    url("https://images.unsplash.com/photo-1540541338287-41700207dee6?w=2000&q=85&auto=format&fit=crop&fm=jpg")
    center/cover no-repeat;
  padding: 56px 0 60px;
  color: #e6e6e6;
  overflow: hidden;
}
.tw-luxe-section::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(10, 10, 10, 0.65) 35%,
    rgba(10, 10, 10, 0.92) 100%
  );
}
.tw-luxe-inner {
  position: relative;
  z-index: 1;
}
.tw-luxe-header {
  text-align: center;
  margin-bottom: 32px;
}
.tw-luxe-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgb(var(--luxe-gold));
  margin-bottom: 14px;
}
.tw-luxe-kicker::before,
.tw-luxe-kicker::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: rgba(var(--luxe-gold), 0.45);
}
.tw-luxe-title {
  font-family: var(--heading-font);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.4rem, 4.4vw, 3.4rem);
  letter-spacing: 0.01em;
  color: rgb(var(--luxe-gold));
  margin: 0 0 14px;
}
.tw-luxe-sub {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 0.98rem;
  color: rgba(230, 230, 230, 0.68);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}
.tw-luxe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.tw-luxe-card {
  display: block;
  text-decoration: none;
  background: #111;
  border: 1px solid rgba(var(--luxe-gold), 0.15);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.tw-luxe-card:hover {
  border-color: rgb(var(--luxe-gold));
  transform: translateY(-4px);
}
.tw-luxe-card-img {
  position: relative;
  height: 190px;
  background: #1a1a1a center/cover no-repeat;
}
.tw-luxe-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0) 50%
  );
  pointer-events: none;
}
.tw-luxe-card-ph {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: rgba(var(--luxe-gold), 0.3);
}
.tw-luxe-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgb(var(--luxe-gold));
  color: #0a0a0a;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  padding: 5px 11px;
  border-radius: 2px;
  z-index: 2;
}
.tw-luxe-card-body {
  padding: 16px 18px 18px;
}
.tw-luxe-card-loc {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(var(--luxe-gold), 0.85);
  margin-bottom: 6px;
  font-weight: 600;
}
.tw-luxe-card-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 12px;
  line-height: 1.3;
  font-family: Georgia, serif;
}
.tw-luxe-card-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(var(--luxe-gold), 0.15);
}
.tw-luxe-card-dur {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: rgba(230, 230, 230, 0.5);
  text-transform: uppercase;
}
.tw-luxe-card-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgb(var(--luxe-gold));
  font-family: Georgia, serif;
}
.tw-luxe-card-price small {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  color: rgba(var(--luxe-gold), 0.6);
  text-transform: uppercase;
  margin-top: 3px;
}
.tw-luxe-cta {
  text-align: center;
}
.tw-luxe-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: transparent;
  border: 1px solid rgb(var(--luxe-gold));
  color: rgb(var(--luxe-gold));
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.tw-luxe-cta-btn:hover {
  background: rgb(var(--luxe-gold));
  color: #0a0a0a;
}

/* LUXE landing page */
.tw-luxe-page {
  background: #0a0a0a;
  color: #e6e6e6;
}
.tw-luxe-hero {
  position: relative;
  background: #0a0a0a
    url("https://images.unsplash.com/photo-1540541338287-41700207dee6?w=2000&q=85&auto=format&fit=crop&fm=jpg")
    center/cover no-repeat;
  overflow: hidden;
  text-align: center;
  margin-top: -132px;
  padding: 252px 0 100px;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.tw-luxe-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(10, 10, 10, 0.65) 35%,
    rgba(10, 10, 10, 0.92) 100%
  );
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 600px) {
  .tw-luxe-hero {
    margin-top: -104px;
    padding: 224px 0 80px;
    min-height: auto;
  }
}
.tw-luxe-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(var(--luxe-gold), 0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.tw-luxe-hero-inner {
  position: relative;
  z-index: 1;
}
.tw-luxe-hero .explore-crumbs {
  justify-content: center;
  color: rgba(230, 230, 230, 0.45);
  margin-bottom: 40px;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
}
.tw-luxe-hero .explore-crumbs a {
  color: rgb(var(--luxe-gold));
}
.tw-luxe-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgb(var(--luxe-gold));
  margin-bottom: 28px;
}
.tw-luxe-hero-kicker::before,
.tw-luxe-hero-kicker::after {
  content: "";
  display: inline-block;
  width: 44px;
  height: 1px;
  background: rgba(var(--luxe-gold), 0.45);
}
.tw-luxe-hero-title {
  font-family: var(--heading-font);
  font-size: clamp(4rem, 9vw, 7rem);
  letter-spacing: 0.42em;
  color: rgb(var(--luxe-gold));
  margin: 0 0 30px;
  font-weight: 400;
  padding-left: 0.42em;
}
.tw-luxe-hero-sub {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(230, 230, 230, 0.72);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.95;
  font-weight: 300;
}
.tw-luxe-hero-stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 840px;
  margin: 0 auto 48px;
  padding: 32px 0;
  border-top: 1px solid rgba(var(--luxe-gold), 0.18);
  border-bottom: 1px solid rgba(var(--luxe-gold), 0.18);
}
.tw-luxe-stat {
  text-align: center;
  padding: 0 36px;
}
.tw-luxe-stat-div {
  width: 1px;
  background: rgba(var(--luxe-gold), 0.18);
  margin: 6px 0;
}
.tw-luxe-stat strong {
  display: block;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  color: rgb(var(--luxe-gold));
  margin-bottom: 8px;
  font-weight: 400;
}
.tw-luxe-stat span {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: rgba(230, 230, 230, 0.5);
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 600;
}
.tw-luxe-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 48px;
  background: rgb(var(--luxe-gold));
  border: 1px solid rgb(var(--luxe-gold));
  color: #0a0a0a;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.tw-luxe-hero-btn:hover {
  background: transparent;
  color: rgb(var(--luxe-gold));
}

.tw-luxe-wrap {
  padding: 80px 0 110px;
}
.tw-luxe-why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 96px;
  border-top: 1px solid rgba(var(--luxe-gold), 0.18);
  border-bottom: 1px solid rgba(var(--luxe-gold), 0.18);
}
.tw-luxe-why-card {
  background: transparent;
  border: none;
  border-right: 1px solid rgba(var(--luxe-gold), 0.12);
  padding: 48px 32px;
  text-align: center;
}
.tw-luxe-why-card:last-child {
  border-right: none;
}
.tw-luxe-why-icon {
  font-size: 1.6rem;
  color: rgb(var(--luxe-gold));
  margin-bottom: 24px;
  display: block;
}
.tw-luxe-why-card h3 {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 14px;
  letter-spacing: 0.01em;
}
.tw-luxe-why-card p {
  font-size: 0.88rem;
  color: rgba(230, 230, 230, 0.62);
  line-height: 1.85;
  margin: 0;
  font-weight: 300;
}

.tw-luxe-section-head {
  text-align: center;
  margin-bottom: 56px;
}
.tw-luxe-section-head p {
  font-size: 0.66rem;
  letter-spacing: 0.42em;
  color: rgb(var(--luxe-gold));
  text-transform: uppercase;
  margin: 0 0 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.tw-luxe-section-head p::before,
.tw-luxe-section-head p::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: rgba(var(--luxe-gold), 0.4);
}
.tw-luxe-section-head h2 {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 2.1rem;
  font-weight: 400;
  color: var(--white);
  margin: 0;
  letter-spacing: 0.01em;
}

.tw-luxe-trips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 96px;
}
.tw-luxe-trip-card {
  background: #111;
  border: 1px solid rgba(var(--luxe-gold), 0.15);
  overflow: hidden;
  transition: border-color 0.25s;
}
.tw-luxe-trip-card:hover {
  border-color: rgba(var(--luxe-gold), 0.45);
}
.tw-luxe-trip-img {
  display: block;
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #1a1a1a;
}
.tw-luxe-trip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.tw-luxe-trip-card:hover .tw-luxe-trip-img img {
  transform: scale(1.04);
}
.tw-luxe-trip-ph {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: rgba(var(--luxe-gold), 0.3);
}
.tw-luxe-trip-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--luxe-gold);
  color: #0a0a0a;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  padding: 5px 12px;
  border-radius: 2px;
}
.tw-luxe-trip-body {
  padding: 26px 28px 28px;
}
.tw-luxe-trip-meta {
  display: flex;
  gap: 18px;
  margin-bottom: 14px;
}
.tw-luxe-trip-meta span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(var(--luxe-gold), 0.8);
  font-weight: 600;
}
.tw-luxe-trip-body h3 {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 14px;
  line-height: 1.35;
}
.tw-luxe-trip-body h3 a {
  color: var(--white);
  text-decoration: none;
}
.tw-luxe-trip-body h3 a:hover {
  color: rgb(var(--luxe-gold));
}
.tw-luxe-trip-body p {
  font-size: 0.88rem;
  color: rgba(230, 230, 230, 0.62);
  line-height: 1.75;
  margin: 0 0 22px;
  font-weight: 300;
}
.tw-luxe-trip-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(var(--luxe-gold), 0.15);
}
.tw-luxe-trip-foot small {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  color: rgba(var(--luxe-gold), 0.7);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tw-luxe-trip-price {
  display: block;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgb(var(--luxe-gold));
}
.tw-luxe-trip-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: transparent;
  border: 1px solid var(--luxe-gold);
  color: rgb(var(--luxe-gold));
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
.tw-luxe-trip-cta:hover {
  background: rgb(var(--luxe-gold));
  color: #0a0a0a;
}

.tw-luxe-empty {
  text-align: center;
  padding: 80px 20px;
  background: #111;
  border: 1px solid rgba(var(--luxe-gold), 0.15);
  margin-bottom: 64px;
}
.tw-luxe-empty i {
  font-size: 3rem;
  color: rgba(var(--luxe-gold), 0.5);
  margin-bottom: 20px;
}
.tw-luxe-empty h3 {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 0 12px;
}
.tw-luxe-empty p {
  color: rgba(230, 230, 230, 0.6);
  max-width: 480px;
  margin: 0 auto 28px;
}

.tw-luxe-enquiry {
  background: #111;
  border: 1px solid rgba(var(--luxe-gold), 0.18);
  padding: 64px 64px 56px;
}
.tw-luxe-enquiry-copy {
  text-align: center;
  margin-bottom: 44px;
}
.tw-luxe-enquiry-copy .tw-luxe-kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.tw-luxe-enquiry-copy .tw-luxe-kicker::before,
.tw-luxe-enquiry-copy .tw-luxe-kicker::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: rgba(var(--luxe-gold), 0.4);
}
.tw-luxe-enquiry-copy h2 {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 2rem;
  color: var(--white);
  margin: 8px 0 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.tw-luxe-enquiry-copy p {
  color: rgba(230, 230, 230, 0.6);
  font-size: 0.95rem;
  margin: 0;
  font-family: Georgia, serif;
  font-style: italic;
}
.tw-luxe-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  margin-bottom: 28px;
}
.tw-luxe-form-full {
  grid-column: 1/-1;
}
.tw-luxe-enquiry-form label span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(var(--luxe-gold), 0.85);
  margin-bottom: 8px;
  font-weight: 600;
}
.tw-luxe-enquiry-form input,
.tw-luxe-enquiry-form select,
.tw-luxe-enquiry-form textarea {
  width: 100%;
  padding: 13px 16px;
  background: #0a0a0a;
  border: 1px solid rgba(var(--luxe-gold), 0.2);
  color: var(--white);
  font-size: 0.92rem;
  font-family: var(--body-font);
  transition: border-color 0.2s;
}
.tw-luxe-enquiry-form input:focus,
.tw-luxe-enquiry-form select:focus,
.tw-luxe-enquiry-form textarea:focus {
  outline: none;
  border-color: rgb(var(--luxe-gold));
}
.tw-luxe-enquiry-form textarea {
  resize: vertical;
  min-height: 100px;
}
.tw-luxe-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  background: rgb(var(--luxe-gold));
  border: none;
  color: #0a0a0a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.tw-luxe-submit:hover {
  background: #1580a0;
}

@media (max-width: 900px) {
  .tw-luxe-grid,
  .tw-luxe-trips-grid {
    grid-template-columns: 1fr;
  }
  .tw-luxe-why {
    grid-template-columns: repeat(2, 1fr);
  }
  .tw-luxe-form-grid {
    grid-template-columns: 1fr;
  }
  .tw-luxe-enquiry {
    padding: 32px 24px;
  }
  .tw-luxe-hero-stats {
    padding: 18px 0;
  }
  .tw-luxe-stat {
    padding: 12px 18px;
  }
  .tw-luxe-stat-div {
    display: none;
  }
}

/* ── LUXE single-journey template ── */
.tw-luxe-single .tw-luxe-single-hero {
  position: relative;
  min-height: 78vh;
  padding: 220px 0 96px;
  background: #0a0a0a center/cover no-repeat;
  margin-top: -132px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.tw-luxe-single .tw-luxe-single-hero.has-img {
  background-attachment: scroll;
}
.tw-luxe-single .tw-luxe-single-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.55) 0%,
    rgba(10, 10, 10, 0.45) 35%,
    rgba(10, 10, 10, 0.92) 100%
  );
  pointer-events: none;
}
.tw-luxe-single .tw-luxe-single-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
}
.tw-luxe-single-crumbs {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: rgba(230, 230, 230, 0.55);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.tw-luxe-single-crumbs a {
  color: rgba(var(--luxe-gold), 0.9);
  text-decoration: none;
}
.tw-luxe-single-crumbs span {
  margin: 0 8px;
  color: rgba(var(--luxe-gold), 0.35);
}
.tw-luxe-single-kicker {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  color: rgb(var(--luxe-gold));
  margin-bottom: 20px;
}
.tw-luxe-single-kicker::before,
.tw-luxe-single-kicker::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: rgba(var(--luxe-gold), 0.45);
}
.tw-luxe-single-title {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  color: var(--white);
  margin: 0 0 22px;
  line-height: 1.12;
  letter-spacing: 0.01em;
}
.tw-luxe-single-location {
  font-family: Georgia, serif;
  font-style: italic;
  color: rgba(var(--luxe-gold), 0.85);
  font-size: 1.05rem;
  margin: 0 0 40px;
  letter-spacing: 0.04em;
}
.tw-luxe-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 28px 0;
  border-top: 1px solid rgba(var(--luxe-gold), 0.18);
  border-bottom: 1px solid rgba(var(--luxe-gold), 0.18);
  margin-bottom: 40px;
}
.tw-luxe-single-meta-item {
  flex: 1 1 auto;
  min-width: 140px;
  padding: 6px 28px;
  border-right: 1px solid rgba(var(--luxe-gold), 0.12);
}
.tw-luxe-single-meta-item:last-child {
  border-right: none;
}
.tw-luxe-single-meta-item:first-child {
  padding-left: 0;
}
.tw-luxe-single-meta-item .lbl {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  color: rgba(230, 230, 230, 0.5);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}
.tw-luxe-single-meta-item .val {
  display: block;
  font-family: Georgia, serif;
  font-style: italic;
  color: rgb(var(--luxe-gold));
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.25;
}
.tw-luxe-single-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 42px;
  background: rgb(var(--luxe-gold));
  border: 1px solid rgb(var(--luxe-gold));
  color: #0a0a0a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.tw-luxe-single-hero-cta:hover {
  background: transparent;
  color: rgb(var(--luxe-gold));
}

.tw-luxe-single .tw-luxe-single-wrap {
  max-width: 820px;
  padding: 80px 24px 110px;
}
.tw-luxe-single-section-label {
  font-size: 0.66rem;
  letter-spacing: 0.42em;
  color: rgb(var(--luxe-gold));
  text-transform: uppercase;
  margin: 0 0 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.tw-luxe-single-section-label::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: rgba(var(--luxe-gold), 0.4);
}
.tw-luxe-single-section-title {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 2rem;
  color: var(--white);
  margin: 0 0 32px;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.tw-luxe-single-overview {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.95;
  color: rgba(230, 230, 230, 0.82);
  padding: 0 0 48px;
  border-bottom: 1px solid rgba(var(--luxe-gold), 0.12);
  margin-bottom: 48px;
  font-weight: 300;
}
.tw-luxe-single-overview p {
  margin: 0 0 18px;
}
.tw-luxe-single-content {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(230, 230, 230, 0.75);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(var(--luxe-gold), 0.12);
  margin-bottom: 48px;
  font-weight: 300;
}
.tw-luxe-single-content p {
  margin: 0 0 18px;
}
.tw-luxe-single-content h2,
.tw-luxe-single-content h3 {
  font-family: Georgia, serif;
  font-style: italic;
  color: var(--white);
  font-weight: 400;
  margin: 32px 0 14px;
}

.tw-luxe-single-route {
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(var(--luxe-gold), 0.12);
  margin-bottom: 48px;
}

.tw-luxe-single-list-block {
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(var(--luxe-gold), 0.12);
  margin-bottom: 48px;
}
.tw-luxe-single-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}
.tw-luxe-single-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: rgba(230, 230, 230, 0.82);
  font-size: 0.96rem;
  line-height: 1.55;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 300;
}
.tw-luxe-single-list li i {
  color: rgb(var(--luxe-gold));
  font-size: 0.7rem;
  padding-top: 7px;
  flex-shrink: 0;
}
@media (max-width: 780px) {
  .tw-luxe-single-list {
    grid-template-columns: 1fr;
  }
}

.tw-luxe-single-days {
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(var(--luxe-gold), 0.12);
  margin-bottom: 56px;
}
.tw-luxe-day {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid rgba(var(--luxe-gold), 0.08);
  align-items: start;
}
.tw-luxe-day:first-of-type {
  border-top: none;
  padding-top: 8px;
}
.tw-luxe-day-num {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 2.4rem;
  color: rgb(var(--luxe-gold));
  font-weight: 400;
  line-height: 1;
  padding-top: 4px;
}
.tw-luxe-day-copy h3 {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  font-size: 1.35rem;
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}
.tw-luxe-day-route {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  color: rgba(var(--luxe-gold), 0.85);
  text-transform: uppercase;
  margin: 0 0 14px;
  font-weight: 600;
}
.tw-luxe-day-detail {
  color: rgba(230, 230, 230, 0.72);
  font-size: 0.95rem;
  line-height: 1.85;
  font-weight: 300;
}
.tw-luxe-day-detail p {
  margin: 0 0 14px;
}

.tw-luxe-single-enquiry {
  background: #111;
  border: 1px solid rgba(var(--luxe-gold), 0.18);
  padding: 56px 56px 48px;
  margin-bottom: 48px;
}
.tw-luxe-single-enquiry-copy {
  text-align: center;
  margin-bottom: 36px;
}
.tw-luxe-single-enquiry-copy .tw-luxe-single-section-label {
  display: inline-flex;
}
.tw-luxe-single-enquiry-copy .tw-luxe-single-section-label::before {
  display: none;
}
.tw-luxe-single-enquiry-sub {
  color: rgba(230, 230, 230, 0.62);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 0.98rem;
  margin: 0;
}

.tw-luxe-single-back {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(var(--luxe-gold), 0.85);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid rgba(var(--luxe-gold), 0.2);
  transition: color 0.2s, border-color 0.2s;
  font-weight: 600;
}
.tw-luxe-single-back:hover {
  color: rgb(var(--luxe-gold));
  border-color: rgb(var(--luxe-gold));
}

@media (max-width: 780px) {
  .tw-luxe-single .tw-luxe-single-hero {
    padding: 172px 0 72px;
    min-height: auto;
    margin-top: -104px;
  }
  .tw-luxe-single-meta-item {
    padding: 10px 16px;
    border-right: none;
    border-bottom: 1px solid rgba(var(--luxe-gold), 0.08);
    flex: 1 1 45%;
  }
  .tw-luxe-single-meta-item:last-child {
    border-bottom: none;
  }
  .tw-luxe-single .tw-luxe-single-wrap {
    padding: 56px 18px 80px;
  }
  .tw-luxe-single-overview {
    font-size: 1.05rem;
    line-height: 1.85;
  }
  .tw-luxe-day {
    grid-template-columns: 60px 1fr;
    gap: 14px;
    padding: 24px 0;
  }
  .tw-luxe-day-num {
    font-size: 1.8rem;
  }
  .tw-luxe-single-enquiry {
    padding: 32px 22px;
  }
}

/* ══════════════════════════════════════════════════════════════
   LUXURY — sprint landing (pure-black full-viewport hero)
   ══════════════════════════════════════════════════════════════ */
.tw-luxury-page {
  background: #000;
  color: var(--white);
}

/* Scrolly wrapper — the video stage stays pinned (sticky) while the hero,
   why-cards and journeys sections scroll over it; video scrub progress is
   computed over this whole wrapper in tw-luxury.js. */
.tw-luxury-scrolly {
  position: relative;
  margin-top: -132px;
  background: #000;
}
.tw-luxury-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.tw-luxury-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
/* Legibility shade over the video for the text layers riding above it. */
.tw-luxury-stage-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.7) 100%
  );
  pointer-events: none;
}
/* Content layers ride on top of the pinned stage. */
.tw-luxury-layers {
  position: relative;
  z-index: 1;
  margin-top: -100vh;
}

.tw-luxury-hero {
  position: relative;
  min-height: 100vh;
  background: transparent;
  padding: 132px 0 80px;
  display: flex;
  align-items: flex-end;
}

/* Middle text section — floats over the still-scrubbing video.
   Tall runway + sticky inner container: the card row pins to the viewport
   center while ~160vh of scroll scrubs the reveal, so the sequence plays
   slowly and the background video gets time to breathe underneath. */
.tw-luxury-mid {
  min-height: 260vh;
}
.tw-luxury-mid .container {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.tw-luxury-mid .tw-luxe-why {
  width: 100%;
  margin-bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
}
/* Cards start hidden (class added by tw-luxury.js so no-JS still shows them);
   the scroll loop drives inline opacity/transform per card, left → right.
   No CSS transition — values are scrubbed, so reversing scroll reverses them. */
.tw-luxury-mid.js-cards .tw-luxe-why-card {
  opacity: 0;
  transform-origin: 50% 100%;
  will-change: opacity, transform;
}

/* Journeys — after the video sequence ends, on solid black (gold/black combo
   comes from the shared .tw-luxe-* card styles). */
.tw-luxury-collection {
  background: #000;
  padding: 110px 0 120px;
  position: relative;
  z-index: 1;
}
.tw-luxury-collection .tw-luxe-trips-grid {
  margin-bottom: 0;
}
/* Gold hairline separating the video sequence from the collection. */
.tw-luxury-collection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(880px, 78%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(var(--luxe-gold), 0.55),
    transparent
  );
}
/* Minimal gold reveals, scrubbed by tw-luxury.js (no transitions — values track scroll).
   .js-reveal is added by the script, so no-JS / reduced-motion renders everything as-is. */
.tw-luxury-collection.js-reveal .tw-luxe-section-head {
  opacity: 0;
  will-change: opacity, transform;
}
.tw-luxury-collection.js-reveal .tw-luxe-section-head p::before,
.tw-luxury-collection.js-reveal .tw-luxe-section-head p::after {
  transform: scaleX(var(--draw, 0));
}
.tw-luxury-collection.js-reveal .tw-luxe-section-head p::before {
  transform-origin: right center;
}
.tw-luxury-collection.js-reveal .tw-luxe-section-head p::after {
  transform-origin: left center;
}
.tw-luxury-collection.js-reveal .tw-luxe-trip-card {
  opacity: 0;
  will-change: opacity, transform;
}
/* Gold top hairline that draws across each card as it lands. */
.tw-luxury-collection .tw-luxe-trip-card {
  position: relative;
}
.tw-luxury-collection .tw-luxe-trip-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(var(--luxe-gold), 0.85),
    rgba(var(--luxe-gold), 0.1)
  );
  transform: scaleX(var(--line, 0));
  transform-origin: left center;
  pointer-events: none;
}
.tw-luxury-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tw-luxury-headline {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible; /* let falling characters spill below the text row, clipped by the hero itself */
}
/* Per-character fall/fade/squish — driven purely by --ty/--op/--sx/--sy custom
   properties set from scroll position in tw-luxury.js. No transition: the
   values must snap exactly to scroll so scrolling back up reverses instantly. */
.tw-luxury-char {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  transform: translateY(calc(var(--ty, 0) * 1px))
    scale(var(--sx, 1), var(--sy, 1));
  opacity: var(--op, 1);
}
/* Brand-gold accent on the final word ("LUXE"), matching /luxe/'s gold. */
.tw-luxury-char--gold {
  fill: rgb(var(--luxe-gold));
}

/* Thin gold hairline above the headline — same rgba(212,175,55,…) hairline
   language used throughout /luxe/. Fades with overall scroll progress. */
.tw-luxury-divider {
  width: 120px;
  height: 1px;
  background: rgba(var(--luxe-gold), 0.45);
  margin-bottom: 28px;
  opacity: calc(1 - var(--progress, 0));
}

/* "By Invitation" kicker — same flanking-hairline treatment as .tw-luxe-hero-kicker. */
.tw-luxury-kicker-wrap {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: calc(1 - var(--progress, 0));
}
.tw-luxury-kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--body-font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgb(var(--luxe-gold));
  white-space: nowrap;
}
.tw-luxury-kicker::before,
.tw-luxury-kicker::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  background: rgba(var(--luxe-gold), 0.5);
}

/* Mid-hero copy — fills the space between kicker and headline; fades with scroll. */
.tw-luxury-hero-copy {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: min(760px, 88vw);
  text-align: center;
  opacity: calc(1 - var(--progress, 0));
  pointer-events: none;
}
.tw-luxury-hero-line {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.94);
  margin: 0 0 22px;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
}
.tw-luxury-hero-sub {
  font-family: var(--body-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgb(var(--luxe-gold));
  margin: 0;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.6);
}

/* Hairline corner frame — evokes the gold-bordered panels used across /luxe/. */
.tw-luxury-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: calc(1 - var(--progress, 0));
}
.tw-luxury-corner {
  position: absolute;
  width: 34px;
  height: 34px;
  border-color: rgba(var(--luxe-gold), 0.45);
}
.tw-luxury-corner--tl {
  top: 28px;
  left: 28px;
  border-top: 1px solid;
  border-left: 1px solid;
}
.tw-luxury-corner--tr {
  top: 28px;
  right: 28px;
  border-top: 1px solid;
  border-right: 1px solid;
}

@media (max-width: 600px) {
  .tw-luxury-scrolly {
    margin-top: -112px;
  }
  .tw-luxury-hero {
    padding: 112px 0 60px;
  }
  .tw-luxury-kicker-wrap {
    top: 122px;
  }
  .tw-luxury-kicker {
    font-size: 0.6rem;
    letter-spacing: 0.32em;
    gap: 10px;
  }
  .tw-luxury-kicker::before,
  .tw-luxury-kicker::after {
    width: 20px;
  }
  .tw-luxury-corner {
    width: 22px;
    height: 22px;
  }
  .tw-luxury-corner--tl,
  .tw-luxury-corner--tr {
    top: 18px;
  }
  .tw-luxury-corner--tl {
    left: 18px;
  }
  .tw-luxury-corner--tr {
    right: 18px;
  }
  .tw-luxury-divider {
    width: 80px;
    margin-bottom: 20px;
  }
  .tw-luxury-hero-line {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  .tw-luxury-hero-sub {
    font-size: 0.62rem;
    letter-spacing: 0.24em;
  }
}

.tw-mega--womens {
  min-width: 280px;
}
.tw-mega-womens-hero {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 10px;
  border-bottom: 1px solid rgba(255, 105, 135, 0.2);
  margin-bottom: 8px;
}
.tw-mega-womens-hero .tw-mega-womens-icon {
  font-size: 2rem;
}
.tw-mega-womens-hero strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--tw-navy);
}
.tw-mega-womens-hero small {
  font-size: 0.72rem;
  color: #c2185b;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
  .tw-womens-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tw-womens-trips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tw-womens-why {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .tw-womens-grid {
    grid-template-columns: 1fr;
  }
  .tw-womens-trips-grid {
    grid-template-columns: 1fr;
  }
  .tw-womens-why {
    grid-template-columns: 1fr;
  }
  .tw-womens-trust {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ── Content image carousel (auto-built by tw-carousel.js for 2+ images) ── */
.tw-img-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  margin: 28px 0;
  background: var(--tw-navy);
  aspect-ratio: 16/9;
}
.tw-img-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.tw-img-carousel-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.tw-img-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tw-img-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(13, 21, 38, 0.65);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.tw-img-carousel-btn:hover {
  background: rgba(216, 53, 80, 0.85);
  transform: translateY(-50%) scale(1.08);
  color: var(--tw-navy);
}
.tw-img-carousel-btn--prev {
  left: 14px;
}
.tw-img-carousel-btn--next {
  right: 14px;
}
.tw-img-carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 3;
}
.tw-img-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.tw-img-carousel-dot.active {
  background: var(--tw-pink);
  transform: scale(1.35);
}
.tw-img-carousel-count {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(13, 21, 38, 0.6);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 3;
}

/* ── Homepage Testimonials section ── */
.tw-testimonials-section {
  padding: 80px 0 88px;
  background: #f7f9fb;
  position: relative;
  overflow: hidden;
}
.tw-testimonials-section::before {
  display: none;
}
.tw-testimonials-inner {
  position: relative;
  z-index: 1;
}
.tw-testimonials-head {
  text-align: center;
  margin-bottom: 44px;
}
.tw-testimonials-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tw-blue);
  background: rgba(27, 147, 176, 0.12);
  border: 1px solid rgba(27, 147, 176, 0.3);
  border-radius: 4px;
  padding: 5px 18px;
  margin-bottom: 14px;
}
.tw-testimonials-title {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(2rem, 4.2vw, 3rem);
  color: var(--tw-navy);
  letter-spacing: -0.01em;
  margin: 0;
}
.tw-testimonials-title span {
  font-style: italic;
  font-weight: 400;
  color: var(--tw-pink);
}
.tw-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tw-testi-card {
  background: var(--white);
  border: 1px solid rgba(13, 21, 38, 0.08);
  box-shadow: 0 4px 20px rgba(13, 21, 38, 0.05);
  border-radius: 8px;
  padding: 28px 26px 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.tw-testi-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--tw-pink);
  border-radius: 0 0 8px 8px;
}
.tw-testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(13, 21, 38, 0.1);
  border-color: rgba(216, 53, 80, 0.25);
}
.tw-testi-card-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.tw-testi-card-stars span {
  color: var(--tw-pink);
  font-size: 1rem;
}
.tw-testi-card-quote-mark {
  font-family: Georgia, serif;
  font-size: 4.5rem;
  color: rgba(27, 147, 176, 0.18);
  line-height: 0.5;
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
}
.tw-testi-card-text {
  font-size: 0.92rem;
  color: rgba(13, 21, 38, 0.68);
  line-height: 1.78;
  font-style: italic;
  margin: 0 0 20px;
  flex: 1;
}
.tw-testi-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.tw-testi-card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--tw-pink);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tw-testi-card-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--tw-navy);
}
.tw-testi-card-author span {
  display: block;
  font-size: 0.73rem;
  color: rgba(13, 21, 38, 0.45);
  font-weight: 600;
  margin-top: 2px;
}
.tw-testi-card-trip {
  font-size: 0.7rem;
  color: var(--tw-blue);
  font-weight: 700;
  background: rgba(27, 147, 176, 0.12);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 3px;
}
@media (max-width: 900px) {
  .tw-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .tw-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════
   DESTINATION LANDING PAGE  (taxonomy-destination_region.php)
   ══════════════════════════════════════════════════════════════ */
.dest-hero {
  position: relative;
  background: #eef3f6;
  overflow: hidden;
}
/* Parallax background — translated by JS scroll handler */
.dest-hero-bg {
  position: absolute;
  inset: -80px 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}
.dest-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 12, 26, 0.96) 0%,
    rgba(7, 12, 26, 0.52) 40%,
    rgba(7, 12, 26, 0.15) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.dest-hero:not(.has-hero-img) .dest-hero-overlay {
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(27, 147, 176, 0.14) 0%,
    transparent 60%
  );
}
.dest-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
/* Left-aligned breadcrumbs — overrides explore-crumbs justify-content:center */
.dest-crumbs {
  display: flex !important;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-start !important;
  font-size: 0.82rem;
  color: rgba(13, 21, 38, 0.5);
  margin-bottom: 18px;
}
.dest-crumbs a {
  color: var(--tw-blue);
  text-decoration: none;
  font-weight: 700;
}
.dest-crumbs span {
  color: rgba(13, 21, 38, 0.3);
}
.dest-hero-title {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--tw-navy);
  letter-spacing: -0.01em;
  line-height: 1;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.dest-hero-icon {
  font-size: 0.5em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.dest-hero-tagline {
  font-size: 1.05rem;
  color: rgba(13, 21, 38, 0.6);
  margin: 0 0 28px;
  max-width: 580px;
  line-height: 1.7;
}
.dest-hero-stats {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  background: var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(13, 21, 38, 0.08);
  width: fit-content;
  box-shadow: 0 8px 24px rgba(13, 21, 38, 0.05);
}
.dest-stat {
  padding: 14px 28px;
  text-align: center;
}
.dest-stat-div {
  width: 1px;
  background: rgba(13, 21, 38, 0.1);
  margin: 10px 0;
}
.dest-stat strong {
  display: block;
  font-family: var(--heading-font);
  font-size: 2rem;
  color: var(--tw-pink);
  letter-spacing: 0.04em;
  line-height: 1;
}
.dest-stat span {
  display: block;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(13, 21, 38, 0.5);
  margin-top: 4px;
  white-space: nowrap;
}
.dest-hero.has-hero-img .dest-crumbs {
  color: rgba(255, 255, 255, 0.5);
}
.dest-hero.has-hero-img .dest-crumbs span {
  color: rgba(255, 255, 255, 0.35);
}
.dest-hero.has-hero-img .dest-hero-title {
  color: var(--white);
}
.dest-hero.has-hero-img .dest-hero-tagline {
  color: rgba(255, 255, 255, 0.72);
}
.dest-hero.has-hero-img .dest-hero-stats {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
.dest-hero.has-hero-img .dest-stat-div {
  background: rgba(255, 255, 255, 0.12);
}
.dest-hero.has-hero-img .dest-stat span {
  color: rgba(255, 255, 255, 0.55);
}
.dest-wrap {
  padding: 36px 0 80px;
}
.dest-overview {
  background: #f0f7ff;
  border-left: 4px solid var(--tw-blue);
  border-radius: 0 14px 14px 0;
  padding: 18px 22px;
  margin-bottom: 32px;
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.75;
}
.dest-overview p {
  margin: 0;
}
.dest-sub-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.dest-sub-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: var(--white);
  border: 1.5px solid #e0e8f0;
  border-radius: 4px;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--tw-navy);
  text-decoration: none;
  transition: all 0.2s;
}
.dest-sub-chip:hover {
  border-color: var(--tw-blue);
  color: var(--tw-blue);
  background: #f0f7ff;
}
.dest-sub-chip-count {
  background: #e0e8f0;
  color: #6b7a8f;
  font-size: 0.7rem;
  padding: 1px 7px;
  border-radius: 4px;
  font-weight: 800;
}
.dest-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e8edf5;
}
.dest-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border: 1.5px solid #e0e8f0;
  border-radius: 4px;
  background: transparent;
  color: #4a5568;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--body-font);
  transition: all 0.2s;
  white-space: nowrap;
}
.dest-tab span {
  background: #e8edf5;
  color: #6b7a8f;
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 800;
  transition: all 0.2s;
}
.dest-tab:hover {
  border-color: var(--tw-blue);
  color: var(--tw-blue);
}
.dest-tab.active {
  background: var(--tw-blue);
  border-color: var(--tw-blue);
  color: var(--white);
}
.dest-tab.active span {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dest-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e8edf5;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.dest-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(13, 21, 38, 0.12);
}
.dest-card-img {
  display: block;
  position: relative;
  height: 200px;
  background: #f0f4f8;
  overflow: hidden;
  flex-shrink: 0;
}
.dest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.dest-card:hover .dest-card-img img {
  transform: scale(1.06);
}
.dest-card-ph {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  opacity: 0.3;
}
.dest-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 4px;
  z-index: 2;
  letter-spacing: 0.04em;
}
.dest-card-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(13, 21, 38, 0.7);
  color: var(--tw-pink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
}
.dest-card-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.dest-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--tw-navy);
  margin: 0 0 6px;
  line-height: 1.35;
}
.dest-card-title a {
  color: inherit;
  text-decoration: none;
}
.dest-card-title a:hover {
  color: var(--tw-blue);
}
.dest-card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.dest-card-dur {
  font-size: 0.75rem;
  font-weight: 700;
  color: #6b7a8f;
  background: #f0f4f8;
  padding: 3px 10px;
  border-radius: 4px;
}
.dest-card-excerpt {
  font-size: 0.83rem;
  color: #6b7a8f;
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}
.dest-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}
.dest-card-price span {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: #9ba8bb;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dest-card-price strong {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--tw-navy);
}
.dest-card-btn {
  display: inline-flex;
  padding: 9px 18px;
  background: var(--tw-pink);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s;
}
.dest-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(216, 53, 80, 0.35);
  color: var(--white);
}
@media (max-width: 900px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .dest-grid {
    grid-template-columns: 1fr;
  }
  .dest-hero {
    min-height: 472px;
    margin-top: -112px;
  }
  .dest-tabs {
    gap: 6px;
  }
  .dest-tab {
    font-size: 0.78rem;
    padding: 7px 12px;
  }
}

/* ══════════════════════════════════════════════════════════════
   SEARCH RESULTS PAGE — floating category nav
   ══════════════════════════════════════════════════════════════ */
/* Layout: reserve left space so results don't slide under the nav */
.tw-search-layout {
  position: relative;
  padding-top: 36px;
  padding-left: 272px;
}
.tw-search-results {
  min-width: 0;
}
.tw-search-results .tw-results-group {
  scroll-margin-top: 110px;
}

/* Nav — sits inside the layout grid by default (absolute at top-left).
   JS adds .is-floating once user scrolls past the hero, which flips it to fixed. */
.tw-search-nav {
  position: absolute;
  top: 36px;
  left: 0;
  width: 240px;
  background: var(--white);
  border: 1px solid #e8edf5;
  border-radius: 6px;
  padding: 18px 14px 14px;
  box-shadow: 0 10px 32px rgba(13, 21, 38, 0.1);
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  z-index: 50;
}
.tw-search-nav.is-floating {
  position: fixed;
  top: 110px;
  left: calc(50% - 600px + 20px);
}
.tw-search-nav-head {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ba8bb;
  margin-bottom: 10px;
  padding: 0 10px;
}
.tw-search-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tw-search-nav-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #4a5568;
  font-size: 0.86rem;
  font-weight: 700;
  transition: background 0.15s, color 0.15s;
  border: 1.5px solid transparent;
}
.tw-search-nav-list a:hover {
  background: #f0f7ff;
  color: var(--tw-blue);
}
.tw-search-nav-list a.active {
  background: var(--tw-blue);
  color: var(--white);
  border-color: var(--tw-blue);
  box-shadow: 0 4px 12px rgba(27, 147, 176, 0.25);
}
.tw-search-nav-list a.active .tw-search-nav-badge {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}
.tw-search-nav-icon {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1;
}
.tw-search-nav-label {
  flex: 1;
}
.tw-search-nav-badge {
  background: #e8edf5;
  color: #6b7a8f;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
}
.tw-search-nav-top {
  display: block;
  margin-top: 12px;
  padding: 8px 12px;
  border-top: 1px solid #f0f4f8;
  color: var(--tw-blue);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}
.tw-search-nav-top:hover {
  color: #055e72;
}

/* Mid-size screens: pin floating mode to left viewport edge */
@media (max-width: 1280px) {
  .tw-search-nav.is-floating {
    left: 20px;
  }
}

/* Tablet/mobile: nav becomes a regular block above the results (no float) */
@media (max-width: 900px) {
  .tw-search-layout {
    padding-left: 0;
  }
  .tw-search-nav,
  .tw-search-nav.is-floating {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    max-height: none;
    margin-bottom: 20px;
  }
  .tw-search-nav-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .tw-search-nav-list a {
    font-size: 0.78rem;
    padding: 7px 10px;
  }
  .tw-search-nav-top {
    margin-top: 8px;
    border-top: none;
  }
}

/* ══════════════════════════════════════════════════════════════
   TRAVEL AGENCY REGISTRATION PAGE
   ══════════════════════════════════════════════════════════════ */
.tw-agency-hero {
  position: relative;
  background: #eef3f6;
  margin-top: -132px;
  padding-top: 132px;
  padding-bottom: 56px;
  overflow: hidden;
  text-align: center;
}
@media (max-width: 600px) {
  .tw-agency-hero {
    margin-top: -112px;
    padding-top: 112px;
  }
}
.tw-agency-hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      ellipse at 50% 0%,
      rgba(27, 147, 176, 0.16) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 85% 100%,
      rgba(216, 53, 80, 0.08) 0%,
      transparent 50%
    );
}
.tw-agency-hero-inner {
  position: relative;
  z-index: 1;
}
.tw-agency-hero-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tw-blue);
  background: rgba(27, 147, 176, 0.14);
  border: 1px solid rgba(27, 147, 176, 0.35);
  border-radius: 4px;
  padding: 5px 18px;
  margin-bottom: 18px;
}
.tw-agency-hero-title {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--tw-navy);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0 0 12px;
}
.tw-agency-hero-title span {
  color: var(--tw-pink);
}
.tw-agency-hero-sub {
  font-size: 1rem;
  color: rgba(13, 21, 38, 0.62);
  max-width: 640px;
  margin: 0 auto 22px;
  line-height: 1.7;
}
.tw-agency-hero-perks {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.tw-agency-hero-perks span {
  font-size: 0.85rem;
  color: var(--tw-pink);
  font-weight: 700;
}

.tw-agency-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.tw-agency-notice {
  border-radius: 6px;
  padding: 18px 22px;
  margin-bottom: 28px;
}
.tw-agency-notice.success {
  background: #ecfdf5;
  border: 1.5px solid #10b981;
  color: #065f46;
}
.tw-agency-notice.error {
  background: var(--pastel-pink);
  border: 1.5px solid #ef4444;
  color: #991b1b;
}
.tw-agency-notice strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}
.tw-agency-notice p {
  margin: 0;
  font-size: 0.88rem;
}

.tw-agency-form {
  background: var(--white);
  border: 1px solid #e8edf5;
  border-radius: 6px;
  padding: 36px 40px;
  box-shadow: 0 8px 32px rgba(13, 21, 38, 0.06);
}
.tw-agency-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}
.tw-agency-field {
  display: flex;
  flex-direction: column;
}
.tw-agency-field--full {
  grid-column: 1/-1;
}
.tw-agency-field label {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--tw-navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.tw-agency-field input,
.tw-agency-field textarea {
  width: 100%;
  border: 1.5px solid #dde5ef;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-family: var(--body-font);
  color: var(--tw-navy);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.tw-agency-field input:focus,
.tw-agency-field textarea:focus {
  outline: none;
  border-color: var(--tw-blue);
  box-shadow: 0 0 0 3px rgba(27, 147, 176, 0.12);
}
.tw-agency-field textarea {
  resize: vertical;
  min-height: 80px;
}

.tw-agency-consent {
  margin: 24px 0 20px;
  padding: 14px 16px;
  background: #f8fafc;
  border-radius: 10px;
}
.tw-agency-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #374151;
  cursor: pointer;
}
.tw-agency-consent input {
  margin-top: 3px;
}

.tw-agency-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--tw-pink);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(216, 53, 80, 0.32);
  transition: transform 0.2s, box-shadow 0.2s;
}
.tw-agency-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(216, 53, 80, 0.45);
}

@media (max-width: 680px) {
  .tw-agency-form {
    padding: 24px 20px;
  }
  .tw-agency-form-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Blog section (front-page) ── */
.tw-blog-section {
  padding: 80px 0 88px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.tw-blog-section::before {
  display: none;
}
.tw-blog-section .container {
  position: relative;
  z-index: 1;
}
.tw-blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tw-blog-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tw-pink);
  margin-bottom: 8px;
}
.tw-blog-title {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--tw-navy);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
}
.tw-blog-viewall {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--tw-pink);
  text-decoration: none;
  border: 1.5px solid rgba(216, 53, 80, 0.4);
  padding: 9px 20px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.tw-blog-viewall:hover {
  background: var(--tw-pink);
  color: var(--white);
  border-color: var(--tw-pink);
}
.tw-blog-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.tw-blog-card--main {
  grid-row: 1/3;
}
.tw-blog-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(13, 21, 38, 0.08);
  box-shadow: 0 4px 20px rgba(13, 21, 38, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.tw-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(13, 21, 38, 0.12);
  border-color: rgba(216, 53, 80, 0.3);
}
.tw-blog-card-img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.tw-blog-card--main .tw-blog-card-img-wrap {
  height: 280px;
}
.tw-blog-card--side .tw-blog-card-img-wrap {
  height: 170px;
}
.tw-blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.tw-blog-card:hover .tw-blog-card-img {
  transform: scale(1.06);
}
.tw-blog-card-img--placeholder {
  background: linear-gradient(135deg, #0a1e30, #0d2d44);
}
.tw-blog-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 21, 38, 0.72) 0%,
    rgba(13, 21, 38, 0.1) 55%,
    transparent 100%
  );
  transition: opacity 0.3s;
}
.tw-blog-card:hover .tw-blog-card-overlay {
  opacity: 0.85;
}
.tw-blog-card-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(216, 53, 80, 0.92);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 4px;
}
.tw-blog-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.tw-blog-card-title {
  font-family: var(--body-font);
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
}
.tw-blog-card--main .tw-blog-card-title {
  font-size: 1.22rem;
}
.tw-blog-card--side .tw-blog-card-title {
  font-size: 0.98rem;
}
.tw-blog-card-title a {
  color: var(--tw-navy);
  text-decoration: none;
  transition: color 0.2s;
}
.tw-blog-card-title a:hover {
  color: var(--tw-pink);
}
.tw-blog-card-excerpt {
  font-size: 0.88rem;
  color: rgba(13, 21, 38, 0.6);
  line-height: 1.65;
  margin: 0;
}
.tw-blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(13, 21, 38, 0.07);
}
.tw-blog-card-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(13, 21, 38, 0.7);
}
.tw-blog-card-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(216, 53, 80, 0.5);
  flex-shrink: 0;
  background: rgba(216, 53, 80, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tw-blog-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tw-blog-card-info {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  color: rgba(13, 21, 38, 0.45);
  font-weight: 600;
  flex-shrink: 0;
}
.tw-blog-card-dot {
  opacity: 0.4;
}
.tw-blog-empty {
  text-align: center;
  padding: 48px 24px;
  color: rgba(13, 21, 38, 0.5);
}
.tw-blog-empty a {
  color: var(--tw-pink);
  font-weight: 800;
  text-decoration: none;
}
@media (max-width: 768px) {
  .tw-blog-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .tw-blog-card--main {
    grid-row: auto;
  }
  .tw-blog-card--main .tw-blog-card-img-wrap {
    height: 220px;
  }
  .tw-blog-card--side .tw-blog-card-img-wrap {
    height: 150px;
  }
  .tw-blog-section {
    padding: 56px 0 64px;
  }
}

/* ── Community section (front-page) ── */
.tw-community-section {
  background: #f7f9fb;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.tw-community-section::before {
  display: none;
}
.tw-community-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.tw-community-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tw-blue);
  display: block;
  margin-bottom: 12px;
}
.tw-community-title {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.4vw, 3.3rem);
  color: var(--tw-navy);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 20px;
}

.tw-community-title span {
  font-style: italic;
  font-weight: 400;
  color: var(--tw-pink);
}
.tw-community-title span.tw-community-title-num {
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
  font-style: normal;
  color: var(--tw-navy);
  margin-right: -0.06em;
}
.tw-community-copy p {
  font-family: var(--heading-font);
  font-style: italic;
  font-weight: 400;
  color: rgba(13, 21, 38, 0.65);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
}
.tw-community-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tw-pink);
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.tw-community-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  color: var(--white);
}
.tw-community-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.tw-cstat {
  background: var(--white);
  border: 1px solid rgba(13, 21, 38, 0.08);
  border-radius: 6px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
  box-shadow: 0 4px 18px rgba(13, 21, 38, 0.04);
}
.tw-cstat:hover {
  border-color: rgba(216, 53, 80, 0.3);
}
.tw-cstat strong {
  display: block;
  font-family: var(--heading-font);
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  color: var(--tw-pink);
  margin-bottom: 6px;
}
.tw-cstat span {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(13, 21, 38, 0.5);
}
@media (max-width: 768px) {
  .tw-community-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tw-community-title {
    font-size: 2.4rem;
  }
}
@media (max-width: 480px) {
  .tw-community-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── CTA section (front-page) ── */
/* Get a free itinerary — flat solid panel (no gradient/photo), red + blue accents only. */
.tw-cta-section {
  position: relative;
  overflow: hidden;
  background: var(--tw-navy);
  padding: 96px 0;
}
.tw-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("https://images.unsplash.com/photo-1721572321878-46fbef2e4bbd?crop=entropy&cs=srgb&fm=jpg&ixid=M3w4NjAxODF8MHwxfHNlYXJjaHwxfHxsdXh1cnklMjByYWphc3RoYW4lMjBoZXJpdGFnZSUyMHBhbGFjZXxlbnwwfHx8fDE3ODM5NDQxMTJ8MA&ixlib=rb-4.1.0&q=85");
  background-size: cover;
  background-position: center center;
  opacity: 0.35;
}
.tw-cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
      circle 480px at 100% 0%,
      rgba(229, 18, 125, 0.65) 0%,
      rgba(229, 18, 125, 0.3) 45%,
      transparent 78%
    ),
    radial-gradient(
      circle 480px at 0% 100%,
      rgba(37, 215, 242, 0.6) 0%,
      rgba(37, 215, 242, 0.28) 45%,
      transparent 78%
    ),
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.5) 0%,
      rgba(10, 10, 10, 0.3) 40%,
      rgba(10, 10, 10, 0.7) 100%
    );
}
.tw-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.tw-cta-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tw-blue);
  display: block;
  margin-bottom: 18px;
}
.tw-cta-title {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.tw-cta-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--tw-pink);
}
.tw-cta-title span {
  color: var(--tw-blue);
}
.tw-cta-desc {
  font-family: var(--heading-font);
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px;
  font-weight: 400;
}
.tw-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.tw-cta-whatsapp {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.tw-cta-whatsapp:hover {
  color: var(--white);
  border-color: var(--tw-blue);
}
@media (max-width: 600px) {
  .tw-cta-section {
    padding: 64px 0;
  }
  .tw-cta-actions {
    flex-direction: column;
    gap: 16px;
  }
}

/* ================================================================
   BLOG + AFFILIATES PAGE (moved from page-blog-affiliates.php)
   ================================================================ */
.ba-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.ba-hero {
  margin-top: -132px;
  padding-top: 132px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 92px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #eef3f6;
}
.ba-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      ellipse at 50% 0%,
      rgba(27, 147, 176, 0.16) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 85% 100%,
      rgba(216, 53, 80, 0.08) 0%,
      transparent 50%
    );
}
.ba-hero > * {
  position: relative;
  z-index: 1;
}
.ba-hero-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tw-blue);
  background: rgba(27, 147, 176, 0.14);
  border: 1px solid rgba(27, 147, 176, 0.35);
  border-radius: 4px;
  padding: 5px 18px;
  margin-bottom: 18px;
}
.ba-hero-title {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--tw-navy);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.ba-hero-title span {
  color: var(--tw-pink);
}
.ba-hero-sub {
  font-size: 1rem;
  color: rgba(13, 21, 38, 0.62);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Affiliate banner — floating white card overlapping the hero bottom */
/* Dark feature card overlapping the hero — breaks up the all-white page */
.ba-aff-banner {
  background: var(--white);
  border: 1px solid #e0e8f0;
  border-radius: 6px;
  padding: 28px 32px;
  margin: -56px auto 48px;
  max-width: 1152px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: 0 6px 32px rgba(13, 21, 38, 0.09);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.ba-aff-banner::before {
  display: none;
}
.ba-aff-banner > * {
  position: relative;
  z-index: 1;
}
.ba-aff-text-col {
  flex: 1 1 260px;
}
.ba-aff-heading {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  color: var(--tw-navy);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.ba-aff-desc {
  font-size: 0.87rem;
  color: #6b7a8f;
  line-height: 1.65;
}
.ba-aff-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1 1 320px;
  align-items: center;
}
.ba-aff-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: #f4f7fb;
  border: 1px solid #e0e8f0;
  border-radius: 10px;
  text-decoration: none;
  color: var(--tw-navy);
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.ba-aff-chip:hover {
  border-color: var(--tw-pink);
  background: rgba(216, 53, 80, 0.1);
  transform: translateY(-2px);
}
.ba-aff-chip-icon {
  font-size: 1.1rem;
}
.ba-aff-chip-label {
  color: #6b7a8f;
  font-size: 0.72rem;
  font-weight: 600;
  display: block;
}
.ba-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 0 28px;
  border-bottom: 1px solid #e0e8f0;
  margin-bottom: 36px;
}
.ba-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid #e0e8f0;
  background: transparent;
  color: #6b7a8f;
  font-size: 0.83rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--body-font);
  transition: background 0.2s, border-color 0.2s, color 0.2s, opacity 0.2s;
}
.ba-filter-pill.active,
.ba-filter-pill:hover {
  background: var(--tw-pink);
  border-color: var(--tw-pink);
  color: var(--white);
}
/* Post-count badge inside each pill */
.ba-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 4px;
  background: rgba(13, 21, 38, 0.08);
  color: #475569;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
}
.ba-filter-pill.active .ba-filter-count,
.ba-filter-pill:hover .ba-filter-count {
  background: rgba(13, 21, 38, 0.16);
  color: var(--tw-navy);
}
/* Empty categories — faded but still clickable; reveal-on-hover for discoverability */
.ba-filter-pill--empty {
  opacity: 0.45;
}
.ba-filter-pill--empty:hover {
  opacity: 1;
}
.ba-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e0e8f0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  margin-bottom: 48px;
}
.ba-featured-img {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: #f0f4f8;
}
.ba-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--tw-pink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 4px;
}
.ba-featured-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ba-featured-meta {
  font-size: 0.78rem;
  color: #6b7a8f;
  margin-bottom: 10px;
}
.ba-featured-title {
  font-family: var(--heading-font);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--tw-navy);
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.ba-featured-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.ba-featured-title a:hover {
  color: var(--tw-blue);
}
.ba-featured-excerpt {
  font-size: 0.92rem;
  color: #6b7a8f;
  line-height: 1.7;
  margin-bottom: 20px;
}
.ba-aff-rows {
  border-top: 1px solid #e0e8f0;
  padding-top: 18px;
}
.ba-aff-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e0e8f0;
  font-size: 0.84rem;
}
.ba-aff-row:last-child {
  border-bottom: none;
}
.ba-aff-row-name {
  color: var(--tw-bodyColor);
  font-weight: 700;
}
.ba-aff-row-sub {
  color: #6b7a8f;
  font-size: 0.76rem;
}
.ba-aff-row-link {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--tw-blue);
  border: 1px solid rgba(27, 147, 176, 0.35);
  border-radius: 5px;
  padding: 4px 12px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.ba-aff-row-link:hover {
  background: var(--tw-blue);
  color: var(--white);
}
.ba-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--tw-blue);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  margin-top: 16px;
}
.ba-read-more:hover {
  color: var(--tw-pink);
}
.ba-section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.ba-section-head {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  color: var(--tw-navy);
  letter-spacing: 0.04em;
  margin: 0;
}
.ba-write-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: var(--tw-pink);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: 9px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.ba-write-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
/* Filter empty-state */
.ba-no-filter-results {
  text-align: center;
  padding: 32px 20px;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 6px;
  margin-bottom: 32px;
  color: #475569;
  font-size: 0.95rem;
}
.ba-no-filter-results p {
  margin: 0;
}
.ba-reset-filter {
  background: none;
  border: none;
  color: var(--tw-blue);
  font-weight: 800;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  font-size: inherit;
  font-family: inherit;
}
.ba-reset-filter:hover {
  color: #055e72;
}
/* Row actions wrapper + "View All Blogs" pill */
.ba-section-row-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ba-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: transparent;
  color: var(--tw-blue);
  border: 1.5px solid var(--tw-blue);
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: 9px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.ba-view-all-btn:hover {
  background: var(--tw-blue);
  color: var(--white);
  transform: translateY(-1px);
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}
.ba-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e0e8f0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.ba-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.13);
}
.ba-card-img {
  height: 190px;
  overflow: hidden;
  background: #f0f4f8;
  position: relative;
}
.ba-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f4f8, rgba(27, 147, 176, 0.08));
  color: #6b7a8f;
  font-size: 2rem;
}
.ba-card-cat {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: rgba(27, 147, 176, 0.85);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 4px;
}
.ba-card-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ba-card-meta {
  font-size: 0.76rem;
  color: #6b7a8f;
  margin-bottom: 8px;
}
.ba-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--tw-navy);
  line-height: 1.4;
  margin-bottom: 8px;
}
.ba-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.ba-card-title a:hover {
  color: var(--tw-blue);
}
.ba-card-excerpt {
  font-size: 0.85rem;
  color: #6b7a8f;
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}
.ba-card-aff {
  border-top: 1px solid #e0e8f0;
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ba-card-aff-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.ba-card-aff-name {
  color: var(--tw-bodyColor);
  font-weight: 700;
}
.ba-card-aff-link {
  color: var(--tw-blue);
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(27, 147, 176, 0.3);
  border-radius: 4px;
  padding: 2px 9px;
  transition: background 0.2s, color 0.2s;
}
.ba-card-aff-link:hover {
  background: var(--tw-blue);
  color: var(--white);
}
.ba-table-wrap {
  background: linear-gradient(
    135deg,
    var(--tw-navy) 0%,
    #0a2533 55%,
    #071a2a 100%
  );
  border: 1px solid rgba(27, 147, 176, 0.25);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 22px 56px rgba(13, 21, 38, 0.28);
  position: relative;
}
.ba-table-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
      ellipse at 90% 10%,
      rgba(27, 147, 176, 0.22) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 5% 100%,
      rgba(216, 53, 80, 0.12) 0%,
      transparent 50%
    );
}
.ba-table-head {
  padding: 24px 28px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}
.ba-table-head h2 {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.ba-table-head p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
table.ba-table {
  width: 100%;
  border-collapse: collapse;
  position: relative;
  z-index: 1;
}
table.ba-table th {
  text-align: left;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
table.ba-table td {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  vertical-align: middle;
}
table.ba-table tr:last-child td {
  border-bottom: none;
}
table.ba-table tr:hover td {
  background: rgba(27, 147, 176, 0.12);
}
.ba-partner-logo {
  font-weight: 800;
  color: var(--white);
}
.ba-commission-rate {
  color: #4ade80;
  font-weight: 800;
}
.ba-table-book-btn {
  display: inline-block;
  padding: 5px 14px;
  background: var(--tw-pink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.ba-table-book-btn:hover {
  opacity: 0.85;
}
.ba-card-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--tw-blue);
  font-size: 0.83rem;
  font-weight: 800;
  text-decoration: none;
  margin-top: auto;
  padding-top: 12px;
  transition: color 0.2s;
}
.ba-card-read-more:hover {
  color: var(--tw-pink);
}
.ba-no-posts {
  text-align: center;
  padding: 60px 20px;
  color: #6b7a8f;
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .ba-featured {
    grid-template-columns: 1fr;
  }
  .ba-featured-img {
    min-height: 220px;
  }
  .ba-featured-body {
    padding: 24px 20px;
  }
  .ba-aff-banner {
    flex-direction: column;
    gap: 18px;
    padding: 20px;
  }
  table.ba-table th,
  table.ba-table td {
    padding: 10px 14px;
  }
}

/* ================================================================
   SINGLE POST (moved from single.php)
   ================================================================ */
.sp-hero {
  position: relative;
  min-height: 572px;
  margin-top: -132px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--tw-navy);
}
.sp-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.sp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 21, 38, 0.96) 0%,
    rgba(13, 21, 38, 0.4) 55%,
    rgba(13, 21, 38, 0.15) 100%
  );
}
.sp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px 56px;
  width: 100%;
}
.sp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.sp-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.sp-breadcrumb a:hover {
  color: var(--tw-pink);
}
.sp-breadcrumb .sep {
  color: rgba(255, 255, 255, 0.3);
}
.sp-post-cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: rgba(27, 147, 176, 0.85);
  color: var(--white);
  padding: 3px 13px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sp-hero-title {
  font-family: var(--heading-font);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.08;
  margin-bottom: 22px;
}
.sp-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.6);
}
.sp-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.sp-hero-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(216, 53, 80, 0.55);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(216, 53, 80, 0.12);
  font-size: 1rem;
  flex-shrink: 0;
}
.sp-hero-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sp-hero-divider {
  color: rgba(255, 255, 255, 0.2);
}
/* Article column — continuous read, same treatment as the other single
   templates use for .dest-article. No boxed card here on purpose; that
   "text in a container" look is exactly what this replaced. */
.sp-content {
  font-size: 1.06rem;
  line-height: 1.88;
  color: var(--tw-bodyColor);
}
.sp-content h2 {
  font-family: var(--heading-font);
  font-size: 2rem;
  color: var(--tw-navy);
  letter-spacing: 0.03em;
  margin: 1em 0 0.6em;
}
.sp-content h3 {
  font-family: var(--heading-font);
  font-size: 1.55rem;
  color: var(--tw-navy);
  letter-spacing: 0.03em;
  margin: 1.6em 0 0.5em;
}
.sp-content h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--tw-navy);
  margin: 1.4em 0 0.4em;
}
.sp-content p {
  margin-bottom: 1.5em;
}
.sp-content a {
  color: var(--tw-blue);
  font-weight: 700;
  transition: color 0.2s;
}
.sp-content a:hover {
  color: var(--tw-blue);
}
.sp-content img {
  max-width: 100%;
  border-radius: 12px;
  display: block;
  margin: 1.8em auto;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}
.sp-content blockquote {
  border-left: 4px solid var(--tw-pink);
  padding: 14px 22px;
  background: rgba(216, 53, 80, 0.05);
  margin: 1.8em 0;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: #6b7a8f;
  font-size: 1rem;
}
.sp-content ul,
.sp-content ol {
  padding-left: 1.6em;
  margin-bottom: 1.5em;
}
.sp-content li {
  margin-bottom: 0.55em;
}
.sp-content pre {
  background: var(--tw-navy);
  color: #e2e8f0;
  border-radius: 10px;
  padding: 20px 24px;
  overflow-x: auto;
  font-size: 0.88rem;
  margin: 1.5em 0;
}
.sp-content code {
  background: rgba(27, 147, 176, 0.08);
  color: var(--tw-blue);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}
.sp-content pre code {
  background: transparent;
  color: inherit;
  padding: 0;
}
.sp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #e0e8f0;
}
.sp-tags-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7a8f;
  line-height: 2.1;
}
.sp-tag {
  padding: 5px 14px;
  background: rgba(27, 147, 176, 0.07);
  border: 1px solid rgba(27, 147, 176, 0.18);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--tw-blue);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.sp-tag:hover {
  background: rgba(27, 147, 176, 0.16);
  border-color: rgba(27, 147, 176, 0.4);
}

/* Author + share — now live in the sticky right rail instead of stacked
   full-width boxes, alongside the trip pages' price/facts card. */
.sp-author-rail-who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 12px;
}
.sp-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--tw-pink);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(216, 53, 80, 0.1);
  font-size: 1.3rem;
}
.sp-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sp-author-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--tw-blue);
  text-transform: uppercase;
}
.sp-author-name {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--tw-navy);
}
.sp-author-bio {
  font-size: 0.85rem;
  color: #6b7a8f;
  line-height: 1.6;
  margin: 0;
}
.sp-share-rail-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.sp-share-rail-btns .sp-share-btn {
  justify-content: center;
}

.sp-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.sp-nav-link {
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid #e0e8f0;
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.18s, box-shadow 0.2s;
  display: block;
}
.sp-nav-link:hover {
  border-color: var(--tw-pink);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
.sp-nav-link.sp-nav-prev {
  text-align: left;
}
.sp-nav-link.sp-nav-next {
  text-align: right;
}
.sp-nav-dir {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7a8f;
  margin-bottom: 5px;
}
.sp-nav-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--tw-navy);
  line-height: 1.4;
}
.sp-share-label {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7a8f;
}
.sp-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  color: var(--white);
}
.sp-share-btn:hover {
  opacity: 0.87;
  transform: translateY(-1px);
}
.sp-share-twitter {
  background: #1da1f2;
}
.sp-share-facebook {
  background: #1877f2;
}
.sp-share-whatsapp {
  background: #25d366;
}
.sp-share-copy {
  background: var(--tw-bodyBg);
  border: 1px solid #e0e8f0;
  color: var(--tw-bodyColor) !important;
  cursor: pointer;
  font-family: var(--body-font);
}
.sp-share-copy:hover {
  border-color: var(--tw-blue);
}
/* No outer card — comments flow as part of the continuous article, same as
   every other dest-article-section, instead of sitting in their own box. */
.sp-comments .comments-title {
  font-family: var(--heading-font);
  font-size: 1.6rem;
  color: var(--tw-navy);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e8f0;
}
.sp-comments .comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.sp-comments .comment-list .comment {
  padding: 20px 0;
  border-bottom: 1px solid #e0e8f0;
}
.sp-comments .comment-list .comment:last-child {
  border-bottom: none;
}
.sp-comments .comment-author.vcard b {
  font-weight: 800;
  color: var(--tw-navy);
  font-size: 0.95rem;
}
.sp-comments .comment-metadata {
  font-size: 0.77rem;
  color: #6b7a8f;
  margin: 4px 0 10px;
}
.sp-comments .comment-metadata a {
  color: #6b7a8f;
  text-decoration: none;
}
.sp-comments .comment-body p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--tw-bodyColor);
  margin: 0;
}
.sp-comments .reply a {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--tw-blue);
  text-decoration: none;
  margin-top: 8px;
  display: inline-block;
}
.sp-comments #respond h3 {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  color: var(--tw-navy);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

/* Comment form — same 2-column grid + labeled-field + pink-button treatment
   as the package/itinerary enquiry form (.tw-form-grid / .tw-package-enquiry-form). */
.sp-comments .comment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.sp-comments .comment-form p {
  margin: 0;
}
.sp-comments .comment-form-url,
.sp-comments .comment-form-comment,
.sp-comments .comment-form .form-submit,
.sp-comments .must-log-in,
.sp-comments .logged-in-as,
.sp-comments .comment-notes {
  grid-column: 1 / -1;
}
.sp-comments .comment-form label {
  display: block;
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--tw-navy);
  margin-bottom: 6px;
}
.sp-comments .comment-form input[type="text"],
.sp-comments .comment-form input[type="email"],
.sp-comments .comment-form input[type="url"],
.sp-comments .comment-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #d9e2ec;
  border-radius: 6px;
  font: inherit;
  color: var(--tw-bodyColor);
  box-sizing: border-box;
}
.sp-comments .comment-form input:focus,
.sp-comments .comment-form textarea:focus {
  outline: none;
  border-color: var(--tw-blue);
}
.sp-comments .comment-form textarea {
  resize: vertical;
  min-height: 130px;
}
.sp-comments .comment-form input[type="submit"] {
  background: var(--tw-pink);
  border: 0;
  border-radius: 6px;
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  padding: 12px 18px;
  box-shadow: 0 6px 18px rgba(229, 18, 125, 0.32);
  transition: filter 0.2s ease, transform 0.2s ease;
}
.sp-comments .comment-form input[type="submit"]:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}
.sp-comments .logged-in-as {
  font-size: 0.84rem;
  color: #6b7a8f;
}
.sp-comments .logged-in-as a {
  color: var(--tw-blue);
  font-weight: 700;
  text-decoration: none;
}
.sp-comments .comment-notes {
  font-size: 0.82rem;
  color: #6b7a8f;
}
@media (max-width: 600px) {
  .sp-comments .comment-form {
    grid-template-columns: 1fr;
  }
}
/* No featured image: nothing but a flat navy fill behind the text, unlike
   the photo+scrim case above — that's the leftover-dark-theme case, so
   flip it light instead of inventing a fake photo mood. */
/* Content is bottom-anchored (align-items:flex-end), so at this shorter
   height the breadcrumb — the first line of content — lands underneath the
   fixed subheader bar (nav + category subheader ≈133px tall). Extra height
   pushes the whole content block down clear of it. */
.sp-hero.sp-hero-no-img {
  min-height: 462px;
  background: #eef3f6;
}
.sp-hero-no-img .sp-hero-overlay {
  display: none;
}
.sp-hero-no-img .sp-breadcrumb,
.sp-hero-no-img .sp-breadcrumb a {
  color: rgba(13, 21, 38, 0.55);
}
.sp-hero-no-img .sp-breadcrumb .sep {
  color: rgba(13, 21, 38, 0.3);
}
.sp-hero-no-img .sp-hero-title {
  color: var(--tw-navy);
}
.sp-hero-no-img .sp-hero-meta {
  color: rgba(13, 21, 38, 0.6);
}
.sp-hero-no-img .sp-hero-divider {
  color: rgba(13, 21, 38, 0.2);
}
@media (max-width: 820px) {
  .sp-content {
    font-size: 0.98rem;
  }
  .sp-nav {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  /* Matches body's mobile padding-top (112px, vs 132px on desktop) — same
       fix as above, just for the mobile subheader height. */
  .sp-hero {
    margin-top: -112px;
  }
  .sp-hero.sp-hero-no-img {
    min-height: 490px;
  }
}

/* ================================================================
   SUBMIT BLOG PAGE (moved from page-submit-blog.php)
   ================================================================ */
.sb-hero {
  background: #eef3f6;
  margin-top: -132px;
  padding: 204px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 600px) {
  .sb-hero {
    margin-top: -112px;
    padding-top: 184px;
  }
}
.sb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(27, 147, 176, 0.16) 0%,
    transparent 70%
  );
}
.sb-hero-kicker {
  position: relative;
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tw-blue);
  background: rgba(27, 147, 176, 0.12);
  border: 1px solid rgba(27, 147, 176, 0.3);
  border-radius: 4px;
  padding: 5px 18px;
  margin-bottom: 20px;
}
.sb-hero h1 {
  position: relative;
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--tw-navy);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.sb-hero h1 span {
  color: var(--tw-pink);
}
.sb-hero p {
  position: relative;
  font-size: 1rem;
  color: rgba(13, 21, 38, 0.6);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}
.sb-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 52px 24px 96px;
}
.sb-form-card {
  background: var(--white);
  border: 1px solid #dde5ef;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.sb-form-header {
  padding: 28px 36px 24px;
  border-bottom: 1px solid #dde5ef;
  background: #eef2f7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.sb-form-header-title {
  font-family: var(--heading-font);
  font-size: 1.35rem;
  color: var(--tw-navy);
  letter-spacing: 0.04em;
}
.sb-status-badge {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 4px;
}
.sb-status-badge.publish {
  background: rgba(27, 147, 176, 0.12);
  color: var(--tw-blue);
  border: 1px solid rgba(27, 147, 176, 0.25);
}
.sb-status-badge.pending {
  background: rgba(216, 53, 80, 0.12);
  color: #c08a00;
  border: 1px solid rgba(216, 53, 80, 0.3);
}
.sb-form-body {
  padding: 36px;
}
.sb-field {
  margin-bottom: 24px;
}
.sb-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}
.sb-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #6b7a8f;
  margin-bottom: 8px;
}
.sb-label .req {
  color:  var(--tw-crimson);
  margin-left: 2px;
}
.sb-input,
.sb-select,
.sb-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #dde5ef;
  border-radius: 10px;
  font-family: var(--body-font);
  font-size: 0.95rem;
  color: var(--tw-bodyColor);
  background: var(--tw-bodyBg);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  appearance: none;
}
.sb-input:focus,
.sb-select:focus,
.sb-textarea:focus {
  outline: none;
  border-color: var(--tw-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27, 147, 176, 0.1);
}
.sb-input::placeholder,
.sb-textarea::placeholder {
  color: #b0bac9;
}
.sb-textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.65;
}
.sb-textarea.sb-content-area {
  min-height: 320px;
  font-size: 0.93rem;
}
.sb-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7a8f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.sb-hint {
  font-size: 0.78rem;
  color: #6b7a8f;
  margin-top: 6px;
  line-height: 1.5;
}
.sb-img-zone {
  border: 2px dashed #dde5ef;
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: var(--tw-bodyBg);
  position: relative;
}
.sb-img-zone:hover,
.sb-img-zone.drag-over {
  border-color: var(--tw-blue);
  background: rgba(27, 147, 176, 0.04);
}
.sb-img-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.sb-img-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.sb-img-zone p {
  color: #6b7a8f;
  font-size: 0.87rem;
  margin: 0;
  line-height: 1.6;
}
.sb-img-zone strong {
  color: var(--tw-blue);
  font-weight: 800;
}
.sb-img-preview {
  display: none;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  max-height: 240px;
  background: #000;
}
.sb-img-preview img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  opacity: 0.92;
}
.sb-img-preview-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.65);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 10px;
  cursor: pointer;
  transition: background 0.2s;
}
.sb-img-preview-remove:hover {
  background: rgba(213, 55, 79, 0.85);
}
.sb-tags-wrap {
  border: 1.5px solid #dde5ef;
  border-radius: 10px;
  background: var(--tw-bodyBg);
  padding: 8px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  cursor: text;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  min-height: 48px;
}
.sb-tags-wrap:focus-within {
  border-color: var(--tw-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27, 147, 176, 0.1);
}
.sb-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(27, 147, 176, 0.1);
  border: 1px solid rgba(27, 147, 176, 0.22);
  color: var(--tw-blue);
  padding: 3px 10px 3px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
}
.sb-tag-pill button {
  background: none;
  border: none;
  color: var(--tw-blue);
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
  padding: 0 2px;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.sb-tag-pill button:hover {
  opacity: 1;
}
.sb-tags-input {
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--body-font);
  font-size: 0.93rem;
  color: var(--tw-bodyColor);
  min-width: 80px;
  flex: 1;
  padding: 4px;
}
.sb-tags-input::placeholder {
  color: #b0bac9;
}
.sb-login-notice {
  background: rgba(216, 53, 80, 0.07);
  border: 1px solid rgba(216, 53, 80, 0.25);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 28px;
  font-size: 0.9rem;
  color: var(--tw-bodyColor);
}
.sb-login-notice a {
  color: var(--tw-blue);
  font-weight: 800;
  text-decoration: none;
}
.sb-login-notice a:hover {
  text-decoration: underline;
}
.sb-section-title {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: #6b7a8f;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid #dde5ef;
}
.sb-divider {
  border: none;
  border-top: 1px solid #dde5ef;
  margin: 32px 0;
}
.sb-submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.sb-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--tw-pink);
  color: var(--white);
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 800;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}
.sb-submit-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.sb-submit-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}
.sb-submit-note {
  font-size: 0.82rem;
  color: #6b7a8f;
  line-height: 1.55;
}
.sb-msg {
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 16px;
  display: none;
}
.sb-msg.success {
  background: rgba(27, 147, 176, 0.1);
  border: 1px solid rgba(27, 147, 176, 0.25);
  color: var(--tw-blue);
}
.sb-msg.error {
  background: rgba(213, 55, 79, 0.08);
  border: 1px solid rgba(213, 55, 79, 0.25);
  color:  var(--tw-crimson);
}
.sb-success-screen {
  display: none;
  text-align: center;
  padding: 64px 40px;
}
.sb-success-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}
.sb-success-screen h2 {
  font-family: var(--heading-font);
  font-size: 2.2rem;
  color: var(--tw-navy);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.sb-success-screen p {
  font-size: 0.97rem;
  color: #6b7a8f;
  max-width: 420px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.sb-success-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.sb-success-btn {
  padding: 11px 26px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.sb-success-btn.primary {
  background: var(--tw-pink);
  color: var(--white);
}
.sb-success-btn.secondary {
  background: #eef2f7;
  color: var(--tw-bodyColor);
  border: 1px solid #dde5ef;
}
.sb-success-btn:hover {
  opacity: 0.88;
}
.sb-guidelines {
  background: var(--white);
  border: 1px solid #dde5ef;
  border-radius: 6px;
  padding: 28px 32px;
  margin-top: 32px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}
.sb-guidelines h3 {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  color: var(--tw-navy);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.sb-guidelines ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sb-guidelines li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.87rem;
  color: #6b7a8f;
  line-height: 1.6;
  margin-bottom: 10px;
}
.sb-guidelines li:last-child {
  margin-bottom: 0;
}
.sb-guidelines li .icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.sb-progress {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border: 1px solid #dde5ef;
  border-radius: 10px;
  overflow: hidden;
}
.sb-progress-step {
  flex: 1;
  padding: 12px 8px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6b7a8f;
  background: #eef2f7;
  border-right: 1px solid #dde5ef;
  transition: background 0.2s, color 0.2s;
}
.sb-progress-step:last-child {
  border-right: none;
}
.sb-progress-step.active {
  background: rgba(27, 147, 176, 0.1);
  color: var(--tw-blue);
}
.sb-progress-step .step-num {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}
@media (max-width: 640px) {
  .sb-field-row {
    grid-template-columns: 1fr;
  }
  .sb-form-body {
    padding: 24px 20px;
  }
  .sb-form-header {
    padding: 20px 22px;
  }
  .sb-submit-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ================================================================
   PLAN A TRIP PAGE (moved from page-plan-a-trip.php)
   ================================================================ */
.plan-hero {
  background: linear-gradient(135deg, var(--white) 0%, rgba(27, 147, 176, 0.04) 100%);
  padding: 60px 40px 44px;
  padding-top: 162px;
  text-align: center;
  border-bottom: 1px solid #e0e8f0;
  position: relative;
  overflow: hidden;
}
.plan-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 75% 50%,
      rgba(27, 147, 176, 0.07) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(216, 53, 80, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.plan-hero-kicker {
  display: inline-block;
  position: relative;
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 700;
  color: var(--tw-blue);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.plan-hero-title {
  font-family: var(--heading-font);
  font-size: clamp(42px, 6vw, 66px);
  letter-spacing: 3px;
  color: var(--tw-navy);
  line-height: 1;
  margin: 0 0 12px;
  position: relative;
}
.plan-hero-title .accent {
  color: var(--tw-pink);
}
.plan-hero-sub {
  font-family: var(--body-font);
  font-size: 14px;
  color: #6b7a8f;
  font-weight: 400;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}
.plan-body {
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 32px 20px 0;
}
.progress-track {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}
.ps {
  flex: 1;
  text-align: center;
  position: relative;
}
.ps::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: #ccd7e4;
  z-index: 0;
  transition: background 0.4s;
}
.ps:last-child::after {
  display: none;
}
.ps.done::after {
  background: var(--tw-blue);
}
.pc {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e8eef4;
  color: #6b7a8f;
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
  position: relative;
  z-index: 1;
  border: 2px solid #ccd7e4;
  transition: all 0.3s;
}
.ps.active .pc {
  background: var(--tw-blue);
  color: var(--white);
  border-color: var(--tw-blue);
}
.ps.done .pc {
  background: var(--tw-blue);
  color: var(--white);
  border-color: var(--tw-blue);
}
.ps-lbl {
  font-family: var(--body-font);
  font-size: 10px;
  color: #6b7a8f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ps.active .ps-lbl,
.ps.done .ps-lbl {
  color: var(--tw-bodyColor);
}
.plan-card {
  background: var(--white);
  border-radius: 6px;
  padding: 36px 32px;
  border: 1px solid #ccd7e4;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}
.plan-step {
  display: none;
}
.plan-step.active {
  display: block;
}
.ps-title {
  font-family: var(--heading-font);
  font-size: 30px;
  letter-spacing: 2px;
  color: var(--tw-navy);
  margin-bottom: 4px;
}
.ps-sub {
  font-family: var(--body-font);
  font-size: 12px;
  color: #6b7a8f;
  margin-bottom: 22px;
  font-weight: 400;
}
.tile-g3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.tile-g2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.ptile {
  border: 1.5px solid #ccd7e4;
  border-radius: 12px;
  padding: 16px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: #f0f4f8;
  font-family: var(--body-font);
}
.ptile:hover {
  border-color: var(--tw-blue);
  background: rgba(27, 147, 176, 0.08);
}
.ptile.sel {
  border-color: var(--tw-pink);
  background: rgba(216, 53, 80, 0.09);
}
.ptile-em {
  font-size: 26px;
  margin-bottom: 7px;
}
.ptile-n {
  font-size: 12px;
  font-weight: 800;
  color: var(--tw-bodyColor);
}
.ptile-s {
  font-size: 10px;
  color: #6b7a8f;
  margin-top: 2px;
}
.ptile.sel .ptile-n {
  color: var(--tw-pink);
}
.fg {
  margin-bottom: 14px;
}
.fl2 {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 800;
  color: #374151;
  margin-bottom: 5px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fi {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #ccd7e4;
  border-radius: 10px;
  font-family: var(--body-font);
  font-size: 13px;
  color: var(--tw-bodyColor);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.fi:focus {
  border-color: var(--tw-blue);
}
.fi::placeholder {
  color: #6b7a8f;
}
select.fi {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7a8f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.fr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.ttile {
  border: 1.5px solid #ccd7e4;
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: #f0f4f8;
  font-family: var(--body-font);
}
.ttile:hover {
  border-color: var(--tw-blue);
  background: rgba(27, 147, 176, 0.08);
}
.ttile.sel {
  border-color: var(--tw-pink);
  background: rgba(216, 53, 80, 0.09);
}
.ttile-em {
  font-size: 22px;
  margin-bottom: 5px;
}
.ttile-n {
  font-size: 11px;
  font-weight: 800;
  color: var(--tw-bodyColor);
}
.ttile-s {
  font-size: 10px;
  color: #6b7a8f;
}
.ttile.sel .ttile-n {
  color: var(--tw-pink);
}
.btile {
  border: 1.5px solid #ccd7e4;
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.2s;
  background: #f0f4f8;
  font-family: var(--body-font);
}
.btile:hover {
  border-color: var(--tw-blue);
  background: rgba(27, 147, 176, 0.08);
}
.btile.sel {
  border-color: var(--tw-pink);
  background: rgba(216, 53, 80, 0.09);
}
.bt-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--tw-bodyColor);
  margin-bottom: 3px;
}
.bt-range {
  font-size: 11px;
  color: #6b7a8f;
}
.btile.sel .bt-name {
  color: var(--tw-pink);
}
.sum-box {
  background: rgba(27, 147, 176, 0.06);
  border: 1px solid rgba(27, 147, 176, 0.18);
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
}
.sum-title {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 800;
  color: var(--tw-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.sum-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
}
.sum-row:last-child {
  margin-bottom: 0;
}
.sum-k {
  font-family: var(--body-font);
  font-size: 12px;
  color: #6b7a8f;
}
.sum-v {
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 800;
  color: var(--tw-navy);
}
.plan-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  gap: 10px;
}
.btn-back {
  font-family: var(--body-font);
  font-size: 12px;
  color: #6b7a8f;
  padding: 11px 22px;
  border: 1.5px solid #ccd7e4;
  border-radius: 6px;
  cursor: pointer;
  background: var(--white);
  font-weight: 700;
  transition: all 0.2s;
}
.btn-back:hover {
  color: var(--tw-navy);
  border-color: var(--tw-blue);
}
.btn-nx {
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 800;
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-wa {
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-wa:hover {
  background: #1da851;
  transform: translateY(-1px);
}
.step-divider {
  border: none;
  border-top: 1px solid #e0e8f0;
  margin: 20px 0;
}
.sec-label {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 800;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 18px 0 8px;
  display: block;
}
.success-box {
  text-align: center;
  padding: 16px 0;
}
.succ-icon {
  font-size: 58px;
  margin-bottom: 12px;
}
.succ-title {
  font-family: var(--heading-font);
  font-size: 38px;
  letter-spacing: 2px;
  color: var(--tw-navy);
  margin-bottom: 8px;
}
.succ-sub {
  font-family: var(--body-font);
  font-size: 13px;
  color: #6b7a8f;
  margin-bottom: 22px;
  line-height: 1.8;
  font-weight: 400;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.wa-launch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.3s;
  margin-bottom: 28px;
}
.wa-launch:hover {
  background: #1da851;
  transform: translateY(-2px);
  color: var(--white);
}
.succ-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 20px;
}
.succ-stat-num {
  font-family: var(--heading-font);
  font-size: 26px;
  color: var(--tw-pink);
}
.succ-stat-lbl {
  font-family: var(--body-font);
  font-size: 10px;
  color: #6b7a8f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 600px) {
  .plan-card {
    padding: 24px 18px;
  }
  .tile-g3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .fr {
    grid-template-columns: 1fr;
  }
  .plan-hero {
    padding: 40px 20px 32px;
  }
}

/* ================================================================
   PROFILE PAGE (moved from page-profile.php)
   ================================================================ */
.pf-hero {
  background: #eef3f6;
  margin-top: -132px;
  padding: 184px 24px 80px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 600px) {
  .pf-hero {
    margin-top: -112px;
    padding-top: 164px;
  }
}
.pf-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(27, 147, 176, 0.14) 0%,
    transparent 60%
  );
}
.pf-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px 88px;
}
.pf-identity {
  position: relative;
  margin-top: -56px;
  background: var(--white);
  border: 1px solid #dde5ef;
  border-radius: 8px;
  padding: 28px 32px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.pf-avatar-wrap {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 4px solid var(--tw-pink);
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(216, 53, 80, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 6px 24px rgba(216, 53, 80, 0.25);
}
.pf-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pf-identity-info {
  flex: 1 1 200px;
}
.pf-display-name {
  font-family: var(--heading-font);
  font-size: 1.9rem;
  color: var(--tw-navy);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.pf-username {
  font-size: 0.85rem;
  color: #6b7a8f;
  font-weight: 700;
  margin-bottom: 8px;
}
.pf-username span {
  color: var(--tw-blue);
}
.pf-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pf-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 12px;
  border-radius: 4px;
  background: rgba(27, 147, 176, 0.1);
  color: var(--tw-blue);
  border: 1px solid rgba(27, 147, 176, 0.2);
}
.pf-badge.gold {
  background: rgba(216, 53, 80, 0.1);
  color: #c08a00;
  border-color: rgba(216, 53, 80, 0.3);
}
.pf-stats-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-left: auto;
  align-items: flex-end;
  padding-bottom: 4px;
}
.pf-stat {
  text-align: center;
}
.pf-stat-num {
  font-family: var(--heading-font);
  font-size: 1.6rem;
  color: var(--tw-navy);
  letter-spacing: 0.04em;
  line-height: 1;
}
.pf-stat-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7a8f;
}
.pf-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}
.pf-card {
  background: var(--white);
  border: 1px solid #dde5ef;
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.pf-card-head {
  padding: 20px 28px 16px;
  border-bottom: 1px solid #dde5ef;
  background: #eef2f7;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pf-card-title {
  font-family: var(--heading-font);
  font-size: 1.15rem;
  color: var(--tw-navy);
  letter-spacing: 0.04em;
}
.pf-card-body {
  padding: 24px 28px;
}
.pf-field {
  margin-bottom: 20px;
}
.pf-field:last-child {
  margin-bottom: 0;
}
.pf-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.pf-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #6b7a8f;
  margin-bottom: 7px;
}
.pf-input,
.pf-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid #dde5ef;
  border-radius: 9px;
  font-family: var(--body-font);
  font-size: 0.93rem;
  color: var(--tw-bodyColor);
  background: var(--tw-bodyBg);
  box-sizing: border-box;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.pf-input:focus,
.pf-textarea:focus {
  outline: none;
  border-color: var(--tw-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27, 147, 176, 0.1);
}
.pf-input::placeholder,
.pf-textarea::placeholder {
  color: #b0bac9;
}
.pf-textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.65;
}
.pf-hint {
  font-size: 0.76rem;
  color: #6b7a8f;
  margin-top: 5px;
  line-height: 1.5;
}

.pf-save-btn {
  width: 100%;
  padding: 13px;
  background: var(--tw-pink);
  color: var(--white);
  font-family: var(--body-font);
  font-size: 0.95rem;
  font-weight: 800;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}
.pf-save-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.pf-save-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.pf-msg {
  padding: 13px 16px;
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: none;
  line-height: 1.5;
}
.pf-msg.success {
  background: rgba(27, 147, 176, 0.1);
  border: 1px solid rgba(27, 147, 176, 0.25);
  color: var(--tw-blue);
}
.pf-msg.error {
  background: rgba(213, 55, 79, 0.08);
  border: 1px solid rgba(213, 55, 79, 0.25);
  color:  var(--tw-crimson);
}
.pf-pw-group {
  position: relative;
}
.pf-pw-group .pf-input {
  padding-right: 44px;
}
.pf-pw-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7a8f;
  font-size: 1rem;
  padding: 4px;
  transition: color 0.2s;
}
.pf-pw-toggle:hover {
  color: var(--tw-blue);
}
.pf-avatar-note {
  font-size: 0.8rem;
  color: #6b7a8f;
  line-height: 1.6;
  text-align: center;
  padding: 16px 20px;
  background: #eef2f7;
  border-radius: 10px;
  border: 1px solid #dde5ef;
  margin-bottom: 20px;
}
.pf-avatar-note a {
  color: var(--tw-blue);
  font-weight: 700;
  text-decoration: none;
}
.pf-post-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #dde5ef;
}
.pf-post-item:last-child {
  border-bottom: none;
}
.pf-post-thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #eef2f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.pf-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pf-post-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--tw-navy);
  line-height: 1.35;
  margin-bottom: 4px;
}
.pf-post-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.pf-post-title a:hover {
  color: var(--tw-blue);
}
.pf-post-meta {
  font-size: 0.75rem;
  color: #6b7a8f;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pf-post-status {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 4px;
}
.pf-post-status.publish {
  background: rgba(27, 147, 176, 0.1);
  color: var(--tw-blue);
}
.pf-post-status.pending {
  background: rgba(216, 53, 80, 0.12);
  color: #c08a00;
}
.pf-post-status.draft {
  background: rgba(107, 122, 143, 0.12);
  color: #6b7a8f;
}
.pf-no-posts {
  text-align: center;
  padding: 32px 16px;
  color: #6b7a8f;
  font-size: 0.9rem;
}
.pf-no-posts a {
  color: var(--tw-blue);
  font-weight: 800;
  text-decoration: none;
}
.pf-info-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid #dde5ef;
  font-size: 0.87rem;
}
.pf-info-row:last-child {
  border-bottom: none;
}
.pf-info-icon {
  font-size: 1rem;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
  margin-top: 1px;
}
.pf-info-label {
  color: #6b7a8f;
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1px;
}
.pf-info-val {
  color: var(--tw-bodyColor);
  font-weight: 600;
}
@media (max-width: 768px) {
  .pf-grid {
    grid-template-columns: 1fr;
  }
  .pf-identity {
    flex-direction: column;
    align-items: flex-start;
  }
  .pf-stats-row {
    margin-left: 0;
  }
  .pf-field-row {
    grid-template-columns: 1fr;
  }
  .pf-card-body {
    padding: 20px 18px;
  }
}

/* ================================================================
   WHATSAPP WIDGET (moved from functions.php)
   ================================================================ */
#tw-wa-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: var(--body-font);
}
.tw-wa-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s, box-shadow 0.25s;
  color: var(--white);
  position: relative;
}
.tw-wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
}
.tw-wa-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background:  var(--tw-crimson);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  animation: tw-wa-ping 2s ease infinite;
}
@keyframes tw-wa-ping {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
}
.tw-wa-btn-icon {
  line-height: 0;
}
.tw-wa-popup {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 320px;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: tw-wa-slide-in 0.25s ease;
}
.tw-wa-popup[hidden] {
  display: none;
}
@keyframes tw-wa-slide-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.tw-wa-popup-head {
  background: #075e54;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tw-wa-popup-avatar {
  flex-shrink: 0;
}
.tw-wa-popup-info {
  flex: 1;
}
.tw-wa-popup-info strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
}
.tw-wa-popup-info span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}
.tw-wa-popup-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.15s;
}
.tw-wa-popup-close:hover {
  color: var(--white);
}
.tw-wa-popup-body {
  padding: 20px 16px;
  background: #ece5dd;
}
.tw-wa-bubble {
  background: var(--white);
  border-radius: 0 12px 12px 12px;
  padding: 12px 14px;
  font-size: 0.9rem;
  color: var(--tw-bodyColor);
  line-height: 1.55;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
}
.tw-wa-bubble::before {
  content: "";
  position: absolute;
  top: 0;
  left: -8px;
  border-width: 0 8px 8px 0;
  border-style: solid;
  border-color: transparent var(--white) transparent transparent;
}
.tw-wa-popup-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 14px;
  text-decoration: none;
  transition: background 0.2s;
}
.tw-wa-popup-cta:hover {
  background: #1ebe5d;
  color: var(--white);
}
@media (max-width: 400px) {
  .tw-wa-popup {
    width: calc(100vw - 32px);
    right: -8px;
  }
  #tw-wa-widget {
    bottom: 16px;
    right: 16px;
  }
}

/* ── Floating "Follow us on Instagram" button ──
   Mirrors the WhatsApp widget; stacks above it when that one is present. */
#tw-ig-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  font-family: var(--body-font);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
#tw-ig-widget.has-wa {
  bottom: 98px;
}
/* Hidden while the WhatsApp chat popup is open — that popup is tall enough
   to sit over this button's spot, so avoid the overlap instead of fighting
   z-index against it. */
#tw-ig-widget.tw-ig-hidden {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}
.tw-ig-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  height: 60px;
  width: 60px;
  padding: 0 16px;
  border-radius: 30px;
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(220, 39, 67, 0.45);
  transition: width 0.28s ease, gap 0.28s ease, box-shadow 0.25s,
    transform 0.25s;
}
.tw-ig-btn i {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}
.tw-ig-btn-label {
  max-width: 0;
  opacity: 0;
  transition: max-width 0.28s ease, opacity 0.2s ease;
}
.tw-ig-btn:hover {
  width: 172px;
  gap: 10px;
  color: var(--white);
  box-shadow: 0 12px 36px rgba(220, 39, 67, 0.55);
  transform: translateY(-2px);
}
.tw-ig-btn:hover .tw-ig-btn-label {
  max-width: 120px;
  opacity: 1;
}
@media (max-width: 400px) {
  #tw-ig-widget {
    bottom: 16px;
    right: 16px;
  }
  #tw-ig-widget.has-wa {
    bottom: 88px;
  }
}

/* ================================================================
   SCROLL REVEAL — data-reveal attribute system
   ================================================================ */
[data-reveal] {
  opacity: 0;
  will-change: opacity, transform;
}
/* Shared transition for all directional reveals */
[data-reveal]:not([data-reveal="scale"]):not([data-reveal="fade"]) {
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--rd, 0ms);
}
/* Default / "up" */
[data-reveal],
[data-reveal="up"] {
  transform: translateY(46px);
}
[data-reveal="left"] {
  transform: translateX(-56px);
}
[data-reveal="right"] {
  transform: translateX(56px);
}
[data-reveal="scale"] {
  transform: scale(0.88) translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--rd, 0ms);
}
[data-reveal="fade"] {
  transform: none;
  transition: opacity 0.9s ease;
  transition-delay: var(--rd, 0ms);
}
[data-reveal].tw-in {
  opacity: 1;
  transform: none;
}
/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

/* ================================================================
   GRADIENT HEADINGS
   ================================================================ */

/* Light-background headings — solid dark navy */
.section-heading h2,
.ba-hero-title,
.ba-section-head,
.plan-hero-title {
  color: var(--tw-navy);
  background: none;
  -webkit-text-fill-color: currentColor;
}

/* Dark-background headings — solid white (only the photo-scrim .sp-hero
   case; .sp-hero-no-img overrides back to navy with higher specificity). */
.sp-hero-title {
  color: var(--white);
  background: none;
  -webkit-text-fill-color: currentColor;
}

/* ================================================================
   GLOBAL OVERFLOW PREVENTION
   ================================================================ */
/* Layer 1 — html: clips the viewport; works on iOS Safari without
   breaking position:sticky (html/body get special browser treatment) */
html {
  overflow-x: hidden;
}
/* Layer 2 — body: overflow-x:clip does NOT create a scroll container
   so position:sticky (the nav) continues to work correctly */
body {
  overflow-x: clip;
  max-width: 100%;
}
/* Layer 3 — site-wrap: a real DOM element with clip (no BFC, no sticky break) */
#tw-site-wrap {
  overflow-x: clip;
  position: relative;
}
/* Layer 4 — main content area */
.main-content {
  overflow-x: hidden;
}
/* Layer 5 — all media elements must never exceed their container */
img,
video,
iframe,
embed,
object {
  max-width: 100%;
  height: auto;
}

/* ================================================================
   HERO — mobile overflow and responsiveness
   ================================================================ */
/* Hide accent blobs on ALL mobile — they extend outside the hero bounds
   and are an overflow risk even with contain:paint on some browsers */
@media (max-width: 768px) {
  .tw-hero-accent {
    display: none;
  }
}
@media (max-width: 520px) {
  .tw-hero-inner {
    padding: 88px 16px 52px;
  }
  .tw-hero-pill {
    font-size: 0.68rem;
    padding: 6px 12px;
    letter-spacing: 0.04em;
    text-align: center;
    justify-content: center;
  }
  .tw-hero-title {
    font-size: clamp(2.8rem, 15vw, 4.8rem);
  }
  .tw-hero-desc {
    font-size: 0.96rem;
  }
  .tw-hero-tags {
    gap: 8px;
  }
  .tw-hero-tag {
    font-size: 0.75rem;
    padding: 6px 11px;
  }
}
@media (max-width: 360px) {
  .tw-hero-inner {
    padding: 80px 14px 48px;
  }
  .tw-hero-title {
    font-size: clamp(2.4rem, 18vw, 4rem);
  }
  .container {
    padding: 0 14px;
  }
}

/* ================================================================
   STATS BAR — 2-column grid on very small screens
   ================================================================ */
@media (max-width: 480px) {
  .tw-stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }
  .tw-stat-divider {
    display: none;
  }
  .tw-stat {
    padding: 18px 10px;
    border-right: 1px solid rgba(27, 147, 176, 0.15);
    border-bottom: 1px solid rgba(27, 147, 176, 0.15);
  }
  .tw-stat:nth-child(even) {
    border-right: none;
  }
  .tw-stat:nth-last-child(-n + 2) {
    border-bottom: none;
  }
  .tw-stat-num {
    font-size: 1.5rem;
  }
}

/* ================================================================
   TRAVEL TABS — horizontal scroll on mobile
   ================================================================ */
@media (max-width: 640px) {
  .travel-tabs-inner {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 12px;
    height: auto;
  }
  .travel-tabs-inner::-webkit-scrollbar {
    display: none;
  }
  .travel-tabs a {
    flex: 0 0 auto;
    font-size: 0.78rem;
    padding: 6px 12px;
  }
}

/* ================================================================
   TRAVEL FILTER BOX — mobile
   ================================================================ */
@media (max-width: 600px) {
  .travel-filter-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
  }
  .travel-filter-options {
    gap: 6px;
  }
  .travel-filter-options a {
    font-size: 0.82rem;
    padding: 6px 10px;
  }
}

/* ================================================================
   SECTION HEADINGS — mobile font sizes
   ================================================================ */
@media (max-width: 480px) {
  .section-heading h2 {
    font-size: 1.6rem;
  }
  .featured-posts {
    padding: 36px 0;
  }
  .visa-services-section {
    padding: 44px 0;
  }
  .visa-services-heading h2,
  .visa-services-heading .highlight {
    font-size: 2.4rem;
  }
}

/* ================================================================
   POSTS GRID — safe minimum on tiny screens
   ================================================================ */
@media (max-width: 360px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   BLOG SECTION — mobile
   ================================================================ */
@media (max-width: 480px) {
  .tw-blog-section {
    padding: 48px 0 56px;
  }
  .tw-blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 28px;
  }
  .tw-blog-viewall {
    align-self: flex-start;
  }
  .tw-blog-card--main .tw-blog-card-img-wrap {
    height: 190px;
  }
  .tw-blog-card--side .tw-blog-card-img-wrap {
    height: 130px;
  }
}

/* ================================================================
   COMMUNITY SECTION — very small screens
   ================================================================ */
@media (max-width: 360px) {
  .tw-community-stats {
    grid-template-columns: 1fr;
  }
  .tw-community-section {
    padding: 52px 0;
  }
}

/* ================================================================
   CTA SECTION — mobile
   ================================================================ */
@media (max-width: 480px) {
  .tw-cta-section {
    padding: 48px 0;
  }
  .tw-cta-title {
    font-size: 2.2rem;
  }
  .free-itinerary-link {
    display: block;
    text-align: center;
  }
}


/* ================================================================
   PACKAGE SEARCH GRID — collapse on mobile
   ================================================================ */
@media (max-width: 600px) {
  .package-search-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   SINGLE POST PAGE — mobile
   ================================================================ */
@media (max-width: 480px) {
  .sp-content {
    font-size: 0.96rem;
  }
  .sp-nav {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   PROFILE PAGE — mobile
   ================================================================ */
@media (max-width: 480px) {
  .pf-grid {
    grid-template-columns: 1fr;
  }
  .pf-identity {
    flex-direction: column;
    align-items: flex-start;
  }
  .pf-field-row {
    grid-template-columns: 1fr;
  }
  .pf-card-body {
    padding: 18px 16px;
  }
}

/* ================================================================
   SUBMIT BLOG PAGE — mobile
   ================================================================ */
@media (max-width: 480px) {
  .sb-field-row {
    grid-template-columns: 1fr;
  }
  .sb-form-body {
    padding: 20px 16px;
  }
  .sb-submit-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ================================================================
   FOOTER — very small screens
   ================================================================ */
@media (max-width: 400px) {
  .tw-footer-grid {
    padding: 28px 16px 20px;
    gap: 24px;
  }
  .tw-f-bottom {
    padding: 14px 16px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ================================================================
   INSTAGRAM FEED — brand-matched redesign
   ================================================================ */

.instagram-feed-section {
  background: linear-gradient(180deg, #f0f6fa 0%, #e8f2f7 100%);
  padding: 72px 0 80px;
  border-top: 1px solid #d6e8ef;
  border-bottom: 1px solid #d6e8ef;
  overflow-x: hidden; /* clip any SBI plugin overflow at section level */
}

.instagram-feed-heading {
  text-align: center;
  margin-bottom: 44px;
}

.tw-ig-kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tw-blue);
  margin-bottom: 10px;
}

.tw-ig-title {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0 0 14px;
  background: linear-gradient(
    135deg,
    var(--tw-blue) 0%,
    var(--tw-pink) 55%,
    var(--tw-blue) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.tw-ig-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid rgba(216, 53, 80, 0.4);
  color: var(--tw-navy);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 12px rgba(27, 147, 176, 0.1);
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.tw-ig-handle:hover {
  background: var(--tw-pink);
  border-color: var(--tw-pink);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(216, 53, 80, 0.3);
}

/* Feed wrapper — strip default plugin chrome */
.instagram-feed-wrap {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

/* Hide SBI username / header bar */
.instagram-feed-wrap .sbi_header,
.instagram-feed-wrap .sbi_header_img,
.instagram-feed-wrap .sbi_header_text,
.instagram-feed-wrap #sbi_header {
  display: none !important;
}

/* Individual photo items */
.instagram-feed-wrap .sbi_item {
  border-radius: 6px !important;
  overflow: hidden !important;
  transition: transform 0.28s ease, box-shadow 0.28s ease !important;
  box-shadow: 0 4px 16px rgba(13, 21, 38, 0.08) !important;
}

.instagram-feed-wrap .sbi_item:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 48px rgba(13, 21, 38, 0.18) !important;
  z-index: 3 !important;
  position: relative !important;
}

.instagram-feed-wrap .sbi_photo_wrap,
.instagram-feed-wrap .sbi_photo,
.instagram-feed-wrap .sbi_photo_wrap img {
  border-radius: 6px !important;
  overflow: hidden !important;
  display: block !important;
}

/* Caption overlay */
.instagram-feed-wrap .sbi_photo_wrap .sbi_hover_bottom {
  border-radius: 0 0 16px 16px !important;
  background: linear-gradient(
    to top,
    rgba(13, 21, 38, 0.85) 0%,
    transparent 100%
  ) !important;
}

/* ===================================================================
   SBI Load More + Follow buttons — clean brand-matched pill buttons.
   The real SBI wrapper ID is #sbi_load (NOT #sbi_load_btn_wrap as
   docs sometimes claim). Both buttons (#sbi_load_btn and #sbi_follow_btn)
   are direct anchor children of #sbi_load.
   =================================================================== */

/* Outer container that wraps both buttons — strip ALL plugin chrome.
   Extra-specific selectors (with #sb_instagram and chained IDs) to win the
   cascade against SBI's own #sb_instagram #sbi_load rules. */
.instagram-feed-section .instagram-feed-wrap #sb_instagram #sbi_load,
.instagram-feed-wrap #sb_instagram #sbi_load,
.instagram-feed-wrap #sbi_load,
.instagram-feed-wrap .sbi_load {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 36px 0 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  text-align: center !important;
  float: none !important;
  clear: both !important;
}
/* CRITICAL — kill SBI's default float:left/right on the buttons so the
   parent flex layout actually controls their position. Without this both
   buttons float to opposite corners of the wrapper. */
.instagram-feed-section .instagram-feed-wrap #sb_instagram #sbi_load > *,
.instagram-feed-wrap #sb_instagram #sbi_load > *,
.instagram-feed-wrap #sbi_load > *,
.instagram-feed-wrap #sbi_load_btn,
.instagram-feed-wrap #sbi_follow_btn,
.instagram-feed-wrap .sbi_load_btn,
.instagram-feed-wrap .sbi_follow_btn,
.instagram-feed-wrap .sb-loadmore_btn,
.instagram-feed-wrap .sb-follow-btn,
.instagram-feed-wrap .sb-followBtn-link {
  float: none !important;
  clear: none !important;
  position: static !important;
}

/* STEP 1 — strip ALL plugin styling from div wrappers.
   In SBI v6 the markup is:
     <div id="sbi_follow_btn" class="sb-follow-btn">
        <a class="sb-followBtn-link">...</a>
     </div>
   We must NOT style the div wrapper or its background bleeds out
   beyond the actual button. Reset to fully transparent + auto size. */
.instagram-feed-wrap div#sbi_load_btn,
.instagram-feed-wrap div.sbi_load_btn,
.instagram-feed-wrap div#sbi_follow_btn,
.instagram-feed-wrap div.sbi_follow_btn,
.instagram-feed-wrap div.sb-loadmore_btn,
.instagram-feed-wrap div.sb-follow-btn {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  width: auto !important;
  max-width: max-content !important;
  min-width: 0 !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  float: none !important;
}

/* STEP 2 — SHARED button styling for the actual clickable elements.
   Targets every variant of selector that could be the real anchor/button. */
.instagram-feed-wrap a#sbi_load_btn,
.instagram-feed-wrap a.sbi_load_btn,
.instagram-feed-wrap a.sb-loadmore_btn,
.instagram-feed-wrap #sbi_load_btn:not(div),
.instagram-feed-wrap .sb-loadmore_btn,
.instagram-feed-wrap a#sbi_follow_btn,
.instagram-feed-wrap a.sbi_follow_btn,
.instagram-feed-wrap #sbi_follow_btn > a,
.instagram-feed-wrap #sbi_follow_btn a.sb-followBtn-link,
.instagram-feed-wrap a.sb-followBtn-link,
.instagram-feed-wrap #sbi_follow_btn:not(div) {
  display: inline-flex !important;
  width: auto !important;
  max-width: max-content !important;
  min-width: 0 !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  height: 48px !important;
  padding: 0 30px !important;
  border: none !important;
  border-radius: 4px !important;
  font-family: var(--body-font) !important;
  font-size: 0.88rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  line-height: 1 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  cursor: pointer !important;
  float: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease !important;
}

/* Load More — primary yellow */
.instagram-feed-wrap a#sbi_load_btn,
.instagram-feed-wrap a.sbi_load_btn,
.instagram-feed-wrap a.sb-loadmore_btn,
.instagram-feed-wrap .sb-loadmore_btn,
.instagram-feed-wrap #sbi_load_btn:not(div) {
  background: var(--tw-pink) !important;
  background-color: var(--tw-pink) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 14px rgba(216, 53, 80, 0.28) !important;
}
.instagram-feed-wrap a#sbi_load_btn:hover,
.instagram-feed-wrap a.sbi_load_btn:hover,
.instagram-feed-wrap a.sb-loadmore_btn:hover,
.instagram-feed-wrap .sb-loadmore_btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 22px rgba(216, 53, 80, 0.4) !important;
  filter: brightness(1.05) !important;
  color: var(--tw-navy) !important;
}

/* Follow on Instagram — secondary teal (filled, no halo) */
.instagram-feed-wrap a#sbi_follow_btn,
.instagram-feed-wrap a.sbi_follow_btn,
.instagram-feed-wrap #sbi_follow_btn > a,
.instagram-feed-wrap #sbi_follow_btn a.sb-followBtn-link,
.instagram-feed-wrap a.sb-followBtn-link,
.instagram-feed-wrap #sbi_follow_btn:not(div) {
  background: linear-gradient(
    135deg,
    var(--tw-blue) 0%,
    #056d83 100%
  ) !important;
  background-color: var(--tw-blue) !important;
  background-image: linear-gradient(
    135deg,
    var(--tw-blue) 0%,
    #056d83 100%
  ) !important;
  color: var(--white)!important;
  box-shadow: 0 4px 14px rgba(27, 147, 176, 0.28) !important;
}
.instagram-feed-wrap a#sbi_follow_btn:hover,
.instagram-feed-wrap a.sbi_follow_btn:hover,
.instagram-feed-wrap #sbi_follow_btn > a:hover,
.instagram-feed-wrap #sbi_follow_btn a.sb-followBtn-link:hover,
.instagram-feed-wrap a.sb-followBtn-link:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 22px rgba(27, 147, 176, 0.4) !important;
  filter: brightness(1.08) !important;
  color: var(--white)!important;
}

/* Reset inner spans + icons so they inherit the button's text styles cleanly */
.instagram-feed-wrap #sbi_load_btn span,
.instagram-feed-wrap .sbi_load_btn span,
.instagram-feed-wrap .sb-loadmore_btn span,
.instagram-feed-wrap #sbi_follow_btn span,
.instagram-feed-wrap .sbi_follow_btn span,
.instagram-feed-wrap .sb-followBtn-link span {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  color: inherit !important;
  font: inherit !important;
  letter-spacing: inherit !important;
  text-transform: inherit !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  line-height: 1 !important;
}
.instagram-feed-wrap #sbi_load_btn i,
.instagram-feed-wrap .sbi_load_btn i,
.instagram-feed-wrap .sb-loadmore_btn i,
.instagram-feed-wrap #sbi_follow_btn i,
.instagram-feed-wrap .sbi_follow_btn i,
.instagram-feed-wrap .sb-followBtn-link i {
  font-size: 1rem !important;
  line-height: 1 !important;
  color: inherit !important;
  background: transparent !important;
}

/* Instagram feed responsive */
@media (max-width: 480px) {
  .instagram-feed-section {
    padding: 52px 0 60px;
  }
  .instagram-feed-heading {
    margin-bottom: 32px;
  }
  .tw-ig-title {
    font-size: 2rem;
  }
}

/* ================================================================
   1TRIPWISER TRIBE — Community Forum
   ================================================================ */
.tribe-page {
  background: var(--tw-bodyBg);
}

/* ── Hero ── */
.tribe-hero {
  position: relative;
  background: #eef3f6;
  overflow: hidden;
  text-align: center;
}
.tribe-hero > .container {
  width: 100%;
}
.tribe-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse at 50% 0%,
      rgba(27, 147, 176, 0.16) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 85% 100%,
      rgba(216, 53, 80, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.tribe-hero-inner {
  position: relative;
  z-index: 1;
}
.tribe-hero-kicker {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tw-blue);
  background: rgba(27, 147, 176, 0.12);
  border: 1px solid rgba(27, 147, 176, 0.3);
  border-radius: 4px;
  padding: 6px 18px;
  margin-bottom: 16px;
}
.tribe-hero-title {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  color: var(--tw-navy);
  letter-spacing: -0.01em;
  line-height: 1;
  margin: 0 0 12px;
}
.tribe-hero-title span {
  color: var(--tw-pink);
}
.tribe-hero-sub {
  color: rgba(13, 21, 38, 0.6);
  font-size: 1.02rem;
  max-width: 620px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.tribe-hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.tribe-hstat {
  display: flex;
  flex-direction: column;
}
.tribe-hstat strong {
  font-family: var(--heading-font);
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--tw-pink), var(--tw-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tribe-hstat span {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(13, 21, 38, 0.5);
  margin-top: 4px;
}

/* Shared pill buttons */
.tribe-start-btn,
.tribe-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--tw-pink);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: var(--body-font);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 13px 30px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(216, 53, 80, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.tribe-start-btn:hover,
.tribe-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(216, 53, 80, 0.45);
  filter: brightness(1.05);
  color: var(--white);
}
.tribe-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--tw-blue);
  border: 1.5px solid var(--tw-blue);
  border-radius: 4px;
  font-family: var(--body-font);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 12px 26px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.tribe-btn-ghost:hover {
  background: var(--tw-blue);
  color: var(--white);
}

/* Instagram button — Instagram brand gradient */
.tribe-hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.tribe-ig-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: var(--body-font);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 13px 28px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.tribe-ig-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(220, 39, 67, 0.45);
  filter: brightness(1.06);
  color: var(--white);
}
.tribe-ig-btn i {
  font-size: 1.05rem;
  line-height: 1;
}
.tribe-ig-btn--block {
  width: 100%;
}

/* Instagram sidebar widget */
.tribe-ig-widget {
  text-align: center;
}
.tribe-ig-widget-text {
  color: #5b6b7d;
  font-size: 0.86rem;
  line-height: 1.55;
  margin: 0 0 14px;
}

/* ── Layout ── */
.tribe-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  padding-top: 36px;
  padding-bottom: 64px;
  align-items: start;
}

/* ── Category chips ── */
.tribe-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.tribe-cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid #e0e8f0;
  color: var(--tw-bodyColor);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 8px 15px;
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.tribe-cat-chip:hover {
  border-color: var(--tw-blue);
  color: var(--tw-blue);
}
.tribe-cat-chip.active {
  background: linear-gradient(135deg, var(--tw-blue) 0%, #056d83 100%);
  color: var(--white);
  border-color: transparent;
}

/* ── Topic cards ── */
.tribe-topic-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tribe-pinned-list {
  margin-bottom: 14px;
}
.tribe-topic {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid #e6edf3;
  border-radius: 6px;
  padding: 18px 20px;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.tribe-topic:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(13, 21, 38, 0.08);
  border-color: #cfe0ea;
}
.tribe-topic.is-pinned {
  border-color: rgba(216, 53, 80, 0.5);
  background: linear-gradient(180deg, #fffdf6 0%, var(--white) 100%);
}
.tribe-topic-avatar {
  flex-shrink: 0;
}
.tribe-card-avatar-img,
.tribe-topic-avatar img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(27, 147, 176, 0.25);
}
.tribe-topic-body {
  flex: 1;
  min-width: 0;
}
.tribe-topic-meta-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}
.tribe-chip-cat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--tw-blue);
  background: rgba(27, 147, 176, 0.08);
  border: 1px solid rgba(27, 147, 176, 0.2);
  padding: 3px 10px;
  border-radius: 4px;
  text-decoration: none;
}
.tribe-chip-cat:hover {
  background: rgba(27, 147, 176, 0.16);
}
.tribe-flag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 4px;
}
.tribe-flag-pin {
  color: #b8860b;
  background: rgba(216, 53, 80, 0.15);
}
.tribe-flag-solved {
  color: var(--tw-blue);
  background: rgba(27, 147, 176, 0.12);
}
.tribe-flag-solved.is-off {
  color: #94a3b8;
  background: var(--tw-lightBase);
}
.tribe-topic-title {
  font-family: var(--body-font);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 6px;
}
.tribe-topic-title a {
  color: var(--tw-navy);
  text-decoration: none;
}
.tribe-topic-title a:hover {
  color: var(--tw-blue);
}
.tribe-topic-excerpt {
  color: #5b6b7d;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 10px;
}
.tribe-topic-meta-bottom {
  font-size: 0.8rem;
  color: #8595a6;
  display: flex;
  align-items: center;
  gap: 7px;
}
.tribe-topic-author strong {
  color: var(--tw-blue);
  font-weight: 800;
}
.tribe-dot {
  opacity: 0.5;
}
.tribe-topic-stats {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  flex-shrink: 0;
}
.tribe-stat {
  font-size: 0.8rem;
  font-weight: 700;
  color: #5b6b7d;
  white-space: nowrap;
}

/* ── Pagination ── */
.tribe-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.tribe-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  background: var(--white);
  border: 1px solid #e0e8f0;
  border-radius: 9px;
  color: var(--tw-bodyColor);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.tribe-pagination .page-numbers:hover {
  border-color: var(--tw-blue);
  color: var(--tw-blue);
}
.tribe-pagination .page-numbers.current {
  background: linear-gradient(135deg, var(--tw-blue) 0%, #056d83 100%);
  color: var(--white);
  border-color: transparent;
}

/* ── Empty state ── */
.tribe-empty {
  background: var(--white);
  border: 1px dashed #cfe0ea;
  border-radius: 6px;
  padding: 48px 24px;
  text-align: center;
}
.tribe-empty-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}
.tribe-empty h3 {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  color: var(--tw-navy);
  margin: 0 0 8px;
}
.tribe-empty p {
  color: #5b6b7d;
  margin: 0 0 22px;
}

/* ── Member banner ── */
.tribe-member-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid #e6edf3;
  border-radius: 6px;
  padding: 16px 20px;
  margin-bottom: 20px;
}
.tribe-member-banner-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--tw-pink);
}
.tribe-member-banner div {
  display: flex;
  flex-direction: column;
}
.tribe-member-banner strong {
  color: var(--tw-navy);
  font-size: 1.05rem;
}
.tribe-member-banner span {
  color: #8595a6;
  font-size: 0.82rem;
}
.tribe-member-back {
  margin-left: auto;
  color: var(--tw-blue);
  font-weight: 800;
  text-decoration: none;
  font-size: 0.88rem;
}

/* ── Sidebar widgets ── */
.tribe-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 80px;
}
.tribe-widget {
  background: var(--white);
  border: 1px solid #e6edf3;
  border-radius: 6px;
  padding: 20px;
}
.tribe-widget-title {
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 800;
  color: var(--tw-navy);
  margin: 0 0 16px;
}
.tribe-widget-empty {
  color: #8595a6;
  font-size: 0.86rem;
  margin: 0;
}
.tribe-trending {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tribe-trending li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}
.tribe-trend-rank {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: rgba(27, 147, 176, 0.1);
  color: var(--tw-blue);
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tribe-trending a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tribe-trend-title {
  color: var(--tw-navy);
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.35;
}
.tribe-trending a:hover .tribe-trend-title {
  color: var(--tw-blue);
}
.tribe-trend-meta {
  color: #8595a6;
  font-size: 0.76rem;
}

.tribe-leaderboard {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tribe-leaderboard li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tribe-board-rank {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--tw-lightBase);
  color: #5b6b7d;
  font-weight: 800;
  font-size: 0.74rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tribe-board-rank--1 {
  background: var(--tw-pink);
  color: var(--white);
}
.tribe-board-rank--2 {
  background: #cbd5e1;
  color: var(--tw-navy);
}
.tribe-board-rank--3 {
  background: #e6c9a8;
  color: var(--tw-navy);
}
.tribe-board-user {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex: 1;
  min-width: 0;
}
.tribe-board-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}
.tribe-board-name {
  color: var(--tw-navy);
  font-weight: 700;
  font-size: 0.86rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tribe-board-user:hover .tribe-board-name {
  color: var(--tw-blue);
}
.tribe-board-score {
  margin-left: auto;
  color: var(--tw-pink);
  font-weight: 800;
  font-size: 0.78rem;
  white-space: nowrap;
}

.tribe-cat-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tribe-cat-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 9px;
  color: var(--tw-bodyColor);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: background 0.2s;
}
.tribe-cat-links a:hover {
  background: #f0f6fa;
  color: var(--tw-blue);
}
.tribe-cat-count {
  background: var(--tw-lightBase);
  color: #5b6b7d;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 9px;
  border-radius: 4px;
}

/* ── Modal ── */
.tribe-modal {
  position: fixed;
  inset: 0;
  z-index: 99990;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.tribe-modal.open {
  display: flex;
}
.tribe-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 21, 38, 0.6);
  backdrop-filter: blur(4px);
}
.tribe-modal-box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 8px;
  width: 100%;
  max-width: 560px;
  padding: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  animation: tribe-modal-in 0.25s ease;
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes tribe-modal-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.tribe-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f0f4f8;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  color: #5b6b7d;
  transition: background 0.2s;
}
.tribe-modal-close:hover {
  background: #e0e8f0;
}
.tribe-modal-title {
  font-family: var(--heading-font);
  font-size: 2rem;
  letter-spacing: 0.03em;
  color: var(--tw-navy);
  margin: 0 0 22px;
}

/* ── Forms ── */
.tribe-field {
  margin-bottom: 18px;
}
.tribe-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5b6b7d;
  margin-bottom: 7px;
}
.tribe-field input,
.tribe-field select,
.tribe-field textarea,
.tribe-reply-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #dde5ef;
  border-radius: 10px;
  font-family: var(--body-font);
  font-size: 0.95rem;
  color: var(--tw-bodyColor);
  background: #f9fbfd;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.tribe-field input:focus,
.tribe-field select:focus,
.tribe-field textarea:focus,
.tribe-reply-form textarea:focus {
  border-color: var(--tw-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27, 147, 176, 0.12);
}
.tribe-field textarea,
.tribe-reply-form textarea {
  resize: vertical;
  min-height: 110px;
}
.tribe-form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 6px;
  flex-wrap: wrap;
}
.tribe-form-msg {
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 12px;
  min-height: 1em;
}
.tribe-form-msg.error {
  color:  var(--tw-crimson);
}
.tribe-form-msg.success {
  color: var(--tw-blue);
}
.tribe-login-prompt {
  text-align: center;
  padding: 10px 0;
}
.tribe-login-prompt p {
  color: #5b6b7d;
  margin: 0 0 18px;
}
.tribe-login-prompt .tribe-form-actions {
  justify-content: center;
}

/* ── Single topic ── */
.tribe-single-wrap {
  max-width: 860px;
  padding-top: 28px;
  padding-bottom: 64px;
}
.tribe-crumbs {
  font-size: 0.85rem;
  color: #8595a6;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tribe-crumbs a {
  color: var(--tw-blue);
  text-decoration: none;
  font-weight: 700;
}
.tribe-post {
  background: var(--white);
  border: 1px solid #e6edf3;
  border-radius: 6px;
  padding: 30px;
}
.tribe-post-flags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.tribe-post-title {
  font-family: var(--heading-font);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--tw-navy);
  margin: 0 0 18px;
}
.tribe-post-byline {
  margin-bottom: 22px;
}
.tribe-byline-user {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.tribe-byline-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(27, 147, 176, 0.25);
}
.tribe-byline-user span {
  display: flex;
  flex-direction: column;
}
.tribe-byline-user strong {
  color: var(--tw-navy);
  font-size: 0.95rem;
}
.tribe-byline-user small {
  color: #8595a6;
  font-size: 0.8rem;
}
.tribe-post-content {
  color: #2d3b4d;
  font-size: 1.02rem;
  line-height: 1.8;
}
.tribe-post-content p {
  margin: 0 0 1.2em;
}
.tribe-post-content a {
  color: var(--tw-blue);
}
.tribe-post-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--tw-lightBase);
}

/* Like button */
.tribe-like-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--tw-bodyBg);
  border: 1.5px solid #e0e8f0;
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
  font-family: var(--body-font);
  font-weight: 800;
  font-size: 0.86rem;
  color: #5b6b7d;
  transition: all 0.18s ease;
}
.tribe-like-btn:hover {
  border-color:  var(--tw-crimson);
  color:  var(--tw-crimson);
  transform: translateY(-1px);
}
.tribe-like-btn.is-liked {
  background: rgba(213, 55, 79, 0.08);
  border-color: rgba(213, 55, 79, 0.4);
  color:  var(--tw-crimson);
}
.tribe-like-sm {
  padding: 5px 12px;
  font-size: 0.8rem;
}
.tribe-action-stat {
  font-size: 0.86rem;
  font-weight: 700;
  color: #5b6b7d;
}
.tribe-solve-btn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid var(--tw-blue);
  color: var(--tw-blue);
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
  font-family: var(--body-font);
  font-weight: 800;
  font-size: 0.84rem;
  transition: all 0.2s;
}
.tribe-solve-btn:hover {
  background: var(--tw-blue);
  color: var(--white);
}
.tribe-solve-btn.is-solved {
  background: rgba(27, 147, 176, 0.12);
}

/* ── Replies ── */
.tribe-replies {
  margin-top: 32px;
}
.tribe-replies-title {
  font-family: var(--heading-font);
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  color: var(--tw-navy);
  margin: 0 0 18px;
}
.tribe-reply-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tribe-reply-list .children {
  list-style: none;
  margin: 14px 0 0;
  padding: 0 0 0 28px;
  border-left: 2px solid var(--tw-lightBase);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tribe-reply-inner {
  display: flex;
  gap: 13px;
  background: var(--white);
  border: 1px solid #e6edf3;
  border-radius: 6px;
  padding: 16px 18px;
}
.tribe-reply-avatar {
  flex-shrink: 0;
}
.tribe-reply-avatar-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(27, 147, 176, 0.2);
}
.tribe-reply-body {
  flex: 1;
  min-width: 0;
}
.tribe-reply-head {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 5px;
}
.tribe-reply-name {
  color: var(--tw-navy);
  font-size: 0.92rem;
}
.tribe-reply-op {
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--tw-blue);
  background: rgba(27, 147, 176, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}
.tribe-reply-time {
  color: #8595a6;
  font-size: 0.8rem;
}
.tribe-reply-text {
  color: #2d3b4d;
  font-size: 0.94rem;
  line-height: 1.65;
}
.tribe-reply-text p {
  margin: 0 0 0.8em;
}
.tribe-reply-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}
.tribe-reply-link a {
  color: var(--tw-blue);
  font-weight: 800;
  font-size: 0.82rem;
  text-decoration: none;
}
.tribe-reply-link a:hover {
  text-decoration: underline;
}

/* Reply form */
.tribe-reply-form-wrap {
  background: #f9fbfd;
  border: 1px solid #e6edf3;
  border-radius: 6px;
  padding: 24px;
}
.tribe-mod-note {
  font-size: 0.82rem;
  color: #8595a6;
  background: var(--white);
  border: 1px dashed #cfe0ea;
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 16px;
}
.tribe-reply-form-title {
  font-family: var(--body-font);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--tw-navy);
  margin: 0 0 14px;
}
.tribe-reply-form .form-submit {
  margin: 14px 0 0;
}
.tribe-reply-form .comment-form-cookies-consent {
  display: none;
}
.tribe-no-replies {
  color: #8595a6;
  background: var(--white);
  border: 1px solid #e6edf3;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-bottom: 24px;
}
.tribe-back-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--tw-blue);
  font-weight: 800;
  text-decoration: none;
}
.tribe-login-inline {
  background: #f9fbfd;
  border: 1px solid #e6edf3;
  border-radius: 6px;
  padding: 24px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .tribe-layout {
    grid-template-columns: 1fr;
  }
  .tribe-sidebar {
    position: static;
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .tribe-hero {
    margin-top: -112px;
    padding-top: 112px;
    padding-bottom: 40px;
  }
  .tribe-hero-stats {
    gap: 26px;
  }
  .tribe-topic {
    flex-wrap: wrap;
  }
  .tribe-topic-stats {
    flex-direction: row;
    gap: 14px;
    width: 100%;
    padding-top: 10px;
    border-top: 1px solid var(--tw-lightBase);
    justify-content: flex-start;
    align-items: center;
  }
  .tribe-post {
    padding: 22px 18px;
  }
  .tribe-modal-box {
    padding: 24px 20px;
  }
  .tribe-post-actions {
    gap: 12px;
  }
  .tribe-solve-btn {
    margin-left: 0;
  }
}

/* ================================================================
   EXPLORE SUBHEADER — mega-menu (India / International / Events)
   ================================================================ */
.tw-sub {
  background: var(--tw-navy);
  /* backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%); */
  border: 1px solid rgba(13, 21, 38, 0.06);
  border-top: none;
  box-shadow: 0 10px 30px rgba(13, 21, 38, 0.06);
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 998;
  font-family: var(--body-font);
}
@media (max-width: 600px) {
  .tw-sub {
    top: 64px;
    left: 0;
    right: 0;
    border-radius: 0 0 10px 10px;
  }
}
.tw-sub-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 4px;
  height: 48px;
}
.tw-sub-item {
  position: relative;
  display: flex;
  align-items: stretch;
}
.tw-sub-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  padding: 0 18px;
  color: var(--tw-bodyBg);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  border-top: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
/* Divider between geography tabs (India / International) and trip-type tabs
   (Group Trips / Women's / LUXE / Events) — makes the mental model obvious. */
.tw-sub-divider {
  align-self: center;
  width: 1px;
  height: 22px;
  background: rgba(13, 21, 38, 0.12);
  margin: 0 6px;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .tw-sub-divider {
    display: none;
  }
}
.tw-sub-item:hover .tw-sub-link,
.tw-sub-link:focus {
  color: var(--pastel-pink);
  border-top-color: var(--pastel-pink);
}
.tw-sub-item.is-open .tw-sub-link {
  color: var(--tw-bodyBg);
  border-top-color: var(--tw-pink);
}
/* Active-page indicator — a solid pill so the current section stays readable
   no matter what's behind the translucent subheader (dark hero video, light
   page, imagery, etc.). Same mechanism on every nav item; each keeps its own
   accent color. */
.tw-sub-link.is-active {
  color: var(--white);
  background: var(--tw-navy);
  border-radius: 999px;
  border-bottom-color: transparent;
  margin: 8px 0;
  height: auto;
  padding: 8px 16px;
}
.tw-sub-link.is-active:hover {
  color: var(--white);
  background: var(--tw-navy);
}
.tw-sub-link--luxe.is-active {
  background: rgb(var(--luxe-gold));
  color: var(--tw-navy) !important;
}
.tw-sub-link--womens.is-active {
  background: var(--tw-pink);
  color: var(--white) !important;
}
.tw-sub-caret {
  font-size: 0.6rem;
  opacity: 0.7;
  transition: transform 0.2s;
}
.tw-sub-item:hover .tw-sub-caret,
.tw-sub-item.is-open .tw-sub-caret {
  transform: rotate(180deg);
}

/* Mega panel */
.tw-mega {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 560px;
  max-width: min(92vw, 880px);
  background: var(--white);
  border: 1px solid #e6edf3;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 24px 60px rgba(13, 21, 38, 0.22);
  padding: 22px 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 70;
}
.tw-sub-item:hover .tw-mega,
.tw-sub-item.is-open .tw-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tw-mega-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px 28px;
}
.tw-mega-col {
  min-width: 0;
}
.tw-mega-head {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tw-blue);
  text-decoration: none;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--tw-lightBase);
}
.tw-mega-head:hover {
  color: var(--tw-navy);
}
.tw-mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tw-mega-list a {
  display: block;
  padding: 6px 8px;
  border-radius: 7px;
  color: #2d3b4d;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.tw-mega-list a:hover {
  background: #f0f6fa;
  color: var(--tw-blue);
}

/* Events mega — right-aligned (Events is the rightmost item) */
.tw-mega-events {
  min-width: 520px;
  left: auto;
  right: 0;
}
.tw-mega-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
}
.tw-mega-event {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s;
}
.tw-mega-event:hover,
.tw-mega-event.active {
  background: #f0f6fa;
}
.tw-mega-event-icon {
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
}
.tw-mega-event-name {
  color: var(--tw-navy);
  font-size: 0.88rem;
  font-weight: 700;
}
.tw-mega-event:hover .tw-mega-event-name {
  color: var(--tw-blue);
}

/* Mobile subheader → horizontal scroll + tap-to-open accordion panels */
@media (max-width: 900px) {
  .tw-sub-inner {
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
  }
  .tw-sub-inner::-webkit-scrollbar {
    display: none;
  }
  .tw-mega,
  .tw-mega-events {
    position: fixed;
    left: 0;
    right: 0;
    top: auto;
    min-width: 0;
    max-width: 100vw;
    border-radius: 0;
    max-height: 70vh;
    overflow-y: auto;
  }
  .tw-mega-grid,
  .tw-mega-events-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ================================================================
   EXPLORE ARCHIVE — region / event term pages
   ================================================================ */
.explore-page {
  background: var(--tw-bodyBg);
}
/* ── Shared sub-page hero metrics ──
   Group Trips, Events, Women's Trips, Destination Regions, Destinations,
   Packages, Itineraries, Blog and Tribe all use the same hero height and
   header offset so the pages line up with each other. The height itself is
   the Group Trips archive's original natural height (352px desktop /
   305px mobile, measured pre-redesign) — not an arbitrary new value — so
   this page looks exactly as it did before. The LUXE / LUXURY pages use
   .tw-luxe-hero / .tw-luxury-hero and are deliberately excluded. */
.explore-hero,
.tribe-hero,
.dest-hero {
  min-height: var(--tw-subhero-h, 352px);
  margin-top: -162px;
  padding-top: 162px;
  padding-bottom: 44px;
  display: flex;
  align-items: center;
}
/* Photo-backed heroes anchor their copy to the bottom of the image. */
.explore-hero.has-hero-img,
.dest-hero.has-hero-img {
  align-items: flex-end;
}

.explore-hero {
  position: relative;
  background: #eef3f6;
  overflow: hidden;
  text-align: center;
}
.explore-hero > .container {
  width: 100%;
}
@media (max-width: 600px) {
  .explore-hero,
  .tribe-hero,
  .dest-hero {
    margin-top: -112px;
    padding-top: 112px;
    min-height: 305px;
  }
}
.explore-hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      ellipse at 50% 0%,
      rgba(27, 147, 176, 0.16) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 85% 100%,
      rgba(216, 53, 80, 0.08) 0%,
      transparent 50%
    );
}
/* Cinematic hero — featured image as full-bleed background; keeps the dark
   photo overlay + white text since it sits on a real photograph, not a
   flat fill, unlike the plain .explore-hero case above. */
.explore-hero.ev-hero-cinematic.has-hero-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.explore-hero.ev-hero-cinematic.has-hero-img .explore-hero-inner {
  width: 100%;
}
.ev-hero-overlay {
  background: linear-gradient(
    to top,
    rgba(7, 12, 26, 0.92) 0%,
    rgba(7, 12, 26, 0.55) 45%,
    rgba(7, 12, 26, 0.25) 100%
  ) !important;
}
.has-hero-img .explore-hero-title,
.has-hero-img .explore-hero-count {
  color: var(--white);
}
.has-hero-img .explore-hero-sub {
  color: rgba(255, 255, 255, 0.7);
}
.has-hero-img .explore-crumbs {
  color: rgba(255, 255, 255, 0.5);
}
/* Facts row inside the hero */
.ev-hero-facts {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
}
.ev-hero-fact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border-radius: 4px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}
.ev-hero-fact a {
  color: inherit;
  text-decoration: none;
}
.ev-hero-fact--price {
  background: rgba(216, 53, 80, 0.18);
  border-color: rgba(216, 53, 80, 0.4);
  color: var(--tw-pink);
}
.ev-hero-fact--price small {
  font-size: 0.72rem;
  opacity: 0.75;
  font-weight: 600;
}
/* Post-type kicker ("Group Trip · Bestseller") — sits in the fact row rather
   than above the title, so the hero leads with the trip name. */
.ev-hero-fact--kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.ev-hero-fact-tag {
  color: var(--pastel-pink);
}
/* Light heroes (no background image) need dark-on-light instead. */
.explore-hero:not(.has-hero-img) .ev-hero-fact {
  background: rgba(13, 21, 38, 0.05);
  border-color: rgba(13, 21, 38, 0.12);
  color: rgba(13, 21, 38, 0.7);
}
.explore-hero:not(.has-hero-img) .ev-hero-fact--kicker {
  background: rgba(27, 147, 176, 0.12);
  border-color: rgba(27, 147, 176, 0.3);
  color: var(--tw-blue);
}
.explore-hero:not(.has-hero-img) .ev-hero-fact-tag {
  color: var(--tw-pink);
}
.explore-hero:not(.has-hero-img) .ev-hero-fact--price {
  background: rgba(216, 53, 80, 0.1);
  border-color: rgba(216, 53, 80, 0.28);
  color: var(--tw-pink);
}
.explore-hero-inner {
  position: relative;
  z-index: 1;
}
.explore-crumbs {
  font-size: 0.82rem;
  color: rgba(13, 21, 38, 0.5);
  margin-bottom: 14px;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.explore-crumbs a {
  color: var(--tw-blue);
  text-decoration: none;
  font-weight: 700;
}
.explore-hero-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tw-blue);
  background: rgba(27, 147, 176, 0.12);
  border: 1px solid rgba(27, 147, 176, 0.3);
  border-radius: 4px;
  padding: 5px 16px;
  margin-bottom: 12px;
}
.explore-hero-title {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--tw-navy);
  letter-spacing: -0.01em;
  line-height: 1;
  margin: 0 0 10px;
}
.explore-hero-sub {
  color: rgba(13, 21, 38, 0.6);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto 10px;
  line-height: 1.6;
}
.explore-hero-count {
  color: var(--tw-pink);
  font-weight: 800;
  font-size: 0.85rem;
}

.explore-wrap {
  padding-top: 32px;
  padding-bottom: 64px;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 22px;
}
.explore-card {
  background: var(--white);
  border: 1px solid #e6edf3;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.explore-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13, 21, 38, 0.1);
}
.explore-card-img {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #0a1e30, #0d2d44);
  overflow: hidden;
}
.explore-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.explore-card:hover .explore-card-img img {
  transform: scale(1.06);
}
.explore-card-img--ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
}
.explore-card-type {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(13, 21, 38, 0.78);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 4px;
}
.explore-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.explore-card-title {
  font-family: var(--body-font);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 8px;
}
.explore-card-title a {
  color: var(--tw-navy);
  text-decoration: none;
}
.explore-card-title a:hover {
  color: var(--tw-blue);
}
.explore-card-excerpt {
  color: #5b6b7d;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0 0 14px;
  flex: 1;
}
.explore-card-link {
  color: var(--tw-blue);
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  margin-top: auto;
}
.explore-card-link:hover {
  color: var(--tw-blue);
}

/* Mega-menu empty state (Group Trips with no trips yet) */
.tw-mega-empty {
  padding: 8px 4px;
  text-align: center;
}
.tw-mega-empty p {
  color: #5b6b7d;
  font-size: 0.9rem;
  margin: 0 0 10px;
}
.tw-mega-allcta {
  color: var(--tw-blue);
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
}

/* ================================================================
   HOMEPAGE — Events & Festivals showcase row
   ================================================================ */
/* Events & Festivals — flat navy panel (no photo, no gradient), numbered
   list, red + blue only. Full-width edge-to-edge panel, wide inner container. */
.tw-events-showcase {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: var(--tw-navy);
  color: #e6e6e6;
}
.tw-events-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("https://images.unsplash.com/photo-1762503673365-2de429eeb667?crop=entropy&cs=srgb&fm=jpg&ixid=M3w3NTY2Nzd8MHwxfHNlYXJjaHwzfHxtdXNpYyUyMGZlc3RpdmFsJTIwY3Jvd2QlMjB0b21vcnJvd2xhbmR8ZW58MHx8fHwxNzgzOTQ0MTEyfDA&ixlib=rb-4.1.0&q=85");
  background-size: cover;
  background-position: center center;
  opacity: 0.35;
}
.tw-events-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
      circle 480px at 100% 0%,
      rgba(229, 18, 125, 0.65) 0%,
      rgba(229, 18, 125, 0.3) 45%,
      transparent 78%
    ),
    radial-gradient(
      circle 480px at 0% 100%,
      rgba(37, 215, 242, 0.6) 0%,
      rgba(37, 215, 242, 0.28) 45%,
      transparent 78%
    ),
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.5) 0%,
      rgba(10, 10, 10, 0.3) 40%,
      rgba(10, 10, 10, 0.7) 100%
    );
}
.tw-events-inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.tw-events-kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tw-pink);
  margin-bottom: 20px;
}
.tw-events-title {
  font-family: var(--heading-font);
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 20px;
}
.tw-events-title em {
  font-style: italic;
  font-weight: 400;
  color: rgb(var(--luxe-gold));
}
.tw-events-desc {
  font-family: var(--heading-font);
  font-style: italic;
  font-size: 1.06rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  max-width: 380px;
  margin: 0;
  font-weight: 400;
}

.tw-events-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid rgba(var(--luxe-gold), 0.5);
}
.tw-events-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.tw-events-row-link {
  display: grid;
  grid-template-columns: 56px 1fr auto 40px;
  align-items: center;
  gap: 20px;
  padding: 24px 4px;
  text-decoration: none;
  transition: background 0.2s;
}
.tw-events-row-link:hover {
  background: rgba(255, 255, 255, 0.04);
}
.tw-events-num {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  color: rgba(var(--luxe-gold), 0.8);
  letter-spacing: 0.04em;
}
.tw-events-name {
  font-family: var(--body-font);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 6px;
  line-height: 1.3;
}
.tw-events-date {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}
.tw-events-date i {
  color: var(--tw-blue);
  margin-right: 2px;
}
.tw-events-price {
  text-align: right;
  white-space: nowrap;
}
.tw-events-price small {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}
.tw-events-price strong {
  font-family: var(--heading-font);
  font-size: 1.15rem;
  color: rgb(var(--luxe-gold));
  letter-spacing: 0.02em;
}
.tw-events-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(var(--luxe-gold), 0.5);
  color: rgb(var(--luxe-gold));
  font-size: 0.8rem;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.tw-events-row-link:hover .tw-events-arrow {
  background: var(--luxe-gold);
  color: var(--tw-navy);
}
@media (max-width: 900px) {
  .tw-events-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tw-events-title {
    font-size: clamp(2.2rem, 8vw, 2.8rem);
  }
}
@media (max-width: 560px) {
  .tw-events-row-link {
    grid-template-columns: 32px 1fr auto;
    gap: 12px;
  }
  .tw-events-arrow {
    display: none;
  }
  .tw-events-name {
    font-size: 1.05rem;
  }
}

@media (max-width: 900px) {
  .tw-events-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .tw-events-desc {
    max-width: none;
  }
}
@media (max-width: 560px) {
  .tw-events-showcase {
    padding: 56px 0;
  }
  .tw-events-row-link {
    grid-template-columns: 34px 1fr auto;
    grid-template-areas: "num name price" "num name price";
    gap: 12px;
    padding: 18px 2px;
  }
  .tw-events-arrow {
    display: none;
  }
  .tw-events-name {
    font-size: 1.05rem;
  }
}

/* ================================================================
   UNIVERSAL SEARCH — overlay + results page
   ================================================================ */
.tw-search-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(13, 21, 38, 0.12);
  background: #f4f7fb;
  color: rgba(13, 21, 38, 0.4);
  cursor: pointer;
  font-family: var(--body-font);
  font-size: 0.85rem;
  font-weight: 500;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
  margin-right: 4px;
}
.tw-search-toggle:hover {
  background: #eef3f6;
  border-color: rgba(27, 147, 176, 0.4);
}
.tw-search-toggle i {
  color: var(--tw-blue);
  font-size: 0.82rem;
}
.tw-search-toggle-label {
  white-space: nowrap;
}
.tw-search-rotate {
  display: inline-block;
  text-align: left;
  transition: opacity 0.25s ease;
}
.tw-search-rotate.tw-search-rotate--fade {
  opacity: 0;
}
@media (max-width: 1100px) {
  .tw-search-toggle-label {
    display: none;
  }
  .tw-search-toggle {
    padding: 9px;
  }
}
.tw-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.tw-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  background: rgba(13, 21, 38, 0.72);
  backdrop-filter: blur(6px);
  align-items: flex-start;
  justify-content: center;
  padding: 12vh 20px 20px;
}
.tw-search-overlay.open {
  display: flex;
  animation: tw-fade-in 0.2s ease;
}
@keyframes tw-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.tw-search-modal {
  width: 100%;
  max-width: 900px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  border: 1px solid rgba(13, 21, 38, 0.08);
}
.tw-search-topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(13, 21, 38, 0.08);
}
.tw-search-icon {
  color: rgba(13, 21, 38, 0.35);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.tw-search-form {
  flex: 1;
  display: flex;
}
.tw-search-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 6px 0;
  font-family: var(--body-font);
  font-size: 1.15rem;
  color: var(--tw-navy);
  outline: none;
}
.tw-search-input::placeholder {
  color: rgba(13, 21, 38, 0.35);
}
.tw-search-esc-badge {
  flex-shrink: 0;
  font-family: var(--body-font);
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(13, 21, 38, 0.45);
  border: 1px solid rgba(13, 21, 38, 0.16);
  border-radius: 6px;
  padding: 3px 8px;
  letter-spacing: 0.04em;
}
.tw-search-close {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 21, 38, 0.06);
  border: none;
  color: var(--tw-navy);
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s;
}
.tw-search-close:hover {
  background: rgba(13, 21, 38, 0.12);
}

.tw-search-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding: 26px 28px 30px;
}
.tw-search-col-label {
  display: block;
  font-family: var(--body-font);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(13, 21, 38, 0.45);
  margin-bottom: 16px;
}
.tw-search-col-label i {
  color: var(--tw-pink);
  margin-right: 4px;
}
.tw-search-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tw-search-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-family: var(--body-font);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--white);
  color: var(--tw-navy);
  border: 1.5px solid rgba(13, 21, 38, 0.14);
  transition: transform 0.15s, box-shadow 0.15s;
}
.tw-search-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(13, 21, 38, 0.12);
}
.tw-search-pill.tw-pill-red {
  background: var(--tw-pink);
  border-color: var(--tw-pink);
  color: var(--white);
}
.tw-search-pill.tw-pill-blue {
  background: var(--tw-blue);
  border-color: var(--tw-blue);
  color: var(--tw-navy);
}
.tw-search-pill.tw-pill-gold {
  background: var(--luxe-gold);
  border-color: rgb(var(--luxe-gold));
  color: var(--tw-navy);
}
.tw-search-pill.tw-pill-navy {
  background: var(--tw-navy);
  border-color: var(--tw-navy);
  color: var(--white);
}

.tw-search-mood-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.tw-search-mood {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid rgba(13, 21, 38, 0.12);
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--tw-navy);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.tw-search-mood span {
  color: var(--tw-blue);
  font-size: 0.9rem;
}
.tw-search-mood:hover {
  border-color: var(--tw-blue);
  background: rgba(37, 215, 242, 0.06);
}

.tw-search-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: #f7f2ea;
  font-family: var(--body-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(13, 21, 38, 0.45);
}
.tw-search-footer kbd {
  font-family: var(--body-font);
  background: rgba(13, 21, 38, 0.08);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: none;
}
@media (max-width: 720px) {
  .tw-search-overlay {
    padding: 8vh 12px 12px;
  }
  .tw-search-body {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 22px 20px 24px;
  }
  .tw-search-footer {
    font-size: 0.62rem;
    padding: 12px 18px;
  }
}

/* Search results page */
.tw-results-head {
  background: linear-gradient(
    135deg,
    var(--tw-navy) 0%,
    #0a1e30 60%,
    #071a2a 100%
  );
  padding: 48px 0 40px;
  text-align: center;
}
.tw-results-head h1 {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}
.tw-results-head h1 span {
  color: var(--tw-pink);
}
.tw-results-head p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.tw-results-group {
  padding-top: 36px;
}
.tw-results-group-title {
  font-family: var(--body-font);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--tw-navy);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tw-results-group-title .tw-results-badge {
  background: rgba(27, 147, 176, 0.1);
  color: var(--tw-blue);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 4px;
}

/* ================================================================
   BLOG (Blogs + Affiliates) — UI polish
   (Hero + banner are styled in the main .ba-hero block above.)
   ================================================================ */

/* Filter pills — branded active + hover */
.ba-filter-pill:hover {
  border-color: var(--tw-blue);
  color: var(--tw-blue);
}
.ba-filter-pill.active {
  background: linear-gradient(
    135deg,
    var(--tw-blue) 0%,
    #056d83 100%
  ) !important;
  border-color: transparent !important;
  color: var(--white) !important;
  box-shadow: 0 4px 14px rgba(27, 147, 176, 0.25);
}

/* Cards — image zoom + lift */
.ba-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.ba-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(13, 21, 38, 0.12);
  border-color: #cfe0ea;
}
.ba-card-img img {
  transition: transform 0.45s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-card:hover .ba-card-img img {
  transform: scale(1.07);
}
.ba-card-cat {
  background: rgba(13, 21, 38, 0.78) !important;
  color: var(--white) !important;
  backdrop-filter: blur(4px);
  font-size: 0.68rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ba-card-title a {
  transition: color 0.2s;
}
.ba-card:hover .ba-card-title a {
  color: var(--tw-blue);
}
.ba-card-read-more {
  color: var(--tw-blue);
  font-weight: 800;
  transition: color 0.2s;
}
.ba-card-read-more:hover {
  color: var(--tw-blue);
}

/* Featured — image zoom + nicer read-more */
.ba-featured {
  transition: box-shadow 0.25s ease;
}
.ba-featured:hover {
  box-shadow: 0 20px 50px rgba(13, 21, 38, 0.14);
}
.ba-featured-img img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-featured:hover .ba-featured-img img {
  transform: scale(1.05);
}
.ba-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tw-pink);
  color: var(--white) !important;
  border-radius: 4px;
  padding: 11px 24px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(216, 53, 80, 0.3);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.ba-read-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(216, 53, 80, 0.45);
  filter: brightness(1.05);
}

/* Write-a-post button consistency */
.ba-section-head {
  font-family: var(--heading-font);
  letter-spacing: 0.03em;
  color: var(--tw-navy);
}

/* ================================================================
   EVENTS & FESTIVALS — landing page
   ================================================================ */
.ev-section {
  margin-bottom: 48px;
}
.ev-section-head {
  text-align: center;
  margin-bottom: 24px;
}
.ev-section-head h2 {
  font-family: var(--heading-font);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  letter-spacing: 0.04em;
  color: var(--tw-navy);
  margin: 0 0 6px;
}
.ev-section-head p {
  color: #5b6b7d;
  font-size: 0.95rem;
  margin: 0;
}

/* Discover events — horizontal scroll row */
.ev-discover-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 6px 2px 14px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.ev-discover-row::-webkit-scrollbar {
  display: none;
}
.ev-discover {
  flex: 0 0 auto;
  width: 130px;
  text-decoration: none;
  text-align: center;
}
.ev-discover-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tw-navy) 0%, #0a3a4a 100%);
  background-size: cover;
  background-position: center;
  border: 3px solid var(--white);
  box-shadow: 0 8px 22px rgba(13, 21, 38, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ev-discover:hover .ev-discover-media {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(13, 21, 38, 0.22);
}
.ev-discover-icon {
  font-size: 2.4rem;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.4));
}
.ev-discover-name {
  display: block;
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--tw-navy);
  line-height: 1.3;
}
.ev-discover:hover .ev-discover-name {
  color: var(--tw-blue);
}

/* Event package grid */
.ev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 22px;
}
.ev-card {
  background: var(--white);
  border: 1px solid #e6edf3;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ev-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(13, 21, 38, 0.12);
}
.ev-card-img {
  position: relative;
  display: block;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: linear-gradient(135deg, var(--tw-navy), #0a3a4a);
}
.ev-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.ev-card:hover .ev-card-img img {
  transform: scale(1.06);
}
.ev-card-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
}
.ev-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--tw-pink);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}
.ev-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ev-card-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8595a6;
  margin-bottom: 8px;
}
.ev-card-date {
  color: var(--tw-blue);
}
.ev-card-title {
  font-family: var(--body-font);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 8px;
}
.ev-card-title a {
  color: var(--tw-navy);
  text-decoration: none;
}
.ev-card-title a:hover {
  color: var(--tw-blue);
}
.ev-card-excerpt {
  color: #5b6b7d;
  font-size: 0.86rem;
  line-height: 1.55;
  margin: 0 0 14px;
  flex: 1;
}
.ev-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.ev-card-price span {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8595a6;
}
.ev-card-price strong {
  font-size: 1.05rem;
  color: var(--tw-navy);
}
.ev-card-btn {
  flex-shrink: 0;
  background: var(--tw-pink);
  color: var(--white);
  font-weight: 800;
  font-size: 0.84rem;
  padding: 9px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  box-shadow: 0 4px 14px rgba(216, 53, 80, 0.3);
}
.ev-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(216, 53, 80, 0.45);
  filter: brightness(1.05);
  color: var(--white);
}

/* By-month listing */
.ev-month {
  margin-bottom: 30px;
}
.ev-month-label {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #8595a6;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6edf3;
}
.ev-month-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ev-row {
  display: grid;
  grid-template-columns: 56px 200px 1fr auto;
  gap: 20px;
  align-items: center;
  background: var(--white);
  border: 1px solid #e6edf3;
  border-radius: 6px;
  padding: 16px;
  transition: box-shadow 0.2s ease, border-color 0.2s;
}
.ev-row:hover {
  box-shadow: 0 12px 32px rgba(13, 21, 38, 0.1);
  border-color: #cfe0ea;
}
.ev-row-date {
  text-align: center;
}
.ev-row-date strong {
  display: block;
  font-family: var(--heading-font);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--tw-navy);
}
.ev-row-date span {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--tw-blue);
}
.ev-row-img {
  display: block;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--tw-navy), #0a3a4a);
}
.ev-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ev-row-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--tw-blue);
  background: rgba(27, 147, 176, 0.1);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 6px;
}
.ev-row-title {
  font-family: var(--body-font);
  font-size: 1.08rem;
  font-weight: 800;
  margin: 0 0 4px;
}
.ev-row-title a {
  color: var(--tw-navy);
  text-decoration: none;
}
.ev-row-title a:hover {
  color: var(--tw-blue);
}
.ev-row-dur {
  font-size: 0.78rem;
  font-weight: 700;
  color: #8595a6;
  margin-bottom: 4px;
}
.ev-row-excerpt {
  color: #5b6b7d;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}
.ev-row-foot {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .ev-row {
    grid-template-columns: 48px 1fr;
    grid-template-areas: "date img" "body body" "foot foot";
    gap: 12px;
  }
  .ev-row-date {
    grid-area: date;
  }
  .ev-row-img {
    grid-area: img;
    height: 90px;
  }
  .ev-row-body {
    grid-area: body;
  }
  .ev-row-foot {
    grid-area: foot;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

/* ================================================================
   UNIFIED ARCHIVE FILTER (region + meta in one bar)
   ================================================================ */
.tw-filter {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid #e6edf3;
  border-radius: 6px;
  padding: 14px 18px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  box-shadow: 0 4px 18px rgba(13, 21, 38, 0.05);
}
.tw-filter-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8595a6;
  flex-shrink: 0;
}
.tw-filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.tw-fchip {
  display: inline-flex;
  align-items: center;
  background: var(--tw-bodyBg);
  border: 1px solid #e0e8f0;
  color: var(--tw-bodyColor);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 7px 15px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, color 0.18s,
    box-shadow 0.18s;
}
.tw-fchip:hover {
  border-color: var(--tw-blue);
  color: var(--tw-blue);
}
.tw-fchip.active {
  background: linear-gradient(135deg, var(--tw-blue) 0%, #056d83 100%);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(27, 147, 176, 0.25);
}
.tw-fchip-meta.active {
  background: var(--tw-pink);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(216, 53, 80, 0.3);
}
.tw-filter-sep {
  width: 1px;
  align-self: stretch;
  min-height: 22px;
  background: #e0e8f0;
  margin: 0 4px;
}
@media (max-width: 560px) {
  .tw-filter {
    flex-direction: column;
    align-items: flex-start;
  }
  .tw-filter-sep {
    display: none;
  }
}

/* ================================================================
   PACKAGE / DESTINATION CARD — polish + branded image placeholder
   ================================================================ */
.package-card,
.destination-card {
  padding-top: 0;
  border: 1px solid #e6edf3;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(13, 21, 38, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.package-card:hover,
.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(13, 21, 38, 0.13);
  border-color: #cfe0ea;
}
/* Branded placeholder behind the image so image-less cards look intentional */
.package-media {
  background: linear-gradient(135deg, #0d2d44 0%, #0a3a4a 100%);
}
.package-media::after {
  content: "\f631";
  font-family: "uicons-regular-rounded";
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.6rem;
  opacity: 0.45;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.35));
}
.package-media img {
  position: relative;
  z-index: 1;
}
.package-location {
  color: var(--tw-blue);
  font-weight: 700;
  font-size: 0.8rem;
}
.package-facts span {
  background: #f0f6fa;
  color: var(--tw-navy);
  border-radius: 4px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 700;
}

/* Book Now — gradient teal pill matching the design system */
.book-now-btn {
  background: linear-gradient(135deg, var(--tw-blue) 0%, #056d83 100%);
  border-radius: 4px;
  padding: 10px 22px;
  box-shadow: 0 4px 14px rgba(27, 147, 176, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.book-now-btn:hover {
  background: linear-gradient(135deg, var(--tw-blue) 0%, #056d83 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(27, 147, 176, 0.42);
  filter: brightness(1.06);
}

/* ================================================================
   ITINERARY CARD ACTIONS — Open Itinerary (teal) + Book Now (gold)
   ================================================================ */
.itin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 14px;
}
.book-now-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--tw-pink);
  color: var(--white);
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(216, 53, 80, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.book-now-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(216, 53, 80, 0.45);
  filter: brightness(1.05);
  color: var(--white);
}

/* ================================================================
   SINGLE EVENT & FESTIVAL (tw_event)
   ================================================================ */
.ev-single-wrap {
  max-width: 1040px;
  padding-top: 28px;
  padding-bottom: 64px;
}
.ev-single-card {
  display: grid;
  grid-template-columns: 1fr 320px;
  grid-template-areas: "media book" "body book";
  gap: 26px;
  align-items: start;
}
.ev-single-media {
  grid-area: media;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e6edf3;
}
.ev-single-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ev-single-body {
  grid-area: body;
}
.ev-single-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.ev-fact {
  background: var(--white);
  border: 1px solid #e6edf3;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--tw-navy);
}
.ev-fact a {
  color: var(--tw-blue);
  text-decoration: none;
}
.ev-single-content {
  color: #2d3b4d;
  font-size: 1.02rem;
  line-height: 1.8;
}
.ev-single-content p {
  margin: 0 0 1.2em;
}
/* Polished intro/description card on single trip pages */
.ev-itin-intro {
  background: var(--white);
  border: 1px solid #e6edf3;
  border-radius: 6px;
  padding: 24px 28px;
  box-shadow: 0 4px 18px rgba(13, 21, 38, 0.04);
}
.ev-itin-intro p {
  font-size: 1rem;
  color: #374151;
  line-height: 1.8;
  margin: 0;
  font-style: normal;
}
.ev-single-content a {
  color: var(--tw-blue);
}

/* Destination archive card — 2-line excerpt clamp */
.dest-archive .dest-card-excerpt {
  font-size: 0.9rem;
  color: #6b7a8f;
  line-height: 1.55;
  margin: 8px 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Card wrapper for the WYSIWYG overview (package highlights, etc.) */
.ev-overview-card {
  background: var(--white);
  border: 1px solid #e6edf3;
  border-radius: 6px;
  padding: 8px 28px 22px;
  box-shadow: 0 4px 18px rgba(13, 21, 38, 0.04);
  margin-top: 0;
}
.ev-overview-card > *:first-child {
  margin-top: 18px;
}
.ev-overview-card > *:last-child {
  margin-bottom: 0;
}
.ev-overview-card h2,
.ev-overview-card h3,
.ev-overview-card h4 {
  margin-top: 18px;
}
.ev-overview-card p {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.75;
  margin: 0 0 12px;
}
/* Sticky booking panel */
.ev-single-book {
  grid-area: book;
  position: sticky;
  top: 84px;
  background: var(--white);
  border: 1px solid #e6edf3;
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0 12px 36px rgba(13, 21, 38, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ev-single-price {
  text-align: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--tw-lightBase);
}
.ev-single-price span {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8595a6;
}
.ev-single-price strong {
  font-family: var(--heading-font);
  font-size: 2.2rem;
  letter-spacing: 0.03em;
  color: var(--tw-navy);
  line-height: 1.1;
}
.ev-single-price small {
  display: block;
  font-size: 0.78rem;
  color: #8595a6;
}
.ev-single-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.ev-single-btn:not(.ev-single-btn--ghost) {
  background: var(--tw-pink);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(216, 53, 80, 0.32);
}
.ev-single-btn:not(.ev-single-btn--ghost):hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(216, 53, 80, 0.45);
  filter: brightness(1.05);
}
.ev-single-btn--ghost {
  background: transparent;
  border: 1.5px solid var(--tw-blue);
  color: var(--tw-blue);
}
.ev-single-btn--ghost:hover {
  background: var(--tw-blue);
  color: var(--white);
}
/* Women's Trips callout on Group Trips archive */
.gt-womens-callout {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #f0f9fb, #f5fbfc);
  border: 1.5px solid #c9e6ec;
  border-radius: 6px;
  padding: 16px 22px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.gt-womens-callout-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.gt-womens-callout-copy {
  flex: 1;
  min-width: 200px;
}
.gt-womens-callout-copy strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--tw-navy);
  margin-bottom: 3px;
}
.gt-womens-callout-copy span {
  font-size: 0.82rem;
  color: #6b7a8f;
}
.gt-womens-callout-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: var(--tw-pink);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.gt-womens-callout-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: var(--white);
}
/* ── Styled overview / day-by-day content ── */
.ev-content-styled {
  margin-top: 28px;
}
.ev-content-styled h2,
.ev-content-styled h3,
.ev-content-styled h4 {
  font-family: var(--body-font);
  font-weight: 800;
  color: var(--tw-navy);
  margin: 28px 0 10px;
  padding: 10px 16px;
  background: #f0f7ff;
  border-left: 4px solid var(--tw-blue);
  border-radius: 0 10px 10px 0;
  line-height: 1.4;
}
.ev-content-styled h2 {
  font-size: 1.1rem;
}
.ev-content-styled h3 {
  font-size: 1rem;
}
.ev-content-styled h4 {
  font-size: 0.95rem;
}
.ev-content-styled p {
  font-size: 0.92rem;
  color: #374151;
  line-height: 1.8;
  margin: 0 0 12px;
}
.ev-content-styled ul,
.ev-content-styled ol {
  margin: 0 0 16px 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ev-content-styled ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.7;
}
.ev-content-styled ul li::before {
  content: "\f2de";
  font-family: "uicons-regular-rounded";
  color: var(--tw-blue);
  font-weight: 800;
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.ev-content-styled ol {
  counter-reset: ol-count;
}
.ev-content-styled ol li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.7;
  counter-increment: ol-count;
}
.ev-content-styled ol li::before {
  content: counter(ol-count);
  min-width: 22px;
  height: 22px;
  background: var(--tw-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
.ev-content-styled strong {
  font-weight: 800;
  color: var(--tw-navy);
}
.ev-content-styled a {
  color: var(--tw-blue);
  text-decoration: underline;
}
/* Trip Details panel (events + group trips single page) */
.ev-trip-details {
  background: #f8fafc;
  border: 1px solid #e6edf3;
  border-radius: 6px;
  padding: 24px 26px;
  margin-top: 24px;
}
.ev-trip-details-title {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--tw-navy);
  margin: 0 0 18px;
}
.ev-trip-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
}
.ev-trip-detail-val {
  word-break: break-word;
}
.ev-trip-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ev-trip-detail-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.ev-trip-detail-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8595a6;
  margin-bottom: 3px;
}
.ev-trip-detail-val {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--tw-navy);
  line-height: 1.4;
}
@media (max-width: 600px) {
  .ev-trip-details-grid {
    grid-template-columns: 1fr;
  }
}
/* Group trip detail rows inside booking sidebar */
.ev-single-detail-list {
  border-top: 1px solid var(--tw-lightBase);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ev-single-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.ev-detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #8595a6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.ev-detail-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--tw-navy);
  text-align: right;
}
@media (max-width: 860px) {
  .ev-single-card {
    grid-template-columns: 1fr;
    grid-template-areas: "media" "book" "body";
  }
  .ev-single-book {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .ev-single-price {
    border-bottom: none;
    border-right: 1px solid var(--tw-lightBase);
    padding: 0 18px 0 0;
    text-align: left;
  }
  .ev-single-btn {
    flex: 1;
  }
}
