/*
Theme Name: Wayflo Tours
Theme URI: https://wayflo.tours
Description: B2B-Website fuer Wayflo Tours — digitale Stadtfuehrungen als WordPress-Plugin fuer Kommunen und Tourismusverb&auml;nde.
Version: 2.16.0
Author: Kraftwerk MKT
Author URI: https://wayflo.tours
Text Domain: vsf-theme
Requires at least: 6.0
Requires PHP: 7.4
License: proprietary
*/

/* ================================================================
   FONTS & VARIABLES
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300..700&family=Instrument+Serif&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --wf-serif: 'Fraunces', Georgia, serif;
  --wf-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --wf-ink: #0f1518;
  --wf-ink-soft: #444;
  --wf-muted: #5a5a52;
  --wf-border: rgba(0,0,0,0.08);
  --wf-bg: #FAFAF7;
  --wf-bg-warm: #f0ede6;
  --wf-bg-white: #fff;
  --wf-teal: #2a7c6f;
  --wf-teal-hover: #237063;
  --wf-teal-soft: rgba(42,124,111,0.07);
  --wf-gold: #b8956a;
  --wf-gold-soft: rgba(184,149,106,0.1);
  --wf-green: #6b8f71;
  --wf-green-soft: rgba(107,143,113,0.06);
  --wf-dark: #0b1215;
  --wf-header: #0f1518;
  --wf-radius: 10px;
  --wf-radius-lg: 20px;
  --wf-max: 1120px;
  --wf-gutter: clamp(20px, 5vw, 48px);
  --wf-transition: 0.25s cubic-bezier(0.22,1,0.36,1);
}

/* ================================================================
   RESET
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--wf-sans); font-size: 17px; line-height: 1.7; color: var(--wf-ink); background: var(--wf-bg); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--wf-teal); text-decoration: none; transition: color var(--wf-transition); }
a:hover { color: var(--wf-teal-hover); }
h1,h2,h3,h4 { font-family: var(--wf-serif); font-weight: 500; line-height: 1.15; color: var(--wf-ink); font-variation-settings: "opsz" 96; letter-spacing: -0.015em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
::selection { background: var(--wf-teal); color: #fff; }
ul,ol { list-style: none; }

/* ================================================================
   LAYOUT
   ================================================================ */
.wf-container { max-width: var(--wf-max); margin: 0 auto; padding: 0 var(--wf-gutter); }
.wf-section { padding: 100px 0; }
.wf-section--dark { background: var(--wf-dark); color: #fff; }
.wf-section--dark h2, .wf-section--dark h3 { color: #fff; }
.wf-section--warm { background: var(--wf-bg-warm); }
.wf-section--white { background: var(--wf-bg-white); border-top: 1px solid #eee; border-bottom: 1px solid #eee; }

/* ================================================================
   HEADER
   ================================================================ */
.wf-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.wf-header.is-scrolled {
  background: rgba(11,18,21,0.95);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(255,255,255,0.06);
}
.wf-header__inner {
  max-width: var(--wf-max); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.wf-logo {
  font-family: var(--wf-sans); font-size: 22px; font-weight: 800;
  color: #fff; text-decoration: none; letter-spacing: -0.02em;
}
.wf-logo:hover { color: #fff; }
.wf-logo__accent { color: var(--wf-teal); }
.wf-logo__domain { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.35); margin-left: 6px; letter-spacing: 0.05em; }

.wf-nav { display: flex; align-items: center; gap: 4px; }
.wf-nav a {
  padding: 8px 16px; font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.6); border-radius: 8px;
  transition: all var(--wf-transition); text-decoration: none;
}
.wf-nav a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.wf-nav__cta {
  margin-left: 12px; padding: 10px 22px !important; font-weight: 600 !important;
  color: #fff !important; background: var(--wf-teal) !important; border-radius: 8px;
}
.wf-nav__cta:hover { background: var(--wf-teal-hover) !important; }

.wf-menu-toggle {
  display: none; background: none; border: none; color: #fff;
  cursor: pointer; padding: 8px;
}

@media (max-width: 900px) {
  .wf-menu-toggle { display: block; }
  .wf-nav {
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--wf-header); border-top: 1px solid rgba(255,255,255,0.06);
    padding: 12px 24px; display: none; flex-direction: column; gap: 2px;
  }
  .wf-nav.is-open { display: flex; }
  .wf-nav a { padding: 12px 16px; }
  .wf-nav__cta { margin-left: 0 !important; text-align: center; }
}

/* ================================================================
   BUTTONS
   ================================================================ */
.wf-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; font-size: 15px; font-weight: 600;
  font-family: var(--wf-sans); border: none; border-radius: var(--wf-radius);
  cursor: pointer; text-decoration: none; transition: all var(--wf-transition);
}
.wf-btn--primary {
  color: #fff; background: var(--wf-teal);
  box-shadow: 0 4px 24px rgba(42,124,111,0.3);
}
.wf-btn--primary:hover {
  background: var(--wf-teal-hover); color: #fff;
  box-shadow: 0 8px 32px rgba(42,124,111,0.4); transform: translateY(-2px);
}
.wf-btn--ghost {
  color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.wf-btn--ghost:hover { color: #fff; background: rgba(255,255,255,0.1); }
.wf-btn--outline {
  color: var(--wf-teal); background: transparent;
  border: 2px solid var(--wf-teal); padding: 14px 24px;
}
.wf-btn--outline:hover { color: #fff; background: var(--wf-teal); }

/* ================================================================
   SECTION TYPOGRAPHY
   ================================================================ */
.wf-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--wf-teal); margin-bottom: 12px;
}
.wf-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 20px;
}
.wf-desc {
  font-size: 17px; line-height: 1.75; max-width: 620px; color: var(--wf-muted);
}
.wf-section--dark .wf-desc { color: rgba(255,255,255,0.55); }

/* ================================================================
   HERO
   ================================================================ */
.wf-hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(165deg, #0b1215 0%, #132a25 40%, #0f1e1b 70%, #0b1215 100%);
  overflow: hidden;
}
.wf-hero__bg { position: absolute; inset: 0; opacity: 0.4; }
.wf-hero__orb {
  position: absolute; top: 20%; right: 15%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(42,124,111,0.15) 0%, transparent 70%);
  border-radius: 50%; filter: blur(60px); animation: wfFloat 8s ease-in-out infinite;
}
.wf-hero__grid {
  position: relative; max-width: var(--wf-max); margin: 0 auto;
  padding: 140px 24px 100px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.wf-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px 6px 8px; border-radius: 100px;
  background: rgba(42,124,111,0.12); border: 1px solid rgba(42,124,111,0.2);
  margin-bottom: 28px; animation: wfFadeUp 0.6s ease-out both;
}
.wf-hero__badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--wf-teal);
  position: relative;
}
.wf-hero__badge-dot::after {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  border: 2px solid var(--wf-teal); animation: wfPulse 2s ease-in-out infinite;
}
.wf-hero__badge-text {
  font-size: 13px; font-weight: 600; color: var(--wf-teal);
}
.wf-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 3.8rem); font-weight: 700;
  color: #fff; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 24px;
  animation: wfFadeUp 0.6s ease-out 0.1s both;
}
.wf-hero h1 span { color: var(--wf-teal); }
.wf-hero__sub {
  font-size: 18px; line-height: 1.75; color: rgba(255,255,255,0.55);
  max-width: 480px; margin-bottom: 40px; animation: wfFadeUp 0.6s ease-out 0.2s both;
}
.wf-hero__btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: wfFadeUp 0.6s ease-out 0.3s both;
}

/* Phone mockup */
.wf-phone { position: relative; animation: wfFadeUp 0.8s ease-out 0.4s both; }
.wf-phone__frame {
  width: 300px; height: 600px; margin: 0 auto;
  background: #1a1a1a; border-radius: 40px;
  border: 3px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden; position: relative;
}
.wf-phone__screen {
  position: absolute; inset: 8px; border-radius: 32px;
  background: linear-gradient(180deg, #e8e4dc, #d4cfc5); overflow: hidden;
}
.wf-phone__map {
  height: 65%; background: linear-gradient(135deg, #c5d5c0, #a8c4a0 50%, #d5c8a8);
  position: relative;
}
.wf-phone__panel {
  height: 35%; background: #fff; padding: 16px 18px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.wf-phone__panel-label {
  font-size: 9px; font-weight: 600; color: var(--wf-teal);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px;
}
.wf-phone__panel-title { font-size: 15px; font-weight: 700; color: var(--wf-ink); margin-bottom: 4px; }
.wf-phone__panel-meta { font-size: 11px; color: #888; }
.wf-phone__progress { display: flex; gap: 4px; }
.wf-phone__progress-dot {
  flex: 1; height: 4px; border-radius: 2px; background: #e0e0d8;
}
.wf-phone__progress-dot--done { background: var(--wf-teal); }
.wf-phone__progress-dot--active {
  background: linear-gradient(90deg, var(--wf-teal) 60%, #e0e0d8 60%);
}

/* Floating badges */
.wf-float-badge {
  position: absolute; background: #fff; border-radius: 14px;
  padding: 12px 18px; box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  display: flex; align-items: center; gap: 10px;
}
.wf-float-badge--top { top: 60px; left: -20px; animation: wfFloat 6s ease-in-out 1s infinite; }
.wf-float-badge--bottom { bottom: 100px; right: -10px; animation: wfFloat 7s ease-in-out 2s infinite; }
.wf-float-badge__icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.wf-float-badge__icon--teal { background: #e8f5f1; color: var(--wf-teal); }
.wf-float-badge__icon--gold { background: #fef7ed; color: var(--wf-gold); }
.wf-float-badge__title { font-size: 12px; font-weight: 700; color: var(--wf-ink); }
.wf-float-badge__sub { font-size: 11px; color: #888; }

@media (max-width: 900px) {
  .wf-hero__grid { grid-template-columns: 1fr; text-align: center; }
  .wf-phone { display: none; }
  .wf-hero__btns { justify-content: center; }
  .wf-hero__sub { margin-left: auto; margin-right: auto; }
}

/* ================================================================
   MODES (3 tabs)
   ================================================================ */
.wf-modes__tabs {
  display: flex; justify-content: center; gap: 8px; margin-bottom: 48px;
}
.wf-mode-tab {
  display: flex; align-items: center; gap: 8px; padding: 12px 24px;
  border-radius: 100px; border: none; font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: var(--wf-sans); background: var(--wf-bg-white);
  color: var(--wf-muted); box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.wf-mode-tab.is-active { color: #fff; transform: scale(1.03); }
.wf-mode-tab.is-active[data-color="teal"] { background: var(--wf-teal); box-shadow: 0 4px 20px rgba(42,124,111,0.2); }
.wf-mode-tab.is-active[data-color="gold"] { background: var(--wf-gold); box-shadow: 0 4px 20px rgba(184,149,106,0.2); }
.wf-mode-tab.is-active[data-color="green"] { background: var(--wf-green); box-shadow: 0 4px 20px rgba(107,143,113,0.2); }
.wf-mode-tab svg { width: 22px; height: 22px; fill: currentColor; }

.wf-mode-panel { display: none; animation: wfFadeUp 0.5s ease-out both; }
.wf-mode-panel.is-active { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.wf-mode__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}
.wf-mode__badge--teal { background: var(--wf-teal-soft); color: var(--wf-teal); }
.wf-mode__badge--gold { background: var(--wf-gold-soft); color: var(--wf-gold); }
.wf-mode__badge--green { background: var(--wf-green-soft); color: var(--wf-green); }

.wf-mode__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.wf-mode__tag {
  padding: 6px 14px; border-radius: 100px; font-size: 13px; font-weight: 500;
}
.wf-mode__tag--teal { background: var(--wf-teal-soft); color: var(--wf-teal); border: 1px solid rgba(42,124,111,0.12); }
.wf-mode__tag--gold { background: var(--wf-gold-soft); color: var(--wf-gold); border: 1px solid rgba(184,149,106,0.12); }
.wf-mode__tag--green { background: var(--wf-green-soft); color: var(--wf-green); border: 1px solid rgba(107,143,113,0.12); }

.wf-mode__visual {
  background: var(--wf-bg-white); border-radius: var(--wf-radius-lg);
  padding: 32px; border: 1px solid #eee; box-shadow: 0 8px 40px rgba(0,0,0,0.04);
}
.wf-mode__map {
  background: linear-gradient(135deg, #e8f0e4, #d8e4d0 50%, #e4dcc8);
  border-radius: 14px; height: 280px; position: relative; overflow: hidden;
}

@media (max-width: 900px) {
  .wf-modes__tabs { flex-direction: column; align-items: stretch; }
  .wf-mode-panel.is-active { grid-template-columns: 1fr; }
}

/* ================================================================
   COMPARISON TABLE
   ================================================================ */
.wf-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.wf-compare__table {
  background: var(--wf-bg); border-radius: var(--wf-radius-lg);
  padding: 36px; border: 1px solid #eee;
}
.wf-compare__row {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 16px; align-items: center; padding: 18px 0;
}
.wf-compare__row + .wf-compare__row { border-top: 1px solid #eee; }
.wf-compare__label { font-size: 15px; font-weight: 600; }
.wf-compare__label--win { color: var(--wf-teal); }
.wf-compare__meta { font-size: 13px; color: #888; margin-top: 2px; }
.wf-compare__cost { font-size: 14px; font-weight: 600; text-align: right; }
.wf-compare__verdict {
  font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 100px;
}
.wf-compare__verdict--bad { background: #fef2f2; color: #c44; }
.wf-compare__verdict--good { background: #e8f5f1; color: var(--wf-teal); }

@media (max-width: 900px) { .wf-compare { grid-template-columns: 1fr; } }

/* ================================================================
   EASE OF USE (Backend Mockup)
   ================================================================ */
.wf-ease { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.wf-ease__checks { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.wf-ease__check { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.wf-ease__check svg { color: var(--wf-teal); flex-shrink: 0; }
.wf-ease__check--highlight { font-weight: 600; }

.wf-mockup {
  background: var(--wf-bg-white); border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.08); border: 1px solid #e8e4dc; overflow: hidden;
}
.wf-mockup__bar {
  background: #f5f3ef; padding: 12px 16px;
  display: flex; align-items: center; gap: 8px; border-bottom: 1px solid #e8e4dc;
}
.wf-mockup__dots { display: flex; gap: 6px; }
.wf-mockup__dot { width: 10px; height: 10px; border-radius: 50%; background: #e0dbd3; }
.wf-mockup__title { flex: 1; text-align: center; font-size: 11px; color: #999; font-weight: 500; }
.wf-mockup__body { padding: 24px 20px; display: flex; flex-direction: column; gap: 18px; }
.wf-mockup__field-label {
  font-size: 11px; font-weight: 600; color: #888;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px;
}
.wf-mockup__input {
  background: #f8f7f4; border-radius: 8px; padding: 10px 14px;
  border: 1px solid #e8e4dc; font-size: 14px; color: var(--wf-ink);
}
.wf-mockup__input--active { border: 2px solid var(--wf-teal); }
.wf-mockup__autocomplete {
  margin-top: 4px; background: var(--wf-bg-white); border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12); border: 1px solid #eee; overflow: hidden;
}
.wf-mockup__ac-item {
  padding: 10px 14px; font-size: 13px;
}
.wf-mockup__ac-item--active {
  background: var(--wf-teal-soft); border-left: 3px solid var(--wf-teal);
  font-weight: 500; color: var(--wf-ink);
}
.wf-mockup__ac-coords { font-size: 11px; color: #888; font-weight: 400; margin-top: 2px; }
.wf-mockup__images { display: flex; gap: 8px; }
.wf-mockup__img-thumb {
  width: 64px; height: 64px; border-radius: 8px; border: 1px solid #e8e4dc;
  display: flex; align-items: center; justify-content: center;
}
.wf-mockup__img-add {
  width: 64px; height: 64px; border-radius: 8px;
  border: 2px dashed #ccc; display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #ccc; cursor: pointer;
}
.wf-mockup__actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 4px; }
.wf-mockup__btn {
  padding: 8px 16px; border-radius: 6px; font-size: 13px;
  border: 1px solid #ddd; background: var(--wf-bg-white); color: #888;
}
.wf-mockup__btn--primary {
  border: none; font-weight: 600; color: #fff; background: var(--wf-teal); padding: 8px 20px;
}

@media (max-width: 900px) { .wf-ease { grid-template-columns: 1fr; } }

/* ================================================================
   BENTO FEATURES
   ================================================================ */
.wf-bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.wf-bento__card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--wf-radius-lg); padding: 28px;
}
.wf-bento__card--lg { grid-column: span 7; padding: 36px; min-height: 260px; display: flex; flex-direction: column; justify-content: space-between; }
.wf-bento__card--md { grid-column: span 5; padding: 36px; }
.wf-bento__card--sm { grid-column: span 4; }
.wf-bento__card--half { grid-column: span 6; display: flex; gap: 20px; }
.wf-bento__card--accent {
  background: linear-gradient(135deg, rgba(42,124,111,0.12), rgba(42,124,111,0.04));
  border-color: rgba(42,124,111,0.15);
}
.wf-bento__icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wf-bento__icon--teal { background: rgba(42,124,111,0.12); color: var(--wf-teal); }
.wf-bento__icon--gold { background: rgba(184,149,106,0.12); color: var(--wf-gold); }
.wf-bento__icon--green { background: rgba(107,143,113,0.12); color: var(--wf-green); }
.wf-bento__icon--white { background: rgba(255,255,255,0.08); color: var(--wf-teal); }
.wf-bento h3 { font-family: var(--wf-sans); font-weight: 700; margin-bottom: 8px; }
.wf-bento p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.4); }
.wf-bento__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.wf-bento__tag {
  padding: 5px 12px; border-radius: 100px; font-size: 12px; font-weight: 500;
  background: rgba(42,124,111,0.1); color: var(--wf-teal);
}
.wf-bento__check { display: flex; align-items: center; gap: 8px; }
.wf-bento__check + .wf-bento__check { margin-top: 8px; }
.wf-bento__check svg { color: var(--wf-teal); flex-shrink: 0; }
.wf-bento__check span { font-size: 13px; color: rgba(255,255,255,0.6); }

@media (max-width: 900px) {
  .wf-bento { grid-template-columns: 1fr; }
  .wf-bento__card--lg, .wf-bento__card--md, .wf-bento__card--sm, .wf-bento__card--half { grid-column: span 1; }
}

/* ================================================================
   STEPS
   ================================================================ */
.wf-steps { position: relative; }
.wf-steps__line {
  position: absolute; top: 40px; left: 16.66%; right: 16.66%;
  height: 2px; background: #e8e4dc;
}
.wf-steps__line-fill { height: 100%; width: 66%; background: var(--wf-teal); border-radius: 1px; }
.wf-steps__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  position: relative; z-index: 1;
}
.wf-step { text-align: center; }
.wf-step__num {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 800; font-family: var(--wf-sans);
}
.wf-step__num--done { background: var(--wf-teal); color: #fff; box-shadow: 0 8px 24px rgba(42,124,111,0.25); }
.wf-step__num--pending { background: var(--wf-bg-white); color: #ccc; border: 2px solid #e8e4dc; }
.wf-step h3 { font-family: var(--wf-sans); font-size: 18px; margin-bottom: 10px; }
.wf-step p { font-size: 14px; line-height: 1.7; color: #888; max-width: 300px; margin: 0 auto; }

@media (max-width: 900px) {
  .wf-steps__grid { grid-template-columns: 1fr; gap: 32px; }
  .wf-steps__line { display: none; }
}

/* ================================================================
   TESTIMONIAL
   ================================================================ */
.wf-testimonial {
  padding: 80px 24px; background: linear-gradient(135deg, #f0ede6, #e8e4dc);
}
.wf-testimonial__inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; }
.wf-testimonial blockquote {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-family: var(--wf-serif);
  font-style: italic; line-height: 1.7; color: var(--wf-ink); margin-bottom: 28px; padding-top: 24px;
}
.wf-testimonial__author { font-size: 14px; font-weight: 600; color: var(--wf-ink); }
.wf-testimonial__meta { font-size: 13px; color: #888; margin-top: 2px; }

/* ================================================================
   TOUR GRID (from plugin data)
   ================================================================ */
.wf-tours__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.wf-tour-card {
  background: var(--wf-bg-white); border-radius: var(--wf-radius-lg);
  overflow: hidden; border: 1px solid #eee; transition: all var(--wf-transition);
}
.wf-tour-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.wf-tour-card__image {
  height: 200px; background: linear-gradient(135deg, #c5d5c0, #d5c8a8);
  overflow: hidden;
}
.wf-tour-card__image img { width: 100%; height: 100%; object-fit: cover; }
.wf-tour-card__body { padding: 24px; }
.wf-tour-card__title { font-family: var(--wf-serif); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.wf-tour-card__title a { color: var(--wf-ink); text-decoration: none; }
.wf-tour-card__title a:hover { color: var(--wf-teal); }
.wf-tour-card__meta { font-size: 13px; color: #888; display: flex; gap: 16px; }

/* ================================================================
   PRICING
   ================================================================ */
.wf-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.wf-price-card {
  background: var(--wf-bg-white); border-radius: var(--wf-radius-lg);
  border: 1px solid #eee; padding: 36px; position: relative;
}
.wf-price-card--highlight {
  background: var(--wf-dark); border-color: rgba(42,124,111,0.3);
  transform: scale(1.03); box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.wf-price-card--highlight .wf-price-card__name { color: var(--wf-teal); }
.wf-price-card--highlight .wf-price-card__amount { color: #fff; }
.wf-price-card--highlight .wf-price-card__desc { color: rgba(255,255,255,0.45); }
.wf-price-card--highlight .wf-price-card__feature span { color: rgba(255,255,255,0.7); }
.wf-price-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--wf-teal); color: #fff; font-size: 11px; font-weight: 700;
  padding: 5px 16px; border-radius: 100px; letter-spacing: 0.05em;
}
.wf-price-card__name {
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #888; margin-bottom: 8px;
}
.wf-price-card__amount { font-size: 42px; font-weight: 800; letter-spacing: -0.03em; }
.wf-price-card__period { font-size: 14px; color: #888; margin-left: 4px; }
.wf-price-card__desc { font-size: 14px; color: #888; margin: 4px 0 28px; line-height: 1.6; }
.wf-price-card__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.wf-price-card__feature { display: flex; align-items: center; gap: 10px; }
.wf-price-card__feature svg { color: var(--wf-teal); flex-shrink: 0; }
.wf-price-card__feature span { font-size: 14px; color: #555; }

@media (max-width: 900px) {
  .wf-pricing { grid-template-columns: 1fr; }
  .wf-price-card--highlight { transform: none; }
}

/* ================================================================
   FAQ
   ================================================================ */
.wf-faq { max-width: 720px; margin: 0 auto; }
.wf-faq__item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.wf-faq__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; background: none; border: none; cursor: pointer;
  font-size: 16px; font-weight: 600; color: #fff; text-align: left;
  font-family: var(--wf-sans);
}
.wf-faq__icon {
  font-size: 22px; color: var(--wf-teal); flex-shrink: 0; margin-left: 16px;
  transition: transform 0.3s ease;
}
.wf-faq__item.is-open .wf-faq__icon { transform: rotate(45deg); }
.wf-faq__a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.wf-faq__item.is-open .wf-faq__a { max-height: 300px; }
.wf-faq__a p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.5); padding-bottom: 22px; }

/* ================================================================
   CTA
   ================================================================ */
.wf-cta {
  padding: 100px 24px;
  background: linear-gradient(165deg, #132a25, #0f1e1b 50%, #0b1215);
  position: relative; overflow: hidden;
}
.wf-cta__inner { max-width: 640px; margin: 0 auto; text-align: center; position: relative; }
.wf-cta h2 {
  font-size: clamp(2rem, 4.5vw, 3rem); color: #fff;
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.wf-cta h2 span { color: var(--wf-teal); }
.wf-cta p { font-size: 17px; line-height: 1.75; color: rgba(255,255,255,0.5); margin-bottom: 40px; }
.wf-cta__email { font-size: 13px; color: rgba(255,255,255,0.3); margin-top: 16px; }

/* ================================================================
   FOOTER
   ================================================================ */
.wf-footer {
  background: #070a0c; padding: 48px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.wf-footer__inner {
  max-width: var(--wf-max); margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.wf-footer__links { display: flex; gap: 24px; }
.wf-footer__links a { font-size: 13px; color: rgba(255,255,255,0.3); }
.wf-footer__links a:hover { color: rgba(255,255,255,0.6); }
.wf-footer__copy { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ================================================================
   PAGE TEMPLATES (for tours, contact etc)
   ================================================================ */
.wf-page-header {
  background: var(--wf-dark); padding: 120px 0 60px; text-align: center;
}
.wf-page-header h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 8px; }
.wf-page-header p { color: rgba(255,255,255,0.5); font-size: 16px; }
.wf-page-content { max-width: 820px; margin: 0 auto; padding: 60px var(--wf-gutter); }

/* Contact form */
.wf-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 60px 0; }
.wf-contact__info h3 { margin-bottom: 12px; }
.wf-contact__info p { color: var(--wf-muted); }
.wf-contact input, .wf-contact textarea {
  width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: 8px;
  font-family: var(--wf-sans); font-size: 15px; margin-bottom: 16px;
  background: var(--wf-bg); transition: border-color var(--wf-transition);
}
.wf-contact input:focus, .wf-contact textarea:focus {
  outline: none; border-color: var(--wf-teal);
}
.wf-contact textarea { min-height: 150px; resize: vertical; }

@media (max-width: 768px) { .wf-contact { grid-template-columns: 1fr; } }

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes wfFadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes wfFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes wfPulse { 0%,100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.5); opacity: 0; } }
@keyframes wfDash { to { stroke-dashoffset: -24; } }

.wf-animate { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.wf-animate.is-visible { opacity: 1; transform: translateY(0); }

/* ================================================================
   ADMIN BAR
   ================================================================ */
body.admin-bar .wf-header { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .wf-header { top: 46px; } }
