/* ==========================================================================
   Accessibility helpers
   ========================================================================== */
.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}
.vv-skip-link {
    position: fixed;
    top: -60px;
    left: 12px;
    z-index: 1000;
    background: var(--vv-forest-dark);
    color: var(--vv-white);
    padding: 10px 18px;
    border-radius: 0 0 8px 8px;
    transition: top .2s ease;
}
.vv-skip-link:focus {
    position: fixed;
    top: 0;
    color: var(--vv-white);
    width: auto; height: auto;
    clip: auto;
    overflow: visible;
    white-space: normal;
}
:focus-visible {
    outline: 2px solid var(--vv-terracotta);
    outline-offset: 2px;
}

/* ==========================================================================
   Top utility bar
   ========================================================================== */
.vv-top-bar {
    background: var(--vv-forest-dark);
    color: #c9d9e6;
    font-size: .82rem;
}
.vv-top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 7px 24px;
    gap: 8px 16px;
}
.vv-top-bar-contact { display: flex; gap: 20px; flex-wrap: wrap; }
.vv-top-bar-contact a {
    color: #c9d9e6;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.vv-top-bar-contact a:hover { color: var(--vv-white); }
.vv-top-bar-menu-list {
    list-style: none;
    display: flex;
    gap: 18px;
    margin: 0;
    padding: 0;
}
.vv-top-bar-menu-list a { color: #c9d9e6; }
.vv-top-bar-menu-list a:hover { color: var(--vv-white); }
.vv-top-bar-socials.vv-social-icons { gap: 12px; }
.vv-top-bar-socials.vv-social-icons a { color: #c9d9e6; }
.vv-top-bar-socials.vv-social-icons a:hover { color: var(--vv-white); }

/* ==========================================================================
   Social icon lists (reused in top bar, footer, mobile menu)
   ========================================================================== */
.vv-social-icons {
    list-style: none;
    display: flex;
    gap: 14px;
    margin: 0;
    padding: 0;
}
.vv-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: inherit;
    transition: background .2s ease, transform .2s ease;
}
.vv-social-icons a:hover { background: var(--vv-terracotta); color: var(--vv-white); transform: translateY(-2px); }

/* ==========================================================================
   Header
   ========================================================================== */
.vv-header {
    background: var(--vv-header-bg);
    border-bottom: 1px solid var(--vv-border);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow .25s ease;
}
.vv-header.is-scrolled { box-shadow: 0 4px 18px rgba(20, 52, 42, .1); }
.vv-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    gap: 24px;
    transition: padding .25s ease;
}
.vv-header.is-scrolled .vv-header-inner { padding-top: 9px; padding-bottom: 9px; }
/* Logo box: any uploaded image (portrait, landscape, tiny, huge) is
   scaled down to fit this box while keeping its own aspect ratio, so it
   never gets stretched, cropped, or blown up past its native resolution. */
.vv-logo {
    display: flex;
    align-items: center;
    height: 44px;
}
.vv-logo a,
.vv-logo .custom-logo-link {
    display: flex;
    align-items: center;
    height: 100%;
}
.vv-logo img,
.vv-logo .custom-logo {
    height: auto;
    max-height: 100%;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
    /* keep raster logos crisp when the browser has to scale them */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
}
.vv-logo-fallback {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    height: 100%;
}
.vv-logo-icon { max-height: 40px; width: auto; display: block; }
.vv-logo-text {
    font-family: var(--vv-font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--vv-forest-dark);
}
.vv-footer-brand-name {
    font-family: var(--vv-font-heading);
    font-weight: 700;
}
.vv-primary-nav { flex: 1; }
.vv-menu {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
    justify-content: center;
}
.vv-menu > li { position: relative; }
.vv-menu a.vv-menu-link {
    color: var(--vv-ink);
    font-weight: 500;
    display: inline-block;
    padding: 8px 0;
}
.vv-menu a.vv-menu-link:hover,
.vv-menu .current-menu-item > a.vv-menu-link { color: var(--vv-terracotta); }
.vv-menu > li.vv-has-dropdown { display: flex; align-items: center; }
.vv-sub-menu li.vv-has-dropdown { display: flex; align-items: center; justify-content: space-between; }
.vv-sub-menu li.vv-has-dropdown > a.vv-menu-link { flex: 1; }
.vv-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-left: 2px;
    padding: 0;
    background: none;
    border: none;
    color: var(--vv-ink-light);
    cursor: pointer;
    border-radius: 4px;
    transition: transform .2s ease, color .2s ease;
}
.vv-dropdown-toggle:hover { color: var(--vv-terracotta); }
.vv-has-dropdown.is-open > .vv-dropdown-toggle,
.vv-has-dropdown:hover > .vv-dropdown-toggle,
.vv-has-dropdown:focus-within > .vv-dropdown-toggle { transform: rotate(180deg); }

/* Dropdown submenus (desktop): open on hover or focus-within, animated */
.vv-sub-menu {
    list-style: none;
    margin: 0;
    padding: 10px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 8px);
    min-width: 220px;
    background: var(--vv-white);
    border-radius: var(--vv-radius);
    box-shadow: 0 16px 32px rgba(20, 52, 42, .16);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 200;
}
.vv-has-dropdown:hover > .vv-sub-menu,
.vv-has-dropdown:focus-within > .vv-sub-menu,
.vv-has-dropdown.is-open > .vv-sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}
.vv-sub-menu li { display: block; }
.vv-sub-menu a.vv-menu-link {
    display: block;
    padding: 9px 14px;
    border-radius: 6px;
    white-space: nowrap;
    color: var(--vv-ink);
}
.vv-sub-menu a.vv-menu-link:hover { background: var(--vv-sand); color: var(--vv-terracotta); }
/* Mega menu: full-width panel, roomier grid — add the "mega-menu" CSS class to a top-level nav item in Appearance → Menus */
.vv-mega { position: static; }
.vv-mega > .vv-sub-menu {
    left: 0;
    right: 0;
    transform: translateY(8px);
    width: min(720px, 90vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 4px;
}
.vv-mega:hover > .vv-sub-menu,
.vv-mega:focus-within > .vv-sub-menu,
.vv-mega.is-open > .vv-sub-menu { transform: translateY(0); }

.vv-header-actions { display: flex; align-items: center; gap: 14px; }
.vv-search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--vv-forest-dark);
    display: flex;
    padding: 6px;
    border-radius: 50%;
    transition: background .2s ease;
}
.vv-search-toggle:hover { background: var(--vv-sand); }
.vv-header-search {
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid transparent;
    transition: max-height .3s ease, border-color .3s ease;
}
.vv-header-search.is-open { max-height: 90px; border-top-color: var(--vv-border); }
.vv-header-search-form { display: flex; gap: 10px; padding: 16px 24px; }
.vv-header-search-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--vv-border);
    border-radius: var(--vv-radius);
    font-family: var(--vv-font-body);
}
.vv-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    background: none;
    border: none;
    cursor: pointer;
}
.vv-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--vv-forest-dark);
    transition: transform .25s ease, opacity .25s ease;
}

/* ==========================================================================
   Off-canvas mobile menu
   ========================================================================== */
.vv-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 52, 42, .5);
    z-index: 299;
    opacity: 0;
    transition: opacity .3s ease;
}
.vv-mobile-overlay.is-open { opacity: 1; }
.vv-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 86vw);
    background: var(--vv-white);
    z-index: 300;
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.2,.8,.3,1);
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.vv-mobile-menu.is-open { transform: translateX(0); }
.vv-mobile-menu-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid var(--vv-border); }
.vv-mobile-close { background: none; border: none; font-size: 1.8rem; line-height: 1; cursor: pointer; color: var(--vv-ink-light); }
.vv-mobile-menu-list { list-style: none; margin: 0; padding: 0; }
.vv-mobile-menu-list a.vv-menu-link {
    display: block;
    padding: 12px 4px;
    color: var(--vv-forest-dark);
    font-weight: 500;
    border-bottom: 1px solid var(--vv-border);
}
.vv-mobile-menu-list .vv-sub-menu {
    list-style: none;
    margin: 0 0 6px;
    padding: 0 0 0 14px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.vv-mobile-menu-list .vv-has-dropdown.is-open > .vv-sub-menu { max-height: 600px; }
.vv-mobile-menu-list .vv-sub-menu a.vv-menu-link { border-bottom: none; padding: 9px 4px; font-weight: 400; color: var(--vv-ink-light); }
.vv-mobile-menu-list .vv-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    margin-left: 0;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--vv-forest-dark);
    transition: transform .25s ease;
}
.vv-mobile-menu-list li.vv-has-dropdown { position: relative; }
.vv-mobile-menu-list .vv-has-dropdown.is-open > .vv-dropdown-toggle { transform: rotate(180deg); }
.vv-mobile-cta { text-align: center; }
.vv-mobile-contact { display: flex; flex-direction: column; gap: 6px; font-size: .92rem; }
.vv-mobile-socials { margin-top: auto; }
@media (prefers-reduced-motion: reduce) {
    .vv-mobile-menu, .vv-mobile-overlay, .vv-header, .vv-header-inner, .vv-header-search, .vv-sub-menu, .vv-dropdown-toggle { transition: none; }
}

/* ==========================================================================
   Hero — layered mountain range, no external image required
   ========================================================================== */
.vv-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0f2e4a 0%, #1b5e8c 46%, var(--vv-forest) 100%);
    color: var(--vv-white);
    padding: 150px 0 0;
    text-align: center;
    isolation: isolate;
}
.vv-hero-sky { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.vv-cloud {
    position: absolute;
    background: rgba(255,255,255,.16);
    border-radius: 999px;
    filter: blur(2px);
    animation: vv-drift 60s linear infinite;
}
.vv-cloud-a { width: 220px; height: 46px; top: 18%; left: -260px; animation-duration: 70s; }
.vv-cloud-b { width: 160px; height: 34px; top: 32%; left: -220px; animation-duration: 95s; animation-delay: -20s; opacity: .8; }
.vv-cloud-c { width: 130px; height: 28px; top: 10%; left: -180px; animation-duration: 55s; animation-delay: -8s; opacity: .6; }
@keyframes vv-drift {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(100vw + 300px)); }
}

.vv-hero-range { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: auto; z-index: 1; display: block; }
.vv-range-back path { fill: #1b4f72; opacity: .55; }
.vv-range-back { bottom: 40px; }
.vv-range-mid path { fill: #123b57; opacity: .78; }
.vv-range-mid { bottom: 10px; }
.vv-range-front path { fill: var(--vv-sand); }
.vv-range-front { bottom: -2px; z-index: 3; }

.vv-hero-trail { position: absolute; left: 0; right: 0; bottom: 10px; width: 100%; height: auto; z-index: 2; }
.vv-trail-path {
    fill: none;
    stroke: var(--vv-terracotta);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    animation: vv-trail-draw 2.6s ease-out .6s forwards;
}
.vv-trail-dot {
    fill: var(--vv-terracotta);
    offset-path: path('M60,330 C 260,300 320,260 420,255 C 560,248 600,180 700,175 C 820,168 860,120 960,110 C 1080,98 1140,60 1260,45');
    animation: vv-dot-travel 2.6s ease-out .6s forwards, vv-dot-pulse 1.4s ease-in-out infinite 3.2s;
    opacity: 0;
}
@keyframes vv-trail-draw { to { stroke-dashoffset: 0; } }
@keyframes vv-dot-travel { from { offset-distance: 0%; opacity: 1; } to { offset-distance: 100%; opacity: 1; } }
@keyframes vv-dot-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.5); } }

.vv-hero-inner { position: relative; z-index: 4; padding-bottom: 96px; }
.vv-hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .78rem;
    font-weight: 600;
    color: var(--vv-terracotta);
    margin-bottom: 14px;
}
.vv-hero h1 { color: var(--vv-white); font-size: 3rem; max-width: 800px; margin: 0 auto 0.4em; }
.vv-hero-sub { font-size: 1.2rem; max-width: 600px; margin: 0 auto 1.5em; opacity: .92; }
.vv-hero-actions .vv-btn { margin: 0 8px; }

/* Hero search bar (alternate CTA style) */
.vv-hero-search-form {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    max-width: 560px;
    margin: 0 auto;
    background: var(--vv-white);
    border-radius: 999px;
    padding: 6px;
    box-shadow: 0 14px 32px rgba(0,0,0,.22);
}
.vv-hero-search-select {
    flex: 1 1 260px;
    min-width: 180px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background: transparent;
    color: var(--vv-ink);
    font-family: var(--vv-font-body);
    font-size: .98rem;
    font-weight: 500;
    padding: 14px 40px 14px 20px;
    border-radius: 999px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2323291f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    cursor: pointer;
    transition: background-color .15s ease;
}
.vv-hero-search-select:hover { background-color: rgba(31,77,63,.05); }
.vv-hero-search-select:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px var(--vv-terracotta);
}
.vv-hero-search-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--vv-terracotta);
    color: var(--vv-white);
    border: none;
    border-radius: 999px;
    padding: 14px 30px;
    font-family: var(--vv-font-body);
    font-size: .98rem;
    font-weight: 700;
    letter-spacing: .01em;
    cursor: pointer;
    transition: background .2s ease, transform .15s ease;
}
.vv-hero-search-btn::before {
    content: "";
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E") center / contain no-repeat;
}
.vv-hero-search-btn:hover { background: var(--vv-terracotta-dark); transform: translateY(-1px); }
@media (max-width: 560px) {
    .vv-hero-search-form { border-radius: 20px; padding: 10px; flex-direction: column; }
    .vv-hero-search-select { border-radius: 12px; text-align: center; background-position: right 14px center; }
    .vv-hero-search-btn { width: 100%; justify-content: center; border-radius: 12px; margin-top: 4px; }
}

/* Sun glow — illustrated hero only, adds a bit of warmth/travel-poster feel */
.vv-hero-sun {
    position: absolute;
    top: 8%;
    right: 14%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(126,200,227,.55) 0%, rgba(126,200,227,0) 70%);
    z-index: 0;
    pointer-events: none;
}

/* Photo / video hero backgrounds */
.vv-hero-image,
.vv-hero-video {
    min-height: 640px;
    display: flex;
    align-items: center;
    background: var(--vv-forest-dark); /* shows briefly while the image/video loads */
}
.vv-hero-image .vv-hero-inner,
.vv-hero-video .vv-hero-inner {
    padding-bottom: 0;
    width: 100%;
}
.vv-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}
.vv-hero-media-image {
    background-size: cover;
    background-position: center;
}
.vv-hero-media-video {
    object-fit: cover;
}
.vv-hero-overlay { position: absolute; inset: 0; z-index: 1; }
.vv-hero-overlay-light  { background: linear-gradient(180deg, rgba(20,52,42,.35) 0%, rgba(20,52,42,.45) 100%); }
.vv-hero-overlay-medium { background: linear-gradient(180deg, rgba(20,52,42,.55) 0%, rgba(20,52,42,.65) 100%); }
.vv-hero-overlay-dark   { background: linear-gradient(180deg, rgba(20,52,42,.72) 0%, rgba(20,52,42,.82) 100%); }

@media (max-width: 720px) {
    .vv-hero-image, .vv-hero-video { min-height: 480px; }
}

/* ==========================================================================
   Scroll reveal + stagger utility
   ========================================================================== */
.vv-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease;
}
.vv-reveal.is-visible { opacity: 1; transform: translateY(0); }
.vv-reveal-delay-1.is-visible { transition-delay: .1s; }
.vv-reveal-delay-2.is-visible { transition-delay: .2s; }
.vv-reveal-delay-3.is-visible { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
    .vv-reveal { opacity: 1; transform: none; transition: none; }
    .vv-cloud, .vv-trail-path, .vv-trail-dot { animation: none; }
    .vv-trail-path { stroke-dashoffset: 0; }
    .vv-trail-dot { opacity: 1; offset-distance: 100%; }
}

/* ==========================================================================
   Stats band
   ========================================================================== */
.vv-stats { background: var(--vv-forest-dark); color: var(--vv-white); padding: 40px 0; }
.vv-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.vv-stat { display: flex; flex-direction: column; align-items: center; }
.vv-stat-num { font-family: var(--vv-font-heading); font-size: 2.2rem; font-weight: 700; color: var(--vv-white); line-height: 1; }
.vv-stat-plus { font-family: var(--vv-font-heading); font-size: 1.4rem; font-weight: 700; color: var(--vv-terracotta); margin-left: 2px; }
.vv-stat-label { display: block; font-size: .82rem; color: #c9d9e6; margin-top: 6px; }

/* ==========================================================================
   Process steps
   ========================================================================== */
.vv-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.vv-process-step { position: relative; padding-left: 4px; }
.vv-process-num {
    display: block;
    font-family: var(--vv-font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--vv-terracotta);
    opacity: .55;
    margin-bottom: 6px;
}
.vv-process-step h3 { margin-bottom: 8px; }
.vv-process-step p { color: var(--vv-ink-light); margin: 0; }

/* ==========================================================================
   Services (Visa & Ticketing)
   ========================================================================== */
.vv-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.vv-service-block {
    background: var(--vv-white);
    border: 1px solid #dde6ee;
    border-radius: 14px;
    padding: 32px;
}
.vv-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--vv-cream, #eaf2f8);
    color: var(--vv-forest-dark);
    margin-bottom: 16px;
}
.vv-service-block h2 { margin-bottom: 10px; }
.vv-service-block > p { color: var(--vv-ink-light); margin-bottom: 16px; }
.vv-service-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.vv-service-list li {
    position: relative;
    padding-left: 22px;
    font-size: .92rem;
    color: var(--vv-ink);
}
.vv-service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--vv-terracotta);
}
@media (max-width: 720px) {
    .vv-services-grid { grid-template-columns: 1fr; }
}

/* Homepage services teaser */
.vv-services-teaser-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.vv-services-teaser-card {
    background: var(--vv-white);
    border: 1px solid #dde6ee;
    border-radius: 14px;
    padding: 28px;
    text-align: left;
}
.vv-services-teaser-card h3 { margin-bottom: 8px; }
.vv-services-teaser-card p { color: var(--vv-ink-light); margin-bottom: 14px; }
@media (max-width: 720px) {
    .vv-services-teaser-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Sample-content state (front page fallback before real posts exist)
   ========================================================================== */
.vv-card-sample { position: relative; }
.vv-sample-tag {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--vv-forest-dark);
    background: var(--vv-sand);
    border: 1px solid var(--vv-border);
    border-radius: 999px;
    padding: 2px 10px;
    margin-bottom: 8px;
}
.vv-testimonial .vv-sample-tag { margin-bottom: 10px; }
.vv-btn-disabled { opacity: .55; cursor: default; }
.vv-card-grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* ==========================================================================
   Native contact form
   ========================================================================== */
.vv-contact-form-wrap { max-width: 560px; margin: 0 auto; }
.vv-contact-form label { display: flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 600; margin-bottom: 6px; color: var(--vv-forest-dark); }
.vv-form-label-icon { flex-shrink: 0; color: var(--vv-terracotta); }
.vv-contact-form input,
.vv-contact-form select,
.vv-contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--vv-border);
    border-radius: 8px;
    margin-bottom: 18px;
    font-family: var(--vv-font-body);
    font-size: .95rem;
    background: var(--vv-white);
    color: var(--vv-ink);
}
.vv-contact-form input:focus,
.vv-contact-form select:focus,
.vv-contact-form textarea:focus {
    outline: none;
    border-color: var(--vv-terracotta);
    box-shadow: 0 0 0 3px rgba(46, 134, 193, 0.15);
}
.vv-contact-form textarea { resize: vertical; }
.vv-contact-form .vv-btn { border: none; font-size: 1rem; cursor: pointer; }
.vv-btn-block {
    display: block;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: .9rem;
    padding: 14px 28px;
    background: var(--vv-forest-dark);
}
.vv-btn-block:hover { background: var(--vv-forest); }

/* ==========================================================================
   Contact page — two-column layout (info + map / form card)
   ========================================================================== */
.vv-contact-page-content { max-width: none; }
.vv-contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: start;
}
.vv-contact-info-col .vv-tour-content { margin-bottom: 24px; }
.vv-contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}
.vv-contact-card {
    background: var(--vv-white);
    border: 1px solid var(--vv-border);
    border-radius: 14px;
    padding: 24px;
}
.vv-contact-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--vv-sand);
    color: var(--vv-terracotta);
    margin-bottom: 14px;
}
.vv-contact-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.vv-contact-card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--vv-ink);
    font-size: .92rem;
    padding: 4px 0;
}
.vv-contact-card-link:hover { color: var(--vv-terracotta); }
.vv-contact-card-link svg { color: var(--vv-terracotta); flex-shrink: 0; }
.vv-contact-map-wrap {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--vv-border);
    line-height: 0;
    margin-bottom: 16px;
}
.vv-contact-map-wrap iframe { display: block; }
.vv-contact-address { color: var(--vv-ink-light); font-size: .92rem; margin: 0 0 12px; }
.vv-contact-directions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: .92rem;
    text-decoration: underline;
}
.vv-form-card {
    background: var(--vv-sand);
    border: 1px solid var(--vv-border);
    border-radius: 16px;
    padding: 36px;
    max-width: none;
}
.vv-form-card h2 { font-size: 1.5rem; margin-bottom: 6px; }
.vv-form-card-sub { color: var(--vv-ink-light); font-size: .92rem; margin: 0 0 24px; }
@media (max-width: 900px) {
    .vv-contact-grid { grid-template-columns: 1fr; }
    .vv-contact-cards { grid-template-columns: 1fr; }
    .vv-form-card { padding: 26px; }
}
/* Honeypot — hidden from real visitors, present for bots that fill every field */
.vv-hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px; height: 1px;
    overflow: hidden;
}
.vv-form-success {
    background: #eaf4ec;
    border: 1px solid var(--vv-success);
    color: #1f5a2c;
    padding: 14px 16px;
    border-radius: var(--vv-radius);
    margin-bottom: 20px;
}
.vv-form-error {
    background: #fbeceb;
    border: 1px solid #c94b40;
    color: #93211a;
    padding: 14px 16px;
    border-radius: var(--vv-radius);
    margin-bottom: 20px;
}

/* ==========================================================================
   CTA band (split layout with quiet motion)
   ========================================================================== */
.vv-cta-band { background: var(--vv-forest); color: var(--vv-white); padding: 64px 0; }
.vv-cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.vv-cta-band h2 { color: var(--vv-white); margin-bottom: 6px; }
.vv-cta-band p { margin: 0; opacity: .88; }
.vv-cta-band .vv-btn { flex-shrink: 0; }

/* ==========================================================================
   Sections
   ========================================================================== */
.vv-section { padding: 72px 0; }
.vv-section-alt { background: var(--vv-white); }
.vv-section h2 { text-align: center; margin-bottom: 40px; }
.vv-center { text-align: center; margin-top: 32px; }

/* ==========================================================================
   Cards / grid
   ========================================================================== */
.vv-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.vv-card {
    background: var(--vv-white);
    border-radius: var(--vv-radius);
    overflow: hidden;
    box-shadow: var(--vv-shadow);
    display: flex;
    flex-direction: column;
    transition: transform .28s ease, box-shadow .28s ease;
}
.vv-card:hover { transform: translateY(-5px); box-shadow: 0 14px 30px rgba(31, 77, 63, 0.16); }
.vv-card-thumb { display: block; aspect-ratio: 3/2; overflow: hidden; }
.vv-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.vv-card:hover .vv-card-thumb img { transform: scale(1.05); }
.vv-card-thumb-placeholder { width: 100%; height: 100%; aspect-ratio: 3/2; background: linear-gradient(135deg, var(--vv-forest), var(--vv-terracotta)); position: relative; overflow: hidden; }
.vv-card-thumb-placeholder::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.16) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .6s ease;
}
.vv-card:hover .vv-card-thumb-placeholder::after { transform: translateX(100%); }
.vv-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.vv-card-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.vv-card-body h3 a { color: var(--vv-forest-dark); }
.vv-card-excerpt { color: var(--vv-ink-light); font-size: .92rem; flex: 1; }
.vv-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.vv-card-price { font-weight: 700; color: var(--vv-forest-dark); }
.vv-price-old { text-decoration: line-through; color: var(--vv-ink-light); font-weight: 400; margin-right: 6px; }
.vv-btn-small { padding: 8px 18px; font-size: .88rem; }
.vv-card-meta { color: var(--vv-ink-light); font-size: .82rem; }

.vv-tour-facts {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    padding: 0;
    margin: 0 0 10px;
    font-size: .85rem;
    color: var(--vv-ink-light);
}
.vv-tour-facts li { position: relative; padding-left: 14px; }
.vv-tour-facts li::before { content: '\2022'; position: absolute; left: 0; color: var(--vv-terracotta); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.vv-testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.vv-testimonial {
    position: relative;
    background: var(--vv-white);
    padding: 28px 24px 24px;
    border-radius: var(--vv-radius);
    box-shadow: var(--vv-shadow);
    margin: 0;
    transition: transform .28s ease, box-shadow .28s ease;
}
.vv-testimonial:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(31, 77, 63, 0.14); }
.vv-testimonial p { margin: 0; }
.vv-quote-mark {
    display: block;
    font-family: var(--vv-font-heading);
    font-size: 3rem;
    line-height: 1;
    color: var(--vv-terracotta);
    opacity: .35;
    margin-bottom: 4px;
}
.vv-testimonial footer { margin-top: 14px; font-weight: 600; color: var(--vv-forest-dark); }
.vv-review-stars { display: block; color: var(--vv-terracotta); letter-spacing: 2px; margin-bottom: 10px; font-size: 1rem; }

/* ==========================================================================
   Team
   ========================================================================== */
.vv-team-thumb { aspect-ratio: 1/1; }
.vv-team-thumb img { object-position: center top; }
.vv-team-role { font-weight: 600; color: var(--vv-terracotta); font-size: .88rem; margin: 0 0 8px; }
.vv-team-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
    margin: 0 0 10px;
}
.vv-team-tags li {
    font-size: .74rem;
    background: var(--vv-forest-light, #eef3ee);
    color: var(--vv-forest-dark);
    padding: 3px 10px;
    border-radius: 999px;
}
.vv-team-socials {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 14px 0 0;
}
.vv-team-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--vv-forest-light, #eef3ee);
    color: var(--vv-forest-dark);
    transition: background .2s ease, color .2s ease;
}
.vv-team-socials a:hover { background: var(--vv-forest-dark); color: var(--vv-white); }
.vv-page-header-sub { color: var(--vv-ink-light); margin-top: 8px; }
.vv-team-single { display: grid; grid-template-columns: 280px 1fr; gap: 40px; padding: 48px 0; align-items: start; }
.vv-team-single-photo { border-radius: var(--vv-radius); overflow: hidden; }
.vv-team-single-photo img { width: 100%; display: block; }
@media (max-width: 720px) {
    .vv-team-single { grid-template-columns: 1fr; }
    .vv-team-single-photo { max-width: 240px; margin: 0 auto; }
}

/* ==========================================================================
   Page header / breadcrumb
   ========================================================================== */
.vv-page-header { background: var(--vv-white); padding: 50px 0 30px; border-bottom: 1px solid var(--vv-border); }
.vv-breadcrumb { font-size: .85rem; color: var(--vv-ink-light); margin-bottom: 10px; }
.vv-breadcrumb a { color: var(--vv-ink-light); }
.vv-page-content { padding: 48px 0; max-width: 860px; margin: 0 auto; }
.vv-page-thumb { margin-bottom: 32px; border-radius: var(--vv-radius); overflow: hidden; }

/* ==========================================================================
   Archive layout (tours / destinations)
   ========================================================================== */
.vv-archive-layout { display: grid; grid-template-columns: 220px 1fr; gap: 40px; padding: 48px 0; align-items: start; }
.vv-filters h3 { font-size: 1rem; margin-top: 24px; }
.vv-filters h3:first-child { margin-top: 0; }
.vv-filters ul { list-style: none; padding: 0; margin: 0; }
.vv-filters li { margin-bottom: 6px; }
.vv-filter-select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--vv-border);
    border-radius: 6px;
    font-family: var(--vv-font-body);
    background: var(--vv-white);
    color: var(--vv-ink);
}
.vv-filter-clear { display: inline-block; margin-top: 18px; font-size: .85rem; }
.vv-pagination { text-align: center; margin-top: 40px; }

/* ==========================================================================
   Empty states (no results / no posts)
   ========================================================================== */
.vv-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 56px 24px;
    background: var(--vv-white);
    border-radius: var(--vv-radius);
    border: 1px dashed var(--vv-border);
}
.vv-empty-state p { color: var(--vv-ink-light); margin-bottom: 20px; font-size: 1.05rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.vv-footer { background: var(--vv-footer-bg); color: #d6e2ec; padding: 0 0 0; margin-top: 60px; }
.vv-footer-newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 40px 24px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.vv-footer-newsletter-text h3 { color: var(--vv-white); margin-bottom: 4px; }
.vv-footer-newsletter-text p { margin: 0; color: #a9bfd1; font-size: .92rem; }
.vv-newsletter-form { min-width: 320px; }
.vv-newsletter-row { display: flex; gap: 8px; }
.vv-newsletter-row input {
    flex: 1;
    padding: 11px 14px;
    border-radius: var(--vv-radius);
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.06);
    color: var(--vv-white);
}
.vv-newsletter-row input::placeholder { color: #8ca6bc; }
.vv-newsletter .vv-form-success,
.vv-newsletter .vv-form-error { margin: 0; min-width: 320px; }
.vv-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    padding: 44px 24px;
}
.vv-footer-about { grid-column: span 1; min-width: 220px; }
@media (min-width: 860px) {
    /* Give the About column extra breathing room once there's space for
       it, without hardcoding a fixed track count that breaks when the
       legacy widget areas or footer menu are also in use. */
    .vv-footer-about { grid-column: span 2; max-width: 420px; }
}
.vv-footer h3, .vv-footer h4 { color: var(--vv-white); }
.vv-footer h4 { font-size: 1rem; margin-bottom: 14px; }
.vv-footer a { color: #d6e2ec; }
.vv-footer a:hover { color: var(--vv-terracotta); }
.vv-footer-menu-list { list-style: none; padding: 0; margin: 0; }
.vv-footer-menu-list li { margin-bottom: 9px; }
.vv-footer-socials { margin-top: 16px; }
.vv-footer-trust {
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 18px 24px;
}
.vv-footer-trust .vv-trust-badges {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 28px;
    margin: 0;
    padding: 0;
    font-size: .82rem;
    color: #a9bfd1;
}
.vv-footer-trust .vv-trust-badges li { display: flex; align-items: center; gap: 7px; }
.vv-footer-trust .vv-trust-badges li::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--vv-terracotta);
    flex-shrink: 0;
}
.vv-footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; font-size: .85rem; text-align: center; }

/* ==========================================================================
   Back to top
   ========================================================================== */
.vv-back-to-top {
    position: fixed;
    right: 20px;
    bottom: 88px;
    z-index: 240;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--vv-forest-dark);
    color: var(--vv-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s, background .2s ease;
}
.vv-back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.vv-back-to-top:hover { background: var(--vv-terracotta); }
body.single-tour .vv-back-to-top { bottom: 154px; }
@media (max-width: 880px) {
    .vv-back-to-top { right: 16px; bottom: 82px; }
}
@media (prefers-reduced-motion: reduce) {
    .vv-back-to-top { transition: none; }
}

/* ==========================================================================
   Blog
   ========================================================================== */
.vv-blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; padding: 48px 0; }

/* ==========================================================================
   404
   ========================================================================== */
.vv-404 { text-align: center; padding: 120px 0; }
.vv-404 h1 { font-size: 5rem; color: var(--vv-terracotta); }
.vv-404-search { display: flex; gap: 10px; max-width: 440px; margin: 28px auto 24px; }
.vv-404-search input {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid var(--vv-border);
    border-radius: var(--vv-radius);
    font-family: var(--vv-font-body);
}
.vv-page-header .vv-404-search { margin: 20px 0 0; max-width: 480px; }

/* ==========================================================================
   WhatsApp floating button
   ========================================================================== */
.vv-whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 250;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,.22);
    transition: transform .2s ease;
}
.vv-whatsapp-float:hover { transform: scale(1.08); color: #fff; }
body.single-tour .vv-whatsapp-float { bottom: 88px; }
@media (prefers-reduced-motion: reduce) {
    .vv-whatsapp-float { transition: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 880px) {
    .vv-menu-toggle { display: flex; }
    .vv-primary-nav { display: none; }
    .vv-header-cta { display: none; }
    .vv-top-bar-inner { flex-wrap: wrap; gap: 8px 16px; padding: 8px 20px; }
    .vv-archive-layout { grid-template-columns: 1fr; }
    .vv-footer-grid { grid-template-columns: 1fr 1fr; }
    .vv-footer-newsletter { flex-direction: column; align-items: flex-start; }
    .vv-hero { padding: 100px 0 0; }
    .vv-hero-inner { padding-bottom: 64px; }
    .vv-hero h1 { font-size: 2.1rem; }
    .vv-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
    .vv-process-grid { grid-template-columns: 1fr; gap: 28px; }
    .vv-cta-band-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
    .vv-footer-grid { grid-template-columns: 1fr; }
    .vv-newsletter-row { flex-direction: column; }
}

/* ==========================================================================
   Inbound / Outbound tours
   ========================================================================== */
.vv-direction-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.vv-direction-tabs a {
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid var(--vv-border);
    color: var(--vv-ink-light);
    font-size: .88rem;
    font-weight: 600;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.vv-direction-tabs a:hover { border-color: var(--vv-forest-dark); color: var(--vv-forest-dark); }
.vv-direction-tabs a.is-active { background: var(--vv-forest-dark); border-color: var(--vv-forest-dark); color: var(--vv-white); }

.vv-direction-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .74rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: var(--vv-forest-dark);
}
.vv-tour-card .vv-card-thumb { position: relative; }
.vv-tour-card .vv-direction-badge { position: absolute; top: 12px; left: 12px; }
.vv-tour-hero .vv-direction-badge { margin-bottom: 10px; }
.vv-direction-outbound { color: var(--vv-terracotta); }

.vv-homepage-direction-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin: -12px 0 32px;
}
.vv-homepage-direction-links a {
    padding: 9px 20px;
    border-radius: 999px;
    border: 1px solid var(--vv-border);
    font-weight: 600;
    font-size: .92rem;
    color: var(--vv-forest-dark);
    transition: background .2s ease, color .2s ease;
}
.vv-homepage-direction-links a:hover { background: var(--vv-forest-dark); color: var(--vv-white); }

.vv-travel-requirements {
    margin: 32px 0;
    padding: 22px 24px;
    background: var(--vv-white);
    border: 1px solid var(--vv-border);
    border-radius: var(--vv-radius);
}
.vv-travel-requirements h2 { margin-top: 0; font-size: 1.2rem; }
.vv-travel-req-list { list-style: none; padding: 0; margin: 0 0 12px; display: grid; gap: 8px; }
.vv-travel-req-notes { color: var(--vv-ink-light); font-size: .92rem; margin: 0 0 12px; }
.vv-travel-req-cta { margin: 0; font-size: .92rem; }
.vv-travel-req-cta a { font-weight: 600; }
