/*
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=Bebas+Neue&family=Nunito:wght@300;400;600;700;800&display=swap");

/* ── Brand colour tokens ── */
:root {
  --tw-gold: #fcb415;
  --tw-blue: #0692af;
  --tw-green: #306c35;
  --tw-navy: #0d1526;
}

/* ── Smooth scroll ── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;  /* matches .tw-nav-inner height */
}

/* ── Reset ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── Base ── */
body {
  font-family: "Nunito", Arial, sans-serif;
  line-height: 1.6;
  color: #1a2535;
  background-color: #f5f8fa;
}

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

/* Display headings: Bebas Neue */
h1, h2 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

/* Sub-headings: Nunito Bold */
h3, h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  line-height: 1.35;
}

h5, h6 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  line-height: 1.4;
}

/* Section kicker (small label above heading) */
.section-kicker,
.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: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: #0d1526;
}

.section-heading span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0692af;
  display: block;
  margin-bottom: 10px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Old site-header hidden — replaced by .tw-nav in header.php */
.site-header {
  display: none;
}

.header-top {
  background: rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.header-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.social-icons a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffd700;
}

.header-main {
  padding: 20px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-description {
  /* border: 2px solid red; */
  font-size: 0.5rem;
  color: #0692af;
  font-weight: 300;
}
.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: #1a2535;
  text-decoration: none;
  padding: 10px 15px;
  transition: background 0.3s;
  border-radius: 5px;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
  background: #0692af;
}

.cta-btn {
  background: #ffd700 !important;
  color: #333 !important;
  font-weight: bold;
}

.travel-tabs {
  background: #0b1220;
  border-bottom: 1px solid rgba(6, 146, 175, 0.15);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 5;
  font-family: "Nunito", sans-serif;
  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: #fcb415;
  background: rgba(252, 180, 21, 0.08);
  border-color: rgba(252, 180, 21, 0.2);
}

/* Search Form */
.header-search {
  margin-left: auto;
}

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

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

.search-submit {
  padding: 8px 15px;
  background: #ffd700;
  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: 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);
}

/* Old site-footer — replaced by .tw-footer in footer.php */
.site-footer {
  display: none;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 1rem;
}

.footer-section h3 {
  margin-bottom: 20px;
  color: #ffffffb3;
}

.footer-section p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-section ul {
  /* border: 2px solid red; */
  color: #ffffff80;
  list-style: none;
}

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

.footer-section a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #ffd700;
}

.footer-section.sub-title {
  font-size: 12px;
  color: #f1af1a;
  font-weight: 700;
}

.footer-section.description {
  /* border: 2px solid red; */
  font-size: 12px;
}

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

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-nav {
  display: flex;
  list-style: none;
}

.footer-nav li {
  margin-left: 20px;
}

.footer-nav a {
  color: #bdc3c7;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #ffd700;
}

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

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

.post-card {
  background: white;
  border-radius: 5px;
  overflow: hidden;
  padding-top: 1rem;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.post-thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.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, #0692af 0%, #056d83 100%);
  color: #fff;
  padding: 10px 22px;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(6,146,175,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.read-more:hover {
  background: linear-gradient(135deg, #0692af 0%, #056d83 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(6,146,175,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: 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: white;
  border-color: #0d6b68;
}

/* Single Post */
.single-post {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.post-header {
  padding: 30px;
  background: #0d1526;
  color: white;
}

.post-header h1 {
  margin-bottom: 15px;
  font-size: 2em;
}

.post-thumbnail {
  margin-bottom: 30px;
}

.post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.post-content {
  padding: 0 30px 30px;
  line-height: 1.8;
}

.post-footer {
  padding: 20px 30px;
  background: #f8f9fa;
  border-top: 1px solid #eee;
}

.tags {
  font-size: 0.9em;
}

.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: 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: 999px;
  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: linear-gradient(135deg, #FCB415 0%, #f09a00 100%);
  color: #0d1526;
  box-shadow: 0 6px 18px rgba(252,180,21,0.32);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #FCB415 0%, #f09a00 100%);
  color: #0d1526;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(252,180,21,0.45);
  filter: brightness(1.05);
}

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

.btn-secondary:hover {
  background: #e9ecef;
  color: #0692af;
}

/* Search Results */
.search-header {
  margin-bottom: 40px;
  text-align: center;
}

.search-header h1 {
  margin-bottom: 10px;
}

.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: #0692af;
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.travel-empty-state h2 {
  color: #0d1526;
  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: #ffffff;
  border: 1px solid #d9e2ec;
  border-radius: 999px;
  color: #0d6b68;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 8px 13px;
  text-decoration: none;
}

.travel-empty-suggestions a:hover {
  border-color: #0692af;
  color: #0692af;
}

.stats-section {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #e0e8f0;
  border-top: 1px solid #e0e8f0;
  gap: 40px; /* space between items */
  padding: 40px 20px;
  /* background: #0f172a;   */
  flex-wrap: wrap; /* allows responsiveness */
}

/* 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(252, 180, 21), rgb(6, 146, 175));

  /* 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;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgba(6, 146, 175, 0.05) 50%,
    rgba(48, 108, 53, 0.03) 100%
  );
  background-position: center;
  background-size: cover;
  color: white;
  padding: 92px 0;
  text-align: center;
}

.hero-content {
  margin-bottom: 2rem;
}
.hero-content h1 {
  /* max-width: 880px;
  margin: 0 auto 20px;
  margin-bottom: 20px; */

  font-family: "Bebas Neue", sans-serif;
  /* font-size: clamp(52px, 7vw, 96px); */
  font-size: 4rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 3px;
  /* color: var(--navy); */
  color: #0692af;

  margin-bottom: 8px;
  animation: fadeUp 1s ease 0.4s both;
}

.hero-content p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.2em;
  margin-bottom: 30px;
}

.hero-content .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 146, 175, 0.1);
  border: 1px solid rgba(6, 146, 175, 0.25);
  color: #0692af;
  font-size: 11px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fadeDown 0.8s ease;
  margin-bottom: 10rem;
}

.hero-content .pill p {
  margin: 0;
}

.hero-content .tag-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.tag-pill {
  background: rgba(6, 146, 175, 0.1);
  border: 1px solid rgba(6, 146, 175, 0.25);
  color: #1a2535;
  font-size: 11px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 20px;
}

.hero-kicker,
.section-heading span,
.travel-archive-header span,
.travel-single-header > span {
  font-size: 16px;
  font-weight: 800;
  color: #0692af;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  animation: fadeUp 1s ease 0.5s both;
 }

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hero-secondary {
  background: rgba(255, 255, 255, 0.12);
  /* border-color: rgba(255, 255, 255, 0.5); */

  border-color: #0692af;
  color: #0692af;
}

/* 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: #ffffff;
}

.itinerary-section {
  background: #eef7f6;
}

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

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

.travel-filter-box {
  align-items: center;
  background: #ffffff;
  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: 999px;
  color: #0d1526;
  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: #0692af;
  border-color: #0692af;
  color: #ffffff;
}

/* ── New tw-filter-bar — redesigned filter UI ── */
.tw-filter-bar { background:#fff; border:1px solid #e8edf5; border-radius:18px; 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:999px; 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:#0692AF; color:#0692AF; background:rgba(6,146,175,0.06); }
.tw-filter-pill.active { background:#0692AF; border-color:#0692AF; color:#fff; box-shadow:0 4px 14px rgba(6,146,175,0.28); }
.tw-filter-pill--budget:hover { border-color:#FCB415; color:#b07a00; background:rgba(252,180,21,0.08); }
.tw-filter-pill--budget.active { background:linear-gradient(135deg,#FCB415,#f09a00); border-color:#FCB415; color:#0d1526; box-shadow:0 4px 14px rgba(252,180,21,0.3); }
.tw-filter-pill--type:hover { border-color:#0692AF; color:#0692AF; background:rgba(6,146,175,0.06); }
.tw-filter-pill--type.active { background:linear-gradient(135deg,#FCB415,#f09a00); border-color:#FCB415; color:#0d1526; box-shadow:0 4px 14px rgba(252,180,21,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:14px} .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,
#tw-cards-itineraries { grid-template-columns: repeat(3, 1fr) !important; }
@media(max-width:900px){
    #tw-cards-packages,
    #tw-cards-itineraries { grid-template-columns: repeat(2, 1fr) !important; }
}
@media(max-width:600px){
    #tw-cards-packages,
    #tw-cards-itineraries { grid-template-columns: 1fr !important; }
}


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

.package-search-form {
  background: #ffffff;
  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: #0d1526;
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.package-search-grid input,
.package-search-grid select {
  background: #ffffff;
  border: 1px solid #d9e2ec;
  border-radius: 6px;
  color: #0d1526;
  font: inherit;
  min-height: 44px;
  padding: 10px 12px;
  width: 100%;
}

.package-search-grid input:focus,
.package-search-grid select:focus {
  border-color: #0692af;
  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: #ffffff;
  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: #0d1526;
  font-size: 1.35rem;
  margin: 0;
}

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

.package-card,
.destination-card {
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

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

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

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

.package-tag {
  background: #f1af1a;
  border-radius: 999px;
  color: #0d1526;
  font-size: 0.74rem;
  font-weight: 800;
  left: 14px;
  padding: 6px 12px;
  position: absolute;
  text-transform: uppercase;
  top: 14px;
}

.package-compare-check {
  align-items: center;
  background: rgba(13, 21, 38, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  bottom: 12px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 800;
  gap: 7px;
  padding: 7px 11px;
  position: absolute;
  right: 12px;
  z-index: 2;
}

.package-compare-check input {
  accent-color: #fcb415;
  height: 15px;
  width: 15px;
}

.package-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.package-content h2,
.package-content h3 {
  font-size: 1.18rem;
  line-height: 1.35;
  margin: 8px 0 12px;
}

.package-content h2 a,
.package-content h3 a {
  color: #0d1526;
  text-decoration: none;
}

.package-location {
  color: #667085;
  display: inline-flex;
  font-size: 0.9rem;
  gap: 6px;
  line-height: 1.4;
}

.package-location i {
  color: #0692af;
  margin-top: 3px;
}

.package-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.package-facts span {
  background: #eef7f6;
  border: 1px solid #cfe7e5;
  border-radius: 999px;
  color: #0d6b68;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 10px;
}

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

.package-price-row strong {
  color: #0d1526;
  display: block;
  font-size: 1.25rem;
  line-height: 1.1;
}

.package-price-row small {
  color: #667085;
  display: block;
  font-size: 0.78rem;
  margin-top: 5px;
}

.book-now-btn {
  background: #0d6b68;
  border-radius: 6px;
  color: #fff;
  flex: 0 0 auto;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 10px 14px;
  text-decoration: none;
}

.book-now-btn:hover {
  background: #095654;
  color: #fff;
}

.package-compare-section {
  background: #ffffff !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: #0692af !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: #0d1526 !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: #0d1526;
}

.package-compare-table tbody th {
  background: #fbfcfd;
  color: #0d1526;
  font-weight: 900;
}

.package-compare-title {
  color: #0d1526;
  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: #0d1526;
  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: #ffffff;
  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: 999px;
  cursor: pointer;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
  padding: 9px 14px;
}

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

.package-compare-tray button:last-child {
  background: #fcb415;
  color: #0d1526;
}

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

.travel-meta span {
  background: #eef7f6;
  border: 1px solid #cfe7e5;
  border-radius: 999px;
  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: #fff;
  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-meta span {
  margin-right: 10px;
  font-size: 14px;
}

.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: #0692af;
  font-weight: 700;
  text-decoration: none;
}

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

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

.header-meta span {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.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: #0d1526;
  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: #0692af;
  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: #0d1526;
  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: #ffffff;
  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: #0692af;
}

.destination-guide-toc span {
  align-items: center;
  background: #eef9fc;
  border: 1px solid #d3eef5;
  border-radius: 50%;
  color: #0692af;
  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: #ffffff;
  border: 1px solid #e7eaf0;
  border-radius: 8px;
  padding: 18px;
  scroll-margin-top: 110px;
}

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


.destination-guide-card h3 {
  color: #0d1526;
  font-size: 1rem;
  margin: 0 0 10px;
}

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

.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 {
  background: #f8fbfc;
  border-top: 1px solid #e7eaf0;
}

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

.tw-package-enquiry-copy span {
  color: #0692af;
  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: #0d1526;
  font-size: 1.55rem;
  margin-bottom: 10px;
}

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

.tw-package-enquiry-form {
  background: #ffffff;
  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: #0d1526;
  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: #0692af;
  outline: none;
}

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

.tw-package-enquiry-form button {
  background: #0d6b68;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  cursor: pointer;
  font-weight: 800;
  margin-top: 16px;
  padding: 12px 18px;
}

.tw-package-enquiry-form button:hover {
  background: #095654;
}

.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: #fdecec;
  color: #9f1f2d;
}

.tw-faq-section {
  background: #ffffff;
  border-top: 1px solid #e7eaf0;
}

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

.tw-faq-item {
  border: 1px solid #e7eaf0;
  border-radius: 8px;
  overflow: hidden;
}

.tw-faq-item summary {
  color: #0d1526;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  padding: 15px 18px;
}

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

.tw-faq-answer {
  border-top: 1px solid #e7eaf0;
  color: #667085;
  line-height: 1.7;
  padding: 0 18px 16px;
}

.tw-faq-answer p:last-child {
  margin-bottom: 0;
}

.plan-trip-content h1 {
  margin-bottom: 12px;
}

.plan-trip-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  margin-top: 30px;
}

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

.itinerary-days {
  padding: 0 30px 30px;
}

.itinerary-days-heading {
  margin-bottom: 20px;
}

.itinerary-days-heading span {
  color: #0692af;
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.itinerary-days h2,
.itinerary-days-heading h2 {
  color: #0d1526;
  font-size: 1.5rem;
  margin: 0;
}

.itinerary-timeline {
  position: relative;
}

.itinerary-timeline::before {
  background: #d9edf3;
  bottom: 36px;
  content: "";
  left: 50px;
  position: absolute;
  top: 96px;
  width: 2px;
}

.itinerary-day {
  background: #ffffff;
  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, #0692af 0%, #056d83 100%);
  border: 4px solid #f8fbfc;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(6, 146, 175, 0.24);
  color: #ffffff;
  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: #0d1526;
  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: #0692af;
  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(6, 146, 175, 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 #eef2f6;
  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: 999px;
  color: #334155;
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 800;
  gap: 7px;
  padding: 7px 11px;
}

.itinerary-day-chips i {
  color: #0692af;
}

.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: linear-gradient(
    135deg,
    rgba(48, 108, 53, 0.05),
    rgba(6, 146, 175, 0.05)
  );
  border-bottom: 1px solid #e0e8f0;
  border-top: 1px solid #e0e8f0;
  padding: 64px 0;
}

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

.visa-services-heading h2 {
  color: #0d1526;
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 12px;
  font-family: "Bebas Neue", sans-serif;
}

.visa-services-heading .highlight {
  color: #0692af !important;
  font-size: 3.5rem;
  font-weight: 500;
  /* margin-left: 0; */
  /* line-height: 1; */
}

.visa-services-heading span {
  text-align: start;
  letter-spacing: 2px;
  font-weight: 600;
}

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

.visa-service-card {
  background: #ffffff;
  border: 1px solid #dceff3;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(13, 21, 38, 0.07);
  color: #0d1526;
  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: #0692af;
  box-shadow: 0 16px 34px rgba(13, 21, 38, 0.12);
  color: #0d1526;
  transform: translateY(-4px);
}

.visa-service-icon {
  align-items: center;
  background: #0692af1a;
  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: #0692af;
  font-weight: 800;
  margin-top: auto;
}

.free-itinerary-section {
  background: #0692af1a;
  padding: 58px 0;
}

.community-section-container {
  background: linear-gradient(
    135deg,
    rgba(213, 55, 79, 0.03),
    rgba(252, 180, 21, 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: #0692af;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.community-heading h2 {
  color: #0d1526;
  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: #0692af !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: #0692af;
  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: #ffffff;
  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: #ffffff;
  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-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
  /* grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr); */
}

.free-itinerary-copy h2 {
  color: #0d1526;
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 12px;
  font-family: "Bebas Neue", sans-serif;
  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: #fcb415;
  font-weight: 700;
}

.free-itinerary-form {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  padding: 10px;
}

.free-itinerary-form input {
  background: #ffffff;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #0d1526;
  flex: 1;
  font-size: 0.96rem;
  min-width: 15rem;
  padding: 13px 14px;
}

.free-itinerary-form input:focus {
  border-color: #f1af1a;
  outline: none;
}

.free-itinerary-form button {
  background: #f1af1a;
  border: none;
  font-size: 12px;
  border-radius: 24px;
  color: #0d1526;
  cursor: pointer;
  flex: 0 0 auto;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  padding: 13px 18px;
}

.free-itinerary-form button:hover {
  background: #ffc13d;
}

.free-itinerary-link {
  background: linear-gradient(135deg, #FCB415 0%, #f09a00 100%);
  border-radius: 999px;
  color: #0d1526;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(252,180,21,0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.free-itinerary-link:hover {
  background: linear-gradient(135deg, #FCB415 0%, #f09a00 100%);
  color: #0d1526;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(252,180,21,0.45);
  filter: brightness(1.05);
}

/* Also upgrade the inline form button used in the "Plan a quick trip" form */
.free-itinerary-form button {
  background: linear-gradient(135deg, #FCB415 0%, #f09a00 100%) !important;
  color: #0d1526 !important;
  box-shadow: 0 4px 14px rgba(252,180,21,0.28) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease !important;
}
.free-itinerary-form button:hover {
  background: linear-gradient(135deg, #FCB415 0%, #f09a00 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 22px rgba(252,180,21,0.4) !important;
  filter: brightness(1.05) !important;
}

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

.sidebar-widget {
  background: 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: 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: 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: 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: 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) {
  .header-container {
    flex-direction: column;
    text-align: center;
  }

  .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;
  }

  .header-search {
    margin: 20px 0 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    margin-top: 15px;
  }

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

  .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;
  }

  .plan-trip-grid {
    grid-template-columns: 1fr;
  }

  .free-itinerary-content {
    grid-template-columns: 1fr;
    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;
  }

  .hero-content h1 {
    font-size: 2em;
  }

  .sidebar {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .header-info {
    flex-direction: column;
    gap: 10px;
  }

  .social-icons {
    order: -1;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .error-404 h1 {
    font-size: 2em;
  }

  .hero-section {
    padding: 50px 0;
  }

  .comment-form {
    padding: 20px;
  }

  .package-search-grid {
    grid-template-columns: 1fr;
  }

  .free-itinerary-form {
    flex-direction: column;
  }

  .community-section {
    padding: 36px 18px;
  }

  .community-heading h2 {
    font-size: 2rem;
  }

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

  .free-itinerary-form button {
    width: 100%;
  }
}

/* ================================================================
   NAV STYLES (moved from header.php)
   ================================================================ */
.tw-nav {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(13,21,38,0.96);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(6,146,175,0.2);
    font-family: 'Nunito', sans-serif;
    margin: 0; padding: 0;  /* no extra space between nav and sub-header tabs */
}
.tw-nav-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; height: 64px; gap: 8px;
}
.tw-brand { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.tw-custom-logo { max-height: 42px; width: auto; display: block; object-fit: contain; flex-shrink: 0; }
.tw-logo-ring {
    width: 42px; height: 42px; border-radius: 50%; border: 2px solid #FCB415;
    display: flex; align-items: center; justify-content: center;
    background: rgba(252,180,21,0.06); flex-shrink: 0;
}
.tw-compass { width: 28px; height: 28px; }
.tw-brand-text { display: flex; flex-direction: column; line-height: 1; }
.tw-brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.45rem; color: #fff; letter-spacing: 0.04em; }
.tw-gold { color: #FCB415; }
.tw-brand-tag { font-size: 0.6rem; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }
.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-nav-link {
    color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.86rem; font-weight: 600;
    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(6,146,175,0.15); color: #fff; }
.tw-cta {
    display: inline-flex; align-items: center; gap: 6px; margin-left: 8px;
    padding: 8px 16px; background: linear-gradient(135deg,#FCB415 0%,#f09a00 100%);
    color: #0D1526 !important; font-size: 0.84rem; font-weight: 800; border-radius: 8px;
    text-decoration: none; letter-spacing: 0.02em; transition: opacity 0.2s, transform 0.15s;
    white-space: nowrap; flex-shrink: 0; position: relative; overflow: hidden;
}
.tw-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.tw-user-nav { display: flex; align-items: center; gap: 6px; margin-left: 6px; flex-shrink: 0; }
.tw-auth-link { color: rgba(255,255,255,0.75); 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(255,255,255,0.08); color: #fff; }
.tw-auth-btn { display: inline-flex; align-items: center; padding: 7px 14px; border: 1.5px solid rgba(252,180,21,0.6); border-radius: 8px; color: #FCB415; 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: #FCB415; color: #0d1526; border-color: #FCB415; }
.tw-user-dropdown { position: relative; }
.tw-user-trigger {
    display: flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px; padding: 5px 11px 5px 5px; cursor: pointer; color: #fff;
    font-family: 'Nunito', sans-serif; font-size: 0.84rem; font-weight: 700;
    transition: background 0.2s, border-color 0.2s; white-space: nowrap;
}
.tw-user-trigger:hover { background: rgba(255,255,255,0.12); border-color: rgba(252,180,21,0.4); }
.tw-user-avatar-wrap { width: 28px; height: 28px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(252,180,21,0.6); display: flex; align-items: center; justify-content: center; background: rgba(252,180,21,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: rgba(13,21,38,0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; min-width: 200px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45); 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(255,255,255,0.78); text-decoration: none; font-size: 0.87rem; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,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(255,255,255,0.07); color: #fff; }
.tw-user-menu a.tw-logout:hover { background: rgba(213,55,79,0.15); color: #ff6b81; }
.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(255,255,255,0.85); 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(255,255,255,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(255,255,255,0.05); }
.tw-mobile-list a { display: block; color: rgba(255,255,255,0.82); text-decoration: none; font-weight: 600; font-size: 0.95rem; padding: 11px 4px; transition: color 0.2s; }
.tw-mobile-list a:hover { color: #FCB415; }
.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(255,255,255,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(255,255,255,0.07); color: rgba(255,255,255,0.8); }
.tw-mobile-auth .signup { background: linear-gradient(135deg,#FCB415,#f09a00); color: #0d1526; }
@media (max-width: 900px) { .tw-links { display: none; } .tw-toggle { display: flex; } .tw-user-nav { display: none; } }
.tw-nav { transition: height 0.25s ease, box-shadow 0.25s ease; }
.tw-nav-scrolled .tw-nav-inner { height: 54px; }  /* scrolled state — tighter than base 64px */
.tw-nav-scrolled { box-shadow: 0 4px 28px rgba(0,0,0,0.35); }

/* ================================================================
   FOOTER STYLES (moved from footer.php)
   ================================================================ */
.tw-footer { background: #07101c; color: rgba(255,255,255,0.7); font-family: 'Nunito', sans-serif; border-top: 1px solid rgba(6,146,175,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: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: #fff; 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(6,146,175,0.1); border: 1px solid rgba(6,146,175,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(6,146,175,0.25); border-color: rgba(6,146,175,0.5); color: #fff; }
.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: #FCB415; }
.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: #FCB415; border: 1px solid rgba(252,180,21,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: #FCB415; color: #0d1526; }
.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: #FCB415; }
@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: #0d1526; 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: 'Bebas Neue', sans-serif; font-size: 2rem; color: #fff; letter-spacing: 0.08em; }
.tw-loader-logo span { color: #FCB415; }
.tw-loader-bar { width: 160px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 999px; overflow: hidden; position: relative; }
.tw-loader-bar::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg,transparent,#FCB415,#0692AF,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; } }
#tw-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: -1; }

/* ── Auth pages ── */
.auth-page { min-height: 100vh; background: #f5f8fa; font-family: 'Nunito', sans-serif; }
.auth-hero { background: linear-gradient(135deg,#0d1526 0%,#0a1e30 60%,#071522 100%); padding: 64px 24px 52px; text-align: center; position: relative; overflow: hidden; }
.auth-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%,rgba(6,146,175,0.2) 0%,transparent 65%); }
.auth-hero-kicker { position: relative; display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: #0692AF; background: rgba(6,146,175,0.12); border: 1px solid rgba(6,146,175,0.3); border-radius: 999px; padding: 5px 18px; margin-bottom: 18px; }
.auth-hero h1 { position: relative; font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem,6vw,3.4rem); color: #fff; letter-spacing: 0.04em; line-height: 1.05; margin-bottom: 12px; }
.auth-hero h1 span { color: #FCB415; }
.auth-hero p { position: relative; font-size: 0.97rem; color: rgba(255,255,255,0.5); 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: #fff; border: 1px solid #dde5ef; border-radius: 20px; 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: #fff; 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: 'Nunito', sans-serif; font-size: 0.95rem; color: #1a2535; background: #f5f8fa; 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: #0692AF; background: #fff; }
.tw-float-group input:focus { box-shadow: 0 0 0 3px rgba(6,146,175,0.12); }
.tw-float-group input:focus + label, .tw-float-group.has-value label { top: 10px; transform: translateY(0); font-size: 0.72rem; color: #0692AF; 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: #0692AF; }
.pw-strength { height: 4px; border-radius: 999px; background: #e0e8f0; margin-top: 8px; overflow: hidden; }
.pw-strength-bar { height: 100%; border-radius: 999px; 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: linear-gradient(135deg,#FCB415 0%,#f09a00 100%); color: #0d1526; font-family: 'Nunito', sans-serif; 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(48,108,53,0.1); border: 1px solid rgba(48,108,53,0.25); color: #306C35; }
.auth-msg.error   { background: rgba(213,55,79,0.08); border: 1px solid rgba(213,55,79,0.25); color: #D5374F; }
.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: #0692AF; font-weight: 800; text-decoration: none; transition: color 0.2s; }
.auth-footer-text a:hover { color: #FCB415; }
.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: #0692AF; cursor: pointer; flex-shrink: 0; }
.auth-check-row a { color: #0692AF; 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: #0692AF; }
.auth-benefits { margin-top: 28px; padding: 20px 24px; background: rgba(6,146,175,0.06); border: 1px solid rgba(6,146,175,0.15); border-radius: 14px; 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)
   ================================================================ */
.tw-hero { position:relative; min-height:82svh; display:flex; align-items:center; overflow:hidden; background:#0d1526; isolation:isolate; transform:translateZ(0); }
/* Extra vertical room lets the JS translateY move without showing edges */
.tw-hero-bg { position:absolute; inset:-8% 0; z-index:0; will-change:transform; }
/* YouTube cover technique: position the iframe like object-fit:cover.
   width:100vw + height:56.25vw = 16:9 at full viewport width.
   min-height:100% + min-width:177.78vh ensures coverage when the hero is
   taller than 16:9 (no black bars on either axis). */
.tw-hero-yt-wrap { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.tw-hero-yt { position:absolute; top:50%; left:50%; width:100vw; height:56.25vw; min-height:100%; min-width:177.78vh; transform:translate(-50%,-50%); border:0; display:block; }

/* Mobile-only hero image — shown via CSS, hidden on desktop.
   Used as a clean fallback when the YouTube video is hidden on mobile. */
.tw-hero-mobile-img {
    display: none;
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* On mobile: HIDE the YouTube video entirely (it letterboxes badly on portrait
   screens, and YouTube's title/controls bleed through). Show the mobile image
   instead if one is set — otherwise the hero's dark gradient background shows. */
@media (max-width: 768px) {
    .tw-hero-yt-wrap { display: none !important; }
    .tw-hero-vid    { display: none !important; }
    .tw-hero-img    { display: none !important; }
    .tw-hero-mobile-img { display: block !important; }
}
/* Mask YouTube title card (top) and player controls (bottom) with opaque dark gradients.
   YouTube no longer respects showinfo=0, so we cover the UI areas visually. */
.tw-hero-yt-wrap::before,
.tw-hero-yt-wrap::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    z-index: 5;
    pointer-events: none;
}
.tw-hero-yt-wrap::before {
    top: 0;
    height: 12%;
    background: linear-gradient(to bottom, rgba(13,21,38,0.9) 0%, transparent 100%);
}
.tw-hero-yt-wrap::after {
    bottom: 0;
    height: 12%;
    background: linear-gradient(to top, rgba(13,21,38,0.9) 0%, transparent 100%);
}
.tw-hero-yt-shield { position:absolute; inset:0; z-index:1; background:transparent; cursor:default; }
.tw-hero-vid { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; pointer-events:none; }
.tw-hero-img { position:absolute; inset:0; background-size:cover; background-position:center; transform:scale(1.04); transition:transform 12s ease; }
.tw-hero:hover .tw-hero-img { transform:scale(1.0); }
.tw-hero-overlay { position:absolute; inset:0; z-index:1; background:linear-gradient(to bottom,rgba(13,21,38,0.45) 0%,rgba(13,21,38,0.2) 40%,rgba(13,21,38,0.7) 100%),linear-gradient(to right,rgba(13,21,38,0.6) 0%,transparent 65%); }
.tw-hero-accent { position:absolute; border-radius:50%; pointer-events:none; z-index:1; animation:tw-blob-float 8s ease-in-out infinite; }
.tw-hero-accent--1 { width:520px; height:520px; background:radial-gradient(circle,rgba(6,146,175,0.18) 0%,transparent 70%); top:-120px; right:-80px; }
.tw-hero-accent--2 { width:380px; height:380px; background:radial-gradient(circle,rgba(252,180,21,0.12) 0%,transparent 70%); bottom:80px; left:-60px; animation-delay:-4s; }
@keyframes tw-blob-float { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-28px) scale(1.04)} }
.tw-hero-inner { position:relative; z-index:2; padding:60px 20px 60px; max-width:860px; }
.tw-hero-pill { display:inline-flex; align-items:center; gap:10px; background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.18); backdrop-filter:blur(8px); color:rgba(255,255,255,0.9); font-size:0.78rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; padding:8px 18px; border-radius:999px; margin-bottom:28px; animation:tw-hero-fadein 0.9s ease both; }
.tw-hero-pill-dot { width:7px; height:7px; background:#25D366; border-radius:50%; flex-shrink:0; box-shadow:0 0 0 3px rgba(37,211,102,0.3); animation:tw-pulse 2s ease infinite; }
@keyframes tw-pulse { 0%,100%{box-shadow:0 0 0 3px rgba(37,211,102,0.3)} 50%{box-shadow:0 0 0 7px rgba(37,211,102,0.1)} }
.tw-hero-title { font-family:'Bebas Neue',sans-serif; font-size:clamp(3.8rem,10vw,8rem); color:#fff; letter-spacing:0.04em; line-height:0.95; margin:0 0 16px; animation:tw-hero-fadein 1s ease 0.15s both; }
.tw-hero-title-gold { color:#FCB415; }
.tw-hero-title-accent { color:#0692AF; }
.tw-hero-tagline { font-size:1.05rem; font-weight:700; color:rgba(255,255,255,0.65); letter-spacing:0.2em; text-transform:uppercase; margin-bottom:16px; animation:tw-hero-fadein 1s ease 0.28s both; }
.tw-hero-desc { font-size:1.08rem; color:rgba(255,255,255,0.72); line-height:1.7; max-width:580px; margin-bottom:36px; animation:tw-hero-fadein 1s ease 0.4s both; }
.tw-hero-actions { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:48px; animation:tw-hero-fadein 1s ease 0.52s both; }
.tw-hero-btn { display:inline-flex; align-items:center; gap:8px; padding:14px 28px; border-radius:10px; font-size:0.95rem; font-weight:800; text-decoration:none; transition:transform 0.2s,box-shadow 0.2s,background 0.2s; position:relative; overflow:hidden; }
.tw-hero-btn:hover { transform:translateY(-3px); }
.tw-hero-btn--primary { background:linear-gradient(135deg,#FCB415 0%,#f09a00 100%); color:#0d1526; box-shadow:0 8px 28px rgba(252,180,21,0.35); }
.tw-hero-btn--primary:hover { box-shadow:0 12px 36px rgba(252,180,21,0.45); color:#0d1526; }
.tw-hero-btn--outline { background:rgba(255,255,255,0.08); border:1.5px solid rgba(255,255,255,0.3); color:#fff; backdrop-filter:blur(6px); }
.tw-hero-btn--outline:hover { background:rgba(255,255,255,0.16); border-color:rgba(255,255,255,0.5); color:#fff; }
.tw-hero-tags { display:flex; gap:6px; flex-wrap:wrap; animation:tw-hero-fadein 1s ease 0.65s both; }
.tw-hero-tag { display:inline-flex; align-items:center; background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.14); backdrop-filter:blur(4px); color:rgba(255,255,255,0.8); font-size:0.78rem; font-weight:700; padding:6px 13px; border-radius:999px; text-decoration:none; white-space:nowrap; transition:background 0.2s,border-color 0.2s,color 0.2s; }
.tw-hero-tag:hover { background:rgba(252,180,21,0.15); border-color:rgba(252,180,21,0.4); color:#FCB415; }
.tw-hero-scroll { position:absolute; bottom:32px; left:50%; transform:translateX(-50%); z-index:2; }
.tw-hero-scroll-line { width:1.5px; height:52px; background:linear-gradient(to bottom,rgba(255,255,255,0.6),transparent); animation:tw-scroll-bounce 1.8s ease-in-out infinite; }
@keyframes tw-scroll-bounce { 0%,100%{transform:scaleY(1) translateY(0);opacity:0.8} 50%{transform:scaleY(0.6) translateY(8px);opacity:0.3} }
@keyframes tw-hero-fadein { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
@media(max-width:600px){.tw-hero-inner{padding:100px 20px 60px} .tw-hero-actions{flex-direction:column} .tw-hero-btn{justify-content:center;text-align:center}}
.tw-stats-bar { background:#0d1526; border-bottom:1px solid rgba(6,146,175,0.2); }
.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(255,255,255,0.04); }
.tw-stat-num { font-family:'Bebas Neue',sans-serif; font-size:2.1rem; letter-spacing:0.04em; line-height:1; background:linear-gradient(135deg,#FCB415,#0692AF); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.tw-stat-label { font-size:0.7rem; font-weight:800; text-transform:uppercase; letter-spacing:0.1em; color:rgba(255,255,255,0.45); text-align:center; min-height:2.2em; display:flex; align-items:center; justify-content:center; }
.tw-stat-divider { width:1px; background:rgba(255,255,255,0.08); 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}}

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

/* ── Homepage showcase section ── */
.tw-womens-section { position:relative; padding:80px 0 88px; overflow:hidden; background:#0d1526; }
.tw-womens-bg { position:absolute; inset:0; pointer-events:none;
    background:radial-gradient(ellipse at 10% 50%, rgba(255,105,135,0.14) 0%, transparent 55%),
               radial-gradient(ellipse at 90% 20%, rgba(255,182,193,0.10) 0%, transparent 50%),
               radial-gradient(ellipse at 50% 100%, rgba(252,180,21,0.07) 0%, transparent 45%); }
.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:#ff8fab; background:rgba(255,105,135,0.12); border:1px solid rgba(255,105,135,0.3); border-radius:999px; padding:5px 18px; margin-bottom:16px; }
.tw-womens-title { font-family:'Bebas Neue',sans-serif; font-size:clamp(2.4rem,5vw,3.8rem); color:#fff; letter-spacing:0.04em; line-height:1.05; margin:0 0 12px; }
.tw-womens-title span { color:#ff8fab; }
.tw-womens-sub { font-size:1rem; color:rgba(255,255,255,0.65); max-width:560px; margin:0 auto; line-height:1.7; }

/* 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:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1); border-radius:14px; 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:#fff; white-space:nowrap; }
.tw-womens-trust-item small { font-size:0.7rem; color:rgba(255,255,255,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:18px; overflow:hidden; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); text-decoration:none; transition:transform 0.3s,box-shadow 0.3s,border-color 0.3s; }
.tw-womens-card:hover { transform:translateY(-6px); box-shadow:0 24px 56px rgba(255,105,135,0.2); border-color:rgba(255,105,135,0.4); }
.tw-womens-card-img { position:relative; height:200px; background:#1a2535 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.7) 0%,transparent 55%); }
.tw-womens-badge { position:absolute; top:12px; left:12px; background:linear-gradient(135deg,#ff8fab,#ff6b8a); color:#fff; font-size:0.68rem; font-weight:800; letter-spacing:0.06em; text-transform:uppercase; padding:3px 10px; border-radius:999px; 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(255,255,255,0.55); font-weight:700; display:block; margin-bottom:6px; }
.tw-womens-card-title { font-size:0.98rem; font-weight:800; color:#fff; 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(255,255,255,0.5); font-weight:700; }
.tw-womens-card-price { font-size:0.9rem; font-weight:900; color:#ff8fab; }

/* CTA */
.tw-womens-cta { text-align:center; }
.tw-womens-cta-btn { display:inline-flex; align-items:center; gap:8px; padding:14px 32px; background:linear-gradient(135deg,#ff8fab,#ff6b8a); color:#fff; font-weight:800; font-size:0.95rem; border-radius:12px; text-decoration:none; transition:transform 0.2s,box-shadow 0.2s; box-shadow:0 8px 28px rgba(255,105,135,0.35); }
.tw-womens-cta-btn:hover { transform:translateY(-3px); box-shadow:0 14px 40px rgba(255,105,135,0.45); color:#fff; }

/* ── Landing page styles ── */
.tw-womens-hero { background:linear-gradient(135deg,#1a0a14 0%,#2a0a20 50%,#0d1526 100%) !important; }
.tw-womens-hero-overlay { position:absolute; inset:0; pointer-events:none; z-index:0;
    background:radial-gradient(ellipse at 20% 30%,rgba(255,105,135,0.22) 0%,transparent 55%),
               radial-gradient(ellipse at 85% 80%,rgba(255,182,193,0.14) 0%,transparent 50%); }
.tw-womens-hero-stats { display:flex; align-items:center; justify-content:center; gap:0; flex-wrap:wrap; margin-top:24px; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1); border-radius:16px; padding:16px 24px; max-width:640px; margin-left:auto; margin-right:auto; }
.tw-wstat { text-align:center; padding:8px 20px; }
.tw-wstat strong { display:block; font-family:'Bebas Neue',sans-serif; font-size:1.6rem; color:#ff8fab; letter-spacing:0.04em; line-height:1; }
.tw-wstat span { font-size:0.7rem; font-weight:700; color:rgba(255,255,255,0.5); text-transform:uppercase; letter-spacing:0.1em; }
.tw-wstat-div { width:1px; background:rgba(255,255,255,0.12); align-self:stretch; margin:8px 0; }

/* Why cards */
.tw-womens-why { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin:40px 0; }
.tw-womens-why-card { background:#fff; border-radius:16px; padding:24px 20px; text-align:center; border:1px solid #f0e6ef; 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:#0d1526; 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:'Bebas Neue',sans-serif; font-size:2rem; color:#0d1526; 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:#fff; border-radius:18px; overflow:hidden; border:1px solid #f0e6ef; 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:#fce4ec; }
.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:linear-gradient(135deg,#ff8fab,#ff6b8a); color:#fff; font-size:0.68rem; font-weight:800; padding:4px 12px; border-radius:999px; 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:#0d1526; 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:#ff6b8a; }
.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:#ff6b8a; display:block; }
.tw-womens-trip-foot small { font-size:0.72rem; color:#9ba8bb; }
.tw-womens-book-btn { display:inline-flex; padding:9px 20px; background:linear-gradient(135deg,#ff8fab,#ff6b8a); color:#fff; 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:#fff; }

/* Testimonials section */
.tw-womens-testimonials { margin-bottom:56px; }
.tw-womens-testi-head { text-align:center; margin-bottom:36px; }
.tw-womens-testi-title { font-family:'Bebas Neue',sans-serif; font-size:clamp(1.8rem,4vw,2.8rem); color:#0d1526; letter-spacing:0.04em; margin:12px 0 0; }
.tw-womens-testi-title span { color:#ff6b8a; }
.tw-womens-testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.tw-womens-testi-card { background:#fff; border:1px solid #ffe4ed; border-radius:20px; 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:linear-gradient(90deg,#ff8fab,#ff6b8a); 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:#FFB300; font-size:1rem; }
.tw-womens-testi-quote-mark { font-family:Georgia,serif; font-size:5rem; color:#ffe4ed; 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:linear-gradient(135deg,#ff8fab,#ff6b8a); color:#fff; 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:#0d1526; }
.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:#ff8fab !important; }
.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:#0d1526; }
.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-wstat-div{display:none} .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:14px; margin:28px 0; background:#0d1526; 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:#fff; 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(252,180,21,0.85); transform:translateY(-50%) scale(1.08); color:#0d1526; }
.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:#FCB415; 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:#fff; font-size:0.72rem; font-weight:700; padding:4px 10px; border-radius:999px; z-index:3; }

/* ── Homepage Testimonials section ── */
.tw-testimonials-section { padding:80px 0 88px; background:linear-gradient(180deg,#0d1526 0%,#0a1e30 100%); position:relative; overflow:hidden; }
.tw-testimonials-section::before { content:''; position:absolute; inset:0; pointer-events:none; background:radial-gradient(ellipse at 15% 60%,rgba(6,146,175,0.14) 0%,transparent 55%),radial-gradient(ellipse at 85% 20%,rgba(252,180,21,0.08) 0%,transparent 50%); }
.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:#0692AF; background:rgba(6,146,175,0.12); border:1px solid rgba(6,146,175,0.3); border-radius:999px; padding:5px 18px; margin-bottom:14px; }
.tw-testimonials-title { font-family:'Bebas Neue',sans-serif; font-size:clamp(2rem,4.5vw,3.2rem); color:#fff; letter-spacing:0.04em; margin:0; }
.tw-testimonials-title span { color:#FCB415; }
.tw-testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.tw-testi-card { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); border-radius:20px; 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:linear-gradient(90deg,#0692AF,#FCB415); border-radius:0 0 20px 20px; }
.tw-testi-card:hover { transform:translateY(-5px); box-shadow:0 20px 48px rgba(0,0,0,0.3); border-color:rgba(252,180,21,0.25); }
.tw-testi-card-stars { display:flex; gap:3px; margin-bottom:14px; }
.tw-testi-card-stars span { color:#FCB415; font-size:1rem; }
.tw-testi-card-quote-mark { font-family:Georgia,serif; font-size:4.5rem; color:rgba(6,146,175,0.2); line-height:0.5; display:block; margin-bottom:10px; font-weight:900; }
.tw-testi-card-text { font-size:0.92rem; color:rgba(255,255,255,0.75); 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:linear-gradient(135deg,#0692AF,#FCB415); color:#fff; 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:#fff; }
.tw-testi-card-author span { display:block; font-size:0.73rem; color:rgba(255,255,255,0.45); font-weight:600; margin-top:2px; }
.tw-testi-card-trip { font-size:0.7rem; color:#0692AF; font-weight:700; background:rgba(6,146,175,0.12); padding:2px 8px; border-radius:999px; 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;min-height:500px;display:flex;align-items:flex-end;background:#0d1526;overflow:hidden;}
.dest-hero.has-hero-img{min-height:580px;}
/* 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-inner{position:relative;z-index:2;padding-bottom:52px;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(255,255,255,0.5);margin-bottom:18px;}
.dest-crumbs a{color:#0692af;text-decoration:none;font-weight:700;}
.dest-crumbs span{color:rgba(255,255,255,0.35);}
.dest-hero-title{font-family:'Bebas Neue',sans-serif;font-size:clamp(3rem,8vw,5.5rem);color:#fff;letter-spacing:0.05em;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(255,255,255,0.72);margin:0 0 28px;max-width:580px;line-height:1.7;}
.dest-hero-stats{display:flex;align-items:stretch;flex-wrap:wrap;background:rgba(0,0,0,0.4);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);border-radius:14px;overflow:hidden;border:1px solid rgba(255,255,255,0.1);width:fit-content;}
.dest-stat{padding:14px 28px;text-align:center;}
.dest-stat-div{width:1px;background:rgba(255,255,255,0.12);margin:10px 0;}
.dest-stat strong{display:block;font-family:'Bebas Neue',sans-serif;font-size:2rem;color:#FCB415;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(255,255,255,0.55);margin-top:4px;white-space:nowrap;}
.dest-wrap{padding:36px 0 80px;}
.dest-overview{background:#f0f7ff;border-left:4px solid #0692AF;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:#fff;border:1.5px solid #e0e8f0;border-radius:999px;font-size:0.83rem;font-weight:700;color:#0d1526;text-decoration:none;transition:all 0.2s;}
.dest-sub-chip:hover{border-color:#0692AF;color:#0692AF;background:#f0f7ff;}
.dest-sub-chip-count{background:#e0e8f0;color:#6b7a8f;font-size:0.7rem;padding:1px 7px;border-radius:999px;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:999px;background:transparent;color:#4a5568;font-size:0.85rem;font-weight:700;cursor:pointer;font-family:'Nunito',sans-serif;transition:all 0.2s;white-space:nowrap;}
.dest-tab span{background:#e8edf5;color:#6b7a8f;font-size:0.72rem;padding:2px 8px;border-radius:999px;font-weight:800;transition:all 0.2s;}
.dest-tab:hover{border-color:#0692AF;color:#0692AF;}
.dest-tab.active{background:#0692AF;border-color:#0692AF;color:#fff;}
.dest-tab.active span{background:rgba(255,255,255,0.2);color:#fff;}
.dest-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.dest-card{background:#fff;border-radius:18px;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:999px;z-index:2;letter-spacing:0.04em;}
.dest-card-tag{position:absolute;top:12px;right:12px;background:rgba(13,21,38,0.7);color:#FCB415;font-size:0.68rem;font-weight:800;letter-spacing:0.06em;text-transform:uppercase;padding:3px 10px;border-radius:999px;}
.dest-card-body{padding:18px 20px;display:flex;flex-direction:column;flex:1;}
.dest-card-title{font-size:1rem;font-weight:800;color:#0d1526;margin:0 0 6px;line-height:1.35;}
.dest-card-title a{color:inherit;text-decoration:none;}
.dest-card-title a:hover{color:#0692AF;}
.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:999px;}
.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:#0d1526;}
.dest-card-btn{display:inline-flex;padding:9px 18px;background:linear-gradient(135deg,#FCB415,#f09a00);color:#0d1526;font-size:0.82rem;font-weight:800;border-radius:10px;text-decoration:none;white-space:nowrap;transition:transform 0.2s,box-shadow 0.2s;}
.dest-card-btn:hover{transform:translateY(-2px);box-shadow:0 6px 18px rgba(252,180,21,0.35);color:#0d1526;}
@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:360px}.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:#fff;border:1px solid #e8edf5;border-radius:16px;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:#0692AF;}
.tw-search-nav-list a.active{background:#0692AF;color:#fff;border-color:#0692AF;box-shadow:0 4px 12px rgba(6,146,175,0.25);}
.tw-search-nav-list a.active .tw-search-nav-badge{background:rgba(255,255,255,0.22);color:#fff;}
.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:999px;}
.tw-search-nav-top{display:block;margin-top:12px;padding:8px 12px;border-top:1px solid #f0f4f8;color:#0692AF;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:linear-gradient(135deg,#0d1526 0%,#0a2533 55%,#071a2a 100%);padding:64px 0 56px;overflow:hidden;text-align:center;}
.tw-agency-hero-overlay{position:absolute;inset:0;pointer-events:none;background:radial-gradient(ellipse at 20% 0%,rgba(6,146,175,0.2) 0%,transparent 55%),radial-gradient(ellipse at 85% 100%,rgba(252,180,21,0.12) 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:#0692af;background:rgba(6,146,175,0.14);border:1px solid rgba(6,146,175,0.35);border-radius:999px;padding:5px 18px;margin-bottom:18px;}
.tw-agency-hero-title{font-family:'Bebas Neue',sans-serif;font-size:clamp(2.4rem,5vw,3.6rem);color:#fff;letter-spacing:0.04em;line-height:1.05;margin:0 0 12px;}
.tw-agency-hero-title span{background:linear-gradient(135deg,#FCB415 0%,#f09a00 60%,#FCB415 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;}
.tw-agency-hero-sub{font-size:1rem;color:rgba(255,255,255,0.72);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:#FCB415;font-weight:700;}

.tw-agency-wrap{max-width:980px;margin:0 auto;padding:48px 24px 80px;}
.tw-agency-notice{border-radius:14px;padding:18px 22px;margin-bottom:28px;}
.tw-agency-notice.success{background:#ecfdf5;border:1.5px solid #10b981;color:#065f46;}
.tw-agency-notice.error{background:#fef2f2;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:#fff;border:1px solid #e8edf5;border-radius:18px;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:#0d1526;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:'Nunito',sans-serif;color:#0d1526;background:#fff;transition:border-color 0.2s,box-shadow 0.2s;}
.tw-agency-field input:focus,.tw-agency-field textarea:focus{outline:none;border-color:#0692af;box-shadow:0 0 0 3px rgba(6,146,175,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:linear-gradient(135deg,#FCB415 0%,#f09a00 100%);color:#0d1526;font-size:0.95rem;font-weight:800;border:none;border-radius:12px;cursor:pointer;box-shadow:0 8px 22px rgba(252,180,21,0.32);transition:transform 0.2s,box-shadow 0.2s;}
.tw-agency-submit:hover{transform:translateY(-2px);box-shadow:0 12px 30px rgba(252,180,21,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:linear-gradient(180deg,#0d1526 0%,#0a1e30 100%);position:relative;overflow:hidden}
.tw-blog-section::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 10% 60%,rgba(6,146,175,0.12) 0%,transparent 55%),radial-gradient(ellipse at 90% 20%,rgba(252,180,21,0.07) 0%,transparent 50%);pointer-events: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:#FCB415;margin-bottom:8px}
.tw-blog-title{font-family:'Bebas Neue',sans-serif;font-size:clamp(2rem,4vw,3rem);color:#fff;letter-spacing:0.04em;line-height:1;margin:0}
.tw-blog-viewall{display:inline-flex;align-items:center;gap:6px;font-size:0.88rem;font-weight:800;color:#FCB415;text-decoration:none;border:1.5px solid rgba(252,180,21,0.4);padding:9px 20px;border-radius:999px;transition:background 0.2s,color 0.2s,border-color 0.2s;white-space:nowrap;flex-shrink:0}
.tw-blog-viewall:hover{background:#FCB415;color:#0d1526;border-color:#FCB415}
.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:18px;overflow:hidden;background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.08);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 24px 64px rgba(0,0,0,0.45);border-color:rgba(252,180,21,0.35)}
.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(252,180,21,0.92);color:#0d1526;font-size:0.7rem;font-weight:800;letter-spacing:0.08em;text-transform:uppercase;padding:4px 11px;border-radius:999px}
.tw-blog-card-body{padding:20px 22px 22px;display:flex;flex-direction:column;gap:10px;flex:1}
.tw-blog-card-title{font-family:'Nunito',sans-serif;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:#fff;text-decoration:none;transition:color 0.2s}
.tw-blog-card-title a:hover{color:#FCB415}
.tw-blog-card-excerpt{font-size:0.88rem;color:rgba(255,255,255,0.62);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(255,255,255,0.07)}
.tw-blog-card-author{display:flex;align-items:center;gap:8px;font-size:0.8rem;font-weight:700;color:rgba(255,255,255,0.72)}
.tw-blog-card-avatar{width:28px;height:28px;border-radius:50%;overflow:hidden;border:2px solid rgba(252,180,21,0.5);flex-shrink:0;background:rgba(252,180,21,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(255,255,255,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(255,255,255,0.5)}
.tw-blog-empty a{color:#FCB415;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:linear-gradient(135deg,#0d1526 0%,#0a1e30 100%);padding:80px 0;position:relative;overflow:hidden}
.tw-community-section::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 80% 50%,rgba(252,180,21,0.08) 0%,transparent 60%),radial-gradient(ellipse at 20% 80%,rgba(6,146,175,0.1) 0%,transparent 55%);pointer-events: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:#0692AF;display:block;margin-bottom:12px}
.tw-community-title{font-family:'Bebas Neue',sans-serif;font-size:clamp(2.4rem,5vw,3.6rem);color:#fff;letter-spacing:0.04em;line-height:1;margin:0 0 20px}
.tw-community-title span{color:#FCB415}
.tw-community-copy p{color:rgba(255,255,255,0.65);font-size:1rem;line-height:1.75;margin-bottom:28px;max-width:480px}
.tw-community-btn{display:inline-flex;align-items:center;gap:6px;background:linear-gradient(135deg,#FCB415,#f09a00);color:#0d1526;font-weight:800;font-size:0.95rem;padding:12px 26px;border-radius:8px;text-decoration:none;transition:opacity 0.2s,transform 0.2s}
.tw-community-btn:hover{opacity:0.88;transform:translateY(-2px);color:#0d1526}
.tw-community-stats{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.tw-cstat{background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.09);border-radius:16px;padding:28px 24px;text-align:center;transition:border-color 0.2s,background 0.2s}
.tw-cstat:hover{background:rgba(255,255,255,0.08);border-color:rgba(252,180,21,0.25)}
.tw-cstat strong{display:block;font-family:'Bebas Neue',sans-serif;font-size:2.2rem;letter-spacing:0.04em;background:linear-gradient(135deg,#FCB415,#0692AF);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin-bottom:6px}
.tw-cstat span{font-size:0.75rem;font-weight:800;text-transform:uppercase;letter-spacing:0.1em;color:rgba(255,255,255,0.45)}
@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) ── */
.tw-cta-section{background:linear-gradient(135deg,rgba(6,146,175,0.12),rgba(48,108,53,0.08));border-top:1px solid rgba(6,146,175,0.15);border-bottom:1px solid rgba(6,146,175,0.15);padding:72px 0}
.tw-cta-inner{display:flex;gap:48px;align-items:center;flex-wrap:wrap;justify-content:space-between}
.tw-cta-kicker{font-size:0.72rem;font-weight:800;letter-spacing:0.14em;text-transform:uppercase;color:#0692AF;display:block;margin-bottom:10px}
.tw-cta-title{font-family:'Bebas Neue',sans-serif;font-size:clamp(2rem,4vw,3rem);color:#0d1526;letter-spacing:0.04em;line-height:1;margin:0 0 10px}
.tw-cta-title span{color:#FCB415}
.tw-cta-copy p{color:#6b7a8f;font-size:1rem;line-height:1.65;margin:0}
@media(max-width:700px){.tw-cta-inner{flex-direction:column;gap:28px} .tw-cta-copy{text-align:center}}

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

/* Hero — dark gradient band for clear separation (matches site heroes) */
.ba-hero {
    padding: 64px 24px 92px; text-align: center; position: relative; overflow: hidden;
    background: linear-gradient(135deg, #0d1526 0%, #0a1e30 55%, #071a2a 100%);
}
.ba-hero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse at 20% 0%, rgba(6,146,175,0.20) 0%, transparent 55%),
                radial-gradient(ellipse at 85% 100%, rgba(252,180,21,0.12) 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: #0692AF; background: rgba(6,146,175,0.14); border: 1px solid rgba(6,146,175,0.35); border-radius: 999px; padding: 5px 18px; margin-bottom: 18px; }
.ba-hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.4rem,6vw,4rem); color: #fff; letter-spacing: 0.04em; line-height: 1.05; margin-bottom: 16px; }
.ba-hero-title span { background: linear-gradient(135deg, #FCB415 0%, #f09a00 60%, #FCB415 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ba-hero-sub { font-size: 1rem; color: rgba(255,255,255,0.72); 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: #fff;
    border: 1px solid #e0e8f0; border-radius: 18px;
    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: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: #0D1526; 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: #0D1526; font-size: 0.85rem; font-weight: 700; transition: background 0.2s, border-color 0.2s, transform 0.15s; }
.ba-aff-chip:hover { border-color: #FCB415; background: rgba(252,180,21,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 { padding: 6px 16px; border-radius: 999px; border: 1px solid #e0e8f0; background: transparent; color: #6b7a8f; font-size: 0.83rem; font-weight: 700; cursor: pointer; font-family: 'Nunito', sans-serif; transition: background 0.2s, border-color 0.2s, color 0.2s; }
.ba-filter-pill.active, .ba-filter-pill:hover { background: #FCB415; border-color: #FCB415; color: #0D1526; }
.ba-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: #fff; border-radius: 16px; 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: #FCB415; color: #0D1526; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; padding: 4px 12px; border-radius: 999px; }
.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: 'Bebas Neue', sans-serif; font-size: clamp(1.5rem,2.5vw,2rem); color: #0D1526; 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: #0692AF; }
.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: #1a2535; 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: #0692AF; border: 1px solid rgba(6,146,175,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: #0692AF; color: #fff; }
.ba-read-more { display: inline-flex; align-items: center; gap: 6px; color: #0692AF; font-weight: 700; font-size: 0.88rem; text-decoration: none; margin-top: 16px; }
.ba-read-more:hover { color: #FCB415; }
.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: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: #0D1526; letter-spacing: 0.04em; margin: 0; }
.ba-write-btn { display: inline-flex; align-items: center; gap: 7px; padding: 9px 20px; background: linear-gradient(135deg,#FCB415 0%,#f09a00 100%); color: #0D1526; 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); }
.ba-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 24px; margin-bottom: 56px; }
.ba-card { background: #fff; border-radius: 14px; 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(6,146,175,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(6,146,175,0.85); color: #fff; padding: 3px 10px; border-radius: 999px; }
.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: #0D1526; 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: #0692AF; }
.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: #1a2535; font-weight: 700; }
.ba-card-aff-link { color: #0692AF; font-size: 0.74rem; font-weight: 700; text-decoration: none; border: 1px solid rgba(6,146,175,0.3); border-radius: 4px; padding: 2px 9px; transition: background 0.2s, color 0.2s; }
.ba-card-aff-link:hover { background: #0692AF; color: #fff; }
.ba-table-wrap { background: linear-gradient(135deg, #0d1526 0%, #0a2533 55%, #071a2a 100%); border: 1px solid rgba(6,146,175,0.25); border-radius: 16px; 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(6,146,175,0.22) 0%, transparent 55%), radial-gradient(ellipse at 5% 100%, rgba(252,180,21,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: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: #fff; 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(6,146,175,0.12); }
.ba-partner-logo { font-weight: 800; color: #fff; }
.ba-commission-rate { color: #4ade80; font-weight: 800; }
.ba-table-book-btn { display: inline-block; padding: 5px 14px; background: linear-gradient(135deg,#FCB415 0%,#f09a00 100%); color: #0D1526; 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: #0692AF; 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: #FCB415; }
.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: 440px; display: flex; align-items: flex-end; overflow: hidden; background: #0D1526; }
.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: #FCB415; }
.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(6,146,175,0.85); color: #fff; padding: 3px 13px; border-radius: 999px; text-transform: uppercase; margin-bottom: 16px; }
.sp-hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem,5vw,3.4rem); color: #fff; 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(252,180,21,0.55); overflow: hidden; display: flex; align-items: center; justify-content: center; background: rgba(252,180,21,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); }
.sp-wrap { max-width: 880px; margin: 0 auto; padding: 48px 24px 88px; }
.sp-content { background: #fff; border-radius: 18px; border: 1px solid #e0e8f0; padding: 52px 56px; box-shadow: 0 6px 24px rgba(0,0,0,0.07); margin-bottom: 36px; font-size: 1.06rem; line-height: 1.88; color: #1a2535; }
.sp-content h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: #0D1526; letter-spacing: 0.03em; margin: 2em 0 0.6em; padding-top: 0.4em; border-top: 2px solid #e0e8f0; }
.sp-content h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.55rem; color: #0D1526; letter-spacing: 0.03em; margin: 1.6em 0 0.5em; }
.sp-content h4 { font-size: 1.1rem; font-weight: 800; color: #0D1526; margin: 1.4em 0 0.4em; }
.sp-content p { margin-bottom: 1.5em; }
.sp-content a { color: #0692AF; font-weight: 700; transition: color 0.2s; }
.sp-content a:hover { color: #306C35; }
.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 #FCB415; padding: 14px 22px; background: rgba(252,180,21,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: #0d1526; color: #e2e8f0; border-radius: 10px; padding: 20px 24px; overflow-x: auto; font-size: 0.88rem; margin: 1.5em 0; }
.sp-content code { background: rgba(6,146,175,0.08); color: #0692AF; 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(6,146,175,0.07); border: 1px solid rgba(6,146,175,0.18); border-radius: 999px; font-size: 0.78rem; font-weight: 700; color: #0692AF; text-decoration: none; transition: background 0.2s, border-color 0.2s; }
.sp-tag:hover { background: rgba(6,146,175,0.16); border-color: rgba(6,146,175,0.4); }
.sp-author { display: flex; align-items: flex-start; gap: 22px; background: #fff; border: 1px solid #e0e8f0; border-radius: 16px; padding: 28px 32px; box-shadow: 0 6px 24px rgba(0,0,0,0.07); margin-bottom: 36px; }
.sp-author-avatar { width: 64px; height: 64px; border-radius: 50%; border: 2px solid #FCB415; overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(252,180,21,0.1); font-size: 1.6rem; }
.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: #0692AF; text-transform: uppercase; margin-bottom: 4px; }
.sp-author-name { font-size: 1.08rem; font-weight: 800; color: #0D1526; margin-bottom: 6px; }
.sp-author-bio { font-size: 0.87rem; color: #6b7a8f; line-height: 1.65; margin: 0; }
.sp-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 44px; }
.sp-nav-link { padding: 20px 24px; background: #fff; border: 1px solid #e0e8f0; border-radius: 14px; text-decoration: none; transition: border-color 0.2s, transform 0.18s, box-shadow 0.2s; display: block; }
.sp-nav-link:hover { border-color: #FCB415; 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: #0D1526; line-height: 1.4; }
.sp-share { background: #fff; border: 1px solid #e0e8f0; border-radius: 14px; padding: 20px 28px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; box-shadow: 0 6px 24px rgba(0,0,0,0.07); }
.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: #fff; }
.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: #f5f8fa; border: 1px solid #e0e8f0; color: #1a2535 !important; cursor: pointer; font-family: 'Nunito', sans-serif; }
.sp-share-copy:hover { border-color: #0692AF; }
.sp-comments { background: #fff; border: 1px solid #e0e8f0; border-radius: 18px; padding: 40px 48px; box-shadow: 0 6px 24px rgba(0,0,0,0.07); }
.sp-comments .comments-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: #0D1526; 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: #0D1526; 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: #1a2535; margin: 0; }
.sp-comments .reply a { font-size: 0.78rem; font-weight: 700; color: #0692AF; text-decoration: none; margin-top: 8px; display: inline-block; }
.sp-comments #respond h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: #0D1526; letter-spacing: 0.04em; margin-bottom: 20px; }
.sp-comments .comment-form p { margin-bottom: 0; }
.sp-comments .comment-form label { display: block; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: #6b7a8f; 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: 12px 16px; border: 1.5px solid #e0e8f0; border-radius: 9px; font-family: 'Nunito', sans-serif; font-size: 0.93rem; color: #1a2535; background: #f5f8fa; transition: border-color 0.2s, background 0.2s; box-sizing: border-box; margin-bottom: 16px; }
.sp-comments .comment-form input:focus, .sp-comments .comment-form textarea:focus { outline: none; border-color: #0692AF; background: #fff; }
.sp-comments .comment-form .form-submit { margin: 0; }
.sp-comments .comment-form input[type="submit"] { padding: 12px 32px; background: linear-gradient(135deg,#FCB415 0%,#f09a00 100%); color: #0D1526; font-family: 'Nunito', sans-serif; font-size: 0.92rem; font-weight: 800; border: none; border-radius: 9px; cursor: pointer; transition: opacity 0.2s, transform 0.15s; letter-spacing: 0.02em; }
.sp-comments .comment-form input[type="submit"]:hover { opacity: 0.88; transform: translateY(-1px); }
.sp-comments .logged-in-as { font-size: 0.84rem; color: #6b7a8f; margin-bottom: 14px !important; }
.sp-comments .logged-in-as a { color: #0692AF; font-weight: 700; text-decoration: none; }
.sp-comments .comment-notes { font-size: 0.82rem; color: #6b7a8f; margin-bottom: 14px !important; }
.sp-hero.sp-hero-no-img { min-height: 300px; }
@media (max-width: 820px) { .sp-content { padding: 28px 22px; font-size: 0.98rem; } .sp-nav { grid-template-columns: 1fr; } .sp-author { flex-direction: column; gap: 14px; padding: 22px 20px; } .sp-comments { padding: 28px 20px; } .sp-share { gap: 10px; } }

/* ================================================================
   SUBMIT BLOG PAGE (moved from page-submit-blog.php)
   ================================================================ */
.sb-hero { background: linear-gradient(135deg,#0d1526 0%,#0a1e30 60%,#071522 100%); padding: 72px 24px 60px; text-align: center; position: relative; overflow: hidden; }
.sb-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%,rgba(6,146,175,0.18) 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: #0692AF; background: rgba(6,146,175,0.12); border: 1px solid rgba(6,146,175,0.3); border-radius: 999px; padding: 5px 18px; margin-bottom: 20px; }
.sb-hero h1 { position: relative; font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.4rem,6vw,4rem); color: #fff; letter-spacing: 0.04em; line-height: 1.05; margin-bottom: 16px; }
.sb-hero h1 span { color: #FCB415; }
.sb-hero p { position: relative; font-size: 1rem; color: rgba(255,255,255,0.55); 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: #fff; border: 1px solid #dde5ef; border-radius: 20px; 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: 'Bebas Neue', sans-serif; font-size: 1.35rem; color: #0D1526; 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: 999px; }
.sb-status-badge.publish { background: rgba(48,108,53,0.12); color: #306C35; border: 1px solid rgba(48,108,53,0.25); }
.sb-status-badge.pending { background: rgba(252,180,21,0.12); color: #c08a00; border: 1px solid rgba(252,180,21,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: #D5374F; margin-left: 2px; }
.sb-input, .sb-select, .sb-textarea { width: 100%; padding: 13px 16px; border: 1.5px solid #dde5ef; border-radius: 10px; font-family: 'Nunito', sans-serif; font-size: 0.95rem; color: #1a2535; background: #f5f8fa; 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: #0692AF; background: #fff; box-shadow: 0 0 0 3px rgba(6,146,175,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: #f5f8fa; position: relative; }
.sb-img-zone:hover, .sb-img-zone.drag-over { border-color: #0692AF; background: rgba(6,146,175,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: #0692AF; 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: #fff; 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: #f5f8fa; 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: #0692AF; background: #fff; box-shadow: 0 0 0 3px rgba(6,146,175,0.1); }
.sb-tag-pill { display: inline-flex; align-items: center; gap: 5px; background: rgba(6,146,175,0.1); border: 1px solid rgba(6,146,175,0.22); color: #0692AF; padding: 3px 10px 3px 12px; border-radius: 999px; font-size: 0.8rem; font-weight: 700; }
.sb-tag-pill button { background: none; border: none; color: #0692AF; 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: 'Nunito', sans-serif; font-size: 0.93rem; color: #1a2535; min-width: 80px; flex: 1; padding: 4px; }
.sb-tags-input::placeholder { color: #b0bac9; }
.sb-login-notice { background: rgba(252,180,21,0.07); border: 1px solid rgba(252,180,21,0.25); border-radius: 12px; padding: 20px 24px; margin-bottom: 28px; font-size: 0.9rem; color: #1a2535; }
.sb-login-notice a { color: #0692AF; font-weight: 800; text-decoration: none; }
.sb-login-notice a:hover { text-decoration: underline; }
.sb-section-title { font-family: 'Bebas Neue', sans-serif; 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: linear-gradient(135deg,#FCB415 0%,#f09a00 100%); color: #0D1526; font-family: 'Nunito', sans-serif; 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(48,108,53,0.1); border: 1px solid rgba(48,108,53,0.25); color: #306C35; }
.sb-msg.error   { background: rgba(213,55,79,0.08); border: 1px solid rgba(213,55,79,0.25); color: #D5374F; }
.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: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: #0D1526; 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: linear-gradient(135deg,#FCB415,#f09a00); color: #0D1526; }
.sb-success-btn.secondary { background: #eef2f7; color: #1a2535; border: 1px solid #dde5ef; }
.sb-success-btn:hover { opacity: 0.88; }
.sb-guidelines { background: #fff; border: 1px solid #dde5ef; border-radius: 16px; padding: 28px 32px; margin-top: 32px; box-shadow: 0 4px 18px rgba(0,0,0,0.05); }
.sb-guidelines h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; color: #0D1526; 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(6,146,175,0.1); color: #0692AF; }
.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,#fff 0%,rgba(6,146,175,0.04) 100%); padding: 60px 40px 44px; 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(6,146,175,0.07) 0%,transparent 55%),radial-gradient(circle at 20% 80%,rgba(252,180,21,0.04) 0%,transparent 50%); pointer-events: none; }
.plan-hero-kicker { display: inline-block; position: relative; font-family: 'Nunito', sans-serif; font-size: 11px; font-weight: 700; color: #0692AF; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 14px; }
.plan-hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(42px,6vw,66px); letter-spacing: 3px; color: #0D1526; line-height: 1; margin: 0 0 12px; position: relative; }
.plan-hero-title .accent { color: #FCB415; }
.plan-hero-sub { font-family: 'Nunito', sans-serif; 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: #306C35; }
.pc { width: 34px; height: 34px; border-radius: 50%; background: #e8eef4; color: #6b7a8f; font-family: 'Nunito', sans-serif; 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: #0692AF; color: #fff; border-color: #0692AF; }
.ps.done   .pc { background: #306C35; color: #fff; border-color: #306C35; }
.ps-lbl { font-family: 'Nunito', sans-serif; font-size: 10px; color: #6b7a8f; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.ps.active .ps-lbl, .ps.done .ps-lbl { color: #1a2535; }
.plan-card { background: #fff; border-radius: 18px; 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: 'Bebas Neue', sans-serif; font-size: 30px; letter-spacing: 2px; color: #0D1526; margin-bottom: 4px; }
.ps-sub { font-family: 'Nunito', sans-serif; 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: 'Nunito', sans-serif; }
.ptile:hover { border-color: #0692AF; background: rgba(6,146,175,0.08); }
.ptile.sel   { border-color: #FCB415; background: rgba(252,180,21,0.09); }
.ptile-em { font-size: 26px; margin-bottom: 7px; }
.ptile-n  { font-size: 12px; font-weight: 800; color: #1a2535; }
.ptile-s  { font-size: 10px; color: #6b7a8f; margin-top: 2px; }
.ptile.sel .ptile-n { color: #FCB415; }
.fg  { margin-bottom: 14px; }
.fl2 { font-family: 'Nunito', sans-serif; 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: 'Nunito', sans-serif; font-size: 13px; color: #1a2535; background: #fff; outline: none; transition: border-color 0.2s, background 0.2s; box-sizing: border-box; -webkit-appearance: none; appearance: none; }
.fi:focus { border-color: #0692AF; }
.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: 'Nunito', sans-serif; }
.ttile:hover { border-color: #0692AF; background: rgba(6,146,175,0.08); }
.ttile.sel   { border-color: #FCB415; background: rgba(252,180,21,0.09); }
.ttile-em { font-size: 22px; margin-bottom: 5px; }
.ttile-n  { font-size: 11px; font-weight: 800; color: #1a2535; }
.ttile-s  { font-size: 10px; color: #6b7a8f; }
.ttile.sel .ttile-n { color: #FCB415; }
.btile { border: 1.5px solid #ccd7e4; border-radius: 12px; padding: 14px 16px; cursor: pointer; transition: all 0.2s; background: #f0f4f8; font-family: 'Nunito', sans-serif; }
.btile:hover { border-color: #0692AF; background: rgba(6,146,175,0.08); }
.btile.sel   { border-color: #FCB415; background: rgba(252,180,21,0.09); }
.bt-name  { font-size: 14px; font-weight: 800; color: #1a2535; margin-bottom: 3px; }
.bt-range { font-size: 11px; color: #6b7a8f; }
.btile.sel .bt-name { color: #FCB415; }
.sum-box { background: rgba(6,146,175,0.06); border: 1px solid rgba(6,146,175,0.18); border-radius: 12px; padding: 16px; margin: 16px 0; }
.sum-title { font-family: 'Nunito', sans-serif; font-size: 11px; font-weight: 800; color: #0692AF; 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: 'Nunito', sans-serif; font-size: 12px; color: #6b7a8f; }
.sum-v { font-family: 'Nunito', sans-serif; font-size: 12px; font-weight: 800; color: #0D1526; }
.plan-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; gap: 10px; }
.btn-back { font-family: 'Nunito', sans-serif; font-size: 12px; color: #6b7a8f; padding: 11px 22px; border: 1.5px solid #ccd7e4; border-radius: 22px; cursor: pointer; background: #fff; font-weight: 700; transition: all 0.2s; }
.btn-back:hover { color: #0D1526; border-color: #0692AF; }
.btn-nx { font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 800; padding: 12px 28px; border-radius: 22px; border: none; cursor: pointer; transition: all 0.2s; }
.btn-primary       { background: #0692AF; color: #fff; }
.btn-primary:hover { background: #07a8cc; }
.btn-wa { background: #25d366; color: #fff; 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: 'Nunito', sans-serif; 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: 'Bebas Neue', sans-serif; font-size: 38px; letter-spacing: 2px; color: #0D1526; margin-bottom: 8px; }
.succ-sub    { font-family: 'Nunito', sans-serif; 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: #fff; font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 800; padding: 14px 32px; border-radius: 32px; 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: #fff; }
.succ-stats { display: flex; justify-content: center; gap: 32px; margin-top: 20px; }
.succ-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: #FCB415; }
.succ-stat-lbl { font-family: 'Nunito', sans-serif; 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: linear-gradient(135deg,#0d1526 0%,#0a1e30 55%,#071a2a 100%); padding: 52px 24px 80px; position: relative; overflow: hidden; }
.pf-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%,rgba(6,146,175,0.18) 0%,transparent 60%); }
.pf-page { max-width: 960px; margin: 0 auto; padding: 0 24px 88px; }
.pf-identity { position: relative; margin-top: -56px; background: #fff; border: 1px solid #dde5ef; border-radius: 20px; 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 #FCB415; overflow: hidden; flex-shrink: 0; background: rgba(252,180,21,0.1); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; box-shadow: 0 6px 24px rgba(252,180,21,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: 'Bebas Neue', sans-serif; font-size: 1.9rem; color: #0D1526; 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: #0692AF; }
.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: 999px; background: rgba(6,146,175,0.1); color: #0692AF; border: 1px solid rgba(6,146,175,0.2); }
.pf-badge.gold { background: rgba(252,180,21,0.1); color: #c08a00; border-color: rgba(252,180,21,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: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: #0D1526; 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: #fff; border: 1px solid #dde5ef; border-radius: 18px; 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: 'Bebas Neue', sans-serif; font-size: 1.15rem; color: #0D1526; 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: 'Nunito', sans-serif; font-size: 0.93rem; color: #1a2535; background: #f5f8fa; 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: #0692AF; background: #fff; box-shadow: 0 0 0 3px rgba(6,146,175,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-section-label { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: #0692AF; padding: 16px 0 12px; border-bottom: 1px solid #dde5ef; margin-bottom: 20px; }
.pf-save-btn { width: 100%; padding: 13px; background: linear-gradient(135deg,#FCB415 0%,#f09a00 100%); color: #0d1526; font-family: 'Nunito', sans-serif; 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(48,108,53,0.1); border: 1px solid rgba(48,108,53,0.25); color: #306C35; }
.pf-msg.error   { background: rgba(213,55,79,0.08); border: 1px solid rgba(213,55,79,0.25); color: #D5374F; }
.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: #0692AF; }
.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: #0692AF; 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: #0D1526; 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: #0692AF; }
.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: 999px; }
.pf-post-status.publish { background: rgba(48,108,53,0.1);  color: #306C35; }
.pf-post-status.pending { background: rgba(252,180,21,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: #0692AF; 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: #1a2535; 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:'Nunito',sans-serif; }
.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:#fff; 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:#D5374F; color:#fff; 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 #fff; 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:#fff; border-radius:18px; 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:#fff; 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:#fff; }
.tw-wa-popup-body { padding:20px 16px; background:#ECE5DD; }
.tw-wa-bubble { background:#fff; border-radius:0 12px 12px 12px; padding:12px 14px; font-size:0.9rem; color:#1a2535; 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 #fff transparent transparent; }
.tw-wa-popup-cta { display:flex; align-items:center; justify-content:center; gap:8px; background:#25D366; color:#fff; font-weight:800; font-size:0.9rem; padding:14px; text-decoration:none; transition:background 0.2s; }
.tw-wa-popup-cta:hover { background:#1ebe5d; color:#fff; }
@media(max-width:400px) { .tw-wa-popup{width:calc(100vw - 32px);right:-8px} #tw-wa-widget{bottom:16px;right:16px} }

/* ================================================================
   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 — blue → gold → green */
.section-heading h2,
.ba-hero-title,
.ba-section-head,
.plan-hero-title,
.tw-cta-title {
    background: linear-gradient(135deg, #0692AF 0%, #FCB415 55%, #306C35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Dark-background headings — gold → ice-blue → gold */
.tw-blog-title,
.tw-community-title,
.sp-hero-title,
.sb-hero h1 {
    background: linear-gradient(135deg, #FCB415 0%, #7ddcea 52%, #FCB415 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Spans inside gradient headings inherit the transparent fill —
   the parent gradient flows through them naturally */
.tw-community-title span,
.tw-cta-title span {
    color: inherit;
    -webkit-text-fill-color: inherit;
}


/* ================================================================
   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(6,146,175,0.15);
        border-bottom: 1px solid rgba(6,146,175,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: 2rem; }
}

/* ================================================================
   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; }
}

/* ================================================================
   FREE ITINERARY FORM — overflow fix
   ================================================================ */
.free-itinerary-form input { min-width: 0; }
@media (max-width: 480px) {
    .free-itinerary-form { flex-direction: column; }
    .free-itinerary-form button { width: 100%; }
}

/* ================================================================
   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 { padding: 22px 16px; font-size: 0.96rem; }
    .sp-nav { grid-template-columns: 1fr; }
    .sp-comments { padding: 22px 16px; }
}

/* ================================================================
   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: #0692af;
    margin-bottom: 10px;
}

.tw-ig-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.04em;
    line-height: 1;
    margin: 0 0 14px;
    background: linear-gradient(135deg, #0692AF 0%, #FCB415 55%, #306C35 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: #ffffff;
    border: 1.5px solid rgba(252,180,21,0.4);
    color: #0d1526;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 8px 20px;
    border-radius: 999px;
    text-decoration: none;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 12px rgba(6,146,175,0.1);
    transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.tw-ig-handle:hover {
    background: #FCB415;
    border-color: #FCB415;
    color: #0d1526;
    box-shadow: 0 4px 20px rgba(252,180,21,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: 16px !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: 16px !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: 999px !important;
    font-family: 'Nunito', sans-serif !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: linear-gradient(135deg, #FCB415 0%, #f09a00 100%) !important;
    background-color: #FCB415 !important;
    color: #0d1526 !important;
    box-shadow: 0 4px 14px rgba(252,180,21,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(252,180,21,0.4) !important;
    filter: brightness(1.05) !important;
    color: #0d1526 !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, #0692af 0%, #056d83 100%) !important;
    background-color: #0692af !important;
    background-image: linear-gradient(135deg, #0692af 0%, #056d83 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(6,146,175,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(6,146,175,0.4) !important;
    filter: brightness(1.08) !important;
    color: #ffffff !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: #f5f8fa; }

/* ── Hero ── */
.tribe-hero {
    position: relative;
    background: linear-gradient(135deg, #0d1526 0%, #0a1e30 55%, #071a2a 100%);
    padding: 64px 0 56px;
    overflow: hidden;
    text-align: center;
}
.tribe-hero-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 0%, rgba(6,146,175,0.18) 0%, transparent 55%),
                radial-gradient(ellipse at 85% 100%, rgba(252,180,21,0.12) 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: #0692af; background: rgba(6,146,175,0.12);
    border: 1px solid rgba(6,146,175,0.3); border-radius: 999px; padding: 6px 18px; margin-bottom: 16px;
}
.tribe-hero-title {
    font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.6rem, 6vw, 4.4rem);
    color: #fff; letter-spacing: 0.04em; line-height: 1; margin: 0 0 12px;
}
.tribe-hero-title span { color: #FCB415; }
.tribe-hero-sub { color: rgba(255,255,255,0.7); 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: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.04em; line-height: 1;
    background: linear-gradient(135deg, #FCB415, #0692af);
    -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(255,255,255,0.45); margin-top: 4px; }

/* Shared pill buttons */
.tribe-start-btn, .tribe-btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: linear-gradient(135deg, #FCB415 0%, #f09a00 100%);
    color: #0d1526; border: none; border-radius: 999px;
    font-family: 'Nunito', sans-serif; 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(252,180,21,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(252,180,21,0.45); filter: brightness(1.05); color: #0d1526;
}
.tribe-btn-ghost {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: transparent; color: #0692af; border: 1.5px solid #0692af; border-radius: 999px;
    font-family: 'Nunito', sans-serif; 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: #0692af; color: #fff; }

/* 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: #fff; border: none; border-radius: 999px;
    font-family: 'Nunito', sans-serif; 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: #fff; }
.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; background: #fff; border: 1px solid #e0e8f0;
    color: #1a2535; font-size: 0.84rem; font-weight: 700; padding: 8px 15px; border-radius: 999px;
    text-decoration: none; transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.tribe-cat-chip:hover { border-color: #0692af; color: #0692af; }
.tribe-cat-chip.active { background: linear-gradient(135deg, #0692af 0%, #056d83 100%); color: #fff; 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: #fff; border: 1px solid #e6edf3; border-radius: 16px;
    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(252,180,21,0.5); background: linear-gradient(180deg, #fffdf6 0%, #fff 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(6,146,175,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; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.02em;
    color: #0692af; background: rgba(6,146,175,0.08); border: 1px solid rgba(6,146,175,0.2);
    padding: 3px 10px; border-radius: 999px; text-decoration: none;
}
.tribe-chip-cat:hover { background: rgba(6,146,175,0.16); }
.tribe-flag { font-size: 0.7rem; font-weight: 800; padding: 3px 9px; border-radius: 999px; }
.tribe-flag-pin { color: #b8860b; background: rgba(252,180,21,0.15); }
.tribe-flag-solved { color: #306c35; background: rgba(48,108,53,0.12); }
.tribe-flag-solved.is-off { color: #94a3b8; background: #eef2f6; }
.tribe-topic-title { font-family: 'Nunito', sans-serif; font-size: 1.12rem; font-weight: 800; line-height: 1.35; margin: 0 0 6px; }
.tribe-topic-title a { color: #0d1526; text-decoration: none; }
.tribe-topic-title a:hover { color: #0692af; }
.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: #0692af; 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: #fff; border: 1px solid #e0e8f0; border-radius: 9px; color: #1a2535; font-weight: 700; text-decoration: none; transition: all 0.2s;
}
.tribe-pagination .page-numbers:hover { border-color: #0692af; color: #0692af; }
.tribe-pagination .page-numbers.current { background: linear-gradient(135deg, #0692af 0%, #056d83 100%); color: #fff; border-color: transparent; }

/* ── Empty state ── */
.tribe-empty { background: #fff; border: 1px dashed #cfe0ea; border-radius: 18px; padding: 48px 24px; text-align: center; }
.tribe-empty-icon { font-size: 3rem; margin-bottom: 12px; }
.tribe-empty h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 0.03em; color: #0d1526; 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: #fff; border: 1px solid #e6edf3; border-radius: 14px; padding: 16px 20px; margin-bottom: 20px; }
.tribe-member-banner-avatar { width: 52px; height: 52px; border-radius: 50%; border: 2px solid #FCB415; }
.tribe-member-banner div { display: flex; flex-direction: column; }
.tribe-member-banner strong { color: #0d1526; font-size: 1.05rem; }
.tribe-member-banner span { color: #8595a6; font-size: 0.82rem; }
.tribe-member-back { margin-left: auto; color: #0692af; 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: #fff; border: 1px solid #e6edf3; border-radius: 16px; padding: 20px; }
.tribe-widget-title { font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 800; color: #0d1526; 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(6,146,175,0.1); color: #0692af;
    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: #0d1526; font-weight: 700; font-size: 0.88rem; line-height: 1.35; }
.tribe-trending a:hover .tribe-trend-title { color: #0692af; }
.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: #eef2f6; color: #5b6b7d; font-weight: 800; font-size: 0.74rem; display: flex; align-items: center; justify-content: center; }
.tribe-board-rank--1 { background: linear-gradient(135deg,#FCB415,#f09a00); color: #0d1526; }
.tribe-board-rank--2 { background: #cbd5e1; color: #0d1526; }
.tribe-board-rank--3 { background: #e6c9a8; color: #0d1526; }
.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: #0d1526; font-weight: 700; font-size: 0.86rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tribe-board-user:hover .tribe-board-name { color: #0692af; }
.tribe-board-score { margin-left: auto; color: #FCB415; 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: #1a2535; font-weight: 700; font-size: 0.88rem; text-decoration: none; transition: background 0.2s; }
.tribe-cat-links a:hover { background: #f0f6fa; color: #0692af; }
.tribe-cat-count { background: #eef2f6; color: #5b6b7d; font-size: 0.72rem; font-weight: 800; padding: 2px 9px; border-radius: 999px; }

/* ── 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: #fff; border-radius: 20px; 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: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.03em; color: #0d1526; 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: 'Nunito', sans-serif;
    font-size: 0.95rem; color: #1a2535; 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: #0692af; background: #fff; box-shadow: 0 0 0 3px rgba(6,146,175,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: #d5374f; }
.tribe-form-msg.success { color: #306c35; }
.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: #0692af; text-decoration: none; font-weight: 700; }
.tribe-post { background: #fff; border: 1px solid #e6edf3; border-radius: 18px; padding: 30px; }
.tribe-post-flags { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.tribe-post-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.9rem, 4vw, 2.8rem); letter-spacing: 0.02em; line-height: 1.1; color: #0d1526; 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(6,146,175,0.25); }
.tribe-byline-user span { display: flex; flex-direction: column; }
.tribe-byline-user strong { color: #0d1526; 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: #0692af; }
.tribe-post-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 26px; padding-top: 20px; border-top: 1px solid #eef2f6; }

/* Like button */
.tribe-like-btn {
    display: inline-flex; align-items: center; gap: 7px; background: #f5f8fa; border: 1.5px solid #e0e8f0;
    border-radius: 999px; padding: 8px 16px; cursor: pointer; font-family: 'Nunito', sans-serif;
    font-weight: 800; font-size: 0.86rem; color: #5b6b7d; transition: all 0.18s ease;
}
.tribe-like-btn:hover { border-color: #d5374f; color: #d5374f; transform: translateY(-1px); }
.tribe-like-btn.is-liked { background: rgba(213,55,79,0.08); border-color: rgba(213,55,79,0.4); color: #d5374f; }
.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 #306c35; color: #306c35; border-radius: 999px; padding: 8px 16px; cursor: pointer;
    font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.84rem; transition: all 0.2s;
}
.tribe-solve-btn:hover { background: #306c35; color: #fff; }
.tribe-solve-btn.is-solved { background: rgba(48,108,53,0.12); }

/* ── Replies ── */
.tribe-replies { margin-top: 32px; }
.tribe-replies-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.03em; color: #0d1526; 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 #eef2f6; display: flex; flex-direction: column; gap: 14px; }
.tribe-reply-inner { display: flex; gap: 13px; background: #fff; border: 1px solid #e6edf3; border-radius: 14px; padding: 16px 18px; }
.tribe-reply-avatar { flex-shrink: 0; }
.tribe-reply-avatar-img { width: 42px; height: 42px; border-radius: 50%; border: 2px solid rgba(6,146,175,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: #0d1526; font-size: 0.92rem; }
.tribe-reply-op { font-size: 0.66rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: #0692af; background: rgba(6,146,175,0.1); padding: 2px 8px; border-radius: 999px; }
.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: #0692af; 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: 16px; padding: 24px; }
.tribe-mod-note { font-size: 0.82rem; color: #8595a6; background: #fff; border: 1px dashed #cfe0ea; border-radius: 10px; padding: 10px 14px; margin-bottom: 16px; }
.tribe-reply-form-title { font-family: 'Nunito', sans-serif; font-size: 1.05rem; font-weight: 800; color: #0d1526; 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: #fff; 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: #0692af; font-weight: 800; text-decoration: none; }
.tribe-login-inline { background: #f9fbfd; border: 1px solid #e6edf3; border-radius: 16px; 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 { padding: 44px 0 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 #eef2f6; 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: #0b1220;
    border-bottom: 1px solid rgba(6,146,175,0.15);
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    position: relative;
    z-index: 60;
    font-family: 'Nunito', sans-serif;
}
.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: rgba(255,255,255,0.75);
    font-size: 0.9rem; font-weight: 700; text-decoration: none; white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.tw-sub-item:hover .tw-sub-link,
.tw-sub-link:focus { color: #fff; background: rgba(255,255,255,0.05); }
.tw-sub-item.is-open .tw-sub-link { color: #FCB415; border-bottom-color: #FCB415; }
.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: #fff; 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: #0692af; text-decoration: none; margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid #eef2f6;
}
.tw-mega-head:hover { color: #0d1526; }
.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: #0692af; }

/* 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: #0d1526; font-size: 0.88rem; font-weight: 700; }
.tw-mega-event:hover .tw-mega-event-name { color: #0692af; }

/* 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: #f5f8fa; }
.explore-hero {
    position: relative; background: linear-gradient(135deg, #0d1526 0%, #0a1e30 55%, #071a2a 100%);
    padding: 48px 0 44px; overflow: hidden; text-align: center;
}
.explore-hero-overlay {
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse at 20% 0%, rgba(6,146,175,0.18) 0%, transparent 55%),
                radial-gradient(ellipse at 85% 100%, rgba(252,180,21,0.12) 0%, transparent 50%);
}
/* Cinematic hero — featured image as full-bleed background */
.explore-hero.ev-hero-cinematic.has-hero-img {
    background-size: cover; background-position: center; background-repeat: no-repeat;
    padding: 80px 0 72px; min-height: 520px; display: flex; align-items: flex-end;
}
.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;
}
/* 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: 999px; 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(252,180,21,0.18); border-color: rgba(252,180,21,0.4); color: #FCB415; }
.ev-hero-fact--price small { font-size: 0.72rem; opacity: 0.75; font-weight: 600; }
.explore-hero-inner { position: relative; z-index: 1; }
.explore-crumbs { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 14px; display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.explore-crumbs a { color: #0692af; 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: #0692af; background: rgba(6,146,175,0.12); border: 1px solid rgba(6,146,175,0.3); border-radius: 999px; padding: 5px 16px; margin-bottom: 12px; }
.explore-hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem, 5vw, 3.6rem); color: #fff; letter-spacing: 0.04em; line-height: 1; margin: 0 0 10px; }
.explore-hero-sub { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 640px; margin: 0 auto 10px; line-height: 1.6; }
.explore-hero-count { color: #FCB415; font-weight: 800; font-size: 0.85rem; }

.explore-wrap { padding-top: 32px; padding-bottom: 64px; }
.explore-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.explore-chip { display: inline-flex; align-items: center; background: #fff; border: 1px solid #e0e8f0; color: #1a2535; font-size: 0.84rem; font-weight: 700; padding: 8px 15px; border-radius: 999px; text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.explore-chip:hover { border-color: #0692af; color: #0692af; }

.explore-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr)); gap: 22px; }
.explore-card { background: #fff; border: 1px solid #e6edf3; border-radius: 16px; 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: #fff; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px; }
.explore-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.explore-card-title { font-family: 'Nunito', sans-serif; font-size: 1.08rem; font-weight: 800; line-height: 1.3; margin: 0 0 8px; }
.explore-card-title a { color: #0d1526; text-decoration: none; }
.explore-card-title a:hover { color: #0692af; }
.explore-card-excerpt { color: #5b6b7d; font-size: 0.88rem; line-height: 1.6; margin: 0 0 14px; flex: 1; }
.explore-card-link { color: #0692af; font-weight: 800; font-size: 0.85rem; text-decoration: none; margin-top: auto; }
.explore-card-link:hover { color: #f09a00; }

/* 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: #0692af; font-weight: 800; font-size: 0.88rem; text-decoration: none; }

/* ================================================================
   HOMEPAGE — Events & Festivals showcase row
   ================================================================ */
.tw-events-showcase { padding: 64px 0; background: #fff; }
.tw-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
    gap: 18px;
    margin-top: 28px;
}
.tw-event-card {
    display: flex; flex-direction: column; background: #fff; border: 1px solid #e6edf3;
    border-radius: 16px; overflow: hidden; text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.tw-event-card:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(13,21,38,0.1); border-color: #cfe0ea; }
.tw-event-card-media {
    position: relative; aspect-ratio: 16/10;
    background: linear-gradient(135deg, #0d1526 0%, #0a3a4a 100%);
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center;
}
.tw-event-card-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,21,38,0.45), transparent 60%); }
.tw-event-card-icon { position: relative; z-index: 1; font-size: 2.6rem; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.35)); }
.tw-event-card-body { padding: 14px 16px 16px; }
.tw-event-card-name { font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 800; color: #0d1526; margin: 0 0 4px; line-height: 1.3; }
.tw-event-card-count { font-size: 0.8rem; font-weight: 700; color: #0692af; }
@media (max-width: 480px) {
    .tw-events-showcase { padding: 44px 0; }
    .tw-events-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .tw-event-card-icon { font-size: 2rem; }
}

/* ================================================================
   UNIVERSAL SEARCH — overlay + results page
   ================================================================ */
.tw-search-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06); color: #fff; cursor: pointer; font-size: 1rem; flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
}
.tw-search-toggle:hover { background: rgba(255,255,255,0.14); border-color: rgba(252,180,21,0.5); }
.tw-search-overlay {
    position: fixed; inset: 0; z-index: 100000; display: none;
    background: rgba(13,21,38,0.92); backdrop-filter: blur(8px);
    align-items: flex-start; justify-content: center; padding: 14vh 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-box { width: 100%; max-width: 680px; }
.tw-search-form { display: flex; gap: 10px; }
.tw-search-input {
    flex: 1; background: #fff; border: none; border-radius: 14px; padding: 18px 22px;
    font-family: 'Nunito', sans-serif; font-size: 1.15rem; color: #0d1526; outline: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.tw-search-submit {
    border: none; border-radius: 14px; padding: 0 26px; cursor: pointer;
    background: linear-gradient(135deg, #FCB415 0%, #f09a00 100%); color: #0d1526;
    font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem;
}
.tw-search-hint { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 16px; text-align: center; }
.tw-search-hint span { color: #FCB415; font-weight: 700; }
.tw-search-close { position: absolute; top: 22px; right: 26px; background: none; border: none; color: rgba(255,255,255,0.7); font-size: 1.6rem; cursor: pointer; line-height: 1; }
.tw-search-close:hover { color: #fff; }

/* Search results page */
.tw-results-head { background: linear-gradient(135deg, #0d1526 0%, #0a1e30 60%, #071a2a 100%); padding: 48px 0 40px; text-align: center; }
.tw-results-head h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 5vw, 3.2rem); color: #fff; letter-spacing: 0.04em; margin: 0 0 8px; }
.tw-results-head h1 span { color: #FCB415; }
.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: 'Nunito', sans-serif; font-size: 1.15rem; font-weight: 800; color: #0d1526; margin: 0 0 16px; display: flex; align-items: center; gap: 10px; }
.tw-results-group-title .tw-results-badge { background: rgba(6,146,175,0.1); color: #0692af; font-size: 0.72rem; font-weight: 800; padding: 3px 10px; border-radius: 999px; }

/* ================================================================
   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: #0692af; color: #0692af; }
.ba-filter-pill.active {
    background: linear-gradient(135deg, #0692af 0%, #056d83 100%) !important;
    border-color: transparent !important; color: #fff !important;
    box-shadow: 0 4px 14px rgba(6,146,175,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: #fff !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: #0692af; }
.ba-card-read-more { color: #0692af; font-weight: 800; transition: color 0.2s; }
.ba-card-read-more:hover { color: #f09a00; }

/* 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: linear-gradient(135deg, #FCB415 0%, #f09a00 100%); color: #0d1526 !important;
    border-radius: 999px; padding: 11px 24px; font-weight: 800; text-decoration: none;
    box-shadow: 0 6px 18px rgba(252,180,21,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(252,180,21,0.45); filter: brightness(1.05); }

/* Write-a-post button consistency */
.ba-section-head { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.03em; color: #0d1526; }

/* ================================================================
   EVENTS & FESTIVALS — landing page
   ================================================================ */
.ev-section { margin-bottom: 48px; }
.ev-section-head { text-align: center; margin-bottom: 24px; }
.ev-section-head h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.7rem, 3.4vw, 2.4rem); letter-spacing: 0.04em; color: #0d1526; 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, #0d1526 0%, #0a3a4a 100%); background-size: cover; background-position: center;
    border: 3px solid #fff; 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: #0d1526; line-height: 1.3; }
.ev-discover:hover .ev-discover-name { color: #0692af; }

/* Event package grid */
.ev-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr)); gap: 22px; }
.ev-card { background: #fff; border: 1px solid #e6edf3; border-radius: 18px; 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,#0d1526,#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: linear-gradient(135deg,#FCB415,#f09a00); color: #0d1526; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.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: #0692af; }
.ev-card-title { font-family: 'Nunito', sans-serif; font-size: 1.05rem; font-weight: 800; line-height: 1.3; margin: 0 0 8px; }
.ev-card-title a { color: #0d1526; text-decoration: none; }
.ev-card-title a:hover { color: #0692af; }
.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: #0d1526; }
.ev-card-btn { flex-shrink: 0; background: linear-gradient(135deg,#FCB415 0%,#f09a00 100%); color: #0d1526; font-weight: 800; font-size: 0.84rem; padding: 9px 20px; border-radius: 999px; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s, filter 0.2s; box-shadow: 0 4px 14px rgba(252,180,21,0.3); }
.ev-card-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(252,180,21,0.45); filter: brightness(1.05); color: #0d1526; }

/* By-month listing */
.ev-month { margin-bottom: 30px; }
.ev-month-label { font-family: 'Bebas Neue', sans-serif; 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: #fff; border: 1px solid #e6edf3; border-radius: 16px; 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: 'Bebas Neue', sans-serif; font-size: 1.8rem; line-height: 1; color: #0d1526; }
.ev-row-date span { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: #0692af; }
.ev-row-img { display: block; height: 120px; border-radius: 12px; overflow: hidden; position: relative; background: linear-gradient(135deg,#0d1526,#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: #0692af; background: rgba(6,146,175,0.1); padding: 3px 10px; border-radius: 999px; margin-bottom: 6px; }
.ev-row-title { font-family: 'Nunito', sans-serif; font-size: 1.08rem; font-weight: 800; margin: 0 0 4px; }
.ev-row-title a { color: #0d1526; text-decoration: none; }
.ev-row-title a:hover { color: #0692af; }
.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: #fff; border: 1px solid #e6edf3; border-radius: 14px; 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: #f5f8fa; border: 1px solid #e0e8f0; color: #1a2535; font-size: 0.84rem; font-weight: 700; padding: 7px 15px; border-radius: 999px; text-decoration: none; transition: background 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s; }
.tw-fchip:hover { border-color: #0692af; color: #0692af; }
.tw-fchip.active { background: linear-gradient(135deg, #0692af 0%, #056d83 100%); border-color: transparent; color: #fff; box-shadow: 0 4px 12px rgba(6,146,175,0.25); }
.tw-fchip-meta.active { background: linear-gradient(135deg, #FCB415 0%, #f09a00 100%); color: #0d1526; box-shadow: 0 4px 12px rgba(252,180,21,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: 16px;
    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: '🧭'; position: absolute; inset: 0; z-index: 0;
    display: flex; align-items: center; justify-content: center;
    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: #0692af; font-weight: 700; font-size: 0.8rem; }
.package-facts span { background: #f0f6fa; color: #0d1526; border-radius: 999px; 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, #0692af 0%, #056d83 100%);
    border-radius: 999px;
    padding: 10px 22px;
    box-shadow: 0 4px 14px rgba(6,146,175,0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.book-now-btn:hover {
    background: linear-gradient(135deg, #0692af 0%, #056d83 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(6,146,175,0.42);
    filter: brightness(1.06);
}

/* ================================================================
   PLAN A TRIP — dark hero band (matches Blog + Affiliates / Explore)
   Appended last so it overrides the earlier light .plan-hero rules
   and the gradient-text rule on .plan-hero-title.
   ================================================================ */
.plan-hero {
    background: linear-gradient(135deg, #0d1526 0%, #0a1e30 55%, #071a2a 100%) !important;
    border-bottom: none !important;
    padding: 56px 24px 64px !important;
    text-align: center;
}
.plan-hero::before {
    background: radial-gradient(ellipse at 20% 0%, rgba(6,146,175,0.20) 0%, transparent 55%),
                radial-gradient(ellipse at 85% 100%, rgba(252,180,21,0.12) 0%, transparent 50%) !important;
}
.plan-hero > * { position: relative; z-index: 1; }
/* Breadcrumb on the dark hero — centered + light text */
.plan-hero .tw-breadcrumbs {
    justify-content: center;
    margin: 0 0 14px !important;
    color: rgba(255,255,255,0.8) !important;
}
.plan-hero .tw-breadcrumbs span[aria-current="page"] { color: rgba(255,255,255,0.8) !important; }
.plan-hero .tw-breadcrumbs a { color: #4db8d0 !important; }
.plan-hero .tw-breadcrumbs a:hover { color: #FCB415 !important; }
.plan-hero .tw-breadcrumb-separator { color: rgba(255,255,255,0.4) !important; }
/* Kicker → teal pill */
.plan-hero-kicker {
    display: inline-block; color: #0692af !important; background: rgba(6,146,175,0.14);
    border: 1px solid rgba(6,146,175,0.35); border-radius: 999px;
    padding: 5px 18px !important; letter-spacing: 0.18em !important; margin-bottom: 16px !important;
}
/* Title → solid white with gold accent (override the gradient-text rule) */
.plan-hero-title {
    background: none !important;
    -webkit-text-fill-color: #fff !important;
    color: #fff !important;
}
.plan-hero-title .accent {
    -webkit-text-fill-color: #FCB415 !important;
    color: #FCB415 !important;
}
.plan-hero-sub { color: rgba(255,255,255,0.72) !important; }

/* ================================================================
   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: linear-gradient(135deg, #FCB415 0%, #f09a00 100%); color: #0d1526;
    font-weight: 800; font-size: 0.86rem; letter-spacing: 0.03em;
    padding: 10px 22px; border-radius: 999px; text-decoration: none;
    box-shadow: 0 4px 14px rgba(252,180,21,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(252,180,21,0.45); filter: brightness(1.05); color: #0d1526; }

/* ================================================================
   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: 18px; 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: #fff; border: 1px solid #e6edf3; border-radius: 999px; padding: 8px 16px; font-size: 0.84rem; font-weight: 700; color: #0d1526; }
.ev-fact a { color: #0692af; 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:#fff; border:1px solid #e6edf3; border-radius:16px; 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: #0692af; }

/* 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:#fff; border:1px solid #e6edf3; border-radius:16px; 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: #fff; border: 1px solid #e6edf3; border-radius: 18px; 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 #eef2f6; }
.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: 'Bebas Neue', sans-serif; font-size: 2.2rem; letter-spacing: 0.03em; color: #0d1526; 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: linear-gradient(135deg, #FCB415 0%, #f09a00 100%); color: #0d1526; box-shadow: 0 6px 20px rgba(252,180,21,0.32); }
.ev-single-btn:not(.ev-single-btn--ghost):hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(252,180,21,0.45); filter: brightness(1.05); }
.ev-single-btn--ghost { background: transparent; border: 1.5px solid #0692af; color: #0692af; }
.ev-single-btn--ghost:hover { background: #0692af; color: #fff; }
/* Women's Trips callout on Group Trips archive */
.gt-womens-callout { display:flex; align-items:center; gap:16px; background:linear-gradient(135deg,#fff0f5,#fff5f8); border:1.5px solid #ffd6e4; border-radius:16px; 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:#0d1526; margin-bottom:3px; }
.gt-womens-callout-copy span { font-size:0.82rem; color:#6b7a8f; }
.gt-womens-callout-btn { display:inline-flex; align-items:center; padding:9px 20px; background:linear-gradient(135deg,#ff8fab,#ff6b8a); color:#fff; 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:#fff; }
/* ── 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:'Nunito',sans-serif; font-weight:800; color:#0d1526;
    margin:28px 0 10px; padding:10px 16px; background:#f0f7ff;
    border-left:4px solid #0692AF; 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:'✓'; color:#0692AF; 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:#0692AF; color:#fff; 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:#0d1526; }
.ev-content-styled a { color:#0692AF; text-decoration:underline; }
/* Trip Details panel (events + group trips single page) */
.ev-trip-details { background:#f8fafc; border:1px solid #e6edf3; border-radius:16px; padding:24px 26px; margin-top:24px; }
.ev-trip-details-title { font-family:'Bebas Neue',sans-serif; font-size:1.3rem; letter-spacing:0.04em; color:#0d1526; 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:#0d1526; 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 #eef2f6; 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:#0d1526; 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 #eef2f6; padding: 0 18px 0 0; text-align: left; }
    .ev-single-btn { flex: 1; }
}
