/* ============================================================
   TRAVELICIOUSBITES — Global Travel Blog
   Custom CSS Theme (Bootstrap 5.3 Override + Components)
   ============================================================ */

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  --primary:      #1A3A6B;
  --primary-dark: #0D2040;
  --accent:       #2980B9;
  --accent-light: #3498DB;
  --gold:         #F0A500;
  --gold-light:   #FFD166;
  --light:        #F4F8FF;
  --white:        #FFFFFF;
  --dark:         #0D1B2A;
  --dark-mid:     #162032;
  --gray:         #6C7A8D;
  --gray-light:   #E8EDF5;
  --text:         #1E293B;
  --text-muted:   #64748B;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow-sm:    0 2px 12px rgba(26,58,107,0.08);
  --shadow-md:    0 6px 28px rgba(26,58,107,0.14);
  --shadow-lg:    0 16px 48px rgba(26,58,107,0.20);
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  color: var(--text);
  background: var(--white);
  line-height: 1.76;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  line-height: 1.25;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--gold-light); color: var(--primary-dark); }

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-main {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26,58,107,0.08);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1040;
  transition: box-shadow var(--transition), background var(--transition);
}

.navbar-main.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.99);
}

/* ── CRITICAL: Force navbar collapse open on desktop ───── */
@media (min-width: 992px) {
  .navbar-main .navbar-collapse {
    display: flex !important;
    flex-basis: auto !important;
    align-items: center;
    flex-grow: 1;
  }
  .navbar-main .navbar-nav {
    flex-direction: row !important;
    align-items: center;
  }
  /* On desktop, mega-menu is position absolute, triggered by hover */
  .mega-menu-wrapper { position: static !important; }
  .mega-menu {
    display: block !important;  /* Override mobile display:none */
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
  }
  .mega-menu-wrapper:hover .mega-menu,
  .mega-menu-wrapper.active .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  /* Hide mobile-only toggle arrow indicator on desktop */
  .mobile-menu-toggle-icon { display: none !important; }
}

/* ── MOBILE NAVBAR (below 992px) ─────────────────────────── */
@media (max-width: 991.98px) {
  /* Mobile collapsed panel */
  .navbar-main .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 3px solid var(--gold);
    box-shadow: var(--shadow-lg);
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1039;
    padding: 8px 0 16px;
  }
  /* Stack nav items vertically */
  .navbar-main .navbar-nav {
    flex-direction: column !important;
    width: 100%;
    padding: 0 4px;
  }
  .navbar-main .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--gray-light);
  }
  .navbar-main .nav-item:last-child { border-bottom: none; }
  /* Mobile nav links */
  .navbar-main .nav-link {
    padding: 14px 16px !important;
    white-space: normal;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  /* Underline indicator disabled on mobile */
  .navbar-main .nav-link::after { display: none; }
  /* Mega-menu: accordion on mobile — hidden by default */
  .mega-menu {
    display: none !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border-top: 2px solid var(--gold) !important;
    border-radius: 0 0 var(--radius) var(--radius) !important;
    padding: 16px !important;
    background: var(--light) !important;
    max-height: none !important;
    overflow: visible !important;
  }
  /* Show the mega-menu when .mobile-open is set on the wrapper */
  .mega-menu-wrapper.mobile-open > .mega-menu {
    display: block !important;
  }
  /* Hide the large featured image in the mega-menu on mobile */
  .mega-menu .col-lg-4 { display: none; }
  /* Make grid columns full width on mobile */
  .mega-menu .col-lg-2,
  .mega-menu .col-lg-3 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 12px;
  }
  /* Mobile toggle icon (chevron) */
  .mobile-menu-toggle-icon {
    display: inline-block;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    color: var(--gray);
    margin-left: auto;
  }
  .mega-menu-wrapper.mobile-open .mobile-menu-toggle-icon {
    transform: rotate(180deg);
  }
  /* Mobile search inside collapsed menu */
  .navbar-search.d-none.d-lg-flex {
    display: flex !important;
    justify-content: space-between !important;
    margin: 12px 16px 16px !important;
    width: calc(100% - 32px);
  }
  .navbar-search input { 
    width: 100%; 
    flex: 1;
  }
  .navbar-search button {
    margin-left: auto;
  }
  .tb-navbar-auth-link {
    margin: 0 16px 16px;
    width: calc(100% - 32px);
  }
  /* Make the navbar relatively positioned so the panel positions correctly */
  .navbar-main {
    position: sticky;
  }
  .navbar-main .container {
    position: relative;
  }
}

.navbar-brand img { height: 48px; }

.top-bar {
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  padding: 6px 0;
}
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--gold); }

/* Nav links (desktop default) */
.navbar-main .nav-link {
  font-family: "Times New Roman", Times, serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--primary-dark) !important;
  padding: 20px 14px !important;
  letter-spacing: 0.02em;
  position: relative;
  white-space: nowrap;
  transition: color var(--transition);
}

.navbar-main .nav-link::after {
  content: '';
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}

.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after { transform: scaleX(1); }

.navbar-main .nav-link:hover { color: #0b1f3a !important; }

/* ── Mega Menu (desktop) ──────────────────────────────────── */
.mega-menu {
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 32px;
  transition: all var(--transition);
  z-index: 1050;
}

.mega-menu-col h6 {
  font-family: "Times New Roman", Times, serif;
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-light);
}

.mega-menu-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1e293b;
  font-size: 0.93rem;
  font-weight: 800;
  padding: 5px 0;
  transition: all var(--transition);
}

.mega-menu-col a i { color: var(--accent); font-size: 0.8rem; }
.mega-menu-col a:hover { color: #0b1f3a; padding-left: 6px; }
.mega-menu-col a .menu-count {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.mega-menu-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.mega-menu-img > img { width: 100%; height: 160px; object-fit: cover; }
.mega-menu-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(13,27,42,0.85));
  color: var(--white);
  padding: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
}

.mega-menu-articles {
  min-height: 220px;
  background: #f7fafc;
  border: 1px solid rgba(13,27,42,0.08);
  box-shadow: none;
  padding: 16px;
  overflow: visible;
}

.mega-menu-articles-loading,
.mega-menu-articles-error {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.84rem;
  text-align: center;
}

.mega-menu-articles-loading .spinner-border { color: var(--gold); }

.mega-menu-articles-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(13,27,42,0.08);
}

.mega-menu-articles-head span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mega-menu-articles-head i { color: var(--gold); }
.mega-menu-articles-list { display: grid; gap: 0; }

.mega-menu-article {
  display: grid;
  grid-template-columns: 30px 54px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  color: var(--primary);
  text-decoration: none;
  border-radius: 0;
  padding: 8px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(13,27,42,0.07);
  transition: color 0.2s ease, transform 0.2s ease;
}

.mega-menu-article:last-child { border-bottom: 0; }

.mega-menu-article:hover {
  color: var(--accent);
  transform: translateX(3px);
  background: transparent;
  box-shadow: none;
}

.mega-menu-article-rank {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(240,165,0,0.12);
  color: var(--gold);
  font-family: "Times New Roman", Times, serif;
  font-weight: 900;
  font-size: 0.72rem;
}

.mega-menu-article-img {
  display: block;
  width: 54px;
  height: 44px;
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
  flex: 0 0 54px;
}

.mega-menu-article-img img {
  width: 100%;
  height: 44px !important;
  object-fit: cover;
  display: block;
  opacity: 1 !important;
}

.mega-menu-article-img.image-load-holder {
  background: transparent !important;
  min-height: 44px !important;
}

.mega-menu-article-img.image-load-holder::before,
.mega-menu-article-img.image-load-holder::after {
  display: none !important;
}

.mega-menu-article-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.mega-menu-article-copy strong {
  color: var(--primary);
  font-size: 0.83rem;
  line-height: 1.35;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.mega-menu-article:hover .mega-menu-article-copy strong { color: var(--accent); }

.mega-menu-article-copy em {
  color: var(--text-muted);
  font-size: 0.71rem;
  font-style: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.image-load-holder { position: relative; background: #eef3f6; }
.image-load-holder img { opacity: 1; transition: opacity 0.25s ease, transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.image-load-holder.image-loading img { opacity: 0; }
.image-load-holder.image-loaded img { opacity: 1; }

.image-load-holder.image-loading::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(248,251,251,0.78), rgba(255,248,230,0.78));
  backdrop-filter: blur(2px);
}

.article-card-img.image-load-holder,
.navbar-search-suggestion-img.image-load-holder {
  min-height: 72px;
}

.article-card-img.image-load-holder { min-height: 220px; }

.navbar-brand.image-load-holder,
.footer-brand.image-load-holder,
.article-card-author.image-load-holder {
  background: transparent !important;
  min-height: 0 !important;
}

.category-featured-story.image-load-holder {
  background: transparent !important;
}

.navbar-brand.image-load-holder::before,
.navbar-brand.image-load-holder::after,
.footer-brand.image-load-holder::before,
.footer-brand.image-load-holder::after,
.article-card-author.image-load-holder::before,
.article-card-author.image-load-holder::after,
.category-featured-story.image-load-holder::before,
.category-featured-story.image-load-holder::after {
  display: none !important;
}

.navbar-brand.image-load-holder img,
.footer-brand.image-load-holder img,
.article-card-author.image-load-holder img,
.category-featured-story.image-load-holder img {
  opacity: 1 !important;
}

.image-load-holder.image-loading::after {
  content: '';
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid rgba(15,117,111,0.16);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: imageSpinner 0.8s linear infinite;
}

@keyframes imageSpinner {
  to { transform: rotate(360deg); }
}

/* ── Navbar Search ────────────────────────────────────────── */
.navbar-search {
  display: flex; align-items: center;
  background: var(--light);
  border: 1.5px solid var(--gray-light);
  border-radius: 50px;
  padding: 4px 12px;
  gap: 8px;
  transition: all var(--transition);
  position: relative;
}
.navbar-search:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(41,128,185,0.15);
  background: var(--white);
}
.navbar-search input {
  border: none; background: transparent;
  outline: none; font-size: 0.88rem;
  color: var(--primary-dark); width: 190px;
  font-weight: 800;
}
.navbar-search button {
  background: none; border: none;
  color: var(--accent); cursor: pointer;
  padding: 0; font-size: 0.9rem;
}

.tb-navbar-auth-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(13,32,64,0.1);
  border-radius: 999px;
  background: var(--primary-dark);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(13,32,64,0.14);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.tb-navbar-auth-link:hover {
  transform: translateY(-1px);
  background: var(--gold);
  color: var(--primary-dark) !important;
}
.tb-navbar-auth-link i { font-size: 0.9rem; }

.smart-navbar-search {
  z-index: 1100;
}

.navbar-search-suggestions {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(380px, 92vw);
  display: none;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(13,27,42,0.08);
  box-shadow: 0 24px 60px rgba(13,27,42,0.18);
}

.navbar-search-suggestions.is-open {
  display: block;
}

.navbar-search-suggestions::before {
  content: '';
  position: absolute;
  top: -7px;
  right: 28px;
  width: 14px;
  height: 14px;
  background: rgba(255,255,255,0.98);
  border-left: 1px solid rgba(13,27,42,0.08);
  border-top: 1px solid rgba(13,27,42,0.08);
  transform: rotate(45deg);
}

.navbar-search-suggestion-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2px 4px 10px;
}

.navbar-search-suggestion-head span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.navbar-search-suggestion-head i {
  color: var(--gold);
}

.navbar-search-suggestion {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 9px;
  color: var(--primary);
  text-decoration: none;
  border-radius: 12px;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.navbar-search-suggestion:hover,
.navbar-search-suggestion.is-active,
.navbar-search-suggestion:focus {
  color: var(--primary);
  background: linear-gradient(135deg, rgba(15,117,111,0.08), rgba(240,165,0,0.1));
  box-shadow: 0 10px 24px rgba(13,27,42,0.08);
  transform: translateX(3px);
  outline: none;
}

.navbar-search-suggestion-img {
  width: 58px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
}

.navbar-search-suggestion-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navbar-search-suggestion-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.navbar-search-suggestion-copy strong {
  color: var(--primary);
  font-size: 0.86rem;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.navbar-search-suggestion-copy em {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-style: normal;
}

.navbar-search-state {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--text-muted);
  font-size: 0.84rem;
  text-align: center;
}

.navbar-search-state .spinner-border {
  color: var(--gold);
}

.navbar-search-view-all {
  width: 100%;
  margin-top: 8px;
  border: none;
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--primary-dark);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  font-size: 0.8rem;
  font-weight: 900;
  cursor: pointer;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
  position: relative; overflow: hidden;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-primary-custom:hover::before { left: 100%; }
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,58,107,0.35);
  color: var(--white);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary-dark);
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240,165,0,0.4);
  color: var(--primary-dark);
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-white-outline:hover {
  background: var(--white);
  color: var(--primary);
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(240,165,0,0.12);
  color: var(--gold);
  border: 1px solid rgba(240,165,0,0.3);
  border-radius: 50px;
  padding: 4px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-title span { color: var(--accent); }

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin-bottom: 40px;
}

.section-divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  border-radius: 2px;
  margin: 12px 0 20px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg-image {
  position: absolute;
  inset: -4%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(1.08) contrast(1.03);
  will-change: transform, opacity;
  transform-origin: center center;
  animation: heroKenBurns 20s ease-in-out infinite alternate;
  transition: opacity 1.4s ease;
}
.hero-bg-layer { opacity: 0; }
.hero-bg-layer.is-active { opacity: 1; }

@keyframes heroKenBurns {
  0%   { transform: scale(1.05) translate3d(-1.5%, -1%, 0); }
  50%  { transform: scale(1.18) translate3d(1.5%, 1%, 0); }
  100% { transform: scale(1.08) translate3d(2%, -1.5%, 0); }
}

.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,32,64,0.85) 0%,
    rgba(26,58,107,0.6) 50%,
    rgba(41,128,185,0.3) 100%
  );
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-image { animation: none; transform: scale(1.05); }
}

.hero-content {
  position: relative; z-index: 2;
  color: var(--white);
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(240,165,0,0.2);
  border: 1px solid rgba(240,165,0,0.5);
  border-radius: 50px;
  color: var(--gold-light);
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 580px;
  line-height: 1.7;
}

/* Hero Search Box */
.hero-search-box {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-lg);
  padding: 8px 8px 8px 24px;
  display: flex; align-items: center; gap: 12px;
  max-width: 640px;
  transition: all var(--transition);
  position: relative;
  z-index: 20;
}

.hero-search-box:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(240,165,0,0.2);
}

.hero-search-box input {
  flex: 1;
  background: transparent; border: none; outline: none;
  color: var(--white); font-size: 1rem;
  font-family: "Times New Roman", Times, serif;
}

.hero-search-box input::placeholder { color: rgba(255,255,255,0.6); }

.hero-search-box .search-select {
  background: transparent; border: none; outline: none;
  color: var(--white); font-size: 0.88rem;
  border-left: 1px solid rgba(255,255,255,0.25);
  padding: 0 12px;
  cursor: pointer;
}

.hero-search-box .search-select option { background: var(--primary); }

.hero-search-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary-dark);
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}

.hero-search-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(240,165,0,0.4);
}

.hero-search-suggestions {
  left: 0;
  right: auto;
  width: min(640px, 88vw);
  max-height: min(390px, calc(100vh - 170px));
  overflow-y: auto;
  z-index: 30;
}

.hero-search-suggestions::before {
  left: 34px;
  right: auto;
}

.hero-search-suggestions .navbar-search-suggestion {
  grid-template-columns: 50px minmax(0, 1fr);
  padding: 7px;
}

.hero-search-suggestions .navbar-search-suggestion-img {
  width: 50px;
  height: 42px;
}

.hero-search-suggestions .navbar-search-suggestion-copy strong {
  font-size: 0.82rem;
}

.hero-ai-summary {
  margin: -3px 4px 8px;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.hero-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 24px;
}

.hero-tag {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}

.hero-tag:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary-dark);
}

/* Hero Stats */
.hero-stats {
  display: flex; gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Floating hero cards */
.hero-float-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 16px;
  color: var(--white);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Hero scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   SECTION WRAPPERS
   ============================================================ */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }
.section-gray { background: var(--light); }
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }

.section-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

/* ============================================================
   CARDS — Articles
   ============================================================ */
.article-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
  display: flex; flex-direction: column;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.article-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.article-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.article-card:hover .article-card-img img { transform: scale(1.08); }

.article-card-category {
  position: absolute;
  top: 16px; left: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary-dark);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-card-save {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  cursor: pointer;
  z-index: 4;
  transition: all var(--transition);
}
.article-card-save:hover,
.article-card-save.is-bookmarked {
  color: var(--gold);
  transform: scale(1.1);
}
.article-card-save.is-bookmarked {
  background: var(--primary-dark);
  box-shadow: 0 10px 26px rgba(13,32,64,0.24);
}

.article-card-body {
  padding: 20px;
  flex: 1;
  display: flex; flex-direction: column;
}

.article-card-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem;
  color: #36506f;
  font-weight: 700;
  margin-bottom: 10px;
}

.article-card-meta i { color: var(--accent); }

.article-card h3 {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.32;
  margin-bottom: 12px;
  transition: color var(--transition);
}

.article-card:hover h3 { color: var(--accent); }

.article-card p {
  font-size: 1.05rem;
  color: #405574;
  line-height: 1.62;
  flex: 1;
}

.article-card-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid var(--gray-light);
  margin-top: auto;
}

.article-card-author {
  display: flex; align-items: center; gap: 8px;
}

.article-card-author img {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.article-card-author span {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.read-time {
  font-size: 0.92rem;
  color: #405574;
  font-weight: 700;
  display: flex; align-items: center; gap: 4px;
}

/* ── Featured Article Card (large) ─────────────────────────── */
.article-card-featured {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.article-card-featured:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.article-card-featured .img-wrap {
  height: 340px;
  overflow: hidden;
  position: relative;
}

.article-card-featured .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.article-card-featured:hover .img-wrap img { transform: scale(1.06); }

.article-card-featured .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 40%, rgba(13,27,42,0.85));
}

.article-card-featured .img-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  color: var(--white);
}

/* ============================================================
   DESTINATION CARDS
   ============================================================ */
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  transition: all var(--transition);
}

.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.dest-card:hover img { transform: scale(1.1); }

.dest-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 30%, rgba(13,27,42,0.88));
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
  transition: all var(--transition);
}

.dest-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  margin-bottom: 4px;
}

.dest-card-count {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
}

.dest-card-btn {
  background: var(--gold);
  color: var(--primary-dark);
  border: none;
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
}

.dest-card:hover .dest-card-btn {
  opacity: 1;
  transform: translateY(0);
}

/* ── Continent Map ───────────────────────────────────────── */
.continent-map-board {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(29, 115, 161, 0.18);
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 25%, rgba(64,169,255,0.24), transparent 22%),
    radial-gradient(circle at 50% 29%, rgba(132,95,246,0.18), transparent 18%),
    radial-gradient(circle at 72% 42%, rgba(0,180,156,0.24), transparent 24%),
    radial-gradient(circle at 51% 64%, rgba(255,177,66,0.24), transparent 20%),
    radial-gradient(circle at 82% 72%, rgba(217,70,111,0.18), transparent 18%),
    linear-gradient(135deg, #eaf7ff 0%, #f8fbff 45%, #eefaf1 100%);
  box-shadow: 0 26px 70px rgba(13,27,42,0.13);
  isolation: isolate;
}

.continent-map-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13,27,42,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,27,42,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.48;
}

.continent-map-board::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 0;
  border: 1px solid rgba(255,255,255,0.68);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.36), transparent 28%, rgba(255,255,255,0.28) 72%, transparent),
    radial-gradient(circle at 50% 45%, rgba(255,255,255,0.4), transparent 42%);
  pointer-events: none;
}

.continent-map-route {
  position: absolute;
  z-index: 1;
  height: 2px;
  border-top: 2px dashed rgba(18,103,130,0.24);
  transform-origin: left center;
  pointer-events: none;
}
.continent-map-route::after {
  content: "";
  position: absolute;
  right: -3px;
  top: -5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(18,103,130,0.42);
  box-shadow: 0 0 0 6px rgba(18,103,130,0.08);
}
.route-1 { width: 30%; left: 24%; top: 36%; transform: rotate(-7deg); }
.route-2 { width: 24%; left: 47%; top: 47%; transform: rotate(10deg); }
.route-3 { width: 22%; left: 33%; top: 63%; transform: rotate(-22deg); }
}

.continent-map-color {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.34;
  mix-blend-mode: multiply;
}

.color-na { width: 23%; height: 22%; left: 14%; top: 24%; background: #40a9ff; }
.color-sa { width: 14%; height: 24%; left: 28%; top: 56%; background: #4caf50; }
.color-eu { width: 14%; height: 13%; left: 45%; top: 22%; background: #845ef7; }
.color-af { width: 17%; height: 26%; left: 47%; top: 43%; background: #ffb142; }
.color-as { width: 29%; height: 24%; left: 59%; top: 28%; background: #00b49c; }
.color-au { width: 14%; height: 12%; left: 76%; top: 68%; background: #ff6b8a; }

.continent-map-bg {
  position: absolute;
  z-index: 2;
  inset: 70px 42px 34px;
  background: url('../images/world-map.svg') center / contain no-repeat;
  opacity: 0.78;
  filter: sepia(0.04) saturate(1.8) hue-rotate(26deg) contrast(1.12) drop-shadow(0 22px 24px rgba(13,27,42,0.13));
}

.map-land { display: none; }

.continent-map-marker {
  position: absolute;
  z-index: 3;
  transform: translate(-50%, -50%);
  text-decoration: none;
}

.continent-map-marker .pin {
  --marker-color: #2e7d32;
  width: 18px;
  height: 18px;
  display: block;
  border-radius: 50%;
  background: var(--marker-color);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 8px color-mix(in srgb, var(--marker-color) 20%, transparent), 0 12px 22px rgba(13,27,42,0.2);
  animation: mapPulse 2.2s ease-in-out infinite;
}

.continent-map-marker .marker-card {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(0);
  min-width: 150px;
  padding: 10px 13px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), color-mix(in srgb, var(--marker-color, #2e7d32) 13%, white));
  border: 1px solid color-mix(in srgb, var(--marker-color, #2e7d32) 22%, white);
  box-shadow: 0 16px 36px rgba(13,27,42,0.12);
  color: var(--primary);
  opacity: 1;
  transition: all var(--transition);
  pointer-events: none;
  animation: markerFloat 4s ease-in-out infinite;
}

.continent-map-marker:hover .marker-card,
.continent-map-marker:focus .marker-card {
  transform: translateX(-50%) translateY(-8px);
  box-shadow: 0 24px 50px rgba(13,27,42,0.18);
}

.continent-map-marker .marker-card strong,
.continent-map-marker .marker-card em {
  display: block;
  font-style: normal;
  line-height: 1.2;
}

.continent-map-marker .marker-card strong { font-size: 0.9rem; }
.continent-map-marker .marker-card em { margin-top: 4px; color: var(--marker-color, var(--accent)); font-size: 0.78rem; font-weight: 800; }

.continent-map-marker.tone-blue { --marker-color: #1976d2; }
.continent-map-marker.tone-green { --marker-color: #2e9d59; }
.continent-map-marker.tone-violet { --marker-color: #6f42c1; }
.continent-map-marker.tone-amber { --marker-color: #d98600; }
.continent-map-marker.tone-coral { --marker-color: #e85d3f; }
.continent-map-marker.tone-teal { --marker-color: #009688; }
.continent-map-marker.tone-cyan { --marker-color: #008db8; }
.continent-map-marker.tone-rose { --marker-color: #d9466f; }

@keyframes mapPulse {
  0%, 100% { box-shadow: 0 0 0 7px color-mix(in srgb, var(--marker-color, #2e7d32) 16%, transparent), 0 10px 20px rgba(13,27,42,0.18); }
  50% { box-shadow: 0 0 0 13px color-mix(in srgb, var(--marker-color, #2e7d32) 4%, transparent), 0 14px 24px rgba(13,27,42,0.22); }
}

@keyframes markerFloat {
  0%, 100% { margin-bottom: 0; }
  50% { margin-bottom: 4px; }
}

.continent-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
  cursor: pointer;
  transition: all var(--transition);
}

.continent-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.continent-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.continent-card:hover img { transform: scale(1.12); }

.continent-map-chip {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.92);
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.continent-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,27,42,0.08), rgba(13,27,42,0.88));
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--white);
}

.continent-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 2px;
}

.continent-card-count {
  width: fit-content;
  font-size: 0.72rem;
  color: var(--primary-dark);
  background: var(--gold);
  border-radius: 999px;
  padding: 5px 10px;
  margin-bottom: 8px;
  font-weight: 800;
}

.continent-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: rgba(255,255,255,0.86);
  font-size: 0.82rem;
  font-weight: 700;
  transform: translateY(10px);
  opacity: 0;
  transition: all var(--transition);
}

.continent-card:hover .continent-card-link {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 767px) {
  .continent-map-board { min-height: 500px; border-radius: 14px; }
  .continent-map-bg { inset: 24px 10px; }
  .continent-map-route { display: none; }
  .continent-map-marker .marker-card {
    min-width: 96px;
    padding: 7px 8px;
  }
  .continent-map-marker .marker-card strong { font-size: 0.68rem; }
  .continent-map-marker .marker-card em { font-size: 0.64rem; }
}

/* ── News Card ───────────────────────────────────────────── */
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex; gap: 16px;
  padding: 16px;
  align-items: flex-start;
}

.news-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }

.news-card-img {
  width: 90px; height: 80px;
  border-radius: 8px; overflow: hidden;
  flex-shrink: 0;
}

.news-card-img img { width: 100%; height: 100%; object-fit: cover; }

.news-card-tag {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 4px;
}

.news-card h4 {
  font-size: 0.92rem;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 6px;
}

.news-card:hover h4 { color: var(--accent); }

.news-card-date {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* ============================================================
   TOP 10 SECTION
   ============================================================ */
.top10-item {
  display: flex; align-items: center; gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  margin-bottom: 16px;
}

.top10-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.top10-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900;
  color: var(--gray-light);
  line-height: 1;
  min-width: 52px;
}

.top10-item:hover .top10-number { color: var(--gold); }

.top10-img {
  width: 80px; height: 70px;
  border-radius: 10px; overflow: hidden; flex-shrink: 0;
}

.top10-img img { width: 100%; height: 100%; object-fit: cover; }

.top10-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--primary); margin-bottom: 4px;
}

.top10-sub {
  font-size: 0.98rem;
  color: #3f5574;
  font-weight: 700;
  line-height: 1.35;
  display: flex; align-items: center; gap: 6px;
}

.top-guide-cue {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 360px;
  margin: 0 0 24px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(243,250,245,0.96));
  border: 1px solid rgba(46,125,50,0.14);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.top-guide-cue::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,193,7,0.22), transparent);
  transform: translateX(-100%);
  animation: cueSweep 3s ease-in-out infinite;
}

.cue-orbit {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 0 0 8px rgba(46,125,50,0.12);
  animation: cuePulse 2.4s ease-in-out infinite;
}

.top-guide-cue span,
.top-guide-cue strong {
  position: relative;
  z-index: 1;
  display: block;
}

.top-guide-cue span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.top-guide-cue strong {
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  line-height: 1.2;
}

.cue-arrow {
  position: relative;
  z-index: 1;
  margin-left: auto;
  color: var(--gold);
  font-size: 1.35rem;
  animation: cueArrow 1.2s ease-in-out infinite;
}

@keyframes cueSweep {
  0%, 35% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes cuePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 8px rgba(46,125,50,0.12); }
  50% { transform: scale(1.06); box-shadow: 0 0 0 14px rgba(46,125,50,0.04); }
}

@keyframes cueArrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

.top-place-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  margin-bottom: 16px;
  overflow: visible;
}

.guide-roadmap {
  position: relative;
  max-width: 440px;
  margin: 0 0 26px;
  padding: 8px 0 6px 46px;
}

.guide-roadmap::before,
.guide-roadmap::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.guide-roadmap::before {
  left: 6px;
  top: 8px;
  width: 72px;
  height: calc(100% - 16px);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='72' height='320' viewBox='0 0 72 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36 4 C8 48 64 82 36 128 C8 174 64 210 36 258 C24 280 28 302 36 316' fill='none' stroke='%231e5f91' stroke-opacity='0.24' stroke-width='5' stroke-linecap='round' stroke-dasharray='11 12'/%3E%3C/svg%3E");
}

.guide-roadmap::after {
  left: 37px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(255,193,7,0.16), 0 0 18px rgba(255,193,7,0.45);
  animation: roadTravel 3.6s ease-in-out infinite;
}

.guide-road-stop {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 13px 14px 13px 0;
  color: var(--primary);
  text-decoration: none;
  animation: roadStopIn 0.7s ease both;
}

.guide-road-stop + .guide-road-stop { margin-top: 6px; }

.guide-road-pin {
  position: absolute;
  left: -42px;
  top: 14px;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--accent);
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(255,193,7,0.12), var(--shadow-sm);
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 46px;
  text-align: center;
  letter-spacing: 0;
  animation: pinPulse 2.2s ease-in-out infinite;
}

.guide-road-stop.stop-2 .guide-road-pin { left: -10px; }
.guide-road-stop.stop-2 { padding-left: 28px; }

.guide-road-stop > div {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(30,95,145,0.12);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.guide-road-stop:hover > div {
  transform: translateX(8px);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.guide-road-stop span,
.guide-road-stop strong,
.guide-road-stop em {
  display: block;
}

.guide-road-stop span {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.guide-road-stop strong {
  margin-top: 5px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  line-height: 1.24;
}

.guide-road-stop em {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
}

@keyframes roadTravel {
  0% { transform: translate(0, 0); opacity: 0; }
  12% { opacity: 1; }
  32% { transform: translate(-25px, 90px); }
  62% { transform: translate(18px, 180px); }
  88% { opacity: 1; }
  100% { transform: translate(0, 285px); opacity: 0; }
}

@keyframes roadStopIn {
  from { opacity: 0; transform: translateX(-14px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pinPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 7px rgba(255,193,7,0.12); }
  50% { transform: scale(1.07); box-shadow: 0 0 0 13px rgba(255,193,7,0.04); }
}

.top-place-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.top-place-main {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

.top-place-copy { min-width: 0; }

.top-place-item:hover .top10-number { color: var(--gold); }

.top-place-pop {
  position: absolute;
  right: 12px;
  top: 50%;
  width: min(280px, 72vw);
  padding: 14px 16px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(245,250,255,0.98));
  border: 1px solid rgba(46,125,50,0.12);
  box-shadow: var(--shadow-lg);
  color: var(--primary);
  text-decoration: none;
  transform: translate(18px, -50%) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 4;
}

.top-place-item:hover .top-place-pop,
.top-place-item:focus-within .top-place-pop {
  transform: translate(0, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.top-place-pop span,
.top-place-pop strong,
.top-place-pop em {
  display: block;
}

.top-place-pop span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.top-place-pop strong {
  margin-top: 6px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  line-height: 1.25;
}

.top-place-pop em {
  margin-top: 10px;
  color: var(--accent);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 800;
}

@media (max-width: 767px) {
  .top-place-item {
    align-items: flex-start;
    flex-direction: column;
  }
  .top-place-main { width: 100%; }
  .top-place-pop {
    position: static;
    width: 100%;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .top-place-item:hover .top-place-pop,
  .top-place-item:focus-within .top-place-pop {
    transform: none;
  }
}

/* ============================================================
   CATEGORY TAGS / PILLS
   ============================================================ */
.category-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.category-pill-primary {
  background: var(--light);
  color: var(--primary);
  border: 2px solid var(--gray-light);
}

.category-pill-primary:hover,
.category-pill-primary.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ── Special Category Cards ──────────────────────────────── */
.category-feature-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 260px;
  cursor: pointer;
  transition: all var(--transition);
}

.category-feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.category-feature-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.category-feature-card:hover img { transform: scale(1.1); }

.category-feature-card .card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 20%, rgba(13,27,42,0.88));
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 24px;
  color: var(--white);
}

.category-feature-card .card-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-dark);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.category-feature-card h3 {
  font-size: 1.25rem; font-weight: 700;
  color: var(--white); margin-bottom: 4px;
}

.category-feature-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
}

/* ============================================================
   FESTIVALS GRID
   ============================================================ */
.festival-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 240px;
  cursor: pointer;
  transition: all var(--transition);
}

.festival-card:hover { transform: scale(1.03) translateY(-4px); box-shadow: var(--shadow-lg); }

.festival-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.festival-card:hover img { transform: scale(1.12); }

.festival-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 30%, rgba(26,58,107,0.88));
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 20px;
  color: var(--white);
}

.festival-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--primary-dark);
  border-radius: 4px;
  padding: 2px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.festival-card h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.festival-card p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
}

.festival-world-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
  align-items: stretch;
}

.festival-spotlight {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 24px;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 28px 70px rgba(39, 21, 9, 0.22);
  isolation: isolate;
}

.festival-spotlight img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.8s ease;
  z-index: -3;
}

.festival-spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(255,194,71,0.44), transparent 26%),
    linear-gradient(0deg, rgba(35,17,7,0.92) 0%, rgba(35,17,7,0.38) 56%, rgba(35,17,7,0.04) 100%);
  z-index: -2;
}

.festival-spotlight:hover {
  color: var(--white);
}

.festival-spotlight:hover img {
  transform: scale(1.1);
}

.festival-spotlight-copy {
  width: min(600px, calc(100% - 42px));
  margin: 0 0 24px 24px;
  padding: 24px;
  border-radius: 18px;
  background: rgba(38, 18, 6, 0.68);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.34);
}

.festival-spotlight-copy .festival-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #ffc247, #f0a500);
  margin-bottom: 12px;
}

.festival-spotlight-copy h3 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 3.25rem);
  line-height: 1.04;
  margin-bottom: 12px;
}

.festival-spotlight-copy p {
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.festival-spotlight-copy strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffe092;
  font-weight: 900;
}

.festival-spark {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffc247;
  box-shadow: 0 0 0 8px rgba(255,194,71,0.16), 0 0 30px rgba(255,194,71,0.62);
  animation: festivalSpark 4.8s ease-in-out infinite;
}

.spark-one { top: 18%; right: 16%; }
.spark-two { top: 34%; left: 14%; animation-delay: 0.8s; background: #ff6b6b; }
.spark-three { right: 28%; bottom: 30%; animation-delay: 1.6s; background: #36d1c4; }

.festival-trail {
  position: relative;
  display: grid;
  gap: 13px;
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,248,226,0.72));
  border: 1px solid rgba(240,165,0,0.22);
  box-shadow: 0 22px 55px rgba(26,58,107,0.12);
}

.festival-trail::before {
  content: '';
  position: absolute;
  left: 46px;
  top: 58px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(#ffc247, #36d1c4, #7d72ff);
  opacity: 0.45;
}

.festival-trail-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  color: #8b4b08;
  background: rgba(240,165,0,0.13);
  border: 1px solid rgba(240,165,0,0.25);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.festival-trail-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 104px;
  padding: 10px;
  color: var(--primary);
  text-decoration: none;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(13,27,42,0.07);
  box-shadow: 0 12px 28px rgba(13,27,42,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.festival-trail-card:hover {
  color: var(--primary);
  transform: translateX(7px);
  box-shadow: 0 18px 42px rgba(13,27,42,0.14);
}

.festival-trail-img {
  height: 84px;
  border-radius: 14px;
  overflow: hidden;
}

.festival-trail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.festival-trail-card:hover img {
  transform: scale(1.08);
}

.festival-trail-body span {
  display: inline-flex;
  width: max-content;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 7px;
}

.tone-gold span { color: #8b4b08; background: rgba(240,165,0,0.14); }
.tone-rose span { color: #a83254; background: rgba(255,85,125,0.13); }
.tone-teal span { color: #087866; background: rgba(18,180,155,0.13); }
.tone-blue span { color: #105987; background: rgba(21,107,168,0.13); }
.tone-violet span { color: #5744a8; background: rgba(125,114,255,0.13); }

.festival-trail-body h4 {
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-size: 1.03rem;
  line-height: 1.2;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.festival-trail-body p {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin: 0;
}

@keyframes festivalSpark {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.78; }
  50% { transform: translateY(-12px) scale(1.18); opacity: 1; }
}

@media (max-width: 991.98px) {
  .festival-world-showcase {
    grid-template-columns: 1fr;
  }

  .festival-spotlight {
    min-height: 430px;
  }
}

@media (max-width: 575.98px) {
  .festival-spotlight {
    min-height: 390px;
    border-radius: 18px;
  }

  .festival-spotlight-copy {
    width: calc(100% - 28px);
    margin: 0 14px 18px;
    padding: 18px;
  }

  .festival-trail {
    padding: 12px;
  }

  .festival-trail::before {
    display: none;
  }

  .festival-trail-card {
    grid-template-columns: 82px minmax(0, 1fr);
  }
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.newsletter-form-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 540px;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 200px;
  border: none; outline: none;
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-family: "Times New Roman", Times, serif;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-input:focus {
  background: rgba(255,255,255,0.2);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(240,165,0,0.25);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-main {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15,44,74,0.96), rgba(18,26,38,0.98)),
    radial-gradient(circle at 18% 0%, rgba(240,165,0,0.22), transparent 34%);
  color: rgba(255,255,255,0.75);
  padding: 74px 0 0;
}

.footer-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent 78%);
  pointer-events: none;
}

.footer-main .container {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) minmax(150px, 0.75fr) minmax(170px, 0.85fr) minmax(250px, 1fr);
  gap: 34px;
  align-items: start;
}

.footer-brand-panel {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255,255,255,0.055);
  box-shadow: 0 20px 50px rgba(0,0,0,0.14);
}

.footer-brand-panel img,
.footer-brand img {
  height: 54px;
  width: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 22px;
  line-height: 1.6;
  max-width: 380px;
}

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  transition: all var(--transition);
  background: rgba(255,255,255,0.06);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.footer-head {
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.66);
  font-size: 0.88rem;
  transition: all var(--transition);
  display: flex; align-items: center; gap: 6px;
  text-decoration: none;
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }

.footer-links i {
  color: rgba(240,165,0,0.7);
  font-size: 0.72rem;
}

.footer-newsletter {
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 28px;
}

.footer-newsletter p {
  color: rgba(255,255,255,0.62);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: -6px 0 16px;
}

.footer-search-form {
  position: relative;
}

.footer-newsletter-input {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 12px 52px 12px 14px;
  color: var(--white);
  font-size: 0.88rem;
  outline: none;
  margin-bottom: 0;
  transition: all var(--transition);
}

.footer-newsletter-input:focus {
  border-color: var(--accent);
}

.footer-newsletter-input::placeholder { color: rgba(255,255,255,0.4); }

.footer-search-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  color: var(--primary-dark);
  background: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}

.footer-search-btn:hover {
  transform: translateX(2px);
  background: #f6c24c;
}

.footer-bottom {
  margin-top: 52px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 100px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.page-hero h1 { color: var(--white); position: relative; }
.page-hero .breadcrumb { position: relative; }
.page-hero .breadcrumb-item a { color: var(--gold-light); }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.article-hero {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.article-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.article-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 20%, rgba(13,27,42,0.9));
}

.article-hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px;
}

.article-hero-content h1,
.article-hero-content .article-meta {
  color: var(--white);
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
}

.article-body figure {
  margin: 32px 0;
}

.article-body img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.article-body h2 {
  font-size: 1.6rem;
  margin: 40px 0 16px;
  color: var(--primary);
}

.article-body h3 {
  font-size: 1.25rem;
  margin: 28px 0 12px;
  color: var(--primary);
}

.article-body p { margin-bottom: 20px; }

.article-body blockquote {
  border-left: 4px solid var(--gold);
  background: var(--light);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
  font-style: italic;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
}

.article-body ul, .article-body ol {
  margin: 16px 0 20px 20px;
}

.article-body li { margin-bottom: 8px; }

.article-tip-box {
  background: linear-gradient(135deg, rgba(26,58,107,0.08), rgba(41,128,185,0.06));
  border: 1px solid rgba(41,128,185,0.2);
  border-radius: var(--radius);
  padding: 24px;
  margin: 28px 0;
}

.article-tip-box .tip-head {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; color: var(--primary);
  margin-bottom: 12px; font-size: 0.95rem;
}

.article-tip-box .tip-head i { color: var(--gold); font-size: 1.1rem; }

/* Gallery Lightbox */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  height: 180px;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(13,27,42,0.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(13,27,42,0.95);
  z-index: 9999;
  align-items: center; justify-content: center;
}

.lightbox-overlay.active { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  background: rgba(255,255,255,0.1);
  border: none; border-radius: 50%;
  width: 44px; height: 44px;
  color: var(--white); font-size: 1.2rem;
  cursor: pointer; transition: all var(--transition);
}

.lightbox-close:hover { background: var(--gold); color: var(--primary-dark); }

.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none; border-radius: 50%;
  width: 50px; height: 50px;
  color: var(--white); font-size: 1.3rem;
  cursor: pointer; transition: all var(--transition);
}

.lightbox-nav:hover { background: var(--gold); color: var(--primary-dark); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* Social Share */
.social-share { display: flex; gap: 10px; flex-wrap: wrap; }

.social-share a {
  display: flex; align-items: center; gap: 8px;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
  text-decoration: none;
}

.share-fb { background: #1877F2; color: var(--white); }
.share-tw { background: #1DA1F2; color: var(--white); }
.share-pin { background: #E60023; color: var(--white); }
.share-wa { background: #25D366; color: var(--white); }
.share-copy { background: var(--gray-light); color: var(--text); }

.social-share a:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-widget-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-light);
  display: flex; align-items: center; gap: 8px;
}

.sidebar-widget-title i { color: var(--gold); }

/* ── Popular Posts ────────────────────────────────────────── */
.popular-post-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-light);
}

.popular-post-item:last-child { border-bottom: none; }

.popular-post-img {
  width: 68px; height: 56px;
  border-radius: 8px; overflow: hidden; flex-shrink: 0;
}

.popular-post-img img { width: 100%; height: 100%; object-fit: cover; }

.popular-post-title {
  font-size: 0.85rem; font-weight: 600;
  color: var(--primary); line-height: 1.4;
  margin-bottom: 4px;
  transition: color var(--transition);
}

.popular-post-item:hover .popular-post-title { color: var(--accent); }

.popular-post-date {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* Tag Cloud */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }

.tag-item {
  background: var(--light);
  color: var(--primary);
  border: 1.5px solid var(--gray-light);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.tag-item:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ============================================================
   SEARCH PAGE
   ============================================================ */
.search-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 80px 0;
}

.search-box-lg {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 8px 8px 8px 24px;
  display: flex; gap: 12px;
  max-width: 700px; margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.search-box-lg input {
  flex: 1; border: none; outline: none;
  font-size: 1.05rem; color: var(--text);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form .form-control {
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: all var(--transition);
  color: var(--text);
}

.contact-form .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(41,128,185,0.15);
}

.contact-form label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.contact-info-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; gap: 16px;
  align-items: flex-start;
  transition: all var(--transition);
}

.contact-info-card:hover { box-shadow: var(--shadow-md); }

.contact-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem;
  flex-shrink: 0;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.team-card-img {
  height: 240px; overflow: hidden;
}

.team-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card-img img { transform: scale(1.08); }

.team-card-body { padding: 20px; }

.team-card h4 {
  font-size: 1.1rem; font-weight: 700;
  color: var(--primary); margin-bottom: 4px;
}

.team-card .role {
  font-size: 0.82rem;
  color: var(--accent); font-weight: 600;
  margin-bottom: 10px;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--text-muted); line-height: 1.6;
}

.team-social { display: flex; justify-content: center; gap: 10px; margin-top: 12px; }
.team-social a {
  width: 34px; height: 34px;
  border: 1.5px solid var(--gray-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  font-size: 0.8rem;
  transition: all var(--transition);
}
.team-social a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ── Values / Stats Blocks ───────────────────────────────── */
.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.stat-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(26,58,107,0.1), rgba(41,128,185,0.1));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent); font-size: 1.5rem;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 900;
  color: var(--primary); line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================================
   TRAVEL NEWS PAGE
   ============================================================ */
.news-card-full {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.news-card-full:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.news-card-full .img-wrap { height: 200px; overflow: hidden; }
.news-card-full .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card-full:hover .img-wrap img { transform: scale(1.08); }
.news-card-full .body { padding: 20px; }

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}

.filter-bar select {
  border: 2px solid var(--gray-light);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  cursor: pointer;
  background: var(--white);
  transition: all var(--transition);
}

.filter-bar select:focus { border-color: var(--accent); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
}

#back-to-top.visible {
  opacity: 1; visibility: visible;
  transform: translateY(0);
}

#back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   LOADING ANIMATION (skeleton)
   ============================================================ */
.skeleton {
  background: linear-gradient(90deg, var(--gray-light) 25%, #eef2f7 50%, var(--gray-light) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 6px;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '›';
  color: var(--text-muted);
}

/* ============================================================
   ADVENTURE SECTION
   ============================================================ */
.adventure-mountain-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(12, 31, 47, 0.88) 0%, rgba(11, 48, 54, 0.94) 48%, rgba(8, 34, 35, 1) 100%),
    radial-gradient(circle at 16% 14%, rgba(240, 165, 0, 0.22), transparent 32%),
    var(--dark);
}

.adventure-mountain-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.32;
  pointer-events: none;
}

.adventure-mountain-section .container {
  position: relative;
  z-index: 1;
}

.adventure-mountain-stage {
  position: relative;
  min-height: 460px;
  margin-bottom: 34px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(116, 193, 214, 0.38) 0%, rgba(84, 139, 139, 0.2) 42%, rgba(20, 73, 59, 0.58) 100%);
  box-shadow: 0 24px 70px rgba(0,0,0,0.25);
}

.mountain-photo-layer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 26, 36, 0.12), rgba(7, 26, 36, 0.68) 58%, rgba(4, 19, 21, 0.94)),
    url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1500&q=80') center 42% / cover no-repeat;
  opacity: 0.66;
  transform: scale(1.04);
  animation: mountainPhotoBreath 12s ease-in-out infinite;
}

.mountain-sun {
  position: absolute;
  top: 38px;
  right: 9%;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe08a, #f0a500 58%, #e26d2f);
  box-shadow: 0 0 55px rgba(240,165,0,0.45);
  animation: summitGlow 4.5s ease-in-out infinite;
}

.mountain-cloud {
  position: absolute;
  height: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.44);
  filter: blur(1px);
  animation: cloudDrift 11s ease-in-out infinite;
}

.mountain-cloud::before,
.mountain-cloud::after {
  content: '';
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: inherit;
}

.mountain-cloud::before {
  left: 16px;
  width: 36px;
  height: 36px;
}

.mountain-cloud::after {
  right: 18px;
  width: 48px;
  height: 48px;
}

.cloud-one {
  top: 78px;
  left: 10%;
  width: 150px;
}

.cloud-two {
  top: 124px;
  left: 58%;
  width: 190px;
  animation-delay: -4s;
}

.mountain-ridge {
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: 0;
  transform-origin: center bottom;
}

.ridge-back {
  height: 68%;
  background: linear-gradient(135deg, rgba(177, 205, 190, 0.76), rgba(66, 109, 115, 0.82));
  clip-path: polygon(0 78%, 10% 52%, 20% 64%, 30% 32%, 42% 60%, 54% 24%, 68% 62%, 80% 34%, 92% 59%, 100% 42%, 100% 100%, 0 100%);
  opacity: 0.72;
  animation: mountainDrift 8s ease-in-out infinite;
}

.ridge-mid {
  height: 58%;
  background: linear-gradient(135deg, rgba(50, 128, 111, 0.88), rgba(31, 85, 86, 0.92) 54%, rgba(22, 63, 70, 0.95));
  clip-path: polygon(0 88%, 8% 58%, 18% 72%, 29% 40%, 40% 76%, 52% 34%, 63% 70%, 74% 45%, 86% 76%, 100% 50%, 100% 100%, 0 100%);
  opacity: 0.92;
  animation: mountainDrift 7s ease-in-out infinite reverse;
}

.ridge-front {
  height: 40%;
  background: linear-gradient(135deg, rgba(18, 58, 55, 0.96), rgba(11, 42, 46, 0.98) 62%, #071f24);
  clip-path: polygon(0 82%, 8% 58%, 17% 70%, 27% 48%, 38% 82%, 50% 44%, 61% 73%, 72% 52%, 82% 78%, 92% 46%, 100% 62%, 100% 100%, 0 100%);
}

.summit-trail {
  position: absolute;
  left: 7%;
  right: 8%;
  top: 43%;
  height: 142px;
  background-image: url("data:image/svg+xml,%3Csvg width='1000' height='150' viewBox='0 0 1000 150' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 118 C120 20 225 30 320 86 S505 148 615 72 810 -4 994 58' stroke='%23F0A500' stroke-width='7' stroke-linecap='round' stroke-dasharray='2 24'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.24));
}

.summit-trail::after {
  content: '';
  position: absolute;
  top: 78px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(240,165,0,0.2), 0 0 22px rgba(240,165,0,0.75);
  animation: trailRunner 6.5s ease-in-out infinite;
}

.summit-articles {
  position: absolute;
  inset: 0;
}

.summit-article {
  position: absolute;
  width: min(360px, 33vw);
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 16px 14px 12px;
  color: var(--white);
  text-decoration: none;
  background: rgba(8, 27, 34, 0.84);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(0,0,0,0.25);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(18px);
  animation: summitCardIn 0.75s ease forwards, summitFloat 4.5s ease-in-out infinite;
}

.summit-article:hover {
  color: var(--white);
  transform: translateY(-4px);
  border-color: rgba(240,165,0,0.72);
}

.summit-1 { left: 8%; top: 34%; }
.summit-2 { left: 37%; top: 15%; animation-delay: 0.18s, 0.6s; }
.summit-3 { right: 7%; top: 38%; animation-delay: 0.36s, 1.1s; }

.summit-marker {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #082229;
  background: linear-gradient(135deg, #ffe08a, var(--gold));
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 0 0 8px rgba(240,165,0,0.16);
}

.summit-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.summit-copy em {
  color: #ffc94d;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.summit-copy strong {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.22rem;
  line-height: 1.18;
  margin: 4px 0;
}

.summit-copy small {
  color: rgba(255,255,255,0.72);
  font-weight: 700;
  line-height: 1.35;
}

.adventure-card-row {
  position: relative;
  z-index: 2;
}

.adventure-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 22px 48px rgba(0,0,0,0.28);
}

.adventure-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.adventure-card:hover img { transform: scale(1.06); }

.adventure-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.3) 60%, transparent 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 32px;
  color: var(--white);
}

.adventure-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(240,165,0,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50px;
  padding: 5px 14px;
  max-width: max-content;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.adventure-card h3 {
  color: var(--white);
  font-size: 1.32rem;
  line-height: 1.18;
  margin-bottom: 8px;
}

.adventure-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.adventure-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 9px 18px;
  font-size: 0.82rem;
}

@keyframes summitGlow {
  0%, 100% { transform: scale(1); opacity: 0.92; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes mountainPhotoBreath {
  0%, 100% { transform: scale(1.04); }
  50% { transform: scale(1.09); }
}

@keyframes cloudDrift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(34px); }
}

@keyframes mountainDrift {
  0%, 100% { transform: translateX(0) scaleY(1); }
  50% { transform: translateX(12px) scaleY(1.025); }
}

@keyframes trailRunner {
  0% { left: 0; top: 88px; opacity: 0; }
  12% { opacity: 1; }
  34% { top: 26px; }
  56% { top: 102px; }
  78% { top: 18px; }
  100% { left: calc(100% - 14px); top: 62px; opacity: 0; }
}

@keyframes summitCardIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes summitFloat {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -8px; }
}

@media (max-width: 991.98px) {
  .adventure-mountain-stage {
    min-height: 560px;
  }

  .summit-article {
    width: calc(100% - 44px);
    left: 22px;
    right: 22px;
  }

  .summit-1 { top: 70px; }
  .summit-2 { top: 205px; }
  .summit-3 { top: 340px; }

  .summit-trail {
    left: 40px;
    right: auto;
    top: 94px;
    width: 6px;
    height: 330px;
    background-image: linear-gradient(to bottom, transparent 0 8px, var(--gold) 8px 18px, transparent 18px 30px);
    background-size: 6px 30px;
    opacity: 0.9;
  }

  .summit-trail::after {
    top: 0;
    left: -4px;
    animation: trailRunnerMobile 5.5s ease-in-out infinite;
  }
}

@media (max-width: 575.98px) {
  .adventure-mountain-stage {
    min-height: 610px;
    border-radius: 16px;
  }

  .summit-article {
    grid-template-columns: 44px 1fr;
    padding: 12px;
  }

  .summit-marker {
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
  }

  .summit-copy strong {
    font-size: 0.92rem;
  }

  .adventure-card {
    height: 340px;
  }
}

@keyframes trailRunnerMobile {
  0% { top: 0; opacity: 0; }
  12% { opacity: 1; }
  100% { top: 318px; opacity: 0; }
}

.adventure-summit-showcase {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.55fr);
  gap: 22px;
  padding: 18px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04)),
    rgba(255,255,255,0.05);
}

.summit-feature {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 22px;
  color: var(--white);
  text-decoration: none;
  isolation: isolate;
  box-shadow: 0 28px 70px rgba(0,0,0,0.35);
}

.summit-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.9s ease;
  z-index: -3;
}

.summit-feature-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  text-decoration: none;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.75s ease, transform 1.1s ease;
  pointer-events: none;
}

.summit-feature-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.summit-feature-slide img {
  z-index: -3;
}

.summit-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,17,24,0.9) 0%, rgba(3,17,24,0.46) 46%, rgba(3,17,24,0.12) 100%),
    linear-gradient(0deg, rgba(3,17,24,0.88) 0%, transparent 58%);
  z-index: -2;
}

.summit-feature-slide:hover,
.summit-feature:hover {
  color: var(--white);
}

.summit-feature-slide:hover img {
  transform: scale(1.11);
}

.summit-feature-shine {
  position: absolute;
  inset: -40% auto auto -30%;
  width: 55%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: rotate(16deg);
  animation: summitShine 5.5s ease-in-out infinite;
}

.summit-route-line {
  position: absolute;
  left: 8%;
  right: 11%;
  top: 36%;
  height: 110px;
  background-image: url("data:image/svg+xml,%3Csvg width='900' height='120' viewBox='0 0 900 120' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 92 C138 8 256 124 390 50 S612 4 710 70 828 110 894 34' stroke='%23FFC247' stroke-width='6' stroke-linecap='round' stroke-dasharray='1 20'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.38));
}

.summit-route-line::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 10px rgba(240,165,0,0.2), 0 0 28px rgba(255,194,71,0.85);
  animation: summitRouteDot 6s ease-in-out infinite;
}

.summit-flag {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(5, 20, 28, 0.72);
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffc247;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
}

.summit-feature-copy {
  width: min(560px, calc(100% - 48px));
  margin: 0 0 28px 28px;
  padding: 20px 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(3,17,24,0.78), rgba(3,17,24,0.42));
  box-shadow: 0 18px 45px rgba(0,0,0,0.42);
  backdrop-filter: blur(8px);
}

.summit-feature-copy span {
  display: inline-flex;
  color: #ffc247;
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 8px;
}

.summit-feature-copy strong {
  display: block;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.85rem, 3vw, 3.25rem);
  line-height: 1.03;
  text-shadow: 0 3px 12px rgba(0,0,0,0.78), 0 12px 32px rgba(0,0,0,0.45);
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.summit-feature-copy em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--white);
  font-style: normal;
  font-weight: 900;
}

.summit-town-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  padding: 22px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
    rgba(5, 21, 29, 0.72);
  border: 1px solid rgba(255,255,255,0.16);
  overflow: hidden;
}

.summit-panel-kicker {
  color: #ffc247;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.summit-town-chip {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
  padding: 13px;
  border-radius: 16px;
  color: var(--white);
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.13), rgba(255,255,255,0.055)),
    rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.16);
  box-sizing: border-box;
  overflow: hidden;
  opacity: 0;
  transform: translateX(18px);
  animation: summitChipIn 0.65s ease forwards, summitChipPulse 4s ease-in-out infinite;
}

.summit-town-chip:hover {
  color: var(--white);
  background: rgba(240,165,0,0.14);
  border-color: rgba(240,165,0,0.56);
}

.summit-town-chip .summit-marker {
  width: 42px;
  height: 42px;
  font-size: 0.9rem;
  box-shadow: 0 0 0 6px rgba(240,165,0,0.16);
}

.summit-town-chip .summit-copy {
  min-width: 0;
  overflow: hidden;
}

.summit-town-chip .summit-copy strong {
  display: block;
  max-width: 100%;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.05;
  margin: 2px 0 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.summit-town-chip .summit-copy small {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(255,255,255,0.78);
}

.summit-town-chip .summit-copy em {
  color: #ffc247;
  font-size: 0.74rem;
}

.summit-slider-dots {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 5;
  display: flex;
  gap: 8px;
}

.summit-slider-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.42);
  transition: width 0.3s ease, background 0.3s ease;
}

.summit-slider-dots span.is-active {
  width: 28px;
  background: var(--gold);
}

.adventure-expedition-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  color: var(--primary);
  text-decoration: none;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
  border: 1px solid rgba(15, 117, 111, 0.16);
  border-radius: 20px;
  overflow: hidden;
  transform: translateY(0);
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.adventure-card-row > div:nth-child(2) .adventure-expedition-card {
  transform: translateY(0);
}

.adventure-card-row > div:nth-child(3) .adventure-expedition-card {
  transform: translateY(0);
}

.adventure-expedition-card:hover {
  color: var(--primary);
  transform: translateY(-8px);
  border-color: rgba(240,165,0,0.42);
  box-shadow: 0 30px 70px rgba(0,0,0,0.32);
}

.adventure-expedition-card .adventure-mini-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.adventure-expedition-card .adventure-mini-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(3,17,24,0.42));
}

.adventure-expedition-card .adventure-mini-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.adventure-expedition-card:hover .adventure-mini-img img {
  transform: scale(1.08);
}

.adventure-expedition-card .adventure-mini-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 22px;
}

.adventure-expedition-card .adventure-card-overlay {
  position: static;
  inset: auto;
  background: none;
  padding: 0;
  color: var(--primary);
}

.adventure-expedition-card .adventure-badge {
  color: #0f756f;
  background: rgba(15,117,111,0.1);
  border-color: rgba(15,117,111,0.24);
  margin-bottom: 12px;
}

.adventure-expedition-card h3 {
  color: var(--primary);
  font-size: 1.22rem;
  line-height: 1.25;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.adventure-expedition-card p {
  color: var(--text-muted);
  -webkit-line-clamp: 3;
  margin-bottom: 18px;
}

.adventure-expedition-card .adventure-card-btn {
  margin-top: auto;
  color: #082229;
  background: linear-gradient(135deg, #ffc247, #f0a500);
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(240,165,0,0.22);
}

@keyframes summitShine {
  0%, 58% { left: -45%; opacity: 0; }
  68% { opacity: 1; }
  100% { left: 120%; opacity: 0; }
}

@keyframes summitRouteDot {
  0% { left: 0; top: 78px; opacity: 0; }
  12% { opacity: 1; }
  36% { top: 14px; }
  60% { top: 72px; }
  82% { top: 34px; }
  100% { left: calc(100% - 18px); top: 22px; opacity: 0; }
}

@keyframes summitChipIn {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes summitChipPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(240,165,0,0); }
  50% { box-shadow: 0 16px 32px rgba(240,165,0,0.12); }
}

@media (max-width: 991.98px) {
  .adventure-summit-showcase {
    grid-template-columns: 1fr;
  }

  .summit-feature {
    min-height: 430px;
  }

  .summit-town-panel {
    display: grid;
    grid-template-columns: 1fr;
  }

  .adventure-card-row > div:nth-child(n) .adventure-expedition-card {
    transform: none;
  }
}

@media (max-width: 575.98px) {
  .adventure-summit-showcase {
    padding: 10px;
    border-radius: 18px;
  }

  .summit-feature {
    min-height: 390px;
    border-radius: 16px;
  }

  .summit-feature-copy {
    width: calc(100% - 28px);
    margin: 0 14px 18px;
    padding: 18px;
  }

  .summit-feature-copy strong {
    font-size: clamp(1.45rem, 9vw, 2.15rem);
  }

  .summit-route-line {
    top: 30%;
  }
}

/* ============================================================
   SPIRITUAL SECTION
   ============================================================ */
.spiritual-retreat-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(248, 252, 248, 0.96), rgba(236, 246, 239, 0.92)),
    var(--white);
}

.spiritual-retreat-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 18%, rgba(240,165,0,0.16), transparent 28%),
    radial-gradient(circle at 82% 32%, rgba(15,117,111,0.14), transparent 30%);
  pointer-events: none;
}

.spiritual-retreat-section .container {
  position: relative;
  z-index: 1;
}

.spiritual-retreat-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: 26px;
  align-items: stretch;
}

.spiritual-feature-card {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 26px;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 26px 70px rgba(15, 64, 59, 0.22);
  isolation: isolate;
}

.spiritual-feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
  z-index: -3;
}

.spiritual-feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(7, 35, 33, 0.9) 0%, rgba(7,35,33,0.28) 58%, rgba(7,35,33,0.08) 100%),
    linear-gradient(90deg, rgba(7,35,33,0.62), transparent 68%);
  z-index: -2;
}

.spiritual-feature-card:hover {
  color: var(--white);
}

.spiritual-feature-card:hover img {
  transform: scale(1.08);
}

.spiritual-feature-glow {
  position: absolute;
  right: 9%;
  top: 12%;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,226,152,0.9), rgba(240,165,0,0.2) 62%, transparent 70%);
  animation: spiritualGlow 4.8s ease-in-out infinite;
}

.spiritual-feature-copy {
  width: min(590px, calc(100% - 48px));
  margin: 0 0 30px 30px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(5, 31, 29, 0.72);
  box-shadow: 0 18px 45px rgba(0,0,0,0.34);
  backdrop-filter: blur(9px);
}

.spiritual-feature-copy span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffe092;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  margin-bottom: 10px;
}

.spiritual-feature-copy h3 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 3.15rem);
  line-height: 1.04;
  margin-bottom: 12px;
  text-shadow: 0 4px 16px rgba(0,0,0,0.62);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.spiritual-feature-copy p {
  color: rgba(255,255,255,0.82);
  font-size: 0.94rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.spiritual-feature-copy em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffe092;
  font-style: normal;
  font-weight: 900;
}

.spiritual-retreat-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.spiritual-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.spiritual-retreat-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 150px;
  color: var(--primary);
  text-decoration: none;
  border-radius: 20px;
  border: 1px solid rgba(15,117,111,0.14);
  box-shadow: 0 18px 42px rgba(15, 64, 59, 0.12);
}

.spiritual-retreat-card:hover {
  color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(15, 64, 59, 0.18);
}

.spiritual-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.spiritual-card .img-wrap {
  height: 200px; overflow: hidden;
  position: relative;
}

.spiritual-retreat-card .img-wrap {
  height: 100%;
  min-height: 150px;
}

.spiritual-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.spiritual-card:hover .img-wrap img { transform: scale(1.08); }

.spiritual-card .body { padding: 20px; }

.spiritual-card-icon {
  position: absolute;
  left: 14px;
  bottom: 14px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #0f756f;
  background: #ffe092;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.spiritual-chip {
  display: inline-flex;
  width: max-content;
  color: #0f756f;
  background: rgba(15,117,111,0.1);
  border: 1px solid rgba(15,117,111,0.18);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.spiritual-card h4 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--primary); margin-bottom: 6px;
}

.spiritual-retreat-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  line-height: 1.18;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.spiritual-card p {
  font-size: 0.85rem;
  color: var(--text-muted); line-height: 1.6;
}

.spiritual-retreat-card p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.spiritual-retreat-card strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #0f756f;
  font-size: 0.82rem;
  margin-top: 6px;
}

@keyframes spiritualGlow {
  0%, 100% { transform: scale(1); opacity: 0.78; }
  50% { transform: scale(1.12); opacity: 1; }
}

.kosha-retreat-layout {
  grid-template-columns: minmax(360px, 1fr) minmax(310px, 0.75fr);
  gap: 34px;
}

.kosha-figure-card {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 44%, rgba(255,224,146,0.18), transparent 32%),
    linear-gradient(145deg, #f5eee0, #dcefed 58%, #f7f0dd);
  border: 1px solid rgba(15,117,111,0.15);
  box-shadow: 0 26px 70px rgba(15, 64, 59, 0.18);
}

.kosha-svg {
  width: min(680px, 100%);
  height: min(620px, 76vw);
  min-height: 520px;
  display: block;
}

.kosha-mandala-svg {
  transform-origin: 360px 375px;
  animation: koshaMandalaSpin 38s linear infinite;
}

.kosha-body .layer,
.kosha-arm-svg,
.kosha-leg-svg,
.kosha-head-svg {
  transform-box: fill-box;
  transform-origin: center;
}

.layer-physical,
.kosha-arm-svg,
.kosha-leg-svg,
.kosha-head-svg {
  fill: #f52b23;
}

.layer-energy { fill: #f59b20; }
.layer-mind { fill: #12b49b; }
.layer-wisdom { fill: #156ba8; }
.layer-bliss { fill: #24326f; }

.kosha-body .layer {
  animation: svgKoshaPulse 5.4s ease-in-out infinite;
}

.layer-energy { animation-delay: 0.25s; }
.layer-mind { animation-delay: 0.5s; }
.layer-wisdom { animation-delay: 0.75s; }
.layer-bliss { animation-delay: 1s; }

.kosha-callouts rect {
  filter: drop-shadow(0 10px 14px rgba(15,64,59,0.12));
}

.kosha-mandala {
  position: absolute;
  width: min(560px, 92%);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.28;
  background:
    repeating-radial-gradient(circle, rgba(15,117,111,0.26) 0 1px, transparent 1px 22px),
    conic-gradient(from 15deg, transparent 0 8deg, rgba(15,117,111,0.2) 8deg 10deg, transparent 10deg 18deg);
  animation: koshaMandalaSpin 34s linear infinite;
}

.kosha-person {
  position: relative;
  width: min(390px, 78vw);
  height: 510px;
  margin-top: 38px;
  isolation: isolate;
}

.kosha-aura,
.kosha-head,
.kosha-torso,
.kosha-arm,
.kosha-leg,
.kosha-inner {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}

.kosha-aura {
  bottom: 24px;
  border-radius: 48% 48% 38% 38%;
  opacity: 0.9;
  filter: drop-shadow(0 18px 18px rgba(15,64,59,0.14));
  animation: koshaLayerPulse 5s ease-in-out infinite;
}

.aura-physical {
  width: 355px;
  height: 450px;
  background: #f12d23;
  clip-path: polygon(44% 0, 56% 0, 71% 17%, 78% 50%, 100% 84%, 74% 97%, 50% 86%, 26% 97%, 0 84%, 22% 50%, 29% 17%);
}

.aura-energy {
  width: 255px;
  height: 365px;
  bottom: 50px;
  background: #f59b20;
  clip-path: polygon(48% 0, 52% 0, 64% 17%, 70% 58%, 93% 91%, 66% 99%, 50% 86%, 34% 99%, 7% 91%, 30% 58%, 36% 17%);
  animation-delay: 0.35s;
}

.aura-mind {
  width: 185px;
  height: 280px;
  bottom: 78px;
  background: #12b49b;
  clip-path: polygon(46% 0, 54% 0, 68% 20%, 70% 61%, 92% 95%, 64% 100%, 50% 86%, 36% 100%, 8% 95%, 30% 61%, 32% 20%);
  animation-delay: 0.7s;
}

.aura-wisdom {
  width: 122px;
  height: 205px;
  bottom: 95px;
  background: #156ba8;
  clip-path: polygon(44% 0, 56% 0, 70% 24%, 69% 62%, 91% 98%, 62% 100%, 50% 86%, 38% 100%, 9% 98%, 31% 62%, 30% 24%);
  animation-delay: 1.05s;
}

.aura-bliss {
  width: 68px;
  height: 128px;
  bottom: 128px;
  background: #24326f;
  border-radius: 45% 45% 38% 38%;
  animation-delay: 1.4s;
}

.kosha-head {
  top: 8px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f12d23;
  z-index: 5;
}

.kosha-head::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -16px;
  width: 22px;
  height: 18px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: #f12d23;
}

.kosha-torso {
  top: 56px;
  width: 100px;
  height: 195px;
  border-radius: 46% 46% 30% 30%;
  background: #f12d23;
  z-index: 4;
}

.kosha-arm {
  top: 118px;
  width: 52px;
  height: 225px;
  border-radius: 32px;
  background: #f12d23;
  z-index: 3;
}

.arm-left {
  left: calc(50% - 98px);
  transform: rotate(18deg);
  transform-origin: top center;
}

.arm-right {
  left: calc(50% + 98px);
  transform: rotate(-18deg);
  transform-origin: top center;
}

.kosha-leg {
  bottom: 32px;
  width: 190px;
  height: 62px;
  border-radius: 999px;
  background: #f12d23;
  z-index: 3;
}

.leg-left {
  left: calc(50% - 74px);
  transform: rotate(-18deg);
}

.leg-right {
  left: calc(50% + 74px);
  transform: rotate(18deg);
}

.kosha-inner {
  z-index: 6;
  border-radius: 999px 999px 45% 45%;
  animation: koshaInnerRise 4.8s ease-in-out infinite;
}

.inner-energy { top: 78px; width: 52px; height: 172px; background: #f59b20; }
.inner-mind { top: 128px; width: 42px; height: 124px; background: #12b49b; animation-delay: 0.35s; }
.inner-wisdom { top: 174px; width: 31px; height: 88px; background: #156ba8; animation-delay: 0.7s; }
.inner-bliss { top: 216px; width: 21px; height: 54px; background: #24326f; animation-delay: 1.05s; }

.kosha-label {
  position: absolute;
  z-index: 7;
  width: 190px;
  color: #17433d;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.kosha-label span {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 10px 24px rgba(15,64,59,0.12);
}

.kosha-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 96px;
  height: 1px;
  background: rgba(23,67,61,0.42);
}

.kosha-label-food { left: 7%; top: 24%; }
.kosha-label-energy { right: 7%; top: 34%; text-align: right; }
.kosha-label-mind { left: 5%; top: 47%; }
.kosha-label-wisdom { right: 7%; top: 58%; text-align: right; }
.kosha-label-bliss { left: 10%; top: 70%; }
.kosha-label-food::after,
.kosha-label-mind::after,
.kosha-label-bliss::after { left: 100%; }
.kosha-label-energy::after,
.kosha-label-wisdom::after { right: 100%; }

.kosha-retreat-list {
  align-content: center;
}

.kosha-retreat-list .spiritual-retreat-card {
  display: block;
  min-height: 0;
  position: relative;
  animation: spiritualCardFloat 6s ease-in-out infinite;
  isolation: isolate;
}

.kosha-retreat-list .spiritual-retreat-card:nth-child(2) { animation-delay: 0.35s; }
.kosha-retreat-list .spiritual-retreat-card:nth-child(3) { animation-delay: 0.7s; }
.kosha-retreat-list .spiritual-retreat-card:nth-child(4) { animation-delay: 1.05s; }
.kosha-retreat-list .spiritual-retreat-card:nth-child(5) { animation-delay: 1.4s; }

.kosha-retreat-list .spiritual-retreat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255,224,146,0.22) 42%, transparent 62%);
  transform: translateX(-120%);
  animation: spiritualCardShine 5.6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.kosha-retreat-list .spiritual-retreat-card:hover {
  animation: none;
}

.kosha-retreat-list .spiritual-retreat-card .body {
  position: relative;
  z-index: 1;
}

.kosha-chip.physical { color: #bc251d; background: rgba(241,45,35,0.11); border-color: rgba(241,45,35,0.2); }
.kosha-chip.energy { color: #9a5b09; background: rgba(245,155,32,0.14); border-color: rgba(245,155,32,0.26); }
.kosha-chip.mind { color: #087866; background: rgba(18,180,155,0.12); border-color: rgba(18,180,155,0.24); }
.kosha-chip.wisdom { color: #105987; background: rgba(21,107,168,0.12); border-color: rgba(21,107,168,0.24); }
.kosha-chip.bliss { color: #24326f; background: rgba(36,50,111,0.12); border-color: rgba(36,50,111,0.24); }

@keyframes spiritualCardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes spiritualCardShine {
  0%, 52% { transform: translateX(-120%); opacity: 0; }
  64% { opacity: 1; }
  100% { transform: translateX(120%); opacity: 0; }
}

@keyframes koshaMandalaSpin {
  to { transform: rotate(360deg); }
}

@keyframes koshaLayerPulse {
  0%, 100% { opacity: 0.86; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.025); }
}

@keyframes koshaInnerRise {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes svgKoshaPulse {
  0%, 100% { opacity: 0.96; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.018); }
}

@media (prefers-reduced-motion: reduce) {
  .kosha-mandala,
  .kosha-aura,
  .kosha-inner,
  .kosha-mandala-svg,
  .kosha-body .layer,
  .kosha-retreat-list .spiritual-retreat-card,
  .kosha-retreat-list .spiritual-retreat-card::after {
    animation: none;
  }
}

@media (max-width: 991.98px) {
  .spiritual-retreat-layout {
    grid-template-columns: 1fr;
  }

  .kosha-retreat-layout {
    grid-template-columns: 1fr;
  }

  .spiritual-feature-card {
    min-height: 430px;
  }
}

@media (max-width: 575.98px) {
  .spiritual-feature-card {
    min-height: 390px;
    border-radius: 18px;
  }

  .spiritual-feature-copy {
    width: calc(100% - 28px);
    margin: 0 14px 18px;
    padding: 18px;
  }

  .spiritual-retreat-card {
    grid-template-columns: 1fr;
  }

  .spiritual-retreat-card .img-wrap {
    height: 185px;
  }

  .kosha-figure-card {
    min-height: 560px;
    border-radius: 18px;
  }

  .kosha-svg {
    min-height: 500px;
    height: 540px;
  }

  .kosha-person {
    width: 310px;
    height: 430px;
    transform: scale(0.86);
    transform-origin: center bottom;
  }

  .kosha-label {
    width: auto;
    font-size: 0.62rem;
  }

  .kosha-label::after {
    width: 46px;
  }

  .kosha-label-food { left: 4%; top: 19%; }
  .kosha-label-energy { right: 4%; top: 29%; }
  .kosha-label-mind { left: 4%; top: 43%; }
  .kosha-label-wisdom { right: 4%; top: 56%; }
  .kosha-label-bliss { left: 6%; top: 72%; }
}

/* ============================================================
   BEST TIME SECTION
   ============================================================ */
.season-card {
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  color: var(--white);
}

.season-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.season-card.spring { background: linear-gradient(135deg, #27ae60, #2ecc71); }
.season-card.summer { background: linear-gradient(135deg, #f39c12, #f0a500); }
.season-card.autumn { background: linear-gradient(135deg, #d35400, #e67e22); }
.season-card.winter { background: linear-gradient(135deg, #2980b9, #1a3a6b); }

.season-icon { font-size: 3rem; margin-bottom: 16px; }

.season-card h3 {
  font-size: 1.25rem; font-weight: 700;
  margin-bottom: 8px;
}

.season-card.spring h3, .season-card.summer h3 { color: inherit; }
.season-card.autumn h3, .season-card.winter h3 { color: var(--white); }

/* ============================================================
   GUIDES SECTION
   ============================================================ */
.guide-card {
  display: flex; gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  align-items: flex-start;
}

.guide-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }

.guide-card-num {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}

.guide-card h4 {
  font-size: 1rem; font-weight: 700;
  color: var(--primary); margin-bottom: 4px;
}

.guide-card p {
  font-size: 0.85rem;
  color: var(--text-muted); line-height: 1.6;
}

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 991px) {
  .mega-menu { position: relative; box-shadow: none; border: none; padding: 16px; }
  .navbar-main .nav-link { padding: 10px 14px !important; }
  .navbar-main .nav-link::after { display: none; }
  .hero-stats { gap: 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .article-hero { height: 360px; }
  .article-hero-content { padding: 24px; }
  .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand-panel { grid-column: 1 / -1; }
  .footer-newsletter { border-left: 0; padding-left: 0; }
}

@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }
  .section-pad-sm { padding: 36px 0; }
  .hero-section { min-height: 90vh; }
  .hero-title { font-size: 2.2rem; }
  .hero-search-box { flex-direction: column; border-radius: var(--radius); padding: 16px; }
  .hero-search-box .search-select { border-left: none; border-top: 1px solid rgba(255,255,255,0.2); padding: 8px 0; }
  .newsletter-form { flex-direction: column; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .top-bar .d-flex { flex-direction: column; gap: 4px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; }
  .footer-main { padding-top: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand-panel { padding: 22px; }
  .footer-brand-panel img,
  .footer-brand img { height: 46px; }
  .footer-tagline { max-width: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 12px; }
}

@media (max-width: 575.98px) {
  .navbar-main .container {
    min-height: 64px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .navbar-brand img {
    height: 42px;
    max-width: 210px;
    object-fit: contain;
  }

  .navbar-toggler {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
  }

  .hero-section {
    min-height: calc(100svh - 64px);
    align-items: flex-start;
    padding: 16px 0 30px;
  }

  .hero-bg::after {
    background: linear-gradient(
      180deg,
      rgba(7,16,34,0.58) 0%,
      rgba(13,32,64,0.86) 34%,
      rgba(13,32,64,0.95) 100%
    );
  }

  .hero-section .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-content .row {
    --bs-gutter-x: 0;
  }

  .hero-badge {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
    border-radius: 999px;
    padding: 8px 14px;
    margin-bottom: 20px;
    font-size: 0.72rem;
    line-height: 1.55;
    letter-spacing: 0.07em;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  }

  .hero-title {
    font-size: 1.82rem;
    line-height: 1.08;
    margin-bottom: 18px;
    max-width: 340px;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 24px;
    max-width: 350px;
    color: rgba(255,255,255,0.9);
  }

  .hero-search-box {
    background: rgba(13,32,64,0.64);
    border-color: rgba(255,255,255,0.22);
    box-shadow: 0 16px 42px rgba(0,0,0,0.22);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(104px, auto);
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    padding: 12px;
    border-radius: 10px;
  }

  .hero-search-box > i {
    display: none;
  }

  .hero-search-box input {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 42px;
    padding: 0 10px;
    text-align: left;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.16);
  }

  .hero-search-box input::placeholder {
    color: rgba(255,255,255,0.72);
  }

  .hero-search-box .search-select {
    min-width: 0;
    width: 100%;
    height: 44px;
    border-left: 0;
    border-top: 0;
    border-radius: 9px;
    background: rgba(255,255,255,0.08);
    padding: 0 10px;
    font-size: 0.86rem;
  }

  .hero-search-btn {
    height: 44px;
    min-width: 104px;
    justify-content: center;
    padding: 0 16px;
    border-radius: 10px;
    font-size: 0.92rem;
  }

  .hero-search-suggestions {
    width: 100%;
    max-height: min(330px, calc(100vh - 210px));
  }

  .hero-stats {
    margin-top: 18px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    background: rgba(13,32,64,0.38);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 12px;
  }

  .hero-stat {
    text-align: left;
  }

  .hero-stat-num {
    font-size: 1.55rem;
  }

  .hero-stat-label {
    font-size: 0.68rem;
  }

  .hero-tags {
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 16px;
    padding: 2px 2px 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .hero-tags::-webkit-scrollbar {
    display: none;
  }

  .hero-tag {
    flex: 0 0 auto;
    max-width: 84vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255,255,255,0.13);
    font-size: 0.8rem;
  }
}

/* ── Utilities ───────────────────────────────────────────── */
.text-gold { color: var(--gold) !important; }
.text-accent { color: var(--accent) !important; }
.text-primary-custom { color: var(--primary) !important; }
.bg-primary-custom { background: var(--primary) !important; }
.bg-gold { background: var(--gold) !important; }
.fw-playfair { font-family: 'Playfair Display', serif; }
.rounded-custom { border-radius: var(--radius) !important; }
.shadow-custom { box-shadow: var(--shadow-md) !important; }

/* ============================================================
   ANIMATION UTILITIES
   Content is ALWAYS visible — animations are a visual enhancement.
   This prevents blank sections when JS/IntersectionObserver is slow.
   ============================================================ */
.fade-up {
  /* Content visible by default — animation triggers when scrolled in */
  transition: opacity 0.65s ease, transform 0.65s ease;
}

/* JS adds 'will-animate' on page load to elements not yet in view */
.will-animate.fade-up {
  opacity: 0;
  transform: translateY(28px);
}

.fade-up.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.fade-in {
  transition: opacity 0.65s ease;
}

.will-animate.fade-in {
  opacity: 0;
}

.fade-in.in-view {
  opacity: 1 !important;
}

/* ── Footer Logo White (for dark footer background) ─────── */
.footer-main a > img,
.footer-brand {
/*  filter: brightness(0) invert(1);
  opacity: 0.92;*/
}

.footer-main a > img:hover,
.footer-brand:hover {
  opacity: 1;
}

/* ── Footer Newsletter Input ─────────────────────────────── */
.footer-newsletter-input {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 12px 52px 12px 14px;
  color: var(--white);
  font-size: 0.88rem;
  font-family: "Times New Roman", Times, serif;
  outline: none;
  transition: all var(--transition);
  margin-bottom: 0;
  display: block;
}

.footer-newsletter-input::placeholder { color: rgba(255,255,255,0.45); }
.footer-newsletter-input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}

.newsletter-submit {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tbites-cf7-subscribe-form {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.tbites-subscribe-row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.tbites-subscribe-row input {
  flex: 1 1 240px;
  min-width: 200px;
  border: 1px solid rgba(15,44,74,0.16);
  border-radius: 999px;
  padding: 12px 18px;
  background: #fff;
  color: var(--text);
  outline: none;
}

.tbites-subscribe-row input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(240,165,0,0.18);
}

.tbites-subscribe-row button,
.tbites-subscribe-row a {
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--primary-dark);
  font-weight: 800;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none !important;
  transition: background var(--transition), transform var(--transition);
}

.tbites-subscribe-row button:hover,
.tbites-subscribe-row a:hover {
  background: var(--gold-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.tbites-subscribe-row button:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}

.tbites-cf7-subscribe-dark .tbites-subscribe-row input,
.tbites-cf7-subscribe-compact .tbites-subscribe-row input {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.tbites-cf7-subscribe-dark .tbites-subscribe-row input::placeholder,
.tbites-cf7-subscribe-compact .tbites-subscribe-row input::placeholder {
  color: rgba(255,255,255,0.58);
}

.tbites-cf7-subscribe-compact .tbites-subscribe-row {
  align-items: stretch;
}

.tbites-cf7-subscribe-compact .tbites-subscribe-row input {
  flex-basis: 100%;
  border-radius: 8px;
}

.tbites-cf7-subscribe-compact .tbites-subscribe-row button,
.tbites-cf7-subscribe-compact .tbites-subscribe-row a {
  width: 100%;
  border-radius: 8px;
}

.tbites-subscribe-note,
.tb-recaptcha-wrap.tbites-subscribe-recaptcha {
  margin-top: 10px;
}

.newsletter-modal .tb-recaptcha-wrap {
  max-width: 100%;
  overflow: hidden;
}

.newsletter-modal .g-recaptcha {
  max-width: 100%;
  transform-origin: left top;
}

body > .article-newsletter-auto-form {
  position: fixed !important;
  inset: 0 !important;
  z-index: 5200 !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  pointer-events: none;
}

body > .article-newsletter-auto-form .newsletter-modal {
  pointer-events: auto;
}

.tbites-subscribe-note {
  color: rgba(255,255,255,0.62);
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tbites-subscribe-message {
  display: none;
  margin-top: 10px;
  border-radius: 8px;
  padding: 9px 11px;
  font-weight: 800;
  font-size: .84rem;
}

.tbites-subscribe-message.success {
  display: block;
  background: #e8f7ef;
  color: #176442;
}

.tbites-subscribe-message.error {
  display: block;
  background: #fff1f1;
  color: #9f1d1d;
}

/* Contact page CF7 labels are plugin/admin titles; keep frontend wording editorial. */
.tbites-cf7-head span,
.tbites-cf7-head strong {
  color: transparent !important;
  font-size: 0 !important;
}

.tbites-cf7-head span::before,
.tbites-cf7-head strong::before {
  color: #0f2c4a;
}

.tbites-cf7-head span::before {
  content: "Get in touch";
  font-size: .75rem;
}

.tbites-cf7-head strong::before {
  content: "Send us a message";
  font-size: 1.5rem;
}
/* ── Best Time to Travel — V2 ─────────────────────────────── */
.season-card-v2 {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  background: linear-gradient(135deg, #1a3a6b, #0d2040);
  isolation: isolate;
}
.season-card-v2 .season-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.season-card-v2 .season-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13,27,42,0.25) 0%, rgba(13,27,42,0.55) 45%, rgba(13,27,42,0.92) 100%);
}
.season-card-v2 > .season-card-top,
.season-card-v2 > .season-card-bottom { position: relative; z-index: 2; }
.season-card-v2:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.season-card-v2:hover .season-bg { transform: scale(1.06); }
.season-card-v2 .season-bg { transition: transform 0.7s ease; }
.season-card-v2 .season-card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.season-icon-v2 {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.18); backdrop-filter: blur(8px);
  display: grid; place-items: center; font-size: 1.05rem; color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}
.season-months-pill {
  background: var(--gold); color: var(--primary-dark);
  font-size: 0.86rem; font-weight: 900; letter-spacing: 0.3px;
  padding: 7px 14px; border-radius: 999px; text-transform: uppercase;
}
.season-card-bottom h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; font-weight: 800; margin: 0 0 6px; color: #fff;
  line-height: 1.04;
}
.season-card-bottom p {
  font-size: 1rem; color: rgba(255,255,255,0.9);
  margin: 0 0 14px; line-height: 1.45;
  font-weight: 600;
}
.season-featured {
  display: block; padding: 14px 16px; margin-bottom: 14px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px; backdrop-filter: blur(8px);
  text-decoration: none; color: #fff;
  transition: background 0.2s ease;
}
.season-featured:hover { background: rgba(255,255,255,0.2); color: #fff; }
.season-featured-tag {
  display: inline-block; font-size: 0.78rem; font-weight: 900;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 6px;
}
.season-featured-title {
  display: block; font-size: 1rem; font-weight: 800; line-height: 1.36;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.season-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px;
  background: var(--gold); color: var(--primary-dark) !important;
  font-size: 1rem; font-weight: 900; text-decoration: none !important;
  transition: all 0.2s ease;
}
.season-cta:hover { background: var(--gold-light); transform: translateX(2px); }

/* Monthly strip */
.month-strip-wrap {
  margin-top: 32px; padding: 28px 22px;
  background: linear-gradient(135deg, #fff 0%, #f5f8fc 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 28px rgba(13,27,42,0.06);
  border: 1px solid rgba(13,27,42,0.05);
}
.month-strip-head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.month-strip-kicker {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.78rem; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.month-strip-hint { font-size: 0.78rem; color: var(--text-muted); }
.month-strip {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px;
}
.month-btn {
  flex: 1 1 auto; min-width: 64px;
  padding: 9px 14px; border-radius: 10px;
  background: #fff; color: var(--text);
  border: 1px solid rgba(13,27,42,0.1);
  font-size: 0.82rem; font-weight: 700;
  cursor: pointer; transition: all 0.18s ease;
}
.month-btn:hover { border-color: var(--accent); color: var(--accent); }
.month-btn.active {
  background: var(--primary); color: #fff; border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(26,58,107,0.25);
}
.month-panels { position: relative; min-height: 180px; }
.month-panel {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.month-panel.active { display: grid; }
.month-tile {
  display: flex; gap: 10px; padding: 10px;
  background: #fff; border-radius: 12px;
  border: 1px solid rgba(13,27,42,0.06);
  text-decoration: none !important; color: var(--text) !important;
  transition: all 0.2s ease;
}
.month-tile:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(13,27,42,0.08); }
.month-tile-img {
  flex: 0 0 64px; width: 64px; height: 64px;
  border-radius: 8px; overflow: hidden;
}
.month-tile-img img { width: 100%; height: 100%; object-fit: cover; }
.month-tile-body { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.month-tile-body strong {
  font-size: 0.82rem; font-weight: 600; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.month-tile-body span { font-size: 0.7rem; color: var(--accent); margin-top: 4px; font-weight: 600; }
.month-empty { padding: 30px; text-align: center; color: var(--text-muted); font-size: 0.85rem; }

@media (max-width: 575px) {
  .season-card-v2 { height: 350px; }
  .season-card-bottom h3 { font-size: 1.58rem; }
  .season-card-bottom p { font-size: 0.96rem; }
  .season-featured-title { font-size: 0.94rem; }
  .season-cta { font-size: 0.94rem; padding: 11px 18px; }
  .month-btn { font-size: 0.74rem; padding: 7px 10px; min-width: 52px; }
  .month-strip-wrap { padding: 20px 14px; }
}

/* ── Destination detail page ───────────────────────────── */
.destination-breadcrumb { padding: 14px 0; background: #f5f8fc; border-bottom: 1px solid rgba(13,27,42,0.06); font-size: 0.82rem; }
.destination-breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.destination-breadcrumb li { display: inline-flex; align-items: center; color: var(--text-muted); }
.destination-breadcrumb li + li::before { content: "/"; margin: 0 8px; color: rgba(13,27,42,0.3); }
.destination-breadcrumb a { color: var(--accent); text-decoration: none; }
.destination-breadcrumb a:hover { text-decoration: underline; }
.destination-breadcrumb [aria-current="page"] { color: var(--text); font-weight: 600; }

.destination-hero { position: relative; min-height: 460px; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.destination-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.destination-hero-overlay { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13,27,42,0.25) 0%, rgba(13,27,42,0.55) 50%, rgba(13,27,42,0.92) 100%); }
.destination-hero-content { position: relative; z-index: 2; padding: 60px 20px 50px; }
.destination-hero-content .section-label { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.destination-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; margin: 12px 0 14px; color: #fff; }
.destination-hero-tagline { font-size: 1.05rem; max-width: 720px; color: rgba(255,255,255,0.9); line-height: 1.55; margin: 0; }

.destination-facts { padding: 28px 0; background: #fff; border-bottom: 1px solid rgba(13,27,42,0.05); }
.fact-card { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; padding: 16px 18px; border-radius: 14px; background: linear-gradient(135deg,#fff 0%, #f5f8fc 100%); border: 1px solid rgba(13,27,42,0.06); height: 100%; }
.fact-card i { color: var(--accent); font-size: 1.2rem; margin-bottom: 2px; }
.fact-card strong { font-size: 1.05rem; color: var(--text); font-weight: 700; }
.fact-card span { font-size: 0.78rem; color: var(--text-muted); }

.destination-overview-body { font-size: 1rem; line-height: 1.7; color: var(--text); }
.destination-toc { position: sticky; top: 100px; background: #fff; border: 1px solid rgba(13,27,42,0.06); border-radius: 14px; padding: 18px 20px; box-shadow: 0 6px 18px rgba(13,27,42,0.05); }
.destination-toc h3 { font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.6px; color: var(--text-muted); margin: 0 0 10px; }
.destination-toc ul { list-style: none; padding: 0; margin: 0; }
.destination-toc li { margin: 4px 0; }
.destination-toc a { color: var(--accent); text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.destination-toc a:hover { text-decoration: underline; }

.destination-guide { background: #f3f7fb; }
.destination-guide-intro { max-width: 780px; color: var(--text-muted); font-size: 0.98rem; line-height: 1.7; margin: 0 0 28px; }
.destination-guide-block { margin-top: 34px; scroll-margin-top: 110px; }
.destination-guide-head { --guide-accent: var(--accent, #1a3a6b); position: relative; display: block; margin-bottom: 20px; padding: 0 0 14px; background: transparent; border-bottom: 1px solid rgba(13,27,42,0.1); overflow: visible; box-shadow: none; }
.destination-guide-head::before { display: none; }
.destination-guide-head::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 86px; height: 3px; border-radius: 99px; background: var(--guide-accent); pointer-events: none; }
.destination-guide-head h2,
.destination-itinerary h2,
.destination-planning-tips h2 { font-family: 'Playfair Display', serif; font-size: 1.55rem; font-weight: 800; color: var(--text); margin: 0; }
.destination-guide-head h2 { position: relative; z-index: 1; color: var(--primary-dark, #0d2040); font-size: clamp(1.45rem, 2.5vw, 2rem); line-height: 1.12; }
.destination-guide-head p { display: none; }
.destination-guide-label { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; color: var(--guide-accent); background: color-mix(in srgb, var(--guide-accent) 10%, #fff); border: 1px solid color-mix(in srgb, var(--guide-accent) 20%, transparent); border-radius: 999px; padding: 6px 11px; font-size: 0.72rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 9px; }
.destination-guide-label i { position: static; transform: none; width: auto; height: auto; display: inline-flex; align-items: center; justify-content: center; font-size: 0.86rem; color: var(--guide-accent); }
.destination-guide-block > .row { padding: 0 2px; }
.destination-guide-block .article-card { border: 0; border-radius: 8px; overflow: hidden; background: #fff; box-shadow: 0 12px 28px rgba(13,27,42,0.08); transition: transform 0.22s ease, box-shadow 0.22s ease; }
.destination-guide-block .article-card:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(13,27,42,0.13); }
.destination-guide-block .article-card a { display: grid; grid-template-rows: 210px 1fr; height: 100%; color: inherit; }
.destination-guide-block .article-card-img { height: 210px; border-radius: 0; position: relative; }
.destination-guide-block .article-card-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,27,42,0) 45%, rgba(13,27,42,0.35) 100%); pointer-events: none; }
.destination-guide-block .article-card-img img { height: 100%; object-fit: cover; }
.destination-guide-block .article-card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; min-height: 236px; }
.destination-guide-block .article-meta { order: -1; margin-bottom: 10px; color: var(--accent); font-size: 0.92rem; font-weight: 800; }
.destination-guide-block .article-card h3 { font-size: 1.18rem; line-height: 1.34; margin-bottom: 11px; color: var(--primary-dark, #0d2040); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.destination-guide-block .article-card p { font-size: 1.04rem; line-height: 1.62; color: #405574; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.destination-guide-block .read-more { margin-top: auto; display: inline-flex; align-items: center; gap: 7px; color: var(--accent); font-size: 1rem; font-weight: 900; }

.guide-places .destination-guide-head { --guide-accent: #1a6fb0; }
.guide-places > .row > [class*="col-"]:first-child { flex: 0 0 auto; width: 66.666667%; }
.guide-places > .row > [class*="col-"]:first-child .article-card a { grid-template-rows: 300px 1fr; }
.guide-places > .row > [class*="col-"]:first-child .article-card-img { height: 300px; }
.guide-places > .row > [class*="col-"]:first-child .article-card-body { min-height: 190px; }
.guide-places > .row > [class*="col-"]:first-child h3 { font-size: 1.25rem; -webkit-line-clamp: 2; }

.guide-beaches { padding: 26px; border-radius: 8px; background: linear-gradient(135deg, rgba(29,132,181,0.1), rgba(240,165,0,0.08)); border: 1px solid rgba(29,132,181,0.14); }
.guide-beaches .destination-guide-head { --guide-accent: #1d84b5; }
.guide-beaches .article-card { border-bottom: 4px solid #1d84b5; }
.guide-beaches .article-card-img { height: 225px; }
.guide-beaches .article-card a { grid-template-rows: 225px 1fr; }
.guide-beaches .read-more { color: #1d84b5; }

.guide-islands { padding: 26px; border-radius: 8px; background: linear-gradient(135deg, rgba(20,110,128,0.12), rgba(91,192,190,0.1)); border: 1px solid rgba(20,110,128,0.16); }
.guide-islands .destination-guide-head { --guide-accent: #146e80; }
.guide-islands .article-card { border-radius: 8px 8px 28px 8px; }
.guide-islands .article-card-img { height: 235px; }
.guide-islands .article-card a { grid-template-rows: 235px 1fr; }
.guide-islands .read-more { color: #146e80; }

.guide-hotels { padding: 28px; border-radius: 8px; background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(246,249,253,0.92)); border: 1px solid rgba(13,27,42,0.08); }
.guide-hotels .destination-guide-head { --guide-accent: #a66d24; margin-bottom: 22px; }
.guide-hotels .destination-guide-label { color: var(--guide-accent); background: rgba(166,109,36,0.1); border-color: rgba(166,109,36,0.22); }
.guide-hotels .article-card { border: 1px solid rgba(13,27,42,0.08); border-top: 4px solid #d6a24a; border-radius: 8px; box-shadow: 0 16px 36px rgba(13,27,42,0.09); }
.guide-hotels .article-card:hover { box-shadow: 0 22px 48px rgba(13,27,42,0.14); }
.guide-hotels .article-card a { grid-template-rows: 224px 1fr; }
.guide-hotels .article-card-img { height: 224px; background: #dfe7ef; }
.guide-hotels .article-card-img::after { background: linear-gradient(180deg, rgba(13,27,42,0.02) 40%, rgba(13,27,42,0.28) 100%); }
.guide-hotels .article-card-body { min-height: 206px; padding: 22px 20px 20px; }
.guide-hotels .article-meta { display: inline-flex; align-items: center; gap: 7px; width: fit-content; margin: 0 0 12px; padding: 5px 10px; border-radius: 999px; background: rgba(26,111,176,0.08); color: #1a6fb0; font-size: 0.76rem; line-height: 1; }
.guide-hotels .article-card h3 { font-size: 1.18rem; line-height: 1.36; margin-bottom: 11px; -webkit-line-clamp: 2; }
.guide-hotels .article-card p { font-size: 1.04rem; line-height: 1.62; -webkit-line-clamp: 3; }
.guide-hotels .read-more { color: #9a6a2f; padding-top: 8px; }

.guide-season { padding: 28px; border-radius: 8px; background: linear-gradient(135deg, rgba(255,248,237,0.92), rgba(246,249,253,0.86)); border: 1px solid rgba(216,146,0,0.18); border-left: 4px solid var(--gold, #f0a500); box-shadow: 0 14px 34px rgba(13,27,42,0.06); }
.guide-season .destination-guide-head { --guide-accent: #d89200; margin-bottom: 22px; border-bottom-color: rgba(216,146,0,0.18); }
.guide-season .destination-guide-head::after { background: var(--guide-accent); }
.guide-season .destination-guide-head h2 { color: var(--primary-dark, #0d2040); }
.guide-season .destination-guide-label { background: rgba(216,146,0,0.1); border-color: rgba(216,146,0,0.24); }
.guide-season .article-card { box-shadow: 0 14px 30px rgba(13,27,42,0.08); border: 1px solid rgba(13,27,42,0.08); border-radius: 8px; }
.guide-season .article-card:hover { box-shadow: 0 20px 44px rgba(13,27,42,0.13); }
.guide-season .article-card a { grid-template-rows: 210px 1fr; }
.guide-season .article-card-img { height: 210px; background: #e7edf2; }
.guide-season .article-card-img::after { background: linear-gradient(180deg, rgba(13,27,42,0) 44%, rgba(13,27,42,0.22) 100%); }
.guide-season .article-card-body { min-height: 204px; padding: 22px 20px 20px; }
.guide-season .article-meta { display: inline-flex; align-items: center; gap: 7px; width: fit-content; margin: 0 0 12px; padding: 5px 10px; border-radius: 999px; background: rgba(29,132,181,0.08); color: #1d84b5; font-size: 0.76rem; line-height: 1; }
.guide-season .article-card h3 { font-size: 1.18rem; line-height: 1.36; -webkit-line-clamp: 2; }
.guide-season .article-card p { font-size: 1.04rem; line-height: 1.62; -webkit-line-clamp: 3; }
.guide-season .read-more { color: #1d78ad; padding-top: 8px; }
.guide-season .js-guide-view-more { background: #fff; border-color: #1a3a6b; box-shadow: 0 10px 24px rgba(13,27,42,0.08); }

.guide-food { padding: 30px; border-radius: 8px; background: #fff8ed; border: 1px solid rgba(166,109,36,0.16); box-shadow: 0 14px 34px rgba(13,27,42,0.07); }
.guide-food .destination-guide-head { --guide-accent: #b36b18; text-align: center; max-width: 720px; margin: 0 auto 24px; padding-bottom: 18px; border-bottom: 1px solid rgba(166,109,36,0.18); }
.guide-food .destination-guide-head::after { left: 50%; transform: translateX(-50%); background: #b36b18; }
.guide-food .destination-guide-label { color: #9b5b10; background: #fff1d6; border-color: rgba(179,107,24,0.24); }
.guide-food .destination-guide-head h2 { color: var(--primary-dark, #0d2040); font-size: clamp(1.7rem, 3vw, 2.35rem); line-height: 1.08; }
.guide-food .destination-guide-head p { display: block; color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; margin: 10px auto 0; max-width: 560px; }
.guide-food > .row { --bs-gutter-x: 1.25rem; --bs-gutter-y: 1.25rem; justify-content: center; }
.guide-food > .row > [class*="col-"] { max-width: 390px; }
.guide-food .article-card { height: 100%; border-radius: 8px; background: #fff; border: 1px solid rgba(166,109,36,0.12); box-shadow: 0 12px 28px rgba(13,27,42,0.08); }
.guide-food .article-card:hover { box-shadow: 0 18px 38px rgba(13,27,42,0.13); }
.guide-food .article-card a { display: grid; grid-template-rows: 230px 1fr; min-height: 0; color: inherit; }
.guide-food .article-card-img { height: 230px; min-height: 230px; border-radius: 0; }
.guide-food .article-card-img::after { background: linear-gradient(180deg, rgba(13,27,42,0) 42%, rgba(13,27,42,0.28) 100%); }
.guide-food .article-card-body { min-height: 240px; padding: 22px; background: #fff; }
.guide-food .article-meta { color: #b36b18; }
.guide-food .article-card h3 { color: var(--primary-dark, #0d2040); font-size: 1.22rem; line-height: 1.34; -webkit-line-clamp: 3; }
.guide-food .article-card p { color: var(--text-muted); -webkit-line-clamp: 3; }
.guide-food .read-more { color: #b36b18; }

@media (max-width: 991px) {
  .guide-places > .row > [class*="col-"]:first-child { width: 100%; }
  .guide-places > .row > [class*="col-"]:first-child .article-card a { grid-template-rows: 210px 1fr; }
  .guide-places > .row > [class*="col-"]:first-child .article-card-img { height: 210px; }
  .guide-hotels .article-card a { grid-template-rows: 210px 1fr; }
  .guide-hotels .article-card-img { height: 210px; }
  .guide-season .article-card a { grid-template-rows: 205px 1fr; }
  .guide-season .article-card-img { height: 205px; }
  .guide-food > .row > [class*="col-"] { max-width: none; }
}

@media (max-width: 575px) {
  .guide-season { padding: 18px; border-left-width: 0; }
  .guide-season .article-card-body { min-height: 0; padding: 20px; }
  .guide-beaches,
  .guide-islands,
  .guide-hotels { padding: 18px; }
  .guide-hotels .article-card a { grid-template-rows: 205px 1fr; }
  .guide-hotels .article-card-img { height: 205px; }
  .guide-hotels .article-card-body { min-height: 0; padding: 20px; }
  .guide-food { padding: 18px; }
  .guide-food .article-card a { grid-template-columns: 1fr; grid-template-rows: 220px 1fr; min-height: 0; }
  .guide-food .article-card-img { height: 220px; min-height: 220px; }
  .guide-food .article-card-body { min-height: 0; padding: 22px; }
}
.destination-guide-card { height: 100%; min-height: 188px; background: #fff; border: 1px solid rgba(13,27,42,0.08); border-radius: 12px; padding: 20px; box-shadow: 0 6px 18px rgba(13,27,42,0.04); }
.destination-guide-card i { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; color: var(--accent); background: rgba(26,58,107,0.08); margin-bottom: 14px; }
.destination-guide-card h3 { font-size: 1rem; font-weight: 800; color: var(--text); margin: 0 0 8px; }
.destination-guide-card p { margin: 0; color: var(--text-muted); font-size: 0.9rem; line-height: 1.62; }
.destination-guide-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(280px,0.85fr); gap: 22px; margin-top: 32px; }
.destination-itinerary,
.destination-planning-tips { background: #fff; border: 1px solid rgba(13,27,42,0.08); border-radius: 12px; padding: 22px; box-shadow: 0 6px 18px rgba(13,27,42,0.04); }
.destination-itinerary-step { display: grid; grid-template-columns: 68px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(13,27,42,0.08); }
.destination-itinerary-step:last-child { border-bottom: none; padding-bottom: 0; }
.destination-itinerary-step span { display: inline-flex; align-items: center; justify-content: center; height: 34px; border-radius: 999px; background: var(--gold, #f0a500); color: var(--primary-dark, #0d2040); font-weight: 800; font-size: 0.8rem; }
.destination-itinerary-step h3 { font-size: 1rem; font-weight: 800; color: var(--text); margin: 0 0 5px; }
.destination-itinerary-step p { margin: 0; color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.destination-planning-tips ul { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 13px; }
.destination-planning-tips li { display: flex; gap: 10px; align-items: flex-start; color: var(--text-muted); font-size: 0.92rem; line-height: 1.55; }
.destination-planning-tips li i { color: var(--accent); margin-top: 3px; }

.related-dest-card { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 20px; background: #fff; border: 1px solid rgba(13,27,42,0.08); border-radius: 12px; text-decoration: none !important; color: var(--text) !important; transition: all 0.2s ease; }
.related-dest-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(13,27,42,0.08); }
.related-dest-card strong { font-size: 1rem; font-weight: 700; display: block; }
.related-dest-card span { font-size: 0.78rem; color: var(--text-muted); display: block; margin-top: 2px; }
.related-dest-card i { color: var(--accent); font-size: 0.9rem; }

.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 860px; }
.destination-faq .faq-list { max-width: 820px; }
.destination-faq details.faq-item { background: #fff; border: 1px solid rgba(13,27,42,0.08); border-radius: 12px; padding: 0; margin-bottom: 12px; overflow: hidden; }
.destination-faq summary.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 18px 22px; font-size: 1rem; font-weight: 700; color: var(--text); cursor: pointer; list-style: none; }
.destination-faq summary.faq-q::-webkit-details-marker { display: none; }
.destination-faq summary.faq-q i { color: var(--accent, #1a3a6b); transition: transform 0.25s ease; }
.destination-faq details[open] summary.faq-q i { transform: rotate(180deg); }
.destination-faq .faq-a { padding: 0 22px 18px; }
.destination-faq .faq-a p { margin: 0; color: var(--text-muted); line-height: 1.6; font-size: 0.95rem; }
.destination-faq .faq-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(13,27,42,0.08); flex-wrap: wrap; }
.destination-faq .faq-source { color: var(--text-muted); font-size: 0.78rem; font-weight: 600; }
.destination-faq .faq-read-more { display: inline-flex; align-items: center; gap: 7px; color: var(--accent, #1a3a6b); font-size: 0.82rem; font-weight: 800; text-decoration: none; }
.destination-faq .faq-read-more:hover { color: var(--gold, #f0a500); }
.faq-item { background: #fff; border: 1px solid rgba(13,27,42,0.08); border-radius: 12px; padding: 18px 22px; }
.faq-item .faq-q { font-size: 1.05rem; font-weight: 700; color: var(--text); margin: 0 0 8px; }
.faq-item .faq-a p { margin: 0; color: var(--text-muted); line-height: 1.6; font-size: 0.95rem; }

@media (max-width: 768px) {
  .destination-hero { min-height: 360px; }
  .destination-toc { position: static; margin-top: 24px; }
  .destination-guide-head h2 { margin-bottom: 0; }
  .destination-guide-grid { grid-template-columns: 1fr; }
  .destination-itinerary-step { grid-template-columns: 58px 1fr; gap: 12px; }
}

/* ── Destinations LISTING page ───────────────────────────── */
.destinations-hero { position: relative; min-height: 520px; display: flex; align-items: center; color: #fff; overflow: hidden; }
.destinations-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.destinations-hero-overlay { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13,27,42,0.5) 0%, rgba(13,27,42,0.65) 100%); }
.destinations-hero-content { position: relative; z-index: 2; padding: 70px 20px; max-width: 760px; }
.destinations-hero .hero-label { background: rgba(240,165,0,0.15); border: 1px solid rgba(240,165,0,0.45); color: var(--gold-light, #f7c948); }
.destinations-hero h1 { font-family: 'Playfair Display', serif; font-weight: 800; font-size: clamp(2.4rem, 5.5vw, 4rem); margin: 14px 0 16px; color: #fff; line-height: 1.05; }
.destinations-hero h1 span { color: var(--gold, #f0a500); }
.destinations-hero-tagline { font-size: 1.05rem; color: rgba(255,255,255,0.88); line-height: 1.6; margin: 0 0 26px; }
.destinations-search { display: flex; gap: 8px; padding: 8px; background: rgba(255,255,255,0.95); border-radius: 999px; max-width: 540px; box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.destinations-search > i { display: none; }
.destinations-search input { flex: 1; border: none; background: transparent; padding: 10px 18px; font-size: 0.95rem; outline: none; color: var(--text); border-radius: 999px; }
.destinations-search button { display: inline-flex; align-items: center; gap: 6px; border: none; background: var(--gold, #f0a500); color: var(--primary-dark, #0d2040); font-weight: 700; padding: 10px 22px; border-radius: 999px; cursor: pointer; transition: background 0.2s ease; }
.destinations-search button:hover { background: var(--gold-light, #f7c948); }

.destinations-stats { background: linear-gradient(135deg, #1a3a6b 0%, #0d2040 100%); padding: 26px 0; color: #fff; }
.destinations-stats .stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; color: var(--gold, #f0a500); line-height: 1; }
.destinations-stats .stat-num sup { font-size: 1rem; }
.destinations-stats .stat-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.6px; color: rgba(255,255,255,0.75); margin-top: 6px; }

.destinations-continents .section-subtitle { max-width: 600px; margin-top: 10px; }

.continent-card { position: relative; display: block; min-height: 320px; border-radius: 18px; overflow: hidden; color: #fff; text-decoration: none !important; isolation: isolate; box-shadow: 0 8px 24px rgba(13,27,42,0.08); transition: transform 0.35s ease, box-shadow 0.35s ease; }
.continent-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.7s ease; }
.continent-card-overlay { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13,27,42,0.05) 0%, rgba(13,27,42,0.55) 55%, rgba(13,27,42,0.95) 100%); }
.continent-card-body { position: relative; z-index: 2; padding: 22px; height: 100%; min-height: 320px; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px; }
.continent-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(13,27,42,0.18); color: #fff; }
.continent-card:hover img { transform: scale(1.06); }
.continent-pill { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(8px); padding: 5px 12px; border-radius: 999px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.3px; }
.continent-pill i { color: var(--gold, #f0a500); }
.continent-card-body h3 { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.7rem; color: #fff; margin: 4px 0 2px; }
.continent-card-body p { font-size: 0.86rem; color: rgba(255,255,255,0.85); line-height: 1.45; margin: 0 0 12px; }
.continent-cta { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; background: var(--gold, #f0a500); color: var(--primary-dark, #0d2040) !important; padding: 9px 18px; border-radius: 999px; font-weight: 700; font-size: 0.82rem; transition: background 0.2s ease; }
.continent-card:hover .continent-cta { background: var(--gold-light, #f7c948); }

.dest-wide-card { position: relative; display: flex; align-items: center; min-height: 200px; border-radius: 18px; overflow: hidden; color: #fff; text-decoration: none !important; isolation: isolate; box-shadow: 0 8px 24px rgba(13,27,42,0.1); transition: transform 0.35s ease, box-shadow 0.35s ease; }
.dest-wide-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.dest-wide-overlay { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.55) 55%, rgba(13,27,42,0.2) 100%); }
.dest-wide-body { position: relative; z-index: 2; padding: 28px 32px; flex: 1; }
.dest-wide-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(8px); padding: 5px 12px; border-radius: 999px; font-size: 0.72rem; font-weight: 600; }
.dest-wide-pill i { color: var(--gold, #f0a500); }
.dest-wide-body h3 { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.9rem; margin: 10px 0 6px; color: #fff; }
.dest-wide-body p { font-size: 0.92rem; color: rgba(255,255,255,0.88); margin: 0; max-width: 580px; }
.dest-wide-cta { position: relative; z-index: 2; margin-right: 28px; display: inline-flex; align-items: center; gap: 8px; background: var(--gold, #f0a500); color: var(--primary-dark, #0d2040) !important; padding: 11px 22px; border-radius: 999px; font-weight: 700; font-size: 0.85rem; transition: background 0.2s ease; }
.dest-wide-card:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(13,27,42,0.2); color: #fff; }
.dest-wide-card:hover .dest-wide-cta { background: var(--gold-light, #f7c948); }

.section-light { background: #f4f7fb; }
.popular-dest-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 22px; max-width: 1100px; margin: 0 auto; }
.popular-dest { display: flex; flex-direction: column; align-items: center; gap: 8px; text-decoration: none !important; color: var(--text) !important; transition: transform 0.25s ease; }
.popular-dest:hover { transform: translateY(-4px); }
.popular-dest-img { width: 96px; height: 96px; border-radius: 50%; overflow: hidden; border: 3px solid var(--gold, #f0a500); box-shadow: 0 8px 22px rgba(13,27,42,0.12); display: block; }
.popular-dest-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.popular-dest strong { font-size: 0.95rem; font-weight: 700; margin-top: 4px; }
.popular-dest-sub { font-size: 0.75rem; color: var(--text-muted); }

.destinations-newsletter { padding: 60px 0; background: linear-gradient(135deg, #1a3a6b 0%, #0d2040 100%); color: #fff; position: relative; overflow: hidden; }
.destinations-newsletter::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 18px 18px; opacity: 0.6; pointer-events: none; }
.destinations-newsletter h2 { font-family: 'Playfair Display', serif; font-weight: 800; font-size: clamp(1.7rem, 3.5vw, 2.4rem); color: #fff; margin: 0 0 10px; }
.destinations-newsletter h2 span { color: var(--gold, #f0a500); }
.destinations-newsletter > .container > p { color: rgba(255,255,255,0.8); max-width: 540px; margin: 0 auto 24px; font-size: 0.95rem; }
.newsletter-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.newsletter-form input { flex: 1 1 240px; min-width: 200px; padding: 12px 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: #fff; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-form button { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border: none; border-radius: 999px; background: var(--gold, #f0a500); color: var(--primary-dark, #0d2040); font-weight: 700; cursor: pointer; transition: background 0.2s ease; }
.newsletter-form button:hover { background: var(--gold-light, #f7c948); }

.newsletter-page { background: #fff; }
.newsletter-hero { position: relative; padding: 78px 0 58px; background: linear-gradient(135deg, #f8fafc 0%, #eef4fb 100%); overflow: hidden; border-bottom: 1px solid rgba(13,32,64,0.08); }
.newsletter-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(240,165,0,0.12), transparent 38%, rgba(26,58,107,0.08)); pointer-events: none; }
.newsletter-hero .container { position: relative; z-index: 1; }
.newsletter-hero-grid { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 36px; align-items: end; }
.newsletter-kicker { display: inline-flex; align-items: center; gap: 8px; width: fit-content; padding: 8px 13px; border-radius: 999px; background: #fff; border: 1px solid rgba(13,32,64,0.1); color: var(--gold, #f0a500); font-size: 0.76rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; box-shadow: 0 8px 24px rgba(13,32,64,0.06); }
.newsletter-hero h1 { max-width: 820px; margin: 18px 0 16px; color: var(--primary-dark, #0d2040); font-family: 'Playfair Display', serif; font-size: clamp(2.45rem, 5.5vw, 4.8rem); line-height: 0.98; font-weight: 900; }
.newsletter-hero p { max-width: 680px; margin: 0; color: var(--text-muted, #64748b); font-size: 1.04rem; line-height: 1.75; }
.newsletter-hero-status { max-width: 760px; }
.newsletter-hero-status > p { position: relative; padding: 18px 20px 18px 24px; border-left: 5px solid var(--gold, #f0a500); border-radius: 8px; background: rgba(255,255,255,0.78); box-shadow: 0 12px 30px rgba(13,32,64,0.08); color: #334155; font-weight: 600; }
.newsletter-hero-subscribed { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; width: fit-content; max-width: 100%; padding: 12px 14px; border-radius: 999px; background: #fff; border: 1px solid rgba(240,165,0,0.38); box-shadow: 0 12px 30px rgba(13,32,64,0.08); color: #334155; }
.newsletter-hero-subscribed[hidden] { display: none!important; }
.newsletter-hero-subscribed span { display: inline-flex; align-items: center; gap: 6px; min-width: 0; }
.newsletter-hero-subscribed strong { color: var(--primary-dark, #0d2040); overflow-wrap: anywhere; }
.newsletter-hero-subscribed a { display: inline-flex; align-items: center; min-height: 34px; padding: 7px 13px; border-radius: 999px; background: var(--primary-dark, #0d2040); color: #fff!important; font-size: 0.82rem; font-weight: 800; text-decoration: none!important; white-space: nowrap; }
.newsletter-hero-subscribed a:hover { background: var(--gold, #f0a500); color: var(--primary-dark, #0d2040)!important; }
.newsletter-hero-panel { min-height: 230px; display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; border-radius: 8px; color: #fff; background: linear-gradient(180deg, rgba(13,32,64,0.08), rgba(13,32,64,0.86)), url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=900&q=80") center/cover; box-shadow: 0 18px 42px rgba(13,32,64,0.14); }
.newsletter-hero-panel strong { display: block; color: #fff; font-family: 'Playfair Display', serif; font-size: 1.45rem; line-height: 1.2; }
.newsletter-hero-panel span { display: block; margin-top: 8px; color: rgba(255,255,255,0.78); font-size: 0.9rem; }
.newsletter-hub { padding: 58px 0 76px; }
.newsletter-hub-form { max-width: none; }
.newsletter-hub-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.newsletter-hub-head h2 { margin: 12px 0 0; color: var(--primary-dark, #0d2040); font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.2vw, 2.7rem); font-weight: 900; }
.newsletter-hub-head p { max-width: 480px; margin: 0; color: var(--text-muted, #64748b); line-height: 1.65; font-size: 0.94rem; }
.newsletter-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.newsletter-choice { position: relative; display: grid; min-height: 365px; border-radius: 8px; overflow: hidden; cursor: pointer; color: #fff; isolation: isolate; box-shadow: 0 14px 34px rgba(13,32,64,0.11); border: 1px solid rgba(13,32,64,0.08); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.newsletter-choice:hover { transform: translateY(-4px); box-shadow: 0 22px 46px rgba(13,32,64,0.16); }
.newsletter-choice input { position: absolute; inset: 14px auto auto 14px; z-index: 3; width: 22px; height: 22px; accent-color: var(--gold, #f0a500); }
.newsletter-choice-media { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.newsletter-choice:hover .newsletter-choice-media { transform: scale(1.05); }
.newsletter-choice::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(13,32,64,0.08) 0%, rgba(13,32,64,0.48) 45%, rgba(13,32,64,0.95) 100%); pointer-events: none; }
.newsletter-choice-body { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; }
.newsletter-choice-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.newsletter-choice-top em { display: inline-flex; width: fit-content; padding: 5px 10px; border-radius: 999px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: var(--gold-light, #ffd166); font-style: normal; font-size: 0.72rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em; }
.newsletter-choice-top i { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,0.16); color: rgba(255,255,255,0.58); border: 1px solid rgba(255,255,255,0.2); }
.newsletter-choice input:checked ~ .newsletter-choice-body .newsletter-choice-top i { background: var(--gold, #f0a500); color: var(--primary-dark, #0d2040); border-color: var(--gold, #f0a500); }
.newsletter-choice input:checked ~ .newsletter-choice-body strong { color: #fff; }
.newsletter-choice strong { display: block; color: #fff; font-family: 'Playfair Display', serif; font-size: 1.55rem; line-height: 1.12; margin-bottom: 9px; }
.newsletter-choice small { display: block; color: rgba(255,255,255,0.78); font-size: 0.9rem; line-height: 1.55; }
.newsletter-signup-panel { display: grid; grid-template-columns: minmax(0,0.72fr) minmax(380px,1.28fr); gap: 28px; align-items: start; margin-top: 30px; padding: 34px; border-radius: 8px; background: #fff; color: var(--text, #1e293b); border: 1px solid rgba(13,32,64,0.1); box-shadow: 0 18px 44px rgba(13,32,64,0.1); }
.newsletter-step-head { display: flex; gap: 16px; align-items: flex-start; }
.newsletter-step-head > span { flex: 0 0 42px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--gold, #f0a500); color: var(--primary-dark, #0d2040); font-weight: 900; }
.newsletter-signup-panel h3 { margin: 0 0 8px; color: var(--primary-dark, #0d2040); font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; }
.newsletter-signup-panel p { margin: 0; color: var(--text-muted, #64748b); font-size: 0.94rem; line-height: 1.65; }
.newsletter-signup-control { display: grid; gap: 14px; }
.newsletter-email-field { display: grid; gap: 10px; margin: 0; }
.newsletter-email-field > span { color: #111827; font-size: 1.05rem; font-weight: 800; }
.newsletter-email-field input { width: 100%; min-height: 58px; border: 1px solid #d8dee8; border-radius: 0; background: #fff; color: var(--text, #1e293b); padding: 14px 16px; font-size: 1rem; outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.newsletter-email-field input:focus { border-color: var(--gold, #f0a500); box-shadow: 0 0 0 3px rgba(240,165,0,0.16); }
.newsletter-email-field input::placeholder { color: #5f6570; }
.newsletter-consent { display: grid; grid-template-columns: 26px minmax(0,1fr); gap: 12px; align-items: start; margin: 0; color: #3f4652; font-size: 0.92rem; line-height: 1.45; }
.newsletter-consent input { width: 24px; height: 24px; margin: 0; accent-color: #111; }
.newsletter-complete-btn { width: 100%; min-height: 60px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; border: 0; border-radius: 0; background: #b17800; color: #fff; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: background 0.2s ease, transform 0.2s ease; }
.newsletter-complete-btn span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: #b17800; letter-spacing: 0; font-weight: 900; }
.newsletter-complete-btn:hover { background: var(--gold, #f0a500); color: var(--primary-dark, #0d2040); transform: translateY(-1px); }
.newsletter-complete-btn:hover span { color: var(--primary-dark, #0d2040); }
.newsletter-privacy-note { font-size: 0.82rem!important; color: #4b5563!important; line-height: 1.55!important; }
.newsletter-signup-control .tbites-subscribe-message { max-width: none; }
.newsletter-signup-minimal { grid-template-columns: minmax(0,1fr) auto; align-items: center; background: linear-gradient(135deg, var(--primary-dark, #0d2040), var(--primary, #1a3a6b)); color: #fff; border: 0; }
.newsletter-signup-minimal h3 { color: #fff; }
.newsletter-signup-minimal p { color: rgba(255,255,255,0.76); }
.newsletter-open-modal { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 0; border-radius: 999px; padding: 13px 26px; background: linear-gradient(135deg, var(--gold, #f0a500), var(--gold-light, #ffd166)); color: var(--primary-dark, #0d2040); font-weight: 900; white-space: nowrap; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.newsletter-open-modal:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(240,165,0,0.28); }
.newsletter-modal { position: fixed; inset: 0; z-index: 5200; display: none; align-items: center; justify-content: center; padding: clamp(12px, 3vw, 18px); background: rgba(13,32,64,0.62); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); overflow-y: auto; overscroll-behavior: contain; }
.newsletter-modal.is-open { display: flex; }
.newsletter-modal-dialog { position: relative; width: min(640px, 100%); max-height: calc(100svh - 24px); overflow-y: auto; background: #fff; border-radius: 8px; padding: clamp(24px, 5vw, 34px); box-shadow: 0 28px 80px rgba(0,0,0,0.28); }
.newsletter-modal-close { position: absolute; top: 14px; right: 14px; z-index: 5; width: 42px; height: 42px; margin: 0; border: 1px solid #e5e7eb; border-radius: 50%; background: #fff; box-shadow: 0 8px 18px rgba(15,44,74,0.12); cursor: pointer; }
.newsletter-modal-close::before,.newsletter-modal-close::after { content: ""; position: absolute; left: 20px; top: 9px; width: 2px; height: 22px; background: #111827; transform: rotate(45deg); }
.newsletter-modal-close::after { transform: rotate(-45deg); }
.newsletter-modal-head { display: flex; gap: 16px; align-items: flex-start; padding-right: 36px; margin-bottom: 22px; }
.newsletter-modal-head > span { flex: 0 0 36px; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--gold, #f0a500); color: var(--primary-dark, #0d2040); font-weight: 900; }
.newsletter-modal-head h3 { margin: 0 0 6px; color: #111827; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; }
.newsletter-modal-head p { margin: 0; color: var(--text-muted, #64748b); line-height: 1.55; }
.newsletter-thanks-dialog { text-align: center; max-width: 560px; background: linear-gradient(180deg, #fff 0%, #f8fafc 100%); }
.newsletter-thanks-icon { width: clamp(58px, 12vw, 76px); height: clamp(58px, 12vw, 76px); display: grid; place-items: center; margin: 6px auto 16px; border-radius: 50%; background: linear-gradient(135deg, var(--gold, #f0a500), var(--gold-light, #ffd166)); color: var(--primary-dark, #0d2040); font-size: clamp(1.25rem, 4vw, 1.65rem); box-shadow: 0 14px 30px rgba(240,165,0,0.25); }
.newsletter-thanks-dialog h3 { margin: 14px auto 10px; color: var(--primary-dark, #0d2040); font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 7vw, 2.55rem); line-height: 1.08; font-weight: 900; max-width: 440px; }
.newsletter-thanks-dialog p { margin: 0 auto 22px; max-width: 450px; color: var(--text-muted, #64748b); line-height: 1.7; }
.newsletter-thanks-link,
.newsletter-thanks-link:visited { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; border-radius: 999px; padding: 13px 22px; background: var(--gold, #f0a500) !important; color: var(--primary-dark, #0d2040) !important; font-weight: 900; text-decoration: none!important; box-shadow: 0 14px 30px rgba(240,165,0,0.25); }
.newsletter-thanks-link:hover,
.newsletter-thanks-link:focus-visible { background: var(--primary-dark, #0d2040) !important; color: #fff !important; outline: 0; transform: translateY(-1px); }
.newsletter-already-icon { background: linear-gradient(135deg, #e8edf5, #ffffff); color: var(--primary-dark, #0d2040); box-shadow: 0 14px 30px rgba(13,32,64,0.12); }
.newsletter-modal-close-btn { border: 0; cursor: pointer; }
body.newsletter-modal-open { overflow: hidden; }

.tb-auth-modal{position:fixed;inset:0;z-index:3100;display:none;align-items:center;justify-content:center;padding:18px}
.tb-auth-modal.is-open{display:flex}
.tb-auth-modal-backdrop{position:absolute;inset:0;background:rgba(13,32,64,.66);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}
.tb-auth-modal-dialog{position:relative;z-index:1;width:min(880px,100%);max-height:calc(100vh - 36px);display:grid;grid-template-columns:minmax(0,.88fr) minmax(360px,1fr);overflow:hidden;border-radius:10px;background:#fff;box-shadow:0 32px 90px rgba(0,0,0,.34)}
.tb-auth-modal-close{position:absolute;top:14px;right:14px;z-index:3;width:38px;height:38px;display:grid;place-items:center;border:0;border-radius:50%;background:rgba(255,255,255,.92);color:#0d2040;cursor:pointer;box-shadow:0 8px 22px rgba(13,32,64,.14)}
.tb-auth-modal-art{position:relative;min-height:460px;display:flex;flex-direction:column;justify-content:flex-end;gap:12px;padding:34px;color:#fff;background:linear-gradient(180deg,rgba(13,32,64,.08),rgba(13,32,64,.92)),url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=900&q=80") center/cover}
.tb-auth-modal-art span{width:54px;height:54px;display:grid;place-items:center;border-radius:50%;background:var(--gold);color:#0d2040;font-size:1.2rem;box-shadow:0 14px 32px rgba(240,165,0,.24)}
.tb-auth-modal-art strong{font-family:'Playfair Display',serif;font-size:2.25rem;line-height:1.02;font-weight:900;color:#fff}
.tb-auth-modal-art p{margin:0;color:rgba(255,255,255,.78);line-height:1.65}
.tb-auth-card.tb-auth-modal-card{border:0;border-radius:0;box-shadow:none;padding:42px 34px;align-content:center}
.tb-auth-modal-card h2{margin:14px 0 8px;color:var(--primary-dark);font-family:'Playfair Display',serif;font-size:2.25rem;font-weight:900;line-height:1.05}
.tb-auth-modal-copy{margin:0 0 20px;color:#64748b;line-height:1.6}
body.tb-auth-modal-open{overflow:hidden}
.tb-auth-popup-page{display:flex;align-items:center;background:linear-gradient(135deg,#f8fafc 0%,#eef4fb 100%)}
.tb-auth-popup-hero{max-width:760px;margin:0 auto;text-align:center;padding:76px 0}
.tb-auth-popup-hero .newsletter-kicker{margin:0 auto}
.tb-auth-popup-hero h1{margin:18px 0 14px;color:var(--primary-dark);font-family:'Playfair Display',serif;font-size:clamp(2.4rem,5vw,4.6rem);font-weight:900;line-height:1}
.tb-auth-popup-hero p{max-width:600px;margin:0 auto 26px;color:#64748b;font-size:1.02rem;line-height:1.75}
.tb-auth-popup-actions{display:flex;justify-content:center;gap:12px;flex-wrap:wrap}
.tb-auth-popup-actions button{display:inline-flex;align-items:center;gap:9px;border:0;border-radius:999px;padding:13px 22px;background:var(--primary-dark);color:#fff;font-weight:900;cursor:pointer;box-shadow:0 12px 28px rgba(13,32,64,.14)}
.tb-auth-popup-actions button:last-child{background:var(--gold);color:#0d2040}

.tb-auth-page,.tb-dashboard-page{padding:72px 0;background:#f7f9fc;min-height:62vh}
.tb-auth-popup-page{background:linear-gradient(135deg,#f8fafc 0%,#eef4fb 100%)}
.tb-auth-shell{display:grid;grid-template-columns:minmax(0,1fr) 430px;gap:42px;align-items:center}
.tb-auth-shell h1,.tb-dashboard-head h1{font-family:'Playfair Display',serif;color:var(--primary-dark);font-size:clamp(2.2rem,5vw,4rem);font-weight:900;line-height:1.02;margin:16px 0 12px}
.tb-auth-shell p,.tb-dashboard-head p{color:var(--text-muted);font-size:1rem;line-height:1.7}
.tb-auth-card{background:#fff;border:1px solid rgba(13,32,64,.08);border-radius:8px;padding:24px;box-shadow:0 18px 44px rgba(13,32,64,.1)}
.tb-auth-tabs{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-bottom:16px}
.tb-auth-tabs button,.tb-auth-form button,.tb-logout-btn{border:0;border-radius:999px;padding:11px 14px;font-weight:900;cursor:pointer}
.tb-auth-tabs button.active,.tb-auth-form button{background:var(--primary-dark);color:#fff}
.tb-auth-tabs button:not(.active){background:#eef2f7;color:#475569}
.tb-auth-form{display:none;gap:12px}
.tb-auth-form.active{display:grid}
.tb-auth-form input{width:100%;border:1px solid #d8dee8;border-radius:8px;padding:13px 14px;outline:none}
.tb-auth-link-btn{background:transparent!important;color:#b17800!important;padding:0!important;justify-self:start;border-radius:0!important;font-size:.88rem}
.tb-auth-link-btn:hover{text-decoration:underline}
.tb-auth-remember{display:flex;align-items:center;gap:9px;margin:0;color:#475569;font-size:.9rem;font-weight:800}
.tb-auth-remember input{width:17px!important;height:17px;accent-color:var(--gold)}
.tb-auth-recaptcha:empty{display:none}
.tb-auth-recaptcha{min-height:78px;overflow:visible;margin:4px 0 2px}
.tb-auth-terms{display:grid;grid-template-columns:20px minmax(0,1fr);gap:10px;align-items:start;margin:2px 0;color:#475569;font-size:.86rem;line-height:1.45}
.tb-auth-terms input{width:18px!important;height:18px;margin-top:2px;accent-color:var(--gold)}
.tb-auth-terms a{color:var(--gold);font-weight:900;text-decoration:none}
.tb-auth-verify-note{border:1px solid rgba(240,165,0,.28);background:#fff8e6;border-radius:8px;padding:13px 14px}
.tb-auth-verify-note strong{display:block;color:var(--primary-dark);font-weight:900;margin-bottom:4px}
.tb-auth-verify-note span{display:block;color:#64748b;font-size:.88rem;line-height:1.45}
.tb-auth-secondary-btn{background:#eef2f7!important;color:#0d2040!important}
.tb-auth-message{font-size:.88rem;font-weight:800}
.tb-auth-message.error{color:#a61919}.tb-auth-message.success{color:#176442}
.tb-user-panel{display:grid;grid-template-columns:280px minmax(0,1fr);gap:24px;align-items:start}
.tb-user-sidebar{position:sticky;top:96px;display:grid;gap:16px;background:#fff;border:1px solid rgba(13,32,64,.08);border-radius:14px;padding:16px;box-shadow:0 18px 44px rgba(13,32,64,.09)}
.tb-user-card{display:grid;grid-template-columns:52px minmax(0,1fr);gap:12px;align-items:center;padding:14px;border-radius:12px;background:linear-gradient(135deg,#0d2040,#173b67);color:#fff}
.tb-user-avatar{width:52px;height:52px;display:grid;place-items:center;border-radius:50%;background:#f0a500;color:#0d2040;font-size:1.15rem}
.tb-user-card span{display:block;color:#ffd166;font-size:.72rem;text-transform:uppercase;letter-spacing:.08em;font-weight:900}
.tb-user-card strong{display:block;color:#fff;font-size:1rem;line-height:1.25;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.tb-user-menu{display:grid;gap:6px}
.tb-user-menu a{display:grid;grid-template-columns:24px minmax(0,1fr) auto;gap:10px;align-items:center;min-height:44px;padding:10px 12px;border-radius:10px;color:#334155;text-decoration:none!important;font-weight:900;transition:background .2s ease,color .2s ease,transform .2s ease}
.tb-user-menu a:hover,.tb-user-menu a.active{background:#fff7df;color:#0d2040;transform:translateX(2px)}
.tb-user-menu a i{color:#b17800}
.tb-panel-subscribe{display:grid;gap:9px;padding:14px;border-radius:12px;background:#fff8e6;border:1px solid rgba(240,165,0,.28)}
.tb-panel-subscribe > i{width:38px;height:38px;display:grid;place-items:center;border-radius:50%;background:#f0a500;color:#0d2040}
.tb-panel-subscribe strong{color:#0d2040;font-family:'Playfair Display',serif;font-size:1.15rem;line-height:1.1}
.tb-panel-subscribe p{margin:0;color:#64748b;font-size:.86rem;line-height:1.5}
.tb-panel-subscribe p span{font-weight:900;color:#0d2040;overflow-wrap:anywhere}
.tb-panel-subscribe button{border:0;border-radius:999px;background:#f0a500;color:#0d2040;font-weight:900;padding:10px 13px;cursor:pointer}
.tb-panel-subscribe button.is-unsubscribe{background:#0d2040;color:#fff}
.tb-panel-subscribe button:disabled{opacity:.7;cursor:not-allowed}
.tb-panel-subscribe small{min-height:16px;color:#64748b;font-weight:800;line-height:1.35}
.tb-panel-subscribe small.success{color:#176442}
.tb-panel-subscribe small.error{color:#a61919}
.tb-sidebar-logout{justify-content:center;width:100%;background:#0d2040!important;color:#fff!important;box-shadow:0 12px 26px rgba(13,32,64,.18)}
.tb-user-main{min-width:0}
.tb-bookmarks-hero{position:relative;display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:22px;padding:34px;border-radius:14px;background:linear-gradient(135deg,#0d2040 0%,#173b67 62%,#f0a500 180%);overflow:hidden;box-shadow:0 22px 55px rgba(13,32,64,.18)}
.tb-bookmarks-hero::after{content:"";position:absolute;inset:auto -80px -120px auto;width:280px;height:280px;border-radius:50%;background:rgba(240,165,0,.18);pointer-events:none}
.tb-bookmarks-hero .newsletter-kicker{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.2);color:#ffd166;box-shadow:none}
.tb-bookmarks-hero h1{color:#fff}
.tb-bookmarks-hero p{color:rgba(255,255,255,.76)}
.tb-bookmark-hero-stat{position:relative;z-index:1;min-width:128px;padding:16px;border-radius:12px;background:rgba(255,255,255,.11);border:1px solid rgba(255,255,255,.18);text-align:center;color:#fff}
.tb-bookmark-hero-stat span{display:block;color:#ffd166;font-family:'Playfair Display',serif;font-size:2.4rem;line-height:1;font-weight:900}
.tb-bookmark-hero-stat strong{display:block;margin-top:5px;font-size:.78rem;text-transform:uppercase;letter-spacing:.08em}
.tb-dashboard-head{position:relative;z-index:1;max-width:760px;margin-bottom:0}
.tb-dashboard-actions{position:relative;z-index:1;display:flex;gap:12px;align-items:center;margin-bottom:0;flex-wrap:wrap}
.tb-login-link,.tb-logout-btn{display:inline-flex;align-items:center;text-decoration:none;background:var(--primary-dark);color:#fff!important}
.tb-bookmark-list,.tb-bookmark-admin-list{display:grid;gap:14px}
.tb-bookmark-summary{display:flex;justify-content:space-between;align-items:center;gap:18px;margin-bottom:4px;padding:18px 20px;border-radius:10px;background:#fff;border:1px solid rgba(13,32,64,.08);box-shadow:0 12px 28px rgba(13,32,64,.07)}
.tb-bookmark-summary span{display:block;color:#b17800;font-size:.78rem;text-transform:uppercase;letter-spacing:.08em;font-weight:900}
.tb-bookmark-summary strong{display:block;color:var(--primary-dark);font-family:'Playfair Display',serif;font-size:1.35rem;line-height:1.15}
.tb-bookmark-summary a{display:inline-flex;align-items:center;border-radius:999px;background:#fff7df;color:#0d2040!important;text-decoration:none!important;font-weight:900;padding:10px 14px}
.tb-bookmark-item{display:grid;grid-template-columns:170px minmax(0,1fr);gap:18px;align-items:stretch;background:#fff;border:1px solid rgba(13,32,64,.08);border-radius:12px;padding:12px;box-shadow:0 12px 30px rgba(13,32,64,.07);transition:transform .2s ease,box-shadow .2s ease}
.tb-bookmark-item:hover{transform:translateY(-2px);box-shadow:0 18px 42px rgba(13,32,64,.12)}
.tb-bookmark-thumb{display:block;min-height:120px;border-radius:8px;overflow:hidden;background:#e8edf5}
.tb-bookmark-item img{width:100%;height:100%;min-height:120px;object-fit:cover;background:#e8edf5;transition:transform .35s ease}
.tb-bookmark-item:hover img{transform:scale(1.05)}
.tb-bookmark-item strong{display:block;color:var(--primary-dark);line-height:1.3}
.tb-bookmark-item small{display:block;color:var(--text-muted);margin-top:6px}
.tb-bookmark-item a{font-weight:900;color:var(--gold);text-decoration:none}
.tb-bookmark-item span,.tb-bookmark-admin-row span{display:block;color:#64748b;font-size:.76rem;text-transform:uppercase;font-weight:900;letter-spacing:.08em;margin-bottom:5px}
.tb-bookmark-item h2,.tb-bookmark-admin-row h2{margin:0 0 6px;font-size:1.05rem;line-height:1.25;color:var(--primary-dark)}
.tb-bookmark-item p,.tb-bookmark-admin-row p{margin:0;color:#64748b;line-height:1.55}
.tb-bookmark-item-actions{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-top:13px}
.tb-bookmark-item-actions a{display:inline-flex;align-items:center;gap:8px;border-radius:999px;background:var(--primary-dark);color:#fff!important;padding:9px 13px;text-decoration:none!important}
.tb-bookmark-item-actions button{justify-self:start;border:0;border-radius:999px;background:#eef2f7;color:#0d2040;font-weight:900;padding:9px 13px;cursor:pointer}
.tb-bookmark-admin-row{display:flex;justify-content:space-between;gap:18px;align-items:center;background:#fff;border:1px solid rgba(13,32,64,.08);border-radius:8px;padding:16px;box-shadow:0 10px 24px rgba(13,32,64,.06)}
.tb-bookmark-admin-row strong{flex:0 0 auto;background:var(--gold);color:#0d2040;border-radius:999px;padding:10px 14px;font-weight:900}
.tb-empty-state,.tb-bookmark-empty{padding:24px;background:#fff;border:1px dashed #cbd5e1;border-radius:8px;color:var(--text-muted)}
.tb-bookmarks-empty{display:grid;justify-items:center;text-align:center;gap:8px;padding:42px 24px}
.tb-bookmarks-empty i{width:62px;height:62px;display:grid;place-items:center;border-radius:50%;background:#fff7df;color:#b17800;font-size:1.45rem}
.tb-bookmarks-empty strong{display:block;color:var(--primary-dark);font-family:'Playfair Display',serif;font-size:1.8rem;line-height:1.15}
.tb-bookmarks-empty span{max-width:430px;line-height:1.6}

@media(max-width:991px){.tb-auth-shell{grid-template-columns:1fr}.tb-auth-modal-dialog{grid-template-columns:1fr}.tb-auth-modal-art{display:none}.tb-user-panel{grid-template-columns:1fr}.tb-user-sidebar{position:relative;top:auto}.tb-user-menu{grid-template-columns:repeat(2,minmax(0,1fr))}.tb-bookmarks-hero{display:grid;padding:24px}.tb-bookmark-summary{align-items:flex-start;flex-direction:column}.tb-bookmark-item{grid-template-columns:108px minmax(0,1fr)}.tb-bookmark-thumb,.tb-bookmark-item img{min-height:96px}.tb-bookmark-admin-row{align-items:flex-start;flex-direction:column}}
@media(max-width:575px){.tb-user-menu{grid-template-columns:1fr}.tb-bookmark-item{grid-template-columns:1fr}.tb-bookmark-thumb,.tb-bookmark-item img{min-height:180px}.tb-bookmark-hero-stat{width:100%}}

@media (max-width: 991px) {
  .newsletter-hero-grid,
  .newsletter-signup-panel { grid-template-columns: 1fr; }
  .newsletter-hub-head { display: grid; align-items: start; }
  .newsletter-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575px) {
  .newsletter-hero { padding: 54px 0 42px; }
  .newsletter-hero h1 { font-size: 2.25rem; line-height: 1.04; }
  .newsletter-hero-panel { min-height: 190px; padding: 20px; }
  .newsletter-hub { padding: 42px 0 54px; }
  .newsletter-card-grid { grid-template-columns: 1fr; gap: 14px; }
  .newsletter-choice { min-height: 315px; }
  .newsletter-choice-body { padding: 18px; }
  .newsletter-choice strong { font-size: 1.38rem; }
  .newsletter-signup-panel { padding: 20px 16px; }
  .newsletter-step-head { display: grid; gap: 12px; }
  .newsletter-email-field input { min-height: 54px; }
  .newsletter-complete-btn { min-height: 56px; font-size: 0.82rem; letter-spacing: 0.08em; gap: 10px; }
  .newsletter-open-modal { width: 100%; }
  .newsletter-modal { align-items: flex-start; padding: 10px; }
  .newsletter-modal-dialog { width: 100%; max-height: calc(100svh - 20px); padding: 16px 16px 22px; }
  .newsletter-modal-head { display: grid; gap: 12px; padding-right: 44px; }
  .newsletter-modal-close { top: 10px; right: 10px; width: 40px; height: 40px; margin: 0; }
  .newsletter-modal-close::before,.newsletter-modal-close::after { left: 19px; top: 9px; height: 21px; }
  .newsletter-modal .g-recaptcha { transform: scale(.88); margin-bottom: -10px; }
  .newsletter-thanks-dialog { padding-top: 46px; }
  .newsletter-thanks-dialog h3 { font-size: clamp(1.75rem, 9vw, 2.18rem); max-width: 310px; }
  .newsletter-thanks-dialog p { max-width: 320px; margin-bottom: 18px; }
  .newsletter-thanks-link { width: 100%; max-width: 320px; padding-inline: 16px; }
}

@media (max-width: 768px) {
  .destinations-hero { min-height: 440px; }
  .dest-wide-card { flex-direction: column; align-items: stretch; }
  .dest-wide-cta { margin: 0 28px 24px; align-self: flex-start; }
  .destinations-search { flex-direction: column; border-radius: 18px; padding: 12px; }
  .destinations-search input { padding: 12px 14px; }
  .destinations-search button { justify-content: center; }
}

/* ── Destinations: themes ── */
.theme-card { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; padding: 22px 20px; height: 100%; background: #fff; border: 1px solid rgba(13,27,42,0.08); border-radius: 16px; text-decoration: none !important; color: var(--text) !important; transition: all 0.25s ease; }
.theme-card:hover { transform: translateY(-4px); border-color: var(--gold, #f0a500); box-shadow: 0 14px 30px rgba(13,27,42,0.1); }
.theme-card-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(240,165,0,0.18), rgba(240,165,0,0.05)); color: var(--gold, #f0a500); font-size: 1.2rem; }
.theme-card strong { font-size: 1rem; font-weight: 700; }
.theme-card p { font-size: 0.82rem; color: var(--text-muted); margin: 0; line-height: 1.45; }

/* ── Trending cards ── */
.trending-card { position: relative; display: block; min-height: 260px; border-radius: 16px; overflow: hidden; color: #fff; text-decoration: none !important; isolation: isolate; box-shadow: 0 8px 24px rgba(13,27,42,0.08); transition: transform 0.35s ease, box-shadow 0.35s ease; }
.trending-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.6s ease; }
.trending-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(13,27,42,0.05) 0%, rgba(13,27,42,0.7) 70%, rgba(13,27,42,0.95) 100%); }
.trending-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(13,27,42,0.18); color: #fff; }
.trending-card:hover img { transform: scale(1.08); }
.trending-rank { position: absolute; top: 14px; left: 14px; z-index: 2; padding: 5px 12px; background: var(--gold, #f0a500); color: var(--primary-dark, #0d2040); font-weight: 800; font-size: 0.78rem; border-radius: 999px; }
.trending-body { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 18px; }
.trending-body strong { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; display: block; margin-bottom: 4px; }
.trending-body span { font-size: 0.82rem; color: rgba(255,255,255,0.85); }

/* ── Style cards ── */
.style-card { display: flex; align-items: center; gap: 16px; padding: 20px 22px; background: #fff; border: 1px solid rgba(13,27,42,0.08); border-radius: 16px; text-decoration: none !important; color: var(--text) !important; transition: all 0.25s ease; height: 100%; }
.style-card:hover { transform: translateY(-3px); border-color: var(--accent, #1a3a6b); box-shadow: 0 10px 28px rgba(13,27,42,0.1); }
.style-icon { flex: 0 0 52px; width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--accent, #1a3a6b), var(--primary-dark, #0d2040)); font-size: 1.2rem; }
.style-card strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
.style-card p { font-size: 0.82rem; color: var(--text-muted); margin: 0; line-height: 1.45; }
.style-arrow { margin-left: auto; color: var(--accent, #1a3a6b); transition: transform 0.25s ease; }
.style-card:hover .style-arrow { transform: translateX(4px); }

/* ── Tip cards ── */
.tip-card { background: #fff; border: 1px solid rgba(13,27,42,0.08); border-radius: 16px; padding: 26px 22px; height: 100%; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.tip-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(13,27,42,0.08); }
.tip-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(240,165,0,0.2), rgba(240,165,0,0.05)); color: var(--gold, #f0a500); font-size: 1.25rem; margin-bottom: 14px; }
.tip-card strong { display: block; font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.tip-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.5; margin: 0 0 12px; }
.tip-card a { font-size: 0.82rem; color: var(--accent, #1a3a6b); font-weight: 700; text-decoration: none; }
.tip-card a:hover { text-decoration: underline; }

/* ── Quote banner ── */
.destinations-quote { padding: 70px 0; background: linear-gradient(135deg, #1a3a6b 0%, #0d2040 100%); color: #fff; position: relative; overflow: hidden; }
.destinations-quote::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 30%, rgba(240,165,0,0.15), transparent 50%), radial-gradient(circle at 80% 70%, rgba(240,165,0,0.1), transparent 50%); pointer-events: none; }
.destinations-quote .container { position: relative; z-index: 1; }
.destinations-quote > .container > i { font-size: 2rem; color: var(--gold, #f0a500); margin-bottom: 18px; display: block; }
.destinations-quote blockquote { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 2.6vw, 2rem); font-style: italic; font-weight: 500; max-width: 800px; margin: 0 auto 14px; line-height: 1.4; color: #fff; }
.destinations-quote cite { font-style: normal; color: rgba(255,255,255,0.7); font-size: 0.92rem; letter-spacing: 0.5px; }

/* ── FAQ ── */
.destinations-faq .faq-list { max-width: 820px; }
.destinations-faq details.faq-item { background: #fff; border: 1px solid rgba(13,27,42,0.08); border-radius: 12px; padding: 0; margin-bottom: 12px; overflow: hidden; }
.destinations-faq summary.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 18px 22px; font-size: 1rem; font-weight: 700; color: var(--text); cursor: pointer; list-style: none; }
.destinations-faq summary.faq-q::-webkit-details-marker { display: none; }
.destinations-faq summary.faq-q i { color: var(--accent, #1a3a6b); transition: transform 0.25s ease; }
.destinations-faq details[open] summary.faq-q i { transform: rotate(180deg); }
.destinations-faq .faq-a { padding: 0 22px 18px; }
.destinations-faq .faq-a p { margin: 0; color: var(--text-muted); line-height: 1.6; font-size: 0.95rem; }
.destinations-faq .faq-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(13,27,42,0.08); flex-wrap: wrap; }
.destinations-faq .faq-source { color: var(--text-muted); font-size: 0.78rem; font-weight: 600; }
.destinations-faq .faq-read-more { display: inline-flex; align-items: center; gap: 7px; color: var(--accent, #1a3a6b); font-size: 0.82rem; font-weight: 800; text-decoration: none; }
.destinations-faq .faq-read-more:hover { color: var(--gold, #f0a500); }

@media (max-width: 575px) {
  .style-card { flex-wrap: wrap; }
  .trending-card { min-height: 220px; }
}

/* ── Category page ───────────────────────────── */
.category-hero { padding: 58px 0 42px; background: #f7f9fc; border-bottom: 1px solid rgba(13,27,42,0.07); }
.category-hero-grid { display: grid; grid-template-columns: minmax(0,0.82fr) minmax(420px,1.18fr); gap: 36px; align-items: center; }
.category-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 24px 0; }
.category-hero .section-label { width: fit-content; }
.category-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 5.4vw, 4.8rem); font-weight: 900; color: var(--primary-dark, #0d2040); margin: 18px 0 14px; line-height: 0.98; }
.category-hero p { color: var(--text-muted); font-size: 1.03rem; line-height: 1.7; max-width: 520px; margin: 0 0 22px; }
.category-stats { display: flex; gap: 18px; flex-wrap: wrap; padding-top: 18px; border-top: 1px solid rgba(13,27,42,0.08); max-width: 520px; }
.category-stat { min-width: 150px; padding: 0; background: transparent; border: 0; box-shadow: none; }
.category-stat strong { display: block; color: var(--accent); font-size: 1.45rem; font-weight: 900; line-height: 1; }
.category-stat span { display: block; color: var(--text-muted); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.55px; margin-top: 7px; }
.category-featured-story { position: relative; min-height: 430px; border-radius: 8px; overflow: hidden; color: #fff !important; text-decoration: none !important; box-shadow: 0 20px 46px rgba(13,27,42,0.16); isolation: isolate; }
.category-featured-story img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.5s ease; }
.category-featured-story:hover img { transform: scale(1.04); }
.category-featured-shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(13,27,42,0.12) 0%, rgba(13,27,42,0.88) 100%); }
.category-featured-content { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 28px; }
.category-featured-content em { display: inline-flex; width: fit-content; color: var(--gold, #f0a500); font-style: normal; font-weight: 900; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 10px; }
.category-featured-content strong { display: block; font-family: 'Playfair Display', serif; color: #fff; font-size: clamp(1.45rem, 2.5vw, 2.1rem); line-height: 1.15; margin-bottom: 10px; }
.category-featured-content small { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; color: rgba(255,255,255,0.78); line-height: 1.6; font-size: 0.92rem; }
.category-results { background: #fff; }
.category-destinations { background: #fff; }
.category-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: -8px 0 20px; }
.category-tabs button { border: 1px solid rgba(13,27,42,0.1); background: #fff; color: var(--text-muted); font-weight: 800; font-size: 0.82rem; padding: 9px 14px; border-radius: 999px; cursor: pointer; transition: all 0.2s ease; }
.category-tabs button.active,
.category-tabs button:hover { border-color: var(--accent); color: var(--accent); background: rgba(26,58,107,0.07); }
.category-destination-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.category-destination-grid.is-loading { opacity: 0.55; pointer-events: none; }
.category-tab-empty { grid-column: 1 / -1; padding: 22px; border: 1px dashed rgba(13,27,42,0.18); border-radius: 8px; color: var(--text-muted); text-align: center; background: #f8fafc; }
.category-destination-card { position: relative; min-height: 190px; border-radius: 8px; overflow: hidden; color: #fff !important; text-decoration: none !important; box-shadow: 0 10px 28px rgba(13,27,42,0.1); isolation: isolate; }
.category-destination-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.45s ease; }
.category-destination-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(13,27,42,0.1), rgba(13,27,42,0.82)); }
.category-destination-card:hover img { transform: scale(1.06); }
.category-destination-card span { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 18px; }
.category-destination-card strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.25rem; line-height: 1.15; color: #fff; }
.category-destination-card em { display: block; margin-top: 5px; color: rgba(255,255,255,0.76); font-size: 0.82rem; font-style: normal; font-weight: 700; }

@media (max-width: 991px) {
  .category-hero-grid { grid-template-columns: 1fr; }
  .category-featured-story { min-height: 340px; }
  .category-destination-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575px) {
  .category-hero { padding: 48px 0 36px; }
  .category-stat { flex: 1 1 42%; min-width: 0; }
  .category-featured-story { min-height: 300px; }
  .category-featured-content { padding: 22px; }
  .category-destination-grid { grid-template-columns: 1fr; }
  .category-destination-card { min-height: 170px; }
}

@media (max-width: 767.98px) {
  body.tb-article-page .navbar-main {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1040;
  }
}

.tb-empty-state-wrap {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 62vh;
  padding: 78px 0;
  background:
    linear-gradient(135deg, rgba(13, 32, 64, 0.96), rgba(18, 57, 93, 0.92)),
    url("../images/generated/hero-travel-poster.jpg") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.tb-empty-state-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.14), transparent 42%, rgba(255,255,255,0.06));
  pointer-events: none;
}
.tb-empty-state-wrap .container {
  position: relative;
  z-index: 1;
}
.tb-empty-state {
  max-width: 720px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
  backdrop-filter: blur(12px);
  padding: clamp(28px, 5vw, 48px);
}
.tb-empty-state-inline {
  max-width: none;
  background: linear-gradient(135deg, #0f2c4a, #143d63);
  color: #fff;
  border-color: rgba(212,175,55,0.28);
  box-shadow: none;
}
.tb-empty-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold, #d4af37);
  color: #0f2c4a;
  font-size: 1.35rem;
  margin-bottom: 18px;
}
.tb-empty-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(212,175,55,0.42);
  border-radius: 999px;
  color: var(--gold-light, #f5d97a);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 12px;
  margin-bottom: 14px;
}
.tb-empty-state h1,
.tb-empty-state h2 {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 900;
  margin: 0 0 14px;
}
.tb-empty-state h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
}
.tb-empty-state p {
  color: rgba(255,255,255,0.82);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 0 24px;
}
.tb-empty-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.tb-empty-actions .btn-outline-custom {
  border-color: rgba(255,255,255,0.42);
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.tb-empty-actions .btn-outline-custom:hover {
  border-color: var(--gold, #d4af37);
  color: #0f2c4a;
  background: var(--gold, #d4af37);
}

@media (max-width: 575px) {
  .tb-empty-state-wrap {
    min-height: 58vh;
    padding: 52px 0;
  }
  .tb-empty-state {
    border-radius: 8px;
  }
  .tb-empty-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .tb-empty-actions a {
    justify-content: center;
    width: 100%;
  }
}

.season-page-hero { position: relative; min-height: 520px; display: flex; align-items: flex-end; overflow: hidden; color: #fff; }
.season-page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.season-page-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,27,42,0.24), rgba(13,32,64,0.92)); }
.season-page-hero .container { position: relative; z-index: 2; padding-top: 90px; padding-bottom: 70px; }
.season-page-back { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.84); font-weight: 700; font-size: 0.88rem; margin-bottom: 18px; }
.season-page-back:hover { color: var(--gold-light); }
.season-page-hero .section-label { background: rgba(255,255,255,0.14); color: var(--gold-light); border-color: rgba(255,255,255,0.22); }
.season-page-hero h1 { color: #fff; font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 900; max-width: 820px; margin: 18px 0 14px; }
.season-page-hero p { color: rgba(255,255,255,0.86); max-width: 620px; font-size: 1.05rem; line-height: 1.75; margin: 0; }
.season-feature-wide { display: grid; grid-template-columns: minmax(300px, 0.85fr) 1fr; min-height: 340px; background: #fff; border: 1px solid rgba(13,27,42,0.08); border-radius: 10px; overflow: hidden; box-shadow: 0 18px 46px rgba(13,27,42,0.1); color: inherit; text-decoration: none !important; }
.season-feature-img { min-height: 340px; overflow: hidden; }
.season-feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.season-feature-wide:hover .season-feature-img img { transform: scale(1.04); }
.season-feature-copy { padding: 34px; display: flex; flex-direction: column; justify-content: center; }
.season-feature-copy span { color: var(--gold); font-weight: 900; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.7px; margin-bottom: 10px; }
.season-feature-copy h2 { font-size: clamp(1.55rem, 3vw, 2.35rem); color: var(--primary-dark); margin-bottom: 14px; }
.season-feature-copy p { color: var(--text-muted); line-height: 1.7; }
.season-feature-copy em { color: var(--accent); font-style: normal; font-weight: 800; margin-top: 8px; }

.tb-wpcode-ad {
  width: 100%;
}

.tb-cookie-consent {
  position: fixed;
  inset: auto 18px 18px;
  z-index: 4200;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.tb-cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.tb-cookie-card {
  width: min(920px, 100%);
  margin-left: auto;
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(240,165,0,0.32);
  border-radius: 8px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 24px 70px rgba(13,32,64,0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.tb-cookie-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold, #f0a500), var(--gold-light, #ffd166));
  color: var(--primary-dark, #0d2040);
  font-size: 1.15rem;
}
.tb-cookie-copy strong {
  display: block;
  color: var(--primary-dark, #0d2040);
  font-family: "Playfair Display", serif;
  font-size: 1.16rem;
  line-height: 1.2;
  margin-bottom: 5px;
}
.tb-cookie-copy p {
  margin: 0;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.55;
}
.tb-cookie-copy a {
  display: inline-flex;
  margin-top: 5px;
  color: #9a6a00;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: underline;
}
.tb-cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tb-cookie-btn {
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 18px;
  border: 1px solid rgba(13,32,64,0.16);
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}
.tb-cookie-accept {
  border-color: transparent;
  background: var(--primary-dark, #0d2040);
  color: #fff;
}
.tb-cookie-decline {
  background: #fff;
  color: var(--primary-dark, #0d2040);
}
.tb-cookie-preferences {
  background: #f8fafc;
  color: var(--primary-dark, #0d2040);
}
.tb-cookie-btn:hover {
  transform: translateY(-1px);
}
.tb-cookie-manage {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 4100;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(13,32,64,0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--primary-dark, #0d2040);
  box-shadow: 0 12px 34px rgba(13,32,64,0.14);
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}
.tb-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 4300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.tb-cookie-modal.is-open {
  display: flex;
}
.tb-cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13,32,64,0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.tb-cookie-modal-dialog {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(0,0,0,0.28);
  padding: 28px;
}
.tb-cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  cursor: pointer;
}
.tb-cookie-modal-head {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding-right: 42px;
  margin-bottom: 22px;
}
.tb-cookie-modal-head > span {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold, #f0a500), var(--gold-light, #ffd166));
  color: var(--primary-dark, #0d2040);
}
.tb-cookie-modal-head h3 {
  margin: 0 0 6px;
  color: var(--primary-dark, #0d2040);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 900;
}
.tb-cookie-modal-head p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
}
.tb-cookie-options {
  display: grid;
  gap: 12px;
}
.tb-cookie-option {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(13,32,64,0.1);
  border-radius: 8px;
  background: #f8fafc;
}
.tb-cookie-option strong {
  display: block;
  color: var(--primary-dark, #0d2040);
  font-size: 0.98rem;
  margin-bottom: 4px;
}
.tb-cookie-option p {
  margin: 0;
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.5;
}
.tb-cookie-option input[type="checkbox"] {
  appearance: none;
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: #cbd5e1;
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease;
}
.tb-cookie-option input[type="checkbox"]::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  top: 3px;
  left: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.16);
  transition: transform 0.2s ease;
}
.tb-cookie-option input[type="checkbox"]:checked {
  background: var(--primary-dark, #0d2040);
}
.tb-cookie-option input[type="checkbox"]:checked::after {
  transform: translateX(20px);
}
.tb-cookie-always {
  color: #1f7a5b;
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}
.tb-cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(13,32,64,0.08);
}
body.tb-cookie-modal-open {
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .season-page-hero { min-height: 430px; }
  .season-page-hero .container { padding-top: 74px; padding-bottom: 44px; }
  .season-page-hero h1 { font-size: 2.15rem; }
  .season-page-hero p { font-size: 0.98rem; }
  .season-feature-wide { grid-template-columns: 1fr; min-height: 0; }
  .season-feature-img { min-height: 220px; }
  .season-feature-copy { padding: 24px; }
  .tb-cookie-consent { inset: auto 12px 12px; }
  .tb-cookie-card {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
    padding: 16px;
  }
  .tb-cookie-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }
  .tb-cookie-btn { width: 100%; padding-inline: 12px; }
  .tb-cookie-manage {
    left: 12px;
    bottom: 12px;
  }
  .tb-cookie-modal-dialog { padding: 24px 16px; }
  .tb-cookie-modal-head {
    display: grid;
    padding-right: 40px;
  }
  .tb-cookie-modal-head h3 { font-size: 1.65rem; }
  .tb-cookie-option {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .tb-cookie-modal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Times New Roman readability pass */
body { font-size: 17.5px; }

.section-subtitle,
.hero-subtitle,
.destination-hero-tagline,
.destinations-hero-tagline,
.newsletter-hero p,
.category-hero p,
.season-page-hero p,
.season-feature-copy p,
.destination-guide-intro,
.destination-overview-body,
.footer-tagline,
.footer-newsletter p {
  font-size: 1.08rem;
  line-height: 1.72;
}

.article-card-meta,
.article-meta,
.news-card-date,
.popular-post-date,
.read-time,
.related-card-body .meta,
.category-stat span,
.tb-bookmark-item span,
.tb-bookmark-admin-row span {
  font-size: 0.96rem;
  line-height: 1.35;
  font-weight: 800;
}

.section-label,
.newsletter-kicker,
.dest-card-count,
.continent-pill,
.dest-wide-pill,
.destination-guide-label,
.season-months-pill,
.top10-sub,
.category-featured-content em,
.newsletter-choice-top em,
.trending-rank {
  font-size: 0.9rem;
  line-height: 1.25;
  font-weight: 900;
}

.article-card p,
.category-feature-card p,
.festival-card p,
.festival-spotlight-copy p,
.festival-trail-body p,
.adventure-card p,
.adventure-expedition-card p,
.spiritual-feature-copy p,
.spiritual-card p,
.spiritual-retreat-card p,
.guide-card p,
.theme-card p,
.style-card p,
.tip-card p,
.destination-guide-card p,
.destination-itinerary-step p,
.destination-planning-tips li,
.destination-faq .faq-a p,
.destinations-faq .faq-a p,
.faq-item .faq-a p,
.newsletter-choice small,
.newsletter-hub-head p,
.newsletter-signup-panel p,
.newsletter-modal-head p,
.newsletter-thanks-dialog p,
.tb-auth-modal-art p,
.tb-auth-popup-hero p,
.tb-auth-shell p,
.tb-dashboard-head p,
.tb-panel-subscribe p,
.tb-bookmark-item p,
.tb-bookmark-admin-row p,
.tb-empty-state p {
  font-size: 1.02rem;
  line-height: 1.66;
}

.article-card-author span,
.popular-dest strong,
.related-dest-card strong,
.month-tile-body strong,
.sidebar-post-link strong,
.sidebar-dest-link strong,
.tb-user-card strong {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.footer-links a,
.mega-menu-col a,
.navbar-main .nav-link,
.category-tabs button,
.month-btn,
.btn-primary-custom,
.btn-outline-custom,
.season-cta,
.dest-card-btn,
.continent-cta,
.dest-wide-cta,
.tip-card a,
.faq-read-more,
.newsletter-open-modal,
.newsletter-complete-btn,
.tb-cookie-btn {
  font-size: 1rem;
  font-weight: 900;
}

.navbar-search input,
.hero-search-box input,
.footer-newsletter-input,
.tbites-subscribe-row input,
.destinations-search input,
.tb-auth-form input,
.newsletter-email-field input {
  font-size: 1rem;
}

@media (max-width: 767.98px) {
  body { font-size: 16.5px; }
  .section-subtitle,
  .hero-subtitle,
  .destination-hero-tagline,
  .destinations-hero-tagline,
  .newsletter-hero p,
  .category-hero p,
  .season-page-hero p,
  .season-feature-copy p,
  .destination-guide-intro,
  .destination-overview-body {
    font-size: 1rem;
  }
  .article-card h3,
  .destination-guide-block .article-card h3 {
    font-size: 1.14rem;
  }
  .article-card p,
  .destination-guide-block .article-card p {
    font-size: 0.98rem;
  }
}
