    :root {
      /* Colors */
      --vv-primary: #2e7d32;
      --vv-primary-dark: #1b5e20;
      --vv-accent: #81c784;
      --vv-accent-light: #a5d6a7;
      --vv-text-dark: #1a2a1a;
      --vv-text-muted: #556b55;
      --vv-text-light: #778b77;
      --vv-bg-light: #f8fdf8;
      --vv-bg-white: #ffffff;
      --vv-footer-bg: #0d1a0d;
      --vv-wa-green: #25d366;
      
      /* Transitions */
      --vv-transition: all 0.3s ease;
      --vv-transition-fast: all 0.2s ease;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    /* ===== STANDARDIZED NAVBAR ===== */
    .vv-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: #fff;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
      font-family: 'Poppins', sans-serif;
    }

    .vv-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
      height: 70px;
    }

    .vv-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .vv-logo img {
      height: 52px;
      width: auto;
    }

    .vv-menu {
      display: flex;
      align-items: center;
      list-style: none;
      gap: .25rem;
      margin: 0;
      padding: 0;
    }

    .vv-menu>li>a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 1.1rem;
      height: 42px;
      color: var(--vv-text-dark);
      font-size: .88rem;
      font-weight: 500;
      text-decoration: none;
      border-radius: 6px;
      transition: all .2s;
    }

    /* Menu Badge styling */
    .menu-item-has-badge {
      position: relative;
    }

    .menu-badge-soon {
      position: absolute;
      bottom: -4px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.58rem;
      background: #e8f5e9;
      color: var(--vv-primary);
      padding: 1px 6px;
      border-radius: 4px;
      font-weight: 700;
      text-transform: uppercase;
      white-space: nowrap;
      pointer-events: none;
      letter-spacing: 0.02em;
      border: 1px solid rgba(46, 125, 50, 0.1);
    }



    .vv-menu>li>a:hover,
    .vv-menu>li.active>a {
      color: var(--vv-primary);
      background: #f0f7f0;
    }

    /* Dropdown Logic */
    .has-dropdown {
      position: relative;
    }

    .vv-dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 220px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
      padding: 0.75rem 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      list-style: none;
      z-index: 1001;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .has-dropdown:hover .vv-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .vv-dropdown li a {
      display: block;
      padding: 0.65rem 1.5rem;
      color: var(--vv-text-dark);
      font-size: 0.88rem;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.2s;
    }

    .vv-dropdown li a:hover {
      background: #f0f7f0;
      color: var(--vv-primary);
      padding-left: 1.75rem;
    }

    /* Chevron Icon */
    .has-dropdown > a::after {
      content: '\f107';
      font-family: 'Font Awesome 5 Free';
      font-weight: 900;
      margin-left: 6px;
      font-size: 0.8rem;
      transition: transform 0.3s;
    }

    .has-dropdown:hover > a::after {
      transform: rotate(180deg);
    }

    .vv-cta-desktop {
      display: inline-block;
      padding: .5rem 1.4rem;
      background: var(--vv-primary);
      color: #fff !important;
      font-size: .85rem;
      font-weight: 600;
      border-radius: 6px;
      text-decoration: none;
      transition: all .2s;
      margin-left: 2rem;
    }

    .vv-cta-desktop:hover {
      background: #1b5e20 !important;
      box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
    }

    .vv-hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 36px;
      height: 36px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }

    .vv-hamburger span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--vv-text-dark);
      border-radius: 2px;
      transition: all .3s;
    }

    .vv-hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .vv-hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .vv-hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }



    /* ===== WA FLOAT + BOOK NOW ===== */
    .vv-wa-float {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 56px;
      height: 56px;
      background: #25d366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
      z-index: 9999;
      transition: transform .2s, box-shadow .2s;
      text-decoration: none;
    }

    .vv-wa-float:hover {
      transform: scale(1.12);
      box-shadow: 0 8px 28px rgba(37, 211, 102, .55);
    }

    .vv-wa-float svg {
      width: 28px;
      height: 28px;
      fill: #fff;
    }

    .vv-btn-booknow {
      display: inline-block;
      padding: .48rem 1.25rem;
      background: var(--vv-primary);
      color: var(--vv-bg-white) !important;
      font-size: .82rem;
      font-weight: 700;
      border-radius: 20px;
      text-decoration: none;
      margin-left: .5rem;
      transition: var(--vv-transition-fast);
      white-space: nowrap;
    }

    .vv-btn-booknow:hover {
      background: var(--vv-primary-dark) !important;
      transform: translateY(-1px);
      color: var(--vv-bg-white);
      text-decoration: none;
    }

    /* pre-footer CTA */
    .vv-prefooter-cta {
      background: linear-gradient(135deg, #1b5e20 0%, var(--vv-primary) 100%);
      padding: 80px 0;
      text-align: center;
    }

    .vv-prefooter-cta h2 {
      font-size: 2.2rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: .75rem;
    }

    .vv-prefooter-cta p {
      color: rgba(255, 255, 255, .8);
      font-size: 1.05rem;
      margin-bottom: 2rem;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
    }

    .vv-prefooter-cta .btn-light-fill {
      display: inline-block;
      padding: .78rem 2rem;
      background: #fff;
      color: var(--vv-primary);
      font-weight: 700;
      border-radius: 8px;
      text-decoration: none;
      font-size: .97rem;
      margin: .35rem;
      transition: background .2s, transform .15s;
    }

    .vv-prefooter-cta .btn-light-fill:hover {
      background: #f0fdf0;
      transform: translateY(-2px);
      text-decoration: none;
    }

    .vv-prefooter-cta .btn-wa-outline {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      padding: .78rem 2rem;
      border: 2px solid rgba(255, 255, 255, .7);
      color: #fff;
      font-weight: 700;
      border-radius: 8px;
      text-decoration: none;
      font-size: .97rem;
      margin: .35rem;
      transition: background .2s, transform .15s;
    }

    .vv-prefooter-cta .btn-wa-outline:hover {
      background: rgba(255, 255, 255, .12);
      transform: translateY(-2px);
      color: #fff;
      text-decoration: none;
    }

    /* footer social */
    .footer-social {
      display: flex;
      gap: .75rem;
      margin-top: .50rem;
      flex-wrap: wrap;
    }

    .social-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(255, 255, 255, .07);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--vv-text-light);
      text-decoration: none;
      font-size: .9rem;
      transition: var(--vv-transition-fast);
    }

    .social-icon:hover {
      background: var(--vv-primary);
      color: var(--vv-bg-white);
      transform: scale(1.1);
    }

    .social-icon.si-instagram:hover { background: #E4405F !important; }
    .social-icon.si-facebook:hover { background: #1877F2 !important; }
    .social-icon.si-linkedin:hover { background: #0A66C2 !important; }
    .social-icon.si-youtube:hover { background: #FF0000 !important; }
    .social-icon.si-whatsapp:hover { background: #25D366 !important; }

    /* footer trust bar */
    .footer-trust-bar {
      border-top: 1px solid rgba(255, 255, 255, .07);
      margin-top: 40px;
      padding-top: 28px;
      display: flex;
      justify-content: center;
      gap: 2.5rem;
      flex-wrap: wrap;
      text-align: center;
    }

    .footer-trust-item strong {
      display: block;
      font-size: 1.1rem;
      font-weight: 700;
      color: #c8e6c9;
    }

    .footer-trust-item span {
      font-size: .75rem;
      color: #4a5e4a;
      text-transform: uppercase;
      letter-spacing: .07em;
    }

    /* ===== GLOBAL ===== */
    body {
      font-family: 'Poppins', sans-serif;
      color: var(--vv-text-dark);
      background: #fff;
      padding-top: 70px;
    }

    section {
      padding: 80px 0;
    }

    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .section-label {
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--vv-primary);
      margin-bottom: .5rem;
    }

    .section-title {
      font-size: 2.2rem;
      font-weight: 700;
      line-height: 1.25;
      color: var(--vv-text-dark);
      margin-bottom: 1rem;
    }

    .section-sub {
      font-size: 1rem;
      color: #556b55;
      max-width: 580px;
    }

    .text-center .section-sub {
      margin: 0 auto;
    }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      min-height: 92vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background-image: url('../images/banner.jpg');
      background-position: center center;
      background-size: cover;
      background-repeat: no-repeat;
      overflow: hidden;
    }

    .detail-hero {
      min-height: 60vh !important;
      background-attachment: scroll;
    }

    /* dark overlay */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.58);
      z-index: 0;
    }

    .hero .container {
      position: relative;
      z-index: 1;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .25);
      border-radius: 20px;
      padding: .35rem 1rem;
      font-size: .75rem;
      font-weight: 600;
      color: #a5d6a7;
      letter-spacing: .09em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }

    .hero-title {
      font-size: 3.6rem;
      font-weight: 700;
      line-height: 1.12;
      color: #ffffff;
      margin-bottom: 1.25rem;
      text-shadow: 0 2px 16px rgba(0, 0, 0, .35);
    }

    .hero-title .accent {
      color: #81c784;
    }

    .hero-desc {
      font-size: 1.1rem;
      color: #ffffff;
      line-height: 1.7;
      margin: 0 auto 2.5rem;
      max-width: 580px;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    /* hero primary btn — white fill */
    .btn-primary-green {
      display: inline-block;
      padding: .82rem 2.2rem;
      background: var(--vv-primary);
      color: #fff;
      font-weight: 700;
      border-radius: 8px;
      text-decoration: none;
      font-size: .97rem;
      transition: background .2s, box-shadow .2s, transform .15s;
    }

    .btn-primary-green:hover {
      background: #1b5e20;
      box-shadow: 0 8px 24px rgba(46, 125, 50, .45);
      transform: translateY(-2px);
      color: #fff;
      text-decoration: none;
    }

    /* hero secondary btn — WhatsApp green outline */
    .btn-outline-green {
      display: inline-block;
      padding: .82rem 2.2rem;
      border: 2px solid rgba(255, 255, 255, .7);
      color: #fff;
      font-weight: 700;
      border-radius: 8px;
      text-decoration: none;
      font-size: .97rem;
      transition: background .2s, border-color .2s, transform .15s;
    }

    .btn-outline-green:hover {
      background: rgba(255, 255, 255, .12);
      border-color: #fff;
      color: #fff;
      transform: translateY(-2px);
      text-decoration: none;
    }

    /* trust bar inside hero */
    .hero-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      margin-top: 3.5rem;
      flex-wrap: wrap;
    }

    .hero-trust-item {
      text-align: center;
    }

    .hero-trust-item strong {
      display: block;
      font-size: 1.9rem;
      font-weight: 700;
      color: #a5d6a7;
      line-height: 1.1;
    }

    .hero-trust-item span {
      font-size: .78rem;
      color: rgba(255, 255, 255, .65);
      font-weight: 500;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    .hero-trust-divider {
      width: 1px;
      height: 36px;
      background: rgba(255, 255, 255, .2);
    }

    /* ===== TREK CARDS ===== */
    .trek-card {
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
      background: #fff;
      transition: transform .25s, box-shadow .25s;
    }

    .trek-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 35px rgba(0, 0, 0, .13);
    }

    .trek-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .trek-card-body {
      padding: 1.25rem;
    }

    .trek-card-difficulty {
      display: inline-block;
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: .2rem .65rem;
      border-radius: 20px;
      margin-bottom: .65rem;
    }

    .diff-beginner {
      background: #e8f5e9;
      color: var(--vv-primary);
    }

    .diff-moderate {
      background: #fff3e0;
      color: #e65100;
    }

    .diff-difficult {
      background: #fce4ec;
      color: #c62828;
    }

    .trek-card-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--vv-text-dark);
      margin-bottom: .5rem;
    }

    .trek-card-meta {
      display: flex;
      gap: 1.2rem;
      font-size: .8rem;
      color: #778b77;
      margin-bottom: 1rem;
      flex-wrap: wrap;
    }

    .trek-card-meta span {
      display: flex;
      align-items: center;
      gap: .3rem;
    }

    .trek-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid #f0f0f0;
      padding-top: .9rem;
    }

    .trek-price {
      font-size: 1rem;
      font-weight: 700;
      color: var(--vv-primary);
    }

    .trek-price small {
      font-size: .72rem;
      font-weight: 400;
      color: #778b77;
      display: block;
    }

    .btn-sm-green {
      display: inline-block;
      padding: .42rem 1rem;
      background: var(--vv-primary);
      color: #fff;
      font-size: .78rem;
      font-weight: 600;
      border-radius: 6px;
      text-decoration: none;
      transition: background .2s;
    }

    .btn-sm-green:hover {
      background: #1b5e20;
      color: #fff;
      text-decoration: none;
    }

    /* ===== WHY SECTION ===== */
    .why-card {
      background: #f8fdf8;
      border: 1px solid #e8f0e8;
      border-radius: 14px;
      padding: 2rem;
      height: 100%;
    }

    .why-icon {
      width: 52px;
      height: 52px;
      background: #e8f5e9;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.2rem;
    }

    .why-card h4 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--vv-text-dark);
      margin-bottom: .5rem;
    }

    .why-card p {
      font-size: .88rem;
      color: #556b55;
      line-height: 1.6;
      margin: 0;
    }

    /* ===== CATEGORY CARDS ===== */
    .cat-card {
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      min-height: 260px;
      display: flex;
      align-items: flex-end;
      padding: 1.5rem;
      text-decoration: none;
    }

    .cat-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, 0) 60%);
      z-index: 1;
    }

    .cat-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .cat-card-content {
      position: relative;
      z-index: 2;
      color: #fff;
    }

    .cat-card-content h3 {
      font-size: 1.35rem;
      font-weight: 700;
      margin-bottom: .25rem;
    }

    .cat-card-content p {
      font-size: .82rem;
      opacity: .85;
      margin: 0;
    }

    .cat-badge {
      display: inline-block;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      padding: .2rem .65rem;
      border-radius: 20px;
      margin-bottom: .65rem;
    }

    .cat-badge.beg {
      background: var(--vv-primary);
    }

    .cat-badge.mod {
      background: #e65100;
    }

    .cat-badge.dif {
      background: #c62828;
    }

    /* ===== ABOUT ===== */
    .about-section {
      background: #f8fdf8;
    }

    .about-img {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 16px 50px rgba(0, 0, 0, .1);
    }

    .about-img img {
      width: 100%;
      display: block;
    }

    .about-tag {
      display: inline-block;
      background: #e8f5e9;
      color: var(--vv-primary);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: .3rem .9rem;
      border-radius: 20px;
      margin-bottom: 1rem;
    }

    .founder-social-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--vv-text-dark);
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 600;
      transition: color 0.3s ease, transform 0.3s ease;
    }

    .founder-social-link:hover {
      color: #e4405f;
      transform: translateX(5px);
    }

    .founder-social-link svg {
      transition: transform 0.3s ease;
    }

    .founder-social-link:hover svg {
      transform: scale(1.1);
    }

    /* ===== INCLUSIONS ===== */
    .inclusion-item {
      display: flex;
      align-items: flex-start;
      gap: .75rem;
      padding: .75rem 0;
      border-bottom: 1px solid #f0f0f0;
    }

    .inclusion-item:last-child {
      border-bottom: none;
    }

    .inc-icon {
      width: 32px;
      height: 32px;
      min-width: 32px;
      background: #e8f5e9;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }

    .inc-text strong {
      font-size: .9rem;
      font-weight: 600;
      color: var(--vv-text-dark);
      display: block;
    }

    .inc-text span {
      font-size: .8rem;
      color: #778b77;
    }

    .excl-list li {
      font-size: .88rem;
      color: #556b55;
      padding: .4rem 0;
      list-style: none;
      display: flex;
      align-items: center;
      gap: .5rem;
    }

    .excl-list li::before {
      content: '✕';
      color: #e57373;
      font-size: .75rem;
      font-weight: 700;
    }

    /* ===== TESTIMONIAL ===== */
    .testi-card {
      background: #fff;
      border-radius: 14px;
      padding: 1.75rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
      position: relative;
      margin-top: 1.5rem;
    }

    .testi-card::before {
      content: '\201C';
      font-size: 4rem;
      color: #e8f5e9;
      position: absolute;
      top: .5rem;
      left: 1.25rem;
      line-height: 1;
      font-family: Georgia, serif;
    }

    .testi-avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #e8f5e9;
    }

    .stars {
      color: #f4b942;
      font-size: .9rem;
    }

    /* ===== CONTACT ===== */
    .contact-section {
      background: linear-gradient(135deg, #1b5e20, var(--vv-primary));
      color: #fff;
    }

    .contact-section .section-label {
      color: #a5d6a7;
    }

    .contact-section .section-title {
      color: #fff;
    }

    .contact-section p {
      color: #c8e6c9;
    }

    .whatsapp-btn {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      padding: .8rem 1.8rem;
      background: #25d366;
      color: #fff;
      font-weight: 700;
      border-radius: 8px;
      text-decoration: none;
      font-size: .95rem;
      transition: background .2s;
    }

    .whatsapp-btn:hover {
      background: #128c7e;
      color: #fff;
      text-decoration: none;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: .75rem 1rem;
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 8px;
      background: rgba(255, 255, 255, .12);
      color: #fff;
      font-size: .9rem;
      margin-bottom: 1rem;
      font-family: 'Poppins', sans-serif;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
      color: rgba(255, 255, 255, .6);
    }

    .contact-form textarea {
      resize: vertical;
      min-height: 100px;
    }

    .contact-form button {
      padding: .75rem 2rem;
      background: #fff;
      color: var(--vv-primary);
      font-weight: 700;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: .95rem;
      transition: background .2s;
    }

    .contact-form button:hover {
      background: #e8f5e9;
    }

    /* ===== FOOTER ===== */
    .vv-footer {
      background: #0d1a0d;
      color: #a5b8a5;
      padding: 60px 0 30px;
    }

    .footer-logo img {
      height: 46px;
      margin-bottom: 1rem;
      background: #fff;
      padding: 0.4rem 0.8rem;
      border-radius: 4px;
    }

    .footer-desc {
      font-size: .85rem;
      line-height: 1.7;
      color: #778b77;
      margin-bottom: 1.5rem;
    }

    .footer-heading {
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #c8e6c9;
      margin-bottom: 1rem;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: .6rem;
    }

    .footer-links a {
      color: #778b77;
      text-decoration: none;
      font-size: .85rem;
      transition: color .2s;
    }

    .footer-links a:hover {
      color: #81c784;
    }

    /* Removed duplicated social styles */


    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .06);
      margin-top: 40px;
      padding-top: 20px;
      text-align: center;
      font-size: .8rem;
      color: #4a5e4a;
    }




    /* ----- ADDED FROM TREK GUIDE ----- */
    /* PAGE */
    .page-banner {
      background: linear-gradient(135deg, #e8f5e9, #f1f8f1);
      padding: 70px 0 50px;
      border-bottom: 1px solid #e0ede0;
    }

    .page-banner h1 {
      font-size: 2.4rem;
      font-weight: 700;
      color: var(--vv-text-dark);
      margin-bottom: .5rem;
    }

    .page-banner p {
      color: #556b55;
      font-size: 1rem;
      max-width: 560px;
    }

    .breadcrumb-vv {
      display: flex;
      gap: .5rem;
      font-size: .8rem;
      color: #778b77;
      margin-bottom: 1rem;
      list-style: none;
    }

    .breadcrumb-vv li+li::before {
      content: '›';
    }

    .breadcrumb-vv a {
      color: var(--vv-primary);
      text-decoration: none;
    }

    /* ANCHOR NAV */
    .guide-anchors {
      background: #fff;
      border-bottom: 2px solid #e8f0e8;
      position: sticky;
      top: 69px;
      z-index: 50;
    }

    .guide-anchors-inner {
      display: flex;
      gap: 0;
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 1.5rem;
      overflow-x: auto;
    }

    .guide-anchors a {
      display: inline-block;
      padding: .9rem 1.4rem;
      font-size: .85rem;
      font-weight: 500;
      color: #556b55;
      text-decoration: none;
      white-space: nowrap;
      border-bottom: 3px solid transparent;
      transition: color .2s, border-color .2s;
    }

    .guide-anchors a:hover,
    .guide-anchors a.active {
      color: var(--vv-primary);
      border-bottom-color: var(--vv-primary);
    }

    /* CONTENT */
    .guide-section {
      padding: 70px 0;
      scroll-margin-top: 130px;
    }

    .guide-section:nth-child(even) {
      background: #f8fdf8;
    }

    .guide-card {
      background: #fff;
      border: 1px solid #e8f0e8;
      border-radius: 14px;
      padding: 1.5rem;
    }

    .guide-card h4 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--vv-text-dark);
      margin-bottom: .6rem;
      display: flex;
      align-items: center;
      gap: .5rem;
    }

    .guide-card p,
    .guide-card li {
      font-size: .88rem;
      color: #556b55;
      line-height: 1.7;
    }

    .guide-card ul {
      padding-left: 1.2rem;
    }

    .guide-card li {
      margin-bottom: .4rem;
    }

    .pack-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 1rem;
    }

    .faq-item {
      border-bottom: 1px solid #e8f0e8;
      padding: 1.25rem 0;
    }

    .faq-item:last-child {
      border-bottom: none;
    }

    .faq-q {
      font-size: .95rem;
      font-weight: 600;
      color: var(--vv-text-dark);
      margin-bottom: .5rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .faq-a {
      font-size: .88rem;
      color: #556b55;
      line-height: 1.7;
    }

    .fitness-step {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.25rem;
      background: #fff;
      border: 1px solid #e8f0e8;
      border-radius: 12px;
    }

    .fitness-num {
      width: 40px;
      height: 40px;
      min-width: 40px;
      background: var(--vv-primary);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: .9rem;
    }

    .safety-alert {
      background: #fff8e1;
      border: 1px solid #fff176;
      border-radius: 12px;
      padding: 1.25rem 1.5rem;
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .safety-alert .icon {
      font-size: 1.5rem;
    }

    .safety-alert p {
      font-size: .88rem;
      color: #5d4037;
      line-height: 1.6;
      margin: 0;
    }

    /* FROM TREKS PAGE */
    .diff-anchor {
      scroll-margin-top: 90px;
    }

    .category-heading {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--vv-text-dark);
      margin-bottom: 1.5rem;
      padding-bottom: .75rem;
      border-bottom: 1.5px solid #e8f5e9;
      display: flex;
      align-items: center;
      gap: .75rem;
    }

    /* ==========================================================================
       MEDIA QUERIES (CONSOLIDATED)
       ========================================================================== */
    @media (max-width: 900px) {
      /* Shared Mobile Layout */
      section {
        padding: 60px 0;
      }

      /* Navbar & Menu */
      .vv-hamburger {
        display: flex;
      }
      .vv-cta-desktop {
        display: none;
      }
      .vv-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--vv-bg-white);
        flex-direction: column;
        padding: 1rem 1.5rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        border-top: 1px solid #f0f0f0;
        z-index: 100;
      }
      .vv-menu.open {
        display: flex;
      }
      .vv-menu li {
        width: 100%;
      }
      .vv-menu li a {
        display: block;
        padding: .8rem 0;
        border-bottom: 1px solid #f8f8f8;
      }
      .vv-cta-mobile {
        display: block;
        margin-top: 1rem;
        padding: .8rem;
        background: var(--vv-primary);
        color: var(--vv-bg-white) !important;
        text-align: center;
        border-radius: 6px;
        font-weight: 600;
        text-decoration: none;
      }

      /* Menu Badge */
      .menu-item-has-badge {
        display: flex;
        align-items: center;
        justify-content: flex-start;
      }
      .vv-menu li.menu-item-has-badge a {
        display: inline-block;
        width: auto;
      }
      .menu-badge-soon {
        position: static;
        transform: none;
        display: inline-block;
        margin-left: 10px;
        vertical-align: middle;
      }

      /* Hero & Headings */
      .hero {
        padding: 60px 0 50px;
        min-height: auto;
      }
      .hero-title {
        font-size: 2.2rem;
      }
      .section-title {
        font-size: 1.7rem;
      }
      .hero-stats, .hero-trust {
        gap: 1.5rem;
      }
      .hero-floating-card, .hero-trust-divider {
        display: none;
      }
    }

    /* Video Story Styles */
    .vv-video-section {
      padding: 80px 0;
      background: #f8fdf8;
    }

    .vv-video-wrapper {
      position: relative;
      padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
      height: 0;
      overflow: hidden;
      border-radius: 24px;
      box-shadow: 0 30px 60px rgba(46, 125, 50, 0.15);
      border: 1px solid rgba(46, 125, 50, 0.08);
      max-width: 900px;
      margin: 0 auto;
    }

    .vv-video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .vv-video-chapters {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin-top: 2.5rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .vv-chapter-item {
      background: #fff;
      border: 1px solid #e0ede0;
      padding: 8px 16px;
      border-radius: 12px;
      font-size: 0.85rem;
      font-weight: 600;
      color: #2e7d32 !important;
      text-decoration: none !important;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
    }

    .vv-chapter-item:hover {
      background: #e8f5e9;
      border-color: #2e7d32;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(46, 125, 50, 0.1);
    }

    .vv-chapter-item span {
      opacity: 0.6;
      margin-right: 8px;
      font-weight: 400;
      font-family: monospace;
    }