/*
Theme Name: TRAVELZ VIBE
Version: 1.4.0
Description: Ultimate version with all content and assets.
Author: TRAVELZ VIBE
Text Domain: travelzvibe
*/

/* ============================================================
   BASE.CSS — Design System Tokens, Reset, Typography
   Travel Affiliate Website
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
  /* Brand Colors */
  --color-primary:       #f59e0b;   /* Amber - CTA, highlights */
  --color-primary-dark:  #d97706;
  --color-primary-light: #fcd34d;
  --color-secondary:     #0d9488;   /* Teal - accents */
  --color-secondary-dark:#0b7a71;
  --color-navy:          #0a1628;   /* Deep navy - header, dark bg */
  --color-navy-mid:      #112040;
  --color-navy-light:    #1e3a5f;

  /* Neutrals */
  --color-white:    #ffffff;
  --color-bg:       #f8fafc;
  --color-surface:  #ffffff;
  --color-border:   #e2e8f0;
  --color-muted:    #64748b;
  --color-text:     #1e293b;
  --color-heading:  #0f172a;

  /* Status Colors */
  --color-success:  #10b981;
  --color-warning:  #f59e0b;
  --color-danger:   #ef4444;
  --color-info:     #3b82f6;

  /* Gradients */
  --grad-hero:    linear-gradient(135deg, rgba(10,22,40,0.85) 0%, rgba(13,148,136,0.4) 100%);
  --grad-primary: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --grad-teal:    linear-gradient(135deg, #0d9488 0%, #0891b2 100%);
  --grad-navy:    linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
  --grad-card:    linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);

  /* Spacing */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   24px;
  --space-xl:   32px;
  --space-2xl:  48px;
  --space-3xl:  64px;
  --space-4xl:  96px;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;
  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-lg:    1.125rem;
  --text-xl:    1.25rem;
  --text-2xl:   1.5rem;
  --text-3xl:   1.875rem;
  --text-4xl:   2.25rem;
  --text-5xl:   3rem;
  --text-6xl:   3.75rem;

  /* Border Radius */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.08);
  --shadow-lg:  0 10px 30px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl:  0 20px 50px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.10);
  --shadow-glow-amber: 0 0 30px rgba(245,158,11,0.3);
  --shadow-glow-teal:  0 0 30px rgba(13,148,136,0.3);

  /* Transitions */
  --transition-fast:   150ms cubic-bezier(0.4,0,0.2,1);
  --transition-base:   250ms cubic-bezier(0.4,0,0.2,1);
  --transition-slow:   400ms cubic-bezier(0.4,0,0.2,1);

  /* Layout */
  --container-max: 1200px;
  --container-wide: 1400px;
  --navbar-height: 72px;
  --sidebar-width: 320px;
}

/* ============================================================
   RESET & BOX MODEL
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-heading);
}

h1 { font-size: clamp(2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.875rem); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; }
em { font-style: italic; }

.text-xs   { font-size: var(--text-xs); }
.text-sm   { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg   { font-size: var(--text-lg); }
.text-xl   { font-size: var(--text-xl); }
.text-2xl  { font-size: var(--text-2xl); }
.text-3xl  { font-size: var(--text-3xl); }

.font-light  { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold   { font-weight: 700; }
.font-black  { font-weight: 900; }

.font-heading { font-family: var(--font-heading); }

.text-white   { color: var(--color-white); }
.text-primary { color: var(--color-primary); }
.text-teal    { color: var(--color-secondary); }
.text-navy    { color: var(--color-navy); }
.text-muted   { color: var(--color-muted); }
.text-heading { color: var(--color-heading); }

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.container-wide {
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.section {
  padding-block: var(--space-4xl);
}

.section-sm {
  padding-block: var(--space-2xl);
}

.section-lg {
  padding-block: 120px;
}

/* Grid utilities */
.grid { display: grid; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-base);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition-fast);
}

.btn:hover::before { background: rgba(255,255,255,0.1); }

.btn-primary {
  background: var(--grad-primary);
  color: var(--color-navy);
  box-shadow: 0 4px 15px rgba(245,158,11,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245,158,11,0.5);
}

.btn-teal {
  background: var(--grad-teal);
  color: white;
  box-shadow: var(--shadow-glow-teal);
}
.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13,148,136,0.5);
}

.btn-navy {
  background: var(--grad-navy);
  color: white;
  box-shadow: var(--shadow-md);
}
.btn-navy:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-navy);
}

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
}

.btn-sm {
  padding: 10px 20px;
  font-size: var(--text-sm);
}

.btn-lg {
  padding: 18px 36px;
  font-size: var(--text-lg);
}

.btn-xl {
  padding: 22px 48px;
  font-size: var(--text-xl);
  font-weight: 800;
}

/* ============================================================
   BADGE & LABELS
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  font-size: var(--text-xs);
  font-weight: 600;
  font-family: var(--font-heading);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-amber {
  background: rgba(245,158,11,0.15);
  color: var(--color-primary-dark);
  border: 1px solid rgba(245,158,11,0.3);
}

.badge-teal {
  background: rgba(13,148,136,0.15);
  color: var(--color-secondary);
  border: 1px solid rgba(13,148,136,0.3);
}

.badge-navy {
  background: var(--color-navy);
  color: white;
}

.badge-green {
  background: rgba(16,185,129,0.15);
  color: #065f46;
  border: 1px solid rgba(16,185,129,0.3);
}

/* ============================================================
   STAR RATINGS
   ============================================================ */
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--color-primary);
  font-size: var(--text-sm);
}
.stars .star { color: var(--color-primary); }
.stars .star-empty { color: #d1d5db; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-3xl);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-muted);
  line-height: 1.7;
}

/* Dark section headers */
.section-header.light .section-title,
.section-header.light .section-subtitle {
  color: white;
}
.section-header.light .section-subtitle { color: rgba(255,255,255,0.75); }

/* ============================================================
   DARK BACKGROUNDS
   ============================================================ */
.bg-navy    { background-color: var(--color-navy); color: white; }
.bg-navy-mid { background-color: var(--color-navy-mid); color: white; }
.bg-surface { background-color: var(--color-surface); }
.bg-muted   { background-color: #f1f5f9; }
.bg-primary { background: var(--grad-primary); }
.bg-teal    { background: var(--grad-teal); }
.bg-gradient-hero { background: var(--grad-hero); }

/* ============================================================
   DIVIERS & ACCENTS
   ============================================================ */
.divider {
  width: 60px;
  height: 4px;
  background: var(--grad-primary);
  border-radius: var(--radius-full);
  margin: var(--space-md) auto;
}

.divider-left { margin-left: 0; }

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-heading);
}

.form-input {
  width: 100%;
  padding: 12px 18px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  color: var(--color-text);
  background: white;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(245,158,11,0.1);
}

.form-input::placeholder { color: #94a3b8; }

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%2364748b'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

/* ============================================================
   SCROLL & OVERFLOW
   ============================================================ */
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.rounded-sm  { border-radius: var(--radius-sm); }
.rounded-md  { border-radius: var(--radius-md); }
.rounded-lg  { border-radius: var(--radius-lg); }
.rounded-xl  { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-full { border-radius: var(--radius-full); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

.w-full { width: 100%; }
.h-full { height: 100%; }

.hidden { display: none !important; }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1024px) {
  :root { --container-max: 100%; }
}

@media (max-width: 768px) {
  .section { padding-block: var(--space-3xl); }
  .section-lg { padding-block: var(--space-4xl); }
  .container { padding-inline: var(--space-md); }
  .btn-xl { padding: 16px 32px; font-size: var(--text-lg); }
}

@media (max-width: 480px) {
  .section { padding-block: var(--space-2xl); }
  .container { padding-inline: var(--space-md); }
}
/* ============================================================
   COMPONENTS.CSS — Navbar, Cards, Tables, Affiliate Blocks,
   Search Widgets, Sidebar, Popups, Footer
   ============================================================ */

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-navy);
    height: var(--navbar-height);
    display: flex;
    align-items: center;
    transition: all var(--transition-base);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-wide);
    margin-inline: auto;
    padding-inline: var(--space-lg);
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--grad-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--color-navy);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 800;
    color: white;
    line-height: 1.1;
}

.logo-text span {
    color: var(--color-primary);
}

.logo-tagline {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    letter-spacing: 0.05em;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 14px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
    background: rgba(245, 158, 11, 0.1);
}

.dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-trigger .chevron {
    transition: transform var(--transition-fast);
    font-size: 10px;
}

.dropdown:hover .chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 200px;
    background: var(--color-navy-mid);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-xl);
    padding: var(--space-sm);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 14px;
    font-size: var(--text-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-primary);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    background: none;
    border: none;
}

.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all var(--transition-base);
}

.navbar-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.open span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    background: var(--color-navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-md);
    z-index: 999;
    max-height: calc(100vh - var(--navbar-height));
    overflow-y: auto;
}

.mobile-menu.open {
    display: block;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 14px 16px;
    font-size: var(--text-base);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-primary);
}

/* ============================================================
   SEARCH WIDGET
   ============================================================ */
.search-widget {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    max-width: 860px;
    width: 100%;
    margin-inline: auto;
}

.search-tabs {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
    background: #f1f5f9;
    border-radius: var(--radius-full);
    padding: 4px;
}

.search-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 10px 16px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--text-sm);
    border-radius: var(--radius-full);
    border: none;
    background: none;
    color: var(--color-muted);
    cursor: pointer;
    transition: all var(--transition-base);
}

.search-tab.active {
    background: var(--color-navy);
    color: white;
    box-shadow: var(--shadow-md);
}

.search-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.6);
    color: var(--color-text);
}

.search-panel {
    display: none;
}

.search-panel.active {
    display: block;
}

.search-field-row {
    display: grid;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.search-field-row.cols-2 {
    grid-template-columns: 1fr 1fr;
}

.search-field-row.cols-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.search-field-row.cols-4 {
    grid-template-columns: 2fr 2fr 1fr 1fr;
}

.search-field {
    position: relative;
}

.search-field-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--color-muted);
    pointer-events: none;
}

.search-field .form-input {
    padding-left: 42px;
    border-radius: var(--radius-xl);
    font-size: var(--text-sm);
}

.search-btn {
    width: 100%;
    justify-content: center;
    font-size: var(--text-lg);
    padding: 16px;
    border-radius: var(--radius-xl);
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(245, 158, 11, 0.2);
}

.card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #e2e8f0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card-image img {
    transform: scale(1.06);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
}

.card-image-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
}

.card-body {
    padding: var(--space-lg);
}

.card-category {
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    margin-bottom: var(--space-sm);
}

.card-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.card-title a:hover {
    color: var(--color-primary);
}

.card-excerpt {
    font-size: var(--text-sm);
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--text-xs);
    color: var(--color-muted);
}

/* Dest Card */
.dest-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    display: block;
}

.dest-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dest-card:hover .dest-card-img {
    transform: scale(1.08);
}

.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0.2) 60%, transparent 100%);
    transition: background var(--transition-slow);
}

.dest-card:hover .dest-card-overlay {
    background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.4) 70%, transparent 100%);
}

.dest-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
}

.dest-card-name {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
}

.dest-card-sub {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
}

.dest-card-explore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

.dest-card:hover .dest-card-explore {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   AFFILIATE BLOCKS
   ============================================================ */
.affiliate-block {
    background: white;
    border-radius: var(--radius-xl);
    border: 2px solid var(--color-border);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.affiliate-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--aff-color, var(--grad-primary));
}

.affiliate-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(245, 158, 11, 0.25);
}

.affiliate-block-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.affiliate-block-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    background: var(--aff-bg, rgba(245, 158, 11, 0.1));
}

.affiliate-block-name {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-muted);
    margin-bottom: 2px;
}

.affiliate-block-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--color-heading);
}

.affiliate-block-desc {
    font-size: var(--text-sm);
    color: var(--color-muted);
    line-height: 1.6;
}

.affiliate-block-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.affiliate-block-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.affiliate-block-price {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    color: var(--color-muted);
}

.affiliate-block-price span {
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--color-heading);
}

.aff-flight {
    --aff-color: linear-gradient(90deg, #3b82f6, #0ea5e9);
    --aff-bg: rgba(59, 130, 246, 0.1);
}

.aff-hotel {
    --aff-color: linear-gradient(90deg, #0a1628, #1e3a5f);
    --aff-bg: rgba(10, 22, 40, 0.08);
}

.aff-insure {
    --aff-color: linear-gradient(90deg, #10b981, #059669);
    --aff-bg: rgba(16, 185, 129, 0.1);
}

.aff-tour {
    --aff-color: linear-gradient(90deg, #f59e0b, #d97706);
    --aff-bg: rgba(245, 158, 11, 0.1);
}

.aff-gear {
    --aff-color: linear-gradient(90deg, #8b5cf6, #7c3aed);
    --aff-bg: rgba(139, 92, 246, 0.1);
}

.aff-card {
    --aff-color: linear-gradient(90deg, #ec4899, #db2777);
    --aff-bg: rgba(236, 72, 153, 0.1);
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--text-sm);
}

.comparison-table thead {
    background: var(--color-navy);
    color: white;
}

.comparison-table thead th {
    padding: 16px 20px;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.comparison-table thead th:last-child {
    text-align: center;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--color-border);
    transition: background var(--transition-fast);
}

.comparison-table tbody tr:hover {
    background: #f8fafc;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr.highlighted {
    background: rgba(245, 158, 11, 0.06);
    border-left: 3px solid var(--color-primary);
}

.comparison-table tbody td {
    padding: 16px 20px;
    vertical-align: middle;
    color: var(--color-text);
}

.comparison-table tbody td:last-child {
    text-align: center;
}

.table-provider {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    color: var(--color-heading);
}

.table-provider-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.table-best-badge {
    background: var(--grad-primary);
    color: var(--color-navy);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-left: 6px;
}

.table-feature {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--color-success);
    font-weight: 500;
}

.table-feature.no {
    color: var(--color-danger);
}

/* ============================================================
   MONEY PAGE CARDS
   ============================================================ */
.money-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.money-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--mc-color, var(--grad-primary));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.money-card:hover::after {
    transform: scaleX(1);
}

.money-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.money-card-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto var(--space-md);
    background: var(--mc-bg, rgba(245, 158, 11, 0.1));
}

.money-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: var(--space-sm);
}

.money-card-desc {
    font-size: var(--text-sm);
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

/* ============================================================
   EMAIL CAPTURE
   ============================================================ */
.email-capture {
    background: var(--grad-navy);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl) var(--space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.email-capture::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.email-capture-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.email-capture-sub {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.lead-magnets {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.lead-magnet {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: var(--space-md) var(--space-lg);
    cursor: pointer;
    transition: all var(--transition-base);
}

.lead-magnet:hover,
.lead-magnet.selected {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.4);
}

.lead-magnet-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.lead-magnet-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 2px;
}

.lead-magnet-title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: white;
    line-height: 1.3;
}

.email-form {
    display: flex;
    gap: var(--space-sm);
    max-width: 520px;
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.email-form .form-input {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    padding: 14px 22px;
}

.email-form .btn {
    flex-shrink: 0;
    border-radius: var(--radius-full);
    padding: 14px 28px;
}

.email-disclaimer {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.4);
    margin-top: var(--space-md);
    position: relative;
    z-index: 1;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.sidebar-widget {
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.sidebar-widget-header {
    background: var(--color-navy);
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.sidebar-widget-title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 700;
    color: white;
}

.sidebar-widget-body {
    padding: var(--space-lg);
}

.sidebar-search {
    display: flex;
    gap: var(--space-sm);
}

.sidebar-search .form-input {
    border-radius: var(--radius-full);
    padding: 10px 18px;
    font-size: var(--text-sm);
}

.sidebar-search-btn {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: var(--color-primary);
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    transition: all var(--transition-fast);
}

.sidebar-search-btn:hover {
    background: var(--color-primary-dark);
    transform: scale(1.05);
}

.popular-post {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
}

.popular-post:last-child {
    border-bottom: none;
}

.popular-post:hover .popular-post-title {
    color: var(--color-primary);
}

.popular-post-num {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 900;
    color: #e2e8f0;
    line-height: 1;
    flex-shrink: 0;
    width: 32px;
}

.popular-post-title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-heading);
    line-height: 1.4;
    transition: color var(--transition-fast);
}

.popular-post-meta {
    font-size: var(--text-xs);
    color: var(--color-muted);
    margin-top: 4px;
}

.sidebar-ad {
    background: var(--grad-teal);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sidebar-ad-tag {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.sidebar-ad-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-sm);
}

.sidebar-ad-desc {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-lg);
}

.sidebar-ad-price {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 900;
    color: white;
    margin-bottom: 4px;
}

.sidebar-ad-period {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-lg);
}

.deal-box {
    background: linear-gradient(135deg, #fff7ed 0%, #fffbeb 100%);
    border: 2px solid rgba(245, 158, 11, 0.25);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
}

.deal-box-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.deal-box-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--color-heading);
}

.deal-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 0;
    border-bottom: 1px solid rgba(245, 158, 11, 0.15);
}

.deal-item:last-child {
    border-bottom: none;
}

.deal-item-dest {
    flex: 1;
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--color-heading);
}

.deal-item-price {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-primary-dark);
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section {
    background: var(--color-navy);
    padding-block: var(--space-3xl);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-xl);
    text-align: center;
}

.trust-item {
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-base);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.trust-item-icon {
    font-size: 40px;
    margin-bottom: var(--space-md);
}

.trust-item-num {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.trust-item-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

/* ============================================================
   EXIT POPUP
   ============================================================ */
.exit-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    backdrop-filter: blur(4px);
}

.exit-popup {
    background: white;
    border-radius: var(--radius-2xl);
    max-width: 540px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    position: relative;
}

.exit-popup-header {
    background: var(--grad-navy);
    padding: var(--space-2xl) var(--space-2xl) var(--space-xl);
    text-align: center;
}

.exit-popup-emoji {
    font-size: 56px;
    margin-bottom: var(--space-md);
}

.exit-popup-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 900;
    color: white;
    margin-bottom: var(--space-sm);
}

.exit-popup-sub {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.7);
}

.exit-popup-body {
    padding: var(--space-xl) var(--space-2xl) var(--space-2xl);
}

.exit-popup-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    font-size: var(--text-sm);
    color: var(--color-text);
}

.exit-popup-item-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.exit-popup-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

.exit-popup-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.exit-popup-no-thanks {
    text-align: center;
    margin-top: var(--space-md);
    font-size: var(--text-xs);
    color: var(--color-muted);
    cursor: pointer;
    text-decoration: underline;
}

/* ============================================================
   STICKY BAR
   ============================================================ */
#sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--color-navy);
    border-top: 2px solid rgba(245, 158, 11, 0.3);
    padding: 12px var(--space-lg);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

#sticky-bar.visible {
    transform: translateY(0);
}

.sticky-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    max-width: var(--container-max);
    margin-inline: auto;
    flex-wrap: wrap;
}

.sticky-bar-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.sticky-bar-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--text-sm);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.sticky-bar-btn-flight {
    background: #3b82f6;
    color: white;
}

.sticky-bar-btn-hotel {
    background: var(--color-secondary);
    color: white;
}

.sticky-bar-btn-insure {
    background: var(--color-success);
    color: white;
}

.sticky-bar-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.sticky-bar-close {
    position: absolute;
    right: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.sticky-bar-close:hover {
    color: white;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--color-muted);
    margin-bottom: var(--space-lg);
}

.breadcrumb a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--color-primary);
}

.breadcrumb-sep {
    color: var(--color-border);
}

/* ============================================================
   TOC
   ============================================================ */
.toc-widget {
    background: #f8fafc;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
    position: sticky;
    top: calc(var(--navbar-height) + var(--space-md));
}

.toc-title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.toc-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toc-item a {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: 8px 10px;
    font-size: var(--text-sm);
    color: var(--color-muted);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    line-height: 1.4;
}

.toc-item a:hover {
    color: var(--color-primary);
    background: rgba(245, 158, 11, 0.08);
}

.toc-item a.active {
    color: var(--color-primary);
    font-weight: 600;
    background: rgba(245, 158, 11, 0.1);
}

.toc-num {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--text-xs);
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 1px;
}

/* ============================================================
   PROS / CONS
   ============================================================ */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.pros-box {
    background: rgba(16, 185, 129, 0.06);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
}

.cons-box {
    background: rgba(239, 68, 68, 0.06);
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
}

.pros-cons-title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.pros-box .pros-cons-title {
    color: #065f46;
}

.cons-box .pros-cons-title {
    color: #991b1b;
}

.pros-cons-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

/* ============================================================
   BUDGET TIP BOX
   ============================================================ */
.budget-tip-box {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(245, 158, 11, 0.04) 100%);
    border: 2px solid rgba(245, 158, 11, 0.25);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
    position: relative;
}

.budget-tip-title {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-primary-dark);
    margin-bottom: var(--space-sm);
    font-size: var(--text-lg);
}

.budget-tip-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.budget-tip-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--color-text);
}

.budget-tip-list li::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================================
   INLINE CTA
   ============================================================ */
.inline-cta {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    background: white;
    border-radius: var(--radius-xl);
    border: 2px solid var(--color-border);
    padding: var(--space-xl);
    margin: var(--space-2xl) 0;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.inline-cta:hover {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: var(--shadow-xl);
}

.inline-cta-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.inline-cta-content {
    flex: 1;
}

.inline-cta-label {
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.inline-cta-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 4px;
}

.inline-cta-desc {
    font-size: var(--text-sm);
    color: var(--color-muted);
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
    background: var(--grad-primary);
    padding-block: var(--space-lg);
}

.stats-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    flex-wrap: wrap;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--space-lg);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    white-space: nowrap;
}

.stat-icon {
    font-size: 28px;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 900;
    color: var(--color-navy);
    line-height: 1;
}

.stat-label {
    font-size: var(--text-xs);
    font-weight: 600;
    color: rgba(10, 22, 40, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================================
   TRENDING CARDS
   ============================================================ */
.trending-card {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.trending-card:hover {
    transform: translateX(4px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: var(--shadow-md);
}

.trending-card-img {
    width: 88px;
    height: 88px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    flex-shrink: 0;
}

.trending-card-num {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 800;
    color: rgba(245, 158, 11, 0.3);
    margin-bottom: 4px;
}

.trending-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-heading);
    line-height: 1.3;
    margin-bottom: 6px;
    transition: color var(--transition-fast);
}

.trending-card:hover .trending-card-title {
    color: var(--color-primary);
}

.trending-card-meta {
    font-size: var(--text-xs);
    color: var(--color-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--color-navy);
    color: rgba(255, 255, 255, 0.7);
    padding-top: var(--space-4xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-3xl);
}

.footer-brand-desc {
    font-size: var(--text-sm);
    line-height: 1.7;
    margin: var(--space-lg) 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all var(--transition-fast);
    color: rgba(255, 255, 255, 0.7);
}

.social-link:hover {
    background: rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.4);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-lg);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-block: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.footer-bottom-text {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-bottom-links a {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.35);
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--color-primary);
}

.affiliate-disclaimer-banner {
    background: rgba(245, 158, 11, 0.06);
    border-top: 1px solid rgba(245, 158, 11, 0.12);
    padding: var(--space-md) var(--space-lg);
    text-align: center;
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .navbar-nav,
    .navbar-actions {
        display: none;
    }

    .navbar-toggle {
        display: flex;
    }

    .search-field-row.cols-4,
    .search-field-row.cols-3,
    .search-field-row.cols-2 {
        grid-template-columns: 1fr;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .inline-cta {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .email-form {
        flex-direction: column;
    }

    .lead-magnets {
        flex-direction: column;
        align-items: center;
    }

    .sticky-bar-label {
        display: none;
    }

    .stats-strip-inner {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .search-widget {
        padding: var(--space-lg);
    }

    .search-tab {
        font-size: var(--text-xs);
        padding: 8px 10px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ============================================================
   LAYOUT.CSS — Homepage, Blog, Article, Destination layouts
   ============================================================ */

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--navbar-height);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/hero_travel.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 22, 40, 0.88) 0%,
            rgba(10, 22, 40, 0.55) 50%,
            rgba(13, 148, 136, 0.35) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--space-lg);
    padding-block: var(--space-4xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-xl);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-full);
    padding: 8px 20px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    font-family: var(--font-heading);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    max-width: 780px;
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--color-primary);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    line-height: 1.7;
}

/* ============================================================
   HOMEPAGE GRID LAYOUTS
   ============================================================ */

/* Section: Money Pages */
.money-pages-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
}

/* Section: Affiliate Blocks */
.affiliate-blocks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

/* Section: Destinations */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-md);
}

.destinations-grid .dest-card:first-child {
    grid-column: span 2;
    aspect-ratio: 8/5;
}

.destinations-grid .dest-card:nth-child(5) {
    grid-column: span 2;
    aspect-ratio: 8/5;
}

/* Section: Trending */
.trending-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.trending-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.trending-column-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--color-border);
    margin-bottom: var(--space-sm);
}

.trending-column-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.trending-column-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--color-heading);
}

/* ============================================================
   BLOG LAYOUT
   ============================================================ */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr var(--sidebar-width);
    gap: var(--space-3xl);
    align-items: start;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.blog-featured {
    grid-column: 1 / -1;
}

.blog-featured .card-image {
    aspect-ratio: 21/9;
}

.blog-featured .card-title {
    font-size: var(--text-3xl);
}

.blog-featured .card-excerpt {
    font-size: var(--text-base);
}

/* Category Filter Tabs */
.category-tabs {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.category-tab {
    padding: 8px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--text-sm);
    border-radius: var(--radius-full);
    border: 2px solid var(--color-border);
    background: white;
    color: var(--color-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.category-tab:hover,
.category-tab.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-navy);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* ============================================================
   ARTICLE LAYOUT
   ============================================================ */
.article-layout {
    display: grid;
    grid-template-columns: 1fr var(--sidebar-width);
    gap: var(--space-3xl);
    align-items: start;
}

.article-hero {
    position: relative;
    height: 60vh;
    min-height: 420px;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    margin-bottom: var(--space-2xl);
}

.article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.1) 60%, transparent 100%);
}

.article-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-2xl);
}

.article-meta-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    padding: var(--space-md) 0 var(--space-xl);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--space-xl);
    font-size: var(--text-sm);
    color: var(--color-muted);
}

.article-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.article-author-img {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid var(--color-primary);
}

.article-author-name {
    font-weight: 600;
    color: var(--color-heading);
}

.article-meta-sep {
    color: #d1d5db;
}

.article-content {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--color-text);
}

.article-content h2 {
    font-size: var(--text-3xl);
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-lg);
    color: var(--color-heading);
}

.article-content h3 {
    font-size: var(--text-2xl);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    color: var(--color-heading);
}

.article-content p {
    margin-bottom: var(--space-lg);
}

.article-content ul,
.article-content ol {
    padding-left: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.article-content ul {
    list-style: disc;
}

.article-content ol {
    list-style: decimal;
}

.article-content li {
    margin-bottom: var(--space-sm);
}

.article-content img {
    border-radius: var(--radius-xl);
    margin: var(--space-xl) 0;
}

.article-content a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.article-content a:hover {
    color: var(--color-primary);
}

/* ============================================================
   DESTINATION PAGE LAYOUT
   ============================================================ */
.dest-page-hero {
    height: 70vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.dest-page-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dest-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.92) 0%, rgba(10, 22, 40, 0.3) 60%, transparent 100%);
}

.dest-page-hero-content {
    position: absolute;
    bottom: var(--space-3xl);
    left: 0;
    right: 0;
    padding-inline: var(--space-lg);
    max-width: var(--container-max);
    margin-inline: auto;
}

.dest-quick-facts {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
    margin: var(--space-2xl) 0;
    padding: var(--space-xl);
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.dest-quick-fact {
    flex: 1;
    text-align: center;
    min-width: 130px;
}

.dest-quick-fact-icon {
    font-size: 28px;
    margin-bottom: var(--space-sm);
}

.dest-quick-fact-label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-muted);
    font-weight: 600;
    margin-bottom: 4px;
}

.dest-quick-fact-value {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--color-heading);
}

/* ============================================================
   ABOUT PAGE LAYOUT
   ============================================================ */
.about-hero {
    background: var(--grad-navy);
    padding-block: var(--space-4xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-author-img {
    width: 160px;
    height: 160px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 5px solid var(--color-primary);
    margin: 0 auto var(--space-xl);
    display: block;
    box-shadow: var(--shadow-glow-amber);
}

.experience-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-top: var(--space-2xl);
}

.experience-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: var(--space-md) var(--space-lg);
}

.experience-badge-icon {
    font-size: 24px;
}

.experience-badge-text {
    font-size: var(--text-sm);
    font-weight: 600;
    color: white;
}

.experience-badge-num {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 900;
    color: var(--color-primary);
}

/* ============================================================
   SECTION BACKGROUNDS
   ============================================================ */
.section-white {
    background: white;
}

.section-muted {
    background: #f1f5f9;
}

.section-navy {
    background: var(--color-navy);
}

.section-pattern {
    background-color: var(--color-bg);
    background-image: radial-gradient(circle at 1px 1px, rgba(10, 22, 40, 0.04) 1px, transparent 0);
    background-size: 32px 32px;
}

/* ============================================================
   NEWSLETTER FULL-WIDTH
   ============================================================ */
.newsletter-section {
    background: var(--grad-navy);
    padding-block: var(--space-4xl);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 85% 50%, rgba(13, 148, 136, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* ============================================================
   RESPONSIVE LAYOUTS
   ============================================================ */
@media (max-width: 1200px) {
    .money-pages-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .affiliate-blocks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destinations-grid .dest-card:first-child,
    .destinations-grid .dest-card:nth-child(5) {
        grid-column: span 1;
        aspect-ratio: 4/5;
    }

    .trending-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
        background-attachment: scroll;
    }

    .hero-bg {
        background-attachment: scroll;
    }

    .money-pages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .affiliate-blocks-grid {
        grid-template-columns: 1fr;
    }

    .destinations-grid {
        grid-template-columns: 1fr 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-featured .card-title {
        font-size: var(--text-2xl);
    }

    .trending-grid {
        grid-template-columns: 1fr;
    }

    .dest-quick-facts {
        gap: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .money-pages-grid {
        grid-template-columns: 1fr 1fr;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .destinations-grid .dest-card {
        aspect-ratio: 3/2;
    }

    .category-tabs {
        gap: var(--space-xs);
    }

    .category-tab {
        padding: 6px 14px;
        font-size: var(--text-xs);
    }
}
/* ============================================================
   ANIMATIONS.CSS — Micro-interactions, Transitions, Keyframes
   ============================================================ */

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes slideDown {
  from { opacity: 0; max-height: 0; }
  to   { opacity: 1; max-height: 600px; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); animation-timing-function: cubic-bezier(0.8,0,1,1); }
  50%       { transform: translateY(-8px); animation-timing-function: cubic-bezier(0,0,0.2,1); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes ripple {
  0%   { box-shadow: 0 0 0 0 rgba(245,158,11,0.4); }
  100% { box-shadow: 0 0 0 20px rgba(245,158,11,0); }
}

@keyframes bgPan {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(245,158,11,0.3); }
  50%       { box-shadow: 0 0 40px rgba(245,158,11,0.6), 0 0 60px rgba(245,158,11,0.2); }
}

/* ============================================================
   ANIMATION UTILITY CLASSES
   ============================================================ */
.animate-fade-in      { animation: fadeIn 0.6s ease forwards; }
.animate-fade-in-up   { animation: fadeInUp 0.7s ease forwards; }
.animate-fade-in-down { animation: fadeInDown 0.7s ease forwards; }
.animate-scale-in     { animation: scaleIn 0.5s ease forwards; }
.animate-float        { animation: float 4s ease-in-out infinite; }
.animate-pulse-subtle { animation: pulse 3s ease-in-out infinite; }
.animate-bounce       { animation: bounce 1s ease-in-out infinite; }
.animate-spin         { animation: spin 1s linear infinite; }
.animate-ripple       { animation: ripple 1.5s ease-out infinite; }
.animate-shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% auto;
  animation: shimmer 1.5s linear infinite;
}

/* Delay utilities */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }
.delay-600 { animation-delay: 600ms; }

/* ============================================================
   INTERSECTION OBSERVER REVEAL CLASSES
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   CARD HOVER EFFECTS
   ============================================================ */
.hover-lift {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.hover-scale {
  transition: transform var(--transition-base);
}

.hover-scale:hover { transform: scale(1.03); }

.hover-glow:hover {
  box-shadow: 0 0 30px rgba(245,158,11,0.4), var(--shadow-lg);
}

.hover-glow-teal:hover {
  box-shadow: 0 0 30px rgba(13,148,136,0.4), var(--shadow-lg);
}

/* ============================================================
   IMAGE HOVER ZOOM
   ============================================================ */
.img-zoom {
  overflow: hidden;
  border-radius: inherit;
}

.img-zoom img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-zoom:hover img { transform: scale(1.08); }

/* ============================================================
   BUTTON ANIMATIONS
   ============================================================ */
.btn-animate {
  position: relative;
  overflow: hidden;
}

.btn-animate::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.btn-animate:hover::after {
  width: 300px;
  height: 300px;
}

/* ============================================================
   POPUP ANIMATIONS
   ============================================================ */
.popup-overlay {
  animation: fadeIn 0.3s ease forwards;
}

.popup-content {
  animation: scaleIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ============================================================
   STICKY BAR SLIDE UP
   ============================================================ */
.sticky-bar {
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sticky-bar.visible {
  transform: translateY(0);
}

/* ============================================================
   NAVBAR DROPDOWN
   ============================================================ */
.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ============================================================
   PROGRESS BAR ANIMATION
   ============================================================ */
@keyframes progressFill {
  from { width: 0; }
  to   { width: var(--progress); }
}

.progress-bar {
  height: 6px;
  background: #e2e8f0;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: var(--grad-primary);
  animation: progressFill 1.5s ease forwards;
  animation-delay: 0.5s;
  width: 0;
}

/* ============================================================
   TYPING CURSOR EFFECT
   ============================================================ */
.typing-cursor::after {
  content: '|';
  color: var(--color-primary);
  animation: pulse 1s ease-in-out infinite;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   BLOG PAGE STYLES — Vibrant & Professional
   ============================================================ */

/* ── Blog Hero ──────────────────────────────────────────────── */
.blog-hero {
  position: relative;
  background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 30%, #0d7377 60%, #14a085 100%);
  padding-top: calc(var(--navbar-height) + 4rem);
  padding-bottom: 4rem;
  text-align: center;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/images/destinations_grid.png');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
}

/* Colorful floating gradient blobs for visual richness */
.blog-hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.18) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  z-index: 1;
  border-radius: 50%;
}

.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.15) 0%, rgba(10,22,40,0.5) 100%);
  z-index: 1;
}

.blog-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(245,158,11,0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(13,148,136,0.15) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(59,130,246,0.08) 0%, transparent 50%);
}

.blog-hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.blog-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.2);
  border: 1.5px solid rgba(245,158,11,0.5);
  border-radius: 999px;
  padding: 8px 22px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.blog-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.blog-hero-highlight {
  background: linear-gradient(135deg, var(--color-primary), #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  line-height: 1.75;
  margin: 0;
}

/* Hero Stats Row */
.blog-hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 2rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  flex-wrap: wrap;
  justify-content: center;
}

.blog-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-primary);
}

.blog-hero-stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
}

/* ── Category Filter Tabs ────────────────────────────────────── */
.blog-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.blog-filter-tab {
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Default active: amber/gold */
.blog-filter-tab.active,
.blog-filter-tab:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-navy);
  box-shadow: 0 4px 18px rgba(245,158,11,0.45);
  transform: translateY(-2px);
}

/* Per-tab hover accent colors */
.tab-flights:hover  { background: #3b82f6; border-color: #3b82f6; color: white; box-shadow: 0 4px 18px rgba(59,130,246,0.45); }
.tab-hotels:hover   { background: #0a1628; border-color: #0a1628; color: white; box-shadow: 0 4px 18px rgba(10,22,40,0.5); }
.tab-destinations:hover { background: #10b981; border-color: #10b981; color: white; box-shadow: 0 4px 18px rgba(16,185,129,0.45); }
.tab-budget:hover   { background: #f59e0b; border-color: #f59e0b; color: #0a1628; box-shadow: 0 4px 18px rgba(245,158,11,0.45); }
.tab-insurance:hover{ background: #0d7377; border-color: #0d7377; color: white; box-shadow: 0 4px 18px rgba(13,115,119,0.45); }
.tab-gear:hover     { background: #8b5cf6; border-color: #8b5cf6; color: white; box-shadow: 0 4px 18px rgba(139,92,246,0.45); }

/* ── Blog Card Grid (4 columns) ──────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* Card */
.blog-card {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  border-color: rgba(245,158,11,0.3);
}

/* Card Image */
.blog-card-img-link {
  display: block;
  text-decoration: none;
}

.blog-card-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.08);
}

.blog-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.55) 0%, transparent 55%);
}

/* Category tab in card body */
.blog-card-cat-tab {
  display: inline-block;
  background: rgba(245,158,11,0.15);
  color: var(--color-primary-dark);
  border: 1px solid rgba(245,158,11,0.3);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.2s ease;
}

.blog-card-cat-tab:hover {
  background: var(--color-primary);
  color: white;
}

/* Read time badge — top right */
.blog-card-read-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(10,22,40,0.7);
  color: rgba(255,255,255,0.9);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* Card Body */
.blog-card-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  flex: 1;
}

.blog-card-meta {
  font-size: 0.7rem;
  color: var(--color-muted);
  font-weight: 500;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-heading);
  line-height: 1.35;
  margin: 0;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.blog-card-title a:hover {
  color: var(--color-primary);
}

.blog-card-excerpt {
  font-size: 0.8rem;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  margin-top: 0.3rem;
  transition: gap 0.15s ease, color 0.15s ease;
}

.blog-card-cta:hover {
  gap: 9px;
  color: var(--color-secondary);
}

/* ── Blog Pagination ─────────────────────────────────────────── */
.blog-pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.blog-pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 2px solid var(--color-border);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  transition: all 0.15s ease;
  background: white;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-navy);
  box-shadow: 0 4px 12px rgba(245,158,11,0.35);
}

.blog-pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 800px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-filter-tabs {
    gap: 6px;
  }
  .blog-filter-tab {
    font-size: 0.75rem;
    padding: 8px 14px;
  }
  .blog-hero-stats {
    display: none;
  }
}
