   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: #fff;
      color: #111;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       NAV
    â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: #ffffff;
      box-shadow: 0 1px 0 rgba(0,0,0,0.08);
    }
    .nav-wrap {
      max-width: 1280px; margin: 0 auto;
      padding: 0 40px; height: 80px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo { display: flex; align-items: center; }
    .nav-logo img { width: 210px; height: auto; }

    .nav-links {
      display: flex; align-items: center; gap: 36px;
    }
    .nav-links a {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.6875rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: rgba(0,0,0,0.45);
      transition: color 0.18s;
    }
    .nav-links a:hover { color: #111; }

    .nav-right { display: flex; align-items: center; gap: 24px; }
    .nav-phone {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.06em;
      color: rgba(0,0,0,0.4);
      display: flex; align-items: center; gap: 7px;
    }
    .nav-book {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
      background: #E67E22; color: #fff;
      padding: 10px 22px; border-radius: 100px;
      display: flex; align-items: center; gap: 7px;
      transition: background 0.18s, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
      box-shadow: 0 3px 12px rgba(230,126,34,0.35);
    }
    .nav-book:hover { background: #cf711e; transform: translateY(-1px); }

    .nav-ham {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer; padding: 4px;
    }
    .nav-ham span { display: block; width: 22px; height: 2px; background: #333; border-radius: 2px; }

    #mob { display: none; background: #fff; border-top: 1px solid rgba(0,0,0,0.08); }
    #mob.open { display: block; }
    #mob a {
      display: block; padding: 14px 40px;
      font-family: 'Montserrat', sans-serif; font-size: 0.75rem;
      font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
      color: rgba(0,0,0,0.55); border-bottom: 1px solid rgba(0,0,0,0.06);
      transition: color 0.18s;
    }
    #mob a:hover { color: #111; }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       HERO
    â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #hero {
      height: 100vh; min-height: 640px;
      position: relative; overflow: hidden;
      padding-top: 80px;
      display: flex; flex-direction: column; justify-content: flex-end;
    }
    .hero-slider {
      position: absolute; inset: 0; z-index: 0; overflow: hidden;
    }
    .hero-slide {
      position: absolute; inset: 0;
      opacity: 0;
      transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .hero-slide.active { opacity: 1; }
    .hero-slide img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center;
      display: block;
    }
    .hero-overlay {
      position: absolute; inset: 0; z-index: 1; pointer-events: none;
      background:
        linear-gradient(to bottom,
          rgba(0,0,0,0.38) 0%,
          rgba(0,0,0,0.04) 35%,
          rgba(0,0,0,0.35) 65%,
          rgba(0,0,0,0.80) 100%);
    }
    .hero-dots {
      position: absolute; bottom: 28px; right: 40px;
      z-index: 3; display: flex; gap: 8px; align-items: center;
    }
    .hero-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: rgba(255,255,255,0.35);
      border: none; padding: 0; cursor: pointer;
      transition: background 0.3s, transform 0.3s;
    }
    .hero-dot.active { background: #fff; transform: scale(1.4); }
    .hero-caption {
      position: absolute; top: 96px; right: 40px; z-index: 3;
      font-family: 'Montserrat', sans-serif; font-size: 0.5625rem;
      font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      opacity: 0; transform: translateY(4px);
      transition: opacity 0.6s ease 0.8s, transform 0.6s ease 0.8s;
    }
    .hero-caption.visible { opacity: 1; transform: translateY(0); }

    .hero-body {
      position: relative; z-index: 2;
      max-width: 1280px; margin: 0 auto;
      padding: 0 40px 56px;
      width: 100%;
      transition: opacity 0.35s ease, transform 0.35s ease;
    }
    .hero-body.text-fade { opacity: 0; transform: translateY(8px); }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: 'Montserrat', sans-serif; font-size: 0.625rem;
      font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
      color: rgba(255,255,255,0.65);
      margin-bottom: 12px;
    }
    .hero-badge-dot {
      width: 5px; height: 5px; border-radius: 50%; background: #E67E22;
      animation: blink 2.2s ease-in-out infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.35} }

    h1.hero-title {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: clamp(4rem, 11vw, 9.5rem);
      color: #fff;
      line-height: 0.9;
      letter-spacing: -0.04em;
      margin-bottom: 18px;
    }
    .hero-tagline {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(0.875rem, 1.4vw, 1.0625rem);
      font-weight: 500; color: rgba(255,255,255,0.72);
      letter-spacing: 0.02em; line-height: 1.5;
      max-width: 480px; margin-bottom: 32px;
    }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-hero-primary {
      font-family: 'Montserrat', sans-serif; font-weight: 700;
      font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase;
      background: #E67E22; color: #fff;
      padding: 14px 30px; border-radius: 100px;
      display: inline-flex; align-items: center; gap: 8px;
      transition: background 0.18s, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
      box-shadow: 0 4px 18px rgba(230,126,34,0.45);
    }
    .btn-hero-primary:hover { background: #cf711e; transform: translateY(-2px); }
    .btn-hero-outline {
      font-family: 'Montserrat', sans-serif; font-weight: 700;
      font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase;
      background: transparent; color: #fff;
      border: 1.5px solid rgba(255,255,255,0.55);
      padding: 14px 30px; border-radius: 100px;
      display: inline-flex; align-items: center; gap: 8px;
      transition: background 0.18s, border-color 0.18s, transform 0.2s;
    }
    .btn-hero-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }


    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       SHARED SECTION / CARD STYLES
    â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .section-overline {
      font-family: 'Montserrat', sans-serif; font-size: 0.625rem;
      font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
      color: #aaa; margin-bottom: 20px;
      display: flex; align-items: center; gap: 10px;
    }
    .section-overline::before {
      content: ''; display: block;
      width: 28px; height: 1px; background: #ccc;
    }

    /* Card grid */
    .pick-wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
    .pick-header {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 32px; flex-wrap: wrap; gap: 20px;
    }
    h2.pick-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(2rem, 3.5vw, 2.875rem);
      font-weight: 800; color: #111; letter-spacing: -0.035em;
    }
    .pick-sub {
      font-size: 0.875rem; color: #999; margin-top: 6px;
    }
    .tabs { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
    .tab-btn {
      font-family: 'Montserrat', sans-serif; font-weight: 600;
      font-size: 0.6875rem; letter-spacing: 0.07em; text-transform: uppercase;
      padding: 8px 18px; border-radius: 100px;
      border: 1.5px solid #E0E0E0; background: #fff; color: #888;
      cursor: pointer; transition: all 0.18s;
    }
    .tab-btn:hover { border-color: #111; color: #111; }
    .tab-btn.active { background: #111; color: #fff; border-color: #111; }

    .pick-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }
    .pcard {
      border-radius: 18px; overflow: hidden;
      position: relative; display: block;
      box-shadow: 0 4px 18px rgba(0,0,0,0.09);
      transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
    }
    .pcard:hover { transform: translateY(-7px); box-shadow: 0 20px 50px rgba(0,0,0,0.18); }
    .pcard img {
      width: 100%; height: 266px; object-fit: cover; display: block;
      transition: transform 0.55s ease;
    }
    .pcard:hover img { transform: scale(1.06); }
    .pcard-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.04) 50%, transparent 100%);
    }
    .pcard-badge {
      position: absolute; top: 13px; right: 13px;
      background: rgba(255,255,255,0.94); backdrop-filter: blur(8px);
      border-radius: 100px; padding: 4px 11px;
      font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.6875rem; color: #111;
      display: flex; align-items: center; gap: 4px;
    }
    .pcard-bottom {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 14px 16px 16px;
    }
    .pcard-name {
      font-family: 'Montserrat', sans-serif; font-weight: 800;
      font-size: 1rem; color: #fff; line-height: 1.2; margin-bottom: 6px;
    }
    .pcard-tags { display: flex; gap: 6px; flex-wrap: wrap; }
    .pcard-tag {
      font-size: 0.625rem; font-weight: 600; letter-spacing: 0.06em;
      color: rgba(255,255,255,0.82);
      background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
      padding: 3px 9px; border-radius: 100px; backdrop-filter: blur(4px);
    }
    .pcard.hidden { display: none; }
    .pick-footer {
      display: flex; align-items: center; justify-content: center;
      margin-top: 44px;
    }
    .btn-outline-dark {
      font-family: 'Montserrat', sans-serif; font-weight: 700;
      font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase;
      padding: 13px 32px; border-radius: 100px;
      border: 1.5px solid #111; color: #111; background: #fff;
      display: inline-flex; align-items: center; gap: 8px;
      transition: background 0.18s, color 0.18s, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
    }
    .btn-outline-dark:hover { background: #111; color: #fff; transform: translateY(-2px); }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       ABOUT US ("MEANS" LAYOUT)
    â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #about {
      padding: 100px 0;
      background: #fff;
    }
    .means-wrap {
      max-width: 1280px; margin: 0 auto; padding: 0 40px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
      align-items: start;
    }
    .means-overline {
      font-family: 'Montserrat', sans-serif; font-size: 0.625rem;
      font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
      color: #aaa; margin-bottom: 20px;
      display: flex; align-items: center; gap: 10px;
    }
    .means-overline::before {
      content: ''; display: block;
      width: 28px; height: 1px; background: #ccc;
    }
    h2.means-heading {
      font-family: 'Montserrat', sans-serif;
      letter-spacing: -0.03em;
      line-height: 1.13;
    }
    .means-line1 {
      display: block;
      font-size: clamp(2rem, 3.6vw, 3.25rem);
      font-weight: 400; color: #444;
    }
    .means-line2 {
      display: block;
      font-size: clamp(2.5rem, 4.5vw, 4rem);
      font-weight: 800; color: #111;
    }
    .odot {
      display: inline-block;
      width: 11px; height: 11px; border-radius: 50%;
      background: #E67E22;
      margin-left: 7px;
      vertical-align: middle; position: relative; bottom: 3px;
    }
    .means-right { padding-top: 72px; }
    .means-body {
      font-size: 1rem; line-height: 1.82; color: #666;
      margin-bottom: 22px;
    }
    .means-mission {
      font-family: 'Montserrat', sans-serif; font-size: 0.9375rem; font-weight: 700;
      color: #111; letter-spacing: -0.01em; line-height: 1.5;
      border-left: 3px solid #E67E22; padding-left: 16px;
      margin-bottom: 28px;
    }
    a.read-more {
      font-family: 'Montserrat', sans-serif; font-weight: 700;
      font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase;
      color: #111; display: inline-flex; align-items: center; gap: 7px;
      border-bottom: 1.5px solid #111; padding-bottom: 3px;
      transition: color 0.18s, border-color 0.18s;
    }
    a.read-more:hover { color: #E67E22; border-color: #E67E22; }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       WHY CHOOSE US (FEATURE LAYOUT)
    â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #why {
      padding: 0 0 100px;
      background: #fff;
    }
    .feat-wrap {
      max-width: 1280px; margin: 0 auto; padding: 0 40px;
      display: grid; grid-template-columns: 5fr 7fr; gap: 56px;
      align-items: center;
    }
    .feat-overline {
      font-family: 'Montserrat', sans-serif; font-size: 0.625rem;
      font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
      color: #aaa; margin-bottom: 18px;
      display: flex; align-items: center; gap: 10px;
    }
    .feat-overline::before {
      content: ''; display: block;
      width: 28px; height: 1px; background: #ccc;
    }
    h2.feat-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(1.75rem, 2.8vw, 2.5rem);
      font-weight: 800; color: #111;
      letter-spacing: -0.03em; line-height: 1.15;
      margin-bottom: 24px;
    }
    .check-list {
      list-style: none;
      display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px;
      margin-bottom: 32px;
    }
    .check-list li {
      display: flex; align-items: flex-start; gap: 9px;
      font-size: 0.875rem; color: #555; line-height: 1.5;
    }
    .check-list li .ck {
      flex-shrink: 0; margin-top: 2px;
      width: 16px; height: 16px; border-radius: 50%;
      background: #E67E22;
      display: flex; align-items: center; justify-content: center;
    }
    .check-list li .ck svg { display: block; }
    .btn-dark {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: 'Montserrat', sans-serif; font-weight: 700;
      font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase;
      background: #111; color: #fff;
      padding: 13px 28px; border-radius: 100px;
      transition: background 0.18s, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
    }
    .btn-dark:hover { background: #2a2a2a; transform: translateY(-2px); }

    .feat-cards {
      display: flex; align-items: flex-start; gap: 16px;
    }
    .fcard-main {
      flex: 1;
      border-radius: 22px; overflow: hidden; position: relative;
      box-shadow: 0 16px 48px rgba(0,0,0,0.15);
    }
    .fcard-main img {
      width: 100%; height: 380px; object-fit: cover; display: block;
    }
    .fcard-main-label {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 32px 20px 20px;
      background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
    }
    .fcard-main-title {
      font-family: 'Montserrat', sans-serif; font-weight: 800;
      font-size: 1rem; color: #fff; line-height: 1.2;
    }
    .fcard-main-sub { font-size: 0.75rem; color: rgba(255,255,255,0.65); margin-top: 3px; }
    .fcard-stack {
      flex: 0 0 180px; margin-top: 56px;
      display: flex; flex-direction: column; gap: 14px;
    }
    .fcard-sm {
      border-radius: 18px; overflow: hidden; position: relative;
      box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    }
    .fcard-sm img { width: 100%; height: 158px; object-fit: cover; display: block; }
    .fcard-sm-label {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 24px 14px 14px;
      background: linear-gradient(to top, rgba(0,0,0,0.68) 0%, transparent 100%);
    }
    .fcard-sm-title {
      font-family: 'Montserrat', sans-serif; font-weight: 700;
      font-size: 0.8125rem; color: #fff; line-height: 1.2;
    }
    .fcard-sm-sub { font-size: 0.6875rem; color: rgba(255,255,255,0.6); margin-top: 2px; }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       FLEET SECTION
    â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #fleet {
      padding: 0 0 100px;
      background: #F7F6F3;
    }
    .fleet-wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
    .fleet-header { margin-bottom: 36px; }
    .fleet-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    }
    .fleet-card {
      background: #fff; border-radius: 20px;
      padding: 32px 24px 28px;
      box-shadow: 0 2px 16px rgba(0,0,0,0.06);
      transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
      display: flex; flex-direction: column;
    }
    .fleet-card:hover { transform: translateY(-6px); box-shadow: 0 18px 48px rgba(0,0,0,0.13); }
    .fleet-icon {
      width: 52px; height: 52px; border-radius: 14px;
      background: rgba(230,126,34,0.1);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
    }
    .fleet-card-title {
      font-family: 'Montserrat', sans-serif; font-weight: 800;
      font-size: 1.0625rem; color: #111; letter-spacing: -0.02em;
      margin-bottom: 8px;
    }
    .fleet-card-body {
      font-size: 0.875rem; line-height: 1.7; color: #777;
      flex: 1;
    }
    .fleet-tag {
      display: inline-flex; margin-top: 16px;
      font-family: 'Montserrat', sans-serif; font-size: 0.625rem;
      font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
      color: #E67E22;
    }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       DARK CTA SECTION
    â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #cta-dark {
      background: #0D0D0D;
      padding: 96px 0;
    }
    .cta-wrap {
      max-width: 1280px; margin: 0 auto; padding: 0 40px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
      align-items: center;
    }
    h2.cta-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 800; color: #fff;
      letter-spacing: -0.035em; line-height: 1.15;
      margin-bottom: 16px;
    }
    .cta-title span { color: #E67E22; }
    .cta-body {
      font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.5);
      margin-bottom: 36px;
    }
    .cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-orange {
      font-family: 'Montserrat', sans-serif; font-weight: 700;
      font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase;
      background: #E67E22; color: #fff;
      padding: 13px 28px; border-radius: 100px;
      display: inline-flex; align-items: center; gap: 8px;
      transition: background 0.18s, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
      box-shadow: 0 4px 18px rgba(230,126,34,0.35);
    }
    .btn-orange:hover { background: #cf711e; transform: translateY(-2px); }
    .btn-white-outline {
      font-family: 'Montserrat', sans-serif; font-weight: 700;
      font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase;
      background: transparent; color: #fff;
      border: 1.5px solid rgba(255,255,255,0.3);
      padding: 13px 28px; border-radius: 100px;
      display: inline-flex; align-items: center; gap: 8px;
      transition: border-color 0.18s, background 0.18s;
    }
    .btn-white-outline:hover { border-color: #fff; background: rgba(255,255,255,0.07); }

    .cta-contact-items { display: flex; flex-direction: column; gap: 20px; }
    .cta-contact-item {
      display: flex; align-items: center; gap: 18px;
      padding: 24px 28px; border-radius: 16px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      transition: background 0.18s;
    }
    .cta-contact-item:hover { background: rgba(255,255,255,0.08); }
    .cta-contact-icon {
      width: 44px; height: 44px; border-radius: 12px;
      background: rgba(230,126,34,0.15);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .cta-contact-label {
      font-family: 'Montserrat', sans-serif; font-size: 0.5625rem;
      font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
      color: rgba(255,255,255,0.35); margin-bottom: 4px;
    }
    .cta-contact-value {
      font-family: 'Montserrat', sans-serif; font-weight: 700;
      font-size: 0.9375rem; color: #fff; letter-spacing: -0.01em;
    }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       FOOTER
    â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    footer {
      background: #0D0D0D; padding: 36px 0;
      border-top: 1px solid rgba(255,255,255,0.05);
    }
    .foot-wrap {
      max-width: 1280px; margin: 0 auto; padding: 0 40px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 16px;
    }
    .foot-brand {
      font-family: 'Montserrat', sans-serif; font-weight: 800;
      font-size: 0.875rem; letter-spacing: -0.01em;
      color: rgba(255,255,255,0.3);
    }
    .foot-links { display: flex; gap: 28px; }
    .foot-links a {
      font-family: 'Montserrat', sans-serif; font-size: 0.6875rem;
      font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
      color: rgba(255,255,255,0.25); transition: color 0.18s;
    }
    .foot-links a:hover { color: rgba(255,255,255,0.6); }
    .foot-copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       TESTIMONIALS — TRAVELLER REVIEWS
    â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #testimonials {
      padding: 80px 0 88px;
      background: #F9F7F4;
      position: relative;
      overflow: hidden;
    }
    .testi-mountain-svg {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      pointer-events: none;
      opacity: 0.04;
    }
    .testi-wrap {
      max-width: 1280px; margin: 0 auto;
      padding: 0 40px; position: relative; z-index: 1;
    }
    .testi-header { text-align: left; margin-bottom: 44px; }
    .testi-overline {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.625rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: #aaa; margin-bottom: 16px;
      display: flex; align-items: center; justify-content: flex-start; gap: 10px;
    }
    .testi-overline::before {
      content: ''; display: block; width: 28px; height: 1px; background: #ccc;
    }
    .testi-overline::after { display: none; }
    h2.testi-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(1.625rem, 2.6vw, 2.25rem);
      font-weight: 800; color: #111;
      letter-spacing: -0.035em; line-height: 1.15;
      margin-bottom: 12px;
    }
    .testi-subtitle {
      font-size: 0.9375rem; color: #888; line-height: 1.72;
      max-width: 520px; margin: 0;
    }
    .testi-agg {
      display: flex; align-items: center; justify-content: flex-start;
      gap: 10px; margin-top: 20px;
    }
    .testi-agg-stars { display: flex; gap: 3px; }
    .testi-agg-score {
      font-family: 'Montserrat', sans-serif; font-weight: 800;
      font-size: 1.125rem; color: #111; letter-spacing: -0.02em;
    }
    .testi-agg-label { font-size: 0.8125rem; color: #999; }
    .testi-carousel-outer { position: relative; overflow: hidden; }
    .testi-track {
      display: flex; gap: 24px;
      transition: transform 0.52s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }
    .tcard {
      flex: 0 0 calc((100% - 48px) / 3);
      background: #fff; border-radius: 24px;
      padding: 36px 32px 30px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05), 0 8px 32px rgba(0,0,0,0.07);
      display: flex; flex-direction: column;
      transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
    }
    .tcard:hover {
      transform: translateY(-6px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.06), 0 20px 56px rgba(0,0,0,0.13);
    }
    .tcard-quote-mark {
      font-size: 3.5rem; line-height: 1; font-family: Georgia, serif;
      color: rgba(230,126,34,0.22); margin-bottom: 4px; margin-top: -8px;
    }
    .tcard-stars { display: flex; gap: 3px; margin-bottom: 14px; }
    .tcard-review {
      font-size: 0.9375rem; line-height: 1.78; color: #555;
      flex: 1; margin-bottom: 24px;
    }
    .tcard-divider { height: 1px; background: #F0EDE8; margin-bottom: 20px; }
    .tcard-footer { display: flex; align-items: center; gap: 13px; }
    .tcard-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Montserrat', sans-serif; font-weight: 700;
      font-size: 0.8125rem; color: #fff; flex-shrink: 0;
    }
    .tcard-name {
      font-family: 'Montserrat', sans-serif; font-weight: 700;
      font-size: 0.875rem; color: #111; letter-spacing: -0.01em; margin-bottom: 3px;
    }
    .tcard-trip {
      font-family: 'Montserrat', sans-serif; font-size: 0.625rem;
      font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #E67E22;
    }
    .testi-controls {
      display: flex; align-items: center; justify-content: center;
      gap: 16px; margin-top: 40px;
    }
    .testi-arrow {
      width: 44px; height: 44px; border-radius: 50%;
      border: 1.5px solid #E0DDD8; background: #fff;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; color: #666;
      transition: border-color 0.18s, background 0.18s, color 0.18s,
                  transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
    }
    .testi-arrow:hover { border-color: #E67E22; background: #E67E22; color: #fff; transform: scale(1.1); }
    .testi-arrow:focus-visible { outline: 2px solid #E67E22; outline-offset: 2px; }
    .testi-dots { display: flex; gap: 6px; align-items: center; }
    .testi-dot {
      height: 6px; border-radius: 3px; width: 6px;
      background: #D4D0CB; border: none; padding: 0; cursor: pointer;
      transition: background 0.25s, width 0.25s cubic-bezier(0.34,1.56,0.64,1);
    }
    .testi-dot.active { background: #E67E22; width: 22px; }
    .testi-dot:focus-visible { outline: 2px solid #E67E22; outline-offset: 2px; }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       RESPONSIVE
    â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    @media (max-width: 1100px) {
      .pick-grid { grid-template-columns: repeat(3,1fr); }
      .fleet-grid { grid-template-columns: repeat(2,1fr); }
    }

    /* â”€â”€ Tablet (â‰¤ 860px) â”€â”€ */
    @media (max-width: 860px) {
      /* Nav */
      .nav-links, .nav-phone, .nav-book { display: none !important; }
      .nav-ham { display: flex !important; }
      .nav-logo img { width: 175px; }

      /* All section inner wrappers — reduce horizontal padding */
      .pick-wrap, .fleet-wrap, .feat-wrap, .means-wrap, .testi-wrap { padding: 0 24px; }
      .cta-wrap { padding: 0 24px; grid-template-columns: 1fr; gap: 44px; }

      /* Section vertical padding */
      section#yatras, section#treks, section#fleet { padding: 68px 0 76px !important; }
      section#about { padding: 68px 0 !important; }
      #cta-dark { padding: 68px 0 !important; }
      #testimonials { padding: 80px 0 88px !important; }

      /* Why Choose Us */
      #why { padding: 68px 0 76px !important; }
      .feat-wrap { grid-template-columns: 1fr; gap: 44px; }
      .means-wrap { grid-template-columns: 1fr; gap: 36px; }
      .means-right { padding-top: 0; }

      /* Grids */
      .pick-grid { grid-template-columns: repeat(2,1fr); }
      .pick-header { flex-direction: column; align-items: flex-start; }
      .check-list { grid-template-columns: 1fr; }
      .fleet-grid { grid-template-columns: repeat(2,1fr); }

      /* Testimonials */
      .tcard { flex: 0 0 calc((100% - 24px) / 2); }
    }

    /* â”€â”€ Mobile (â‰¤ 520px) â”€â”€ */
    @media (max-width: 520px) {
      /* Nav */
      .nav-wrap { padding: 0 16px; height: 64px; }
      .nav-logo { flex-shrink: 0; }
      .nav-logo img { width: 140px; }
      .nav-right { gap: 10px; }
      .nav-book { display: none; }

      /* Hero */
      .hero-body { padding: 0 20px 40px; }
      .hero-caption { right: 20px; top: 84px; }
      .hero-dots { right: 20px; bottom: 20px; }
      h1.hero-title { letter-spacing: -0.03em; }
      .hero-btns { flex-direction: column; gap: 10px; }
      .btn-hero-primary, .btn-hero-outline { justify-content: center; }

      /* All wrappers — tighter padding */
      .pick-wrap, .fleet-wrap, .feat-wrap, .means-wrap, .testi-wrap { padding: 0 16px; }
      .cta-wrap { padding: 0 16px; gap: 36px; }

      /* Section vertical padding (override inline styles) */
      section#yatras, section#treks { padding: 56px 0 60px !important; }
      section#fleet { padding: 56px 0 68px !important; }
      section#about { padding: 56px 0 !important; }
      #why { padding: 56px 0 64px !important; }
      #testimonials { padding: 60px 0 68px !important; }
      #cta-dark { padding: 56px 0 !important; }

      /* Tabs — horizontal scroll, no wrap */
      .tabs {
        flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch;
        gap: 6px; padding-bottom: 4px; scrollbar-width: none;
      }
      .tabs::-webkit-scrollbar { display: none; }
      .tab-btn { flex-shrink: 0; padding: 7px 13px; font-size: 0.625rem; }
      .pick-header { gap: 14px; }

      /* Cards — single column */
      .pick-grid { grid-template-columns: 1fr; }
      .fleet-grid { grid-template-columns: 1fr; }
      .fleet-card { padding: 24px 20px 20px; }

      /* Feature cards on mobile — stack vertically */
      .feat-cards { flex-direction: column; gap: 12px; }
      .fcard-main img { height: 220px; border-radius: 18px; }
      .fcard-stack { flex: initial; flex-direction: row; gap: 10px; margin-top: 0; }
      .fcard-sm { flex: 1; }
      .fcard-sm img { height: 130px; }

      /* About / Means */
      .means-line1 { font-size: 1.625rem; }
      .means-line2 { font-size: 2rem; }

      /* Testimonials */
      .tcard { flex: 0 0 100%; padding: 28px 22px 22px; }
      .tcard-review { font-size: 0.875rem; }
      .testi-header { margin-bottom: 36px; }
      h2.testi-title { font-size: 1.625rem; }

      /* CTA contact */
      .cta-contact-item { padding: 16px 18px; gap: 14px; }
      .cta-contact-icon { width: 38px; height: 38px; border-radius: 10px; }
      .cta-contact-value { font-size: 0.8125rem; overflow-wrap: break-word; word-break: break-word; }
      .cta-contact-label { font-size: 0.5rem; }
      .cta-body { font-size: 0.9375rem; margin-bottom: 28px; }
      .cta-btns { flex-direction: column; gap: 10px; }
      .btn-orange, .btn-white-outline { justify-content: center; text-align: center; }

      /* Pick footer */
      .pick-footer { text-align: center; }
      .btn-outline-dark { justify-content: center; font-size: 0.625rem; }

      /* Footer */
      .foot-wrap { padding: 0 16px; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
      .foot-links { flex-wrap: wrap; justify-content: center; gap: 12px 20px; }
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       MOTION EFFECTS
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

    /* Scroll reveal base states */
    .rw       { opacity: 0; transform: translateY(38px); will-change: opacity, transform; }
    .rw-left  { opacity: 0; transform: translateX(-30px); will-change: opacity, transform; }
    .rw-scale { opacity: 0; transform: translateY(22px) scale(0.93); will-change: opacity, transform; }

    /* Revealed state — spring easing for transform, linear ease for opacity */
    .rw.rw-in, .rw-left.rw-in, .rw-scale.rw-in {
      opacity: 1;
      transform: translateY(0) translateX(0) scale(1);
      transition:
        opacity 0.68s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.78s cubic-bezier(0.34, 1.56, 0.64, 1);
      transition-delay: var(--rd, 0ms);
    }

    /* Overline ::before line draw (only when .rw class is present) */
    .section-overline.rw::before,
    .feat-overline.rw::before,
    .means-overline.rw::before {
      transform-origin: left;
      transform: scaleX(0);
      transition: transform 0.52s cubic-bezier(0.34, 1.56, 0.64, 1) 0.12s;
    }
    .section-overline.rw-in::before,
    .feat-overline.rw-in::before,
    .means-overline.rw-in::before {
      transform: scaleX(1);
    }
    .testi-overline.rw::before {
      transform-origin: left;
      transform: scaleX(0);
      transition: transform 0.52s cubic-bezier(0.34, 1.56, 0.64, 1) 0.12s;
    }
    .testi-overline.rw-in::before {
      transform: scaleX(1);
    }

    /* Scroll progress bar */
    #scroll-prog {
      position: fixed; top: 0; left: 0; height: 3px;
      width: 0%;
      background: linear-gradient(90deg, #E67E22, #F5A623, #E67E22);
      background-size: 200% 100%;
      animation: prog-shimmer 2s linear infinite;
      z-index: 9999; pointer-events: none;
      box-shadow: 0 0 10px rgba(230, 126, 34, 0.55);
    }
    @keyframes prog-shimmer {
      0%   { background-position: 0% 0%; }
      100% { background-position: 200% 0%; }
    }

    /* Nav glassmorphism on scroll */
    #nav {
      transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
    }
    #nav.nav-scrolled {
      background: rgba(255, 255, 255, 0.88) !important;
      backdrop-filter: blur(28px) saturate(1.4);
      -webkit-backdrop-filter: blur(28px) saturate(1.4);
      box-shadow: 0 2px 48px rgba(0, 0, 0, 0.10);
    }

    /* Floating stars in testimonials aggregate */
    @keyframes star-float {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-5px); }
    }
    .testi-agg-stars svg                { animation: star-float 2.8s ease-in-out infinite; }
    .testi-agg-stars svg:nth-child(2)   { animation-delay: 0.14s; }
    .testi-agg-stars svg:nth-child(3)   { animation-delay: 0.28s; }
    .testi-agg-stars svg:nth-child(4)   { animation-delay: 0.42s; }
    .testi-agg-stars svg:nth-child(5)   { animation-delay: 0.56s; }

    /* Card shine sweep on hover */
    @keyframes card-shine {
      from { transform: translateX(-160%) skewX(-15deg); }
      to   { transform: translateX(260%) skewX(-15deg); }
    }
    .pcard { overflow: hidden; }
    .pcard::after {
      content: '';
      position: absolute; top: 0; left: 0;
      width: 55%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
      transform: translateX(-160%) skewX(-15deg);
      pointer-events: none; z-index: 3;
    }
    .pcard:hover::after {
      animation: card-shine 0.7s ease forwards;
    }

    /* Fleet card icon hover bounce */
    .fleet-card:hover .fleet-icon {
      animation: icon-bounce 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    @keyframes icon-bounce {
      0%   { transform: scale(1); }
      50%  { transform: scale(1.18); }
      100% { transform: scale(1); }
    }

    /* Magnetic button — smooth return */
    .btn-hero-primary,
    .btn-hero-outline {
      transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.18s, border-color 0.18s !important;
    }

    /* Active nav link */
    .nav-links a {
      transition: color 0.22s ease;
    }
