/* =========================================================
   Souls Travellers — Agencia de Viajes
   Design system aligned to Brandbook v1.0 (Bootstrap 5.3.3)
   ========================================================= */

:root {
  --wf-ink:        #0B2240;   /* Azul Noche — base, headings */
  --wf-teal:       #1A56A0;   /* Azul Viajero — acento primario */
  --wf-teal-dark:  #0B2240;   /* Azul Noche — hover/dark state */
  --wf-teal-light: #E5EEFF;   /* Azul claro — badges de categoría */
  --wf-gold:       #E8A020;   /* Ámbar Sol — acento secundario */
  --wf-gold-light: #F6D493;   /* Ámbar claro — texto sobre fondo oscuro */
  --wf-sand:       #FDF6E8;   /* Arena Cálida — fondo cálido */
  --wf-white:      #FFFFFF;   /* Blanco Puro */
  --wf-muted:      #555555;   /* Gris Texto */
  --wf-border:     #E6E6E6;   /* Gris Suave — divisores */
  --wf-error:      #CC3333;   /* Rojo Error — solo alertas */

  --wf-radius-sm:  8px;
  --wf-radius-md:  16px;
  --wf-radius-lg:  28px;

  --wf-shadow-sm:  0 4px 14px rgba(11, 34, 64, 0.06);
  --wf-shadow-md:  0 14px 34px rgba(11, 34, 64, 0.10);
  --wf-shadow-lg:  0 24px 60px rgba(11, 34, 64, 0.16);

  --wf-font-display: "Syne", -apple-system, BlinkMacSystemFont, sans-serif;
  --wf-font-body: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---------- Base ---------- */
body {
  font-family: var(--wf-font-body);
  color: var(--wf-ink);
  background: var(--wf-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, .display-font {
  font-family: var(--wf-font-display);
  font-weight: 700;
  color: var(--wf-ink);
  letter-spacing: -0.01em;
}
h3, h4 {
  font-family: var(--wf-font-body);
  font-weight: 600;
  color: var(--wf-ink);
}

.text-teal   { color: var(--wf-teal) !important; }
.text-gold   { color: var(--wf-gold) !important; }
.text-muted-wf { color: var(--wf-muted) !important; }
.bg-teal     { background-color: var(--wf-teal) !important; }
.bg-teal-dark{ background-color: var(--wf-teal-dark) !important; }
.bg-sand     { background-color: var(--wf-sand) !important; }
.bg-teal-light { background-color: var(--wf-teal-light) !important; }

.section-pad { padding: 6rem 0; }
@media (max-width: 767.98px) { .section-pad { padding: 3.5rem 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--wf-gold);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--wf-gold);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn-wf-primary {
  background: var(--wf-teal);
  color: var(--wf-white);
  border: none;
  border-radius: 999px;
  padding: .85rem 1.9rem;
  font-weight: 600;
  font-size: .95rem;
  transition: all .25s ease;
}
.btn-wf-primary:hover { background: var(--wf-teal-dark); color: var(--wf-white); transform: translateY(-2px); }

.btn-wf-outline {
  background: transparent;
  color: var(--wf-ink);
  border: 1.5px solid var(--wf-border);
  border-radius: 999px;
  padding: .85rem 1.9rem;
  font-weight: 600;
  font-size: .95rem;
  transition: all .25s ease;
}
.btn-wf-outline:hover { border-color: var(--wf-teal); color: var(--wf-teal); }

.btn-wf-gold {
  background: var(--wf-gold);
  color: var(--wf-white);
  border: none;
  border-radius: 999px;
  padding: .85rem 1.9rem;
  font-weight: 600;
  font-size: .95rem;
  transition: all .25s ease;
}
.btn-wf-gold:hover { background: #b17f30; color: var(--wf-white); transform: translateY(-2px); }

/* ---------- Topbar ---------- */
.wf-topbar {
  background: var(--wf-teal-dark);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
}
.wf-topbar a { color: rgba(255,255,255,.85); text-decoration: none; }
.wf-topbar a:hover { color: var(--wf-gold-light); }
.wf-topbar .divider { width: 1px; height: 14px; background: rgba(255,255,255,.2); }

/* ---------- Navbar ---------- */
.wf-navbar {
  background: var(--wf-white);
  box-shadow: var(--wf-shadow-sm);
  padding: .9rem 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: padding .2s ease;
}
.wf-navbar .navbar-brand {
  font-family: var(--wf-font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--wf-ink);
}
.wf-navbar .navbar-brand span { color: var(--wf-gold); }
.wf-navbar .nav-link {
  font-weight: 600;
  font-size: .93rem;
  color: var(--wf-ink);
  margin: 0 .7rem;
  padding: .4rem 0 !important;
  position: relative;
}
.wf-navbar .nav-link.active,
.wf-navbar .nav-link:hover { color: var(--wf-teal); }
.wf-navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--wf-gold);
}

/* ---------- Hero ---------- */
.wf-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(10,32,33,.55), rgba(10,32,33,.72)),
              url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1600&q=80') center/cover no-repeat;
  color: var(--wf-white);
  overflow: hidden;
}
.wf-hero .eyebrow { color: var(--wf-gold-light); }
.wf-hero .eyebrow::before { background: var(--wf-gold-light); }
.wf-hero h1 {
  color: var(--wf-white);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
}
.wf-hero p.lead { color: rgba(255,255,255,.82); max-width: 560px; }

.wf-hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.wf-hero-stats .stat-num {
  font-family: var(--wf-font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--wf-white);
}
.wf-hero-stats .stat-label { font-size: .8rem; color: rgba(255,255,255,.7); }

/* ---------- Hero: centered variant with floating trust badges ---------- */
.wf-hero-centered { justify-content: center; text-align: center; padding: 2rem 0; }
.wf-hero-centered .lead { max-width: 620px; }

.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.hero-glow-orb-1 { width: 320px; height: 320px; top: -80px; left: -60px; background: rgba(232, 160, 32, 0.18); }
.hero-glow-orb-2 { width: 280px; height: 280px; bottom: -60px; right: -40px; background: rgba(91, 155, 213, 0.18); }

.hero-floating-badge {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  align-items: center;
  gap: .85rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--wf-radius-md);
  padding: 1rem 1.25rem;
  z-index: 3;
}
.hero-badge-left { left: 3%; }
.hero-badge-right { right: 3%; }
.hero-badge-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--wf-gold);
  color: var(--wf-ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero-badge-num { font-family: var(--wf-font-display); font-weight: 700; color: var(--wf-white); font-size: 1.1rem; }
.hero-badge-label { font-size: .75rem; color: rgba(255,255,255,.75); }
.hero-badge-stars { color: var(--wf-gold); font-size: .8rem; margin-bottom: .2rem; }

/* ---------- Search bar (pill, floating) ---------- */
.wf-search-bar {
  background: var(--wf-white);
  border-radius: 999px;
  box-shadow: var(--wf-shadow-lg);
  padding: .6rem;
  margin-top: -2.25rem;
  position: relative;
  z-index: 5;
}
.wf-search-bar-form {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: .25rem;
}
.search-field {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex: 1 1 0;
  min-width: 150px;
  padding: .5rem 1.1rem;
}
.search-field > i { color: var(--wf-gold); font-size: 1.1rem; }
.search-field label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--wf-muted);
  margin-bottom: .1rem;
}
.search-field input,
.search-field select {
  border: none;
  outline: none;
  padding: 0;
  font-weight: 600;
  font-size: .88rem;
  color: var(--wf-ink);
  background: transparent;
  width: 100%;
}
.search-divider { width: 1px; background: var(--wf-border); margin: .4rem 0; flex-shrink: 0; }
.search-submit-btn {
  background: var(--wf-teal);
  color: var(--wf-white);
  border: none;
  border-radius: 999px;
  padding: 0 1.75rem;
  font-weight: 600;
  font-size: .92rem;
  display: flex; align-items: center; gap: .5rem;
  white-space: nowrap;
  transition: background .2s ease;
}
.search-submit-btn:hover { background: var(--wf-teal-dark); }

@media (max-width: 991.98px) {
  .wf-search-bar { border-radius: var(--wf-radius-lg); }
  .search-divider { display: none; }
  .search-field { flex: 1 1 45%; }
  .search-submit-btn { flex: 1 1 100%; justify-content: center; padding: .85rem; margin-top: .25rem; }
}

.wf-search-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-top: 1.25rem;
}
.wf-search-tags .tags-label { font-size: .82rem; color: var(--wf-muted); font-weight: 600; }
.wf-search-tags a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--wf-teal);
  background: var(--wf-teal-light);
  border-radius: 999px;
  padding: .4rem .9rem;
  text-decoration: none;
  transition: background .2s ease;
}
.wf-search-tags a:hover { background: var(--wf-gold-light); color: var(--wf-ink); }

/* ---------- Search widget (legacy card — used in tour sidebar) ---------- */
.wf-search-card {
  background: var(--wf-white);
  border-radius: var(--wf-radius-lg);
  box-shadow: var(--wf-shadow-lg);
  padding: 1.75rem;
  margin-top: -4.5rem;
  position: relative;
  z-index: 5;
}
.wf-search-card .nav-pills .nav-link {
  border-radius: 999px;
  font-weight: 600;
  font-size: .85rem;
  color: var(--wf-muted);
  padding: .5rem 1.1rem;
}
.wf-search-card .nav-pills .nav-link.active {
  background: var(--wf-teal);
  color: var(--wf-white);
}
.wf-search-card label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--wf-muted);
}
.wf-search-card .form-control,
.wf-search-card .form-select {
  border: 1.5px solid var(--wf-border);
  border-radius: var(--wf-radius-sm);
  padding: .65rem .9rem;
  font-weight: 500;
}
.wf-search-card .form-control:focus,
.wf-search-card .form-select:focus {
  border-color: var(--wf-teal);
  box-shadow: 0 0 0 3px var(--wf-teal-light);
}

/* ---------- Section heading ---------- */
.wf-section-head { max-width: 640px; }
.wf-section-head.mx-auto { text-align: center; }

/* ---------- Tour / destination cards ---------- */
.wf-card {
  background: var(--wf-white);
  border-radius: var(--wf-radius-md);
  overflow: hidden;
  box-shadow: var(--wf-shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
}
.wf-card:hover { transform: translateY(-6px); box-shadow: var(--wf-shadow-md); }
.wf-card .wf-card-img { position: relative; overflow: hidden; height: 220px; }
.wf-card .wf-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.wf-card:hover .wf-card-img img { transform: scale(1.08); }
.wf-card .wf-card-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--wf-teal-light);
  color: var(--wf-teal);
  font-size: .72rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 4px;
}
.wf-card .wf-card-price {
  position: absolute; bottom: -18px; right: 14px;
  background: var(--wf-gold);
  color: var(--wf-ink);
  font-size: .85rem;
  font-weight: 700;
  padding: .5rem 1rem;
  border-radius: 4px;
  box-shadow: var(--wf-shadow-sm);
}
.wf-card-body { padding: 1.75rem 1.5rem 1.25rem; }
.wf-card-body .meta {
  display: flex; gap: 1rem; font-size: .8rem; color: var(--wf-muted);
  margin-bottom: .6rem;
}
.wf-card-body h5 { font-size: 1.15rem; margin-bottom: .5rem; }
.wf-card-body h5 a { color: inherit; text-decoration: none; }
.wf-card-body h5 a:hover { color: var(--wf-teal); }
.wf-card-footer {
  border-top: 1px solid var(--wf-border);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wf-rating { color: var(--wf-gold); font-size: .85rem; font-weight: 700; }

/* Destination circular / overlay cards */
.wf-dest-card {
  position: relative;
  border-radius: var(--wf-radius-md);
  overflow: hidden;
  height: 340px;
}
.wf-dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.wf-dest-card:hover img { transform: scale(1.08); }
.wf-dest-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,32,33,.85));
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem; color: var(--wf-white);
}
.wf-dest-card .overlay small { color: var(--wf-gold-light); font-weight: 600; }
.wf-dest-card .overlay h5 { color: var(--wf-white); margin: .25rem 0 0; }

/* ---------- Expanding destination gallery (hover/tap slides) ---------- */
.wf-expand-gallery {
  display: flex;
  gap: .9rem;
  height: 480px;
  overflow: hidden;
}
.expand-panel {
  position: relative;
  flex: 1 1 0;
  min-width: 70px;
  border-radius: var(--wf-radius-md);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  transition: flex-grow .55s cubic-bezier(.22,.68,0,1.01);
}
.expand-panel.active { flex-grow: 5; }
.expand-panel .panel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,34,64,.15) 0%, rgba(11,34,64,.35) 55%, rgba(11,34,64,.92) 100%);
  transition: opacity .4s ease;
}
.expand-panel .panel-badge {
  position: absolute; top: 18px; left: 18px;
  background: rgba(255,255,255,.92);
  color: var(--wf-ink);
  font-size: .72rem; font-weight: 700;
  padding: .35rem .8rem;
  border-radius: 999px;
  display: flex; align-items: center; gap: .35rem;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .35s ease .1s, transform .35s ease .1s;
  white-space: nowrap;
}
.expand-panel .panel-rating {
  position: absolute; top: 18px; right: 18px;
  background: rgba(11,34,64,.55);
  color: var(--wf-white);
  font-size: .72rem; font-weight: 700;
  padding: .35rem .8rem;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .35s ease .1s, transform .35s ease .1s;
  white-space: nowrap;
}
.expand-panel .panel-rating i { color: var(--wf-gold); }
.expand-panel.active .panel-badge,
.expand-panel.active .panel-rating { opacity: 1; transform: translateY(0); }

.expand-panel .panel-collapsed-title {
  position: absolute;
  left: 0; bottom: 24px;
  width: 100%;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  color: var(--wf-white);
  font-family: var(--wf-font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .02em;
  text-align: center;
  opacity: 1;
  transition: opacity .3s ease;
}
.expand-panel.active .panel-collapsed-title { opacity: 0; pointer-events: none; }

.expand-panel .panel-content {
  position: absolute;
  left: 0; bottom: 0; width: 100%;
  padding: 1.75rem;
  color: var(--wf-white);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .4s ease .12s, transform .4s ease .12s;
}
.expand-panel.active .panel-content { opacity: 1; transform: translateY(0); }
.expand-panel .panel-content h3 { color: var(--wf-white); font-size: 1.5rem; margin-bottom: .4rem; }
.expand-panel .panel-content p { font-size: .88rem; color: rgba(255,255,255,.82); margin-bottom: 1rem; max-width: 320px; }
.panel-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .85rem; }
.panel-pill {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  color: var(--wf-white);
  font-size: .74rem; font-weight: 600;
  padding: .35rem .75rem;
  border-radius: 999px;
  white-space: nowrap;
}
.panel-pill-price { background: var(--wf-gold); color: var(--wf-ink); }
.panel-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--wf-white);
  color: var(--wf-ink);
  font-weight: 700;
  font-size: .85rem;
  padding: .65rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s ease;
  white-space: nowrap;
}
.panel-cta:hover { background: var(--wf-gold); color: var(--wf-ink); }

@media (max-width: 991.98px) {
  .wf-expand-gallery { height: auto; flex-direction: column; }
  .expand-panel { min-width: 100%; height: 90px; flex-grow: 0 !important; }
  .expand-panel.active { height: 420px; }
  .expand-panel .panel-collapsed-title {
    writing-mode: horizontal-tb; transform: none;
    left: 20px; bottom: auto; top: 50%; transform: translateY(-50%);
    width: auto; text-align: left; font-size: 1.1rem;
  }
  .expand-panel.active .panel-collapsed-title { display: none; }
}

/* ---------- Why us / icon boxes ---------- */
.wf-icon-box {
  width: 64px; height: 64px;
  border-radius: var(--wf-radius-sm);
  background: var(--wf-teal-light);
  color: var(--wf-teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

/* ---------- Testimonials ---------- */
.wf-testimonial {
  background: var(--wf-white);
  border-radius: var(--wf-radius-md);
  box-shadow: var(--wf-shadow-sm);
  padding: 2rem;
  height: 100%;
}
.wf-testimonial .quote-icon { color: var(--wf-gold-light); font-size: 2rem; }
.wf-testimonial p { color: var(--wf-muted); }
.wf-testimonial .author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.wf-testimonial .author strong { display: block; font-size: .95rem; }
.wf-testimonial .author span { font-size: .78rem; color: var(--wf-muted); }

/* ---------- CTA band ---------- */
.wf-cta {
  background: var(--wf-teal);
  border-radius: var(--wf-radius-lg);
  padding: 3.5rem;
  color: var(--wf-white);
  position: relative;
  overflow: hidden;
}
.wf-cta h2 { color: var(--wf-white); }
.wf-cta::after {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,255,255,.06);
}

/* ---------- Blog cards ---------- */
.wf-blog-card { background: var(--wf-white); border-radius: var(--wf-radius-md); overflow: hidden; box-shadow: var(--wf-shadow-sm); height: 100%; }
.wf-blog-card img { width: 100%; height: 210px; object-fit: cover; }
.wf-blog-card .body { padding: 1.5rem; }
.wf-blog-card .date-badge { font-size: .75rem; font-weight: 700; color: var(--wf-teal); text-transform: uppercase; letter-spacing: .05em; }
.wf-blog-card h5 a { color: var(--wf-ink); text-decoration: none; }
.wf-blog-card h5 a:hover { color: var(--wf-teal); }

/* ---------- Footer ---------- */
.wf-footer { background: var(--wf-ink); color: rgba(255,255,255,.65); }
.wf-footer h6 { color: var(--wf-white); font-weight: 700; text-transform: uppercase; font-size: .82rem; letter-spacing: .06em; margin-bottom: 1.25rem; }
.wf-footer a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .9rem; }
.wf-footer a:hover { color: var(--wf-gold); }
.wf-footer .footer-brand { font-family: var(--wf-font-display); font-size: 1.5rem; color: var(--wf-white); font-weight: 700; }
.wf-footer .social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--wf-white);
  transition: all .2s ease;
}
.wf-footer .social-icon:hover { background: var(--wf-gold); border-color: var(--wf-gold); }
.wf-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.25rem 0; font-size: .85rem; }

/* ---------- Page header (inner pages) ---------- */
.wf-page-header {
  background: linear-gradient(180deg, rgba(10,32,33,.68), rgba(10,32,33,.78)), url('https://images.unsplash.com/photo-1488085061387-422e29b40080?w=1600&q=80') center/cover no-repeat;
  color: var(--wf-white);
  padding: 8rem 0 4rem;
  text-align: center;
}
.wf-page-header h1 { color: var(--wf-white); }
.wf-page-header .breadcrumb { justify-content: center; margin: 0; }
.wf-page-header .breadcrumb a { color: rgba(255,255,255,.75); text-decoration: none; }
.wf-page-header .breadcrumb-item.active { color: var(--wf-gold-light); }

/* ---------- Nav tabs (tour/destination details) ---------- */
.nav-tabs { border-bottom: 1px solid var(--wf-border); }
.nav-tabs .nav-link {
  border: none;
  color: var(--wf-muted);
  font-weight: 600;
  padding: .75rem 1.25rem;
}
.nav-tabs .nav-link.active {
  color: var(--wf-teal);
  border-bottom: 2px solid var(--wf-teal);
  background: transparent;
}

/* ---------- Pagination ---------- */
.pagination .page-link {
  color: var(--wf-ink);
  border: none;
  margin: 0 .25rem;
  border-radius: 999px !important;
  font-weight: 600;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .page-item.active .page-link {
  background: var(--wf-teal);
  color: var(--wf-white);
}

/* ---------- Back to top ---------- */
.wf-back-to-top {
  position: fixed; right: 24px; bottom: 24px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--wf-teal); color: var(--wf-white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--wf-shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .3s ease;
  z-index: 1040;
}
.wf-back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Slider nav buttons (shared) ---------- */
.slider-nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--wf-border);
  background: var(--wf-white);
  color: var(--wf-ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all .2s ease;
}
.slider-nav-btn:hover { background: var(--wf-teal); border-color: var(--wf-teal); color: var(--wf-white); }
.slider-nav-btn.swiper-button-disabled { opacity: .35; pointer-events: none; }

/* ---------- Travel styles slider ---------- */
.wf-style-slider { padding-bottom: .5rem; overflow: hidden; }
.wf-style-slider .swiper-slide { width: 300px; height: 360px; }
.style-card {
  position: relative;
  width: 100%; height: 100%;
  border-radius: var(--wf-radius-md);
  overflow: hidden;
}
.style-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.style-card:hover img { transform: scale(1.08); }
.style-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,34,64,.05) 30%, rgba(11,34,64,.88) 100%);
}
.style-icon-badge {
  position: absolute; top: 18px; left: 18px;
  width: 46px; height: 46px;
  background: var(--wf-white);
  color: var(--wf-teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--wf-shadow-sm);
}
.style-card-content {
  position: absolute; bottom: 0; left: 0; width: 100%;
  padding: 1.5rem;
  text-align: center;
}
.style-card-content h4 { color: var(--wf-white); font-size: 1.2rem; margin-bottom: .6rem; }
.style-pill {
  display: inline-block;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(4px);
  color: var(--wf-white);
  font-size: .78rem; font-weight: 600;
  padding: .3rem .9rem;
  border-radius: 999px;
}

/* ---------- Blog: featured + list layout ---------- */
.blog-featured-card { min-height: 420px; }
.blog-featured-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.blog-featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,34,64,.1) 20%, rgba(11,34,64,.92) 100%);
}
.blog-featured-badges {
  position: absolute; top: 20px; left: 20px;
  display: flex; gap: .5rem; flex-wrap: wrap;
  z-index: 2;
}
.badge-trending, .badge-readtime {
  font-size: .74rem; font-weight: 700;
  padding: .35rem .8rem;
  border-radius: 999px;
}
.badge-trending { background: var(--wf-gold); color: var(--wf-ink); }
.badge-readtime { background: rgba(255,255,255,.2); color: var(--wf-white); backdrop-filter: blur(4px); }
.blog-featured-content {
  position: absolute; bottom: 0; left: 0; width: 100%;
  padding: 2rem;
  z-index: 2;
}
.blog-featured-content h3 { color: var(--wf-white); font-size: 1.6rem; margin-bottom: .5rem; }
.blog-featured-content p { color: rgba(255,255,255,.8); font-size: .9rem; max-width: 460px; margin-bottom: 1rem; }
.blog-featured-cta { color: var(--wf-gold-light); font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: .5rem; }

.blog-list-item {
  display: block;
  background: var(--wf-white);
  border-radius: var(--wf-radius-md);
  box-shadow: var(--wf-shadow-sm);
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  flex: 1;
  transition: box-shadow .2s ease, transform .2s ease;
}
.blog-list-item:hover { box-shadow: var(--wf-shadow-md); transform: translateY(-2px); }
.blog-list-tag {
  display: inline-block;
  background: var(--wf-teal-light);
  color: var(--wf-teal);
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .25rem .7rem;
  border-radius: 999px;
  margin-bottom: .6rem;
}
.blog-list-item h5 { color: var(--wf-ink); font-size: 1.02rem; margin-bottom: .4rem; }
.blog-list-meta { font-size: .78rem; color: var(--wf-muted); }
