
    :root {
      --navy: #002C4F;
      --blue: #004A7C;
      --sky: #0B6A9A;
      --gold: #FFB703;
      --gold-d: #F28F00;
      --green: #FFB703;
      --wa: #FFB703;
      --muted: #4B5563;
      --text: #132238;
      --border: #DDE7EE;
      --bg: #F7FAFC;
      --cream: #FFF9E8;
      --white: #fff;
      --font-brand: 'Plus Jakarta Sans', 'Montserrat', 'Arial Black', Arial, sans-serif;
      --font-body: var(--font-brand);
      --r: 12px;
      --rl: 20px;
      --sh: 0 2px 16px rgba(0, 0, 0, .08);
      --shl: 0 8px 40px rgba(0, 0, 0, .14);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      color: var(--text);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      width: 100%;
      font-weight: 500;
    }

    a {
      text-decoration: none !important;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
      height: auto;
    }

    h1,
    h2,
    h3,
    h4,
    h5 {
      font-family: var(--font-brand);
      font-weight: 900 !important;
      color: var(--navy);
      letter-spacing: 0;
    }

    @font-face {
      font-family: 'Plus Jakarta Sans';
      font-style: normal;
      font-weight: 100 900;
      font-display: swap;
      src: url('assets/fonts/pjs-var.woff2') format('woff2');
    }

    /* ASPECT RATIO STABILITY */
    .pkg-img-wrap {
      aspect-ratio: 400 / 250;
      background: #f1f5f9;
    }

    .fl-img-box {
      aspect-ratio: 110 / 80;
      background: #f1f5f9;
    }

    .ig-card {
      aspect-ratio: 1 / 1;
      background: #f1f5f9;
    }

    /* NAV */
    .nav {
      position: sticky;
      top: 0;
      z-index: 999;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      border-top: 4px solid var(--gold) !important;
      width: 100%;
    }

    .nav-inner {
      display: flex !important;
      align-items: center !important;
      justify-content: space-between !important;
      min-height: 72px !important;
      height: auto;
      max-width: 1280px;
      margin: 0 auto;
      padding: 8px 24px !important;
      gap: 20px !important;
    }

    /* PROGRESSIVE CONTENT RENDERING: Reduces Main-Thread Work */
    .lazy-section {
      content-visibility: auto;
      contain-intrinsic-size: 900px;
    }

    @media(max-width:768px) {
      .lazy-section {
        contain-intrinsic-size: 700px;
      }
    }

    .logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
      width: clamp(180px, 20vw, 270px);
      aspect-ratio: 990 / 480;
      overflow: hidden;
      position: relative;
    }

    .logo img {
      position: absolute;
      left: -26%;
      top: -52%;
      width: 155% !important;
      height: auto !important;
      max-width: none !important;
      margin: 0;
    }

    @media(max-width:1200px) {
      .nav-links {
        display: none !important;
      }
    }

    @media(max-width:640px) {
      .logo {
        width: clamp(128px, 39vw, 180px);
      }

      .logo img {
        width: 155% !important;
      }
    }

    @media(max-width:360px) {
      .logo {
        width: 116px;
      }

      .logo img {
        width: 155% !important;
      }
    }

    .nav-inner .nav-links {
      display: flex !important;
      align-items: center !important;
      gap: 40px !important;
      flex-shrink: 0;
    }

    .nav-inner .nav-links a {
      position: relative;
      font-size: 1.05rem !important;
      font-weight: 700 !important;
      color: var(--navy) !important;
      opacity: 1 !important;
      transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
      white-space: nowrap;
      letter-spacing: 0;
      padding: 6px 12px !important;
      border-radius: 6px;
    }

    .nav-inner .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 12px;
      right: 12px;
      height: 2.5px;
      background: var(--gold);
      transition: width .3s cubic-bezier(0.4, 0, 0.2, 1);
      width: 0;
    }

    .nav-inner .nav-links a:hover {
      opacity: 1 !important;
      color: var(--blue) !important;
      background: rgba(255, 183, 3, 0.12);
      transform: translateY(-1px);
    }

    .nav-inner .nav-links a:hover::after {
      width: calc(100% - 24px);
    }

    .nav-ctas {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-shrink: 0;
    }

    .btn-call {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--navy);
      color: var(--white);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: .85rem;
      padding: 11px 22px;
      border-radius: 100px;
      transition: all .2s;
      box-shadow: 0 4px 12px rgba(10, 22, 40, .15);
      white-space: nowrap;
    }

    .btn-call:hover {
      background: var(--gold);
      color: var(--navy);
      transform: translateY(-1px);
      box-shadow: 0 6px 16px rgba(10, 22, 40, .25);
    }

    .btn-wa-n {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--wa);
      color: var(--navy);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: .85rem;
      padding: 11px 22px;
      border-radius: 100px;
      transition: all .2s;
      box-shadow: 0 4px 12px rgba(255, 183, 3, .24);
      white-space: nowrap;
    }

    .btn-wa-n:hover {
      background: var(--gold-d);
      color: var(--navy);
      transform: translateY(-1px);
      box-shadow: 0 6px 16px rgba(242, 143, 0, .3);
    }

    @media(max-width:1280px) {
      .nav-inner .nav-links {
        gap: 20px !important;
      }
    }

    @media(max-width:1200px) {
      .nav-inner .nav-links {
        display: none !important;
      }
    }

    @media(max-width:640px) {
      .nav-ctas .btn-call span {
        display: none;
      }

      .logo {
        font-size: 1.25rem;
      }

      .nav-inner {
        padding: 8px 12px !important;
        min-height: 64px !important;
        height: auto;
      }

      .nav-ctas {
        gap: 8px !important;
      }

      .btn-call,
      .btn-wa-n {
        padding: 9px 12px !important;
        font-size: .8rem !important;
      }
    }

    @media(max-width:360px) {
      .logo {
        font-size: 1.1rem;
      }

      .nav-ctas {
        gap: 6px;
      }
    }

    /* HERO */
    .hero {
      position: relative;
      min-height: 600px;
      background: var(--navy);
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      opacity: 0.78;
      z-index: 1;
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 60px 24px 80px;
    }

    @media(max-width:768px) {
      .hero-inner {
        padding: 40px 16px 60px;
      }
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(255, 183, 3, .16);
      border: 1px solid rgba(255, 183, 3, .35);
      color: #FFE08A;
      font-size: .73rem;
      font-weight: 700;
      letter-spacing: .09em;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 20px;
    }

    .hero h1 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 14px;
      max-width: 600px;
    }

    .hero h1 span {
      color: var(--gold);
    }

    .hero-sub {
      color: rgba(255, 255, 255, .75);
      font-size: 1rem;
      line-height: 1.7;
      max-width: 480px;
      margin-bottom: 36px;
    }

    .hero-ctas {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .btn-cta-gold {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(135deg, var(--gold), var(--gold-d));
      color: var(--navy);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      padding: 16px 36px;
      border-radius: 100px;
      font-size: 1rem;
      transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 8px 24px rgba(242, 143, 0, 0.3);
      border-top: 1px solid rgba(255, 255, 255, 0.3);
    }

    .btn-cta-gold:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(242, 143, 0, 0.4);
      filter: brightness(1.1);
    }

    .btn-cta-ghost {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: rgba(255, 255, 255, 0.05);
      color: var(--white);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      padding: 16px 36px;
      border-radius: 100px;
      font-size: 1rem;
      border: 1.5px solid rgba(255, 255, 255, 0.3);
      transition: all .3s;
      backdrop-filter: blur(10px);
    }

    .btn-cta-ghost:hover {
      background: var(--white);
      color: var(--navy);
      border-color: var(--white);
      transform: translateY(-3px);
    }

    /* BOOKING WIDGET WIZARD */
    .bw {
      background: var(--white);
      border-radius: var(--rl);
      box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
      padding: 28px 28px;
      position: relative;
      overflow: hidden;
    }

    .bw-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 900;
      color: var(--navy);
      font-size: 1.15rem;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    /* Stepper UI */
    .bw-stepper {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px;
      position: relative;
    }

    .bw-stepper::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--border);
      z-index: 1;
      transform: translateY(-50%);
    }

    .bw-stepper-progress {
      position: absolute;
      top: 50%;
      left: 0;
      height: 3px;
      background: var(--blue);
      z-index: 2;
      transform: translateY(-50%);
      transition: width 0.3s ease;
      width: 0%;
    }

    .bw-step-dot {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--white);
      border: 3px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 0.85rem;
      color: var(--muted);
      z-index: 3;
      position: relative;
      transition: all 0.3s ease;
    }

    .bw-step-dot.active {
      border-color: var(--blue);
      background: var(--blue);
      color: var(--white);
      box-shadow: 0 0 10px rgba(0, 74, 124, 0.3);
    }

    .bw-step-dot.completed {
      border-color: var(--blue);
      background: var(--white);
      color: var(--blue);
    }

    /* Step content container */
    .bw-step {
      display: none;
      animation: fadeIn 0.4s ease;
    }

    .bw-step.active {
      display: block;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Trip Type Button Grid */
    .bw-trip-type-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 16px;
    }

    .bw-trip-type-btn {
      padding: 10px 6px;
      border: 2px solid var(--border);
      border-radius: var(--r);
      background: var(--white);
      color: var(--navy);
      font-size: 0.76rem;
      font-weight: 800;
      cursor: pointer;
      text-align: center;
      transition: all 0.2s ease;
    }

    .bw-trip-type-btn:hover {
      border-color: var(--sky);
      background: rgba(11, 106, 154, 0.05);
    }

    .bw-trip-type-btn.active {
      border-color: var(--blue);
      background: rgba(0, 74, 124, 0.08);
      color: var(--blue);
    }

    /* Fields and inputs */
    .bw-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 16px;
    }

    .bw-field {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .bw-field.full-width {
      grid-column: span 2;
    }

    .bw-label {
      font-size: .68rem;
      font-weight: 700;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .bw-input {
      display: flex;
      align-items: center;
      gap: 9px;
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: var(--r);
      padding: 10px 12px;
      transition: border-color 0.2s;
    }

    .bw-input:focus-within {
      border-color: var(--blue);
      background: var(--white);
    }

    .bw-input i {
      color: var(--blue);
      font-size: .9rem;
      flex-shrink: 0;
    }

    .bw-input input,
    .bw-input select {
      background: none;
      border: none;
      outline: none;
      font-size: .85rem;
      font-family: var(--font-brand);
      color: var(--text);
      width: 100%;
    }

    /* Vehicle Selection Cards Grid */
    .bw-veh-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
      max-height: 220px;
      overflow-y: auto;
      padding-right: 4px;
      margin-bottom: 16px;
      scrollbar-width: thin;
    }

    .bw-veh-grid::-webkit-scrollbar {
      width: 4px;
    }
    
    .bw-veh-grid::-webkit-scrollbar-thumb {
      background: var(--border);
      border-radius: 4px;
    }

    .bw-veh-card {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 14px;
      border: 2px solid var(--border);
      border-radius: var(--r);
      cursor: pointer;
      transition: all 0.25s ease;
      background: var(--white);
      position: relative;
    }

    .bw-veh-card:hover {
      border-color: var(--sky);
      background: rgba(11, 106, 154, 0.03);
    }

    .bw-veh-card.active {
      border-color: var(--blue);
      background: rgba(0, 74, 124, 0.05);
    }

    .bw-veh-icon {
      width: 42px;
      height: 42px;
      border-radius: 8px;
      background: var(--bg);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blue);
      font-size: 1.15rem;
      flex-shrink: 0;
      transition: all 0.2s;
    }

    .bw-veh-card.active .bw-veh-icon {
      background: var(--blue);
      color: var(--white);
    }

    .bw-veh-info {
      flex: 1;
      min-width: 0;
    }

    .bw-veh-name-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6px;
    }

    .bw-veh-title {
      font-weight: 800;
      color: var(--navy);
      font-size: 0.85rem;
    }

    .bw-veh-seats {
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--muted);
      background: var(--bg);
      padding: 2px 6px;
      border-radius: 6px;
    }

    .bw-veh-desc {
      font-size: 0.73rem;
      color: var(--muted);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-top: 1px;
    }

    .bw-veh-radio {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      border: 2px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.2s;
    }

    .bw-veh-card.active .bw-veh-radio {
      border-color: var(--blue);
    }

    .bw-veh-card.active .bw-veh-radio::after {
      content: '';
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--blue);
    }

    /* Actions and Buttons */
    .bw-actions {
      display: flex;
      gap: 10px;
      margin-top: 12px;
    }

    .bw-btn {
      padding: 14px 18px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 0.9rem;
      border: none;
      border-radius: 14px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all 0.25s;
    }

    .bw-btn-back {
      background: var(--bg);
      border: 1px solid var(--border);
      color: var(--navy);
    }

    .bw-btn-back:hover {
      background: var(--border);
    }

    .bw-btn-next {
      background: linear-gradient(135deg, var(--gold), var(--gold-d));
      color: var(--navy);
      flex: 1;
      box-shadow: 0 4px 12px rgba(242, 143, 0, 0.2);
    }

    .bw-btn-next:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(242, 143, 0, 0.3);
    }

    .bw-btn-submit {
      background: #25D366;
      color: var(--white);
      flex: 1;
      box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    }

    .bw-btn-submit:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
      filter: brightness(1.05);
    }

    /* Form error highlights */
    .bw-input.error {
      border-color: #ef4444;
      background: rgba(239, 68, 68, 0.03);
    }

    @media(max-width:640px) {
      .bw {
        padding: 20px 16px;
      }
      .bw-grid {
        grid-template-columns: 1fr;
      }
      .bw-field.full-width {
        grid-column: span 1;
      }
      .bw-stepper {
        margin-bottom: 20px;
      }
      .bw-step-dot {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
      }
      .bw-btn {
        padding: 12px 14px;
        font-size: 0.82rem;
        border-radius: 12px;
      }
    }

    /* TRUST STRIP */
    .trust-strip {
      background: var(--white);
      border-bottom: 1px solid var(--border);
    }

    .tsi {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .tsi::-webkit-scrollbar {
      display: none;
    }

    .ts-item {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 15px 22px;
      flex-shrink: 0;
      border-right: 1px solid var(--border);
    }

    .ts-item:last-child {
      border-right: none;
    }

    .ts-item i {
      color: var(--blue);
      font-size: .95rem;
    }

    .ts-item span {
      font-size: .79rem;
      font-weight: 700;
      color: var(--text);
      white-space: nowrap;
    }

    /* SECTIONS */
    .sec {
      max-width: 1280px;
      margin: 0 auto;
      padding: 60px 24px;
    }

    @media(max-width:768px) {
      .sec {
        padding: 40px 16px;
      }
    }

    .bg-light-sec {
      background: var(--bg);
    }

    .sec-hd {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 28px;
      gap: 12px;
    }

    .sec-hd h2 {
      font-size: clamp(1.45rem, 2.5vw, 1.95rem);
      letter-spacing: 0;
      line-height: 1.2;
    }

    .sec-hd a {
      font-size: .85rem;
      font-weight: 700;
      color: var(--blue);
      white-space: nowrap;
      margin-top: 6px;
    }

    .sec-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 183, 3, .16);
      color: var(--navy);
      border: 1px solid rgba(255, 183, 3, .28);
      font-size: .68rem;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 100px;
      margin-bottom: 8px;
    }

    /* OFFERS */
    .hscroll-outer {
      overflow: hidden;
      margin: 0 -24px;
    }

    .hscroll {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scrollbar-width: none;
      padding: 12px 24px 20px;
    }

    .hscroll::-webkit-scrollbar {
      display: none;
    }

    .offer-card {
      flex-shrink: 0;
      width: 280px;
      border-radius: var(--rl);
      overflow: hidden;
      background: var(--white);
      border: 1px solid var(--border);
      box-shadow: var(--sh);
      transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .offer-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shl);
    }

    .offer-img {
      height: 170px;
      overflow: hidden;
      position: relative;
      background: #E2E8F0;
    }

    .offer-img img {
      width: 100%;
      height: 100% !important;
      object-fit: cover;
      transition: transform .4s;
      display: block;
    }

    .offer-card:hover .offer-img img {
      transform: scale(1.06);
    }

    .offer-tag {
      position: absolute;
      bottom: 8px;
      left: 8px;
      background: var(--gold);
      color: var(--navy);
      font-size: .62rem;
      font-weight: 800;
      padding: 3px 10px;
      border-radius: 100px;
      text-transform: uppercase;
    }

    .offer-body {
      padding: 14px;
    }

    .offer-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: .88rem;
      color: var(--navy);
      margin-bottom: 4px;
      line-height: 1.3;
    }

    .offer-sub {
      font-size: .73rem;
      color: var(--muted);
      margin-bottom: 10px;
      line-height: 1.5;
    }

    .offer-price {
      display: flex;
      align-items: baseline;
      gap: 6px;
      margin-bottom: 10px;
    }

    .offer-from {
      font-size: .63rem;
      color: var(--muted);
      font-weight: 600;
    }

    .offer-amt {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--navy);
    }

    .offer-wa {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: var(--wa);
      color: var(--navy);
      font-size: .72rem;
      font-weight: 700;
      padding: 7px 14px;
      border-radius: 100px;
      transition: all .2s;
      width: 100%;
      justify-content: center;
    }

    .offer-wa:hover {
      background: var(--gold-d);
      color: var(--navy);
    }

    /* DESTINATIONS */
    .dest-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      grid-auto-rows: 420px;
    }

    .why-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 28px !important;
      padding: 32px;
      height: 100%;
      transition: all .34s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: var(--sh);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .why-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shl);
      border-color: var(--blue);
    }

    .why-card h3 {
      font-size: 1.05rem;
      margin-bottom: 12px;
      font-weight: 800;
    }

    .why-card p {
      font-size: .88rem;
      color: var(--muted);
      line-height: 1.75;
      margin: 0;
    }

    .why-icon {
      width: 60px;
      height: 60px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 20px;
      transition: all .3s;
    }

    .why-card:hover .why-icon {
      transform: scale(1.1) rotate(5deg);
    }

    .dest-card {
      border-radius: var(--rl);
      overflow: hidden;
      position: relative;
      height: 100%;
      cursor: pointer;
      box-shadow: var(--sh);
      transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: var(--navy);
    }

    .dest-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shl);
      border-color: var(--blue);
    }

    .dest-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .8s cubic-bezier(0.4, 0, 0.2, 1);
      position: absolute;
      inset: 0;
    }

    .dest-card:hover .dest-img {
      transform: scale(1.1);
      filter: brightness(1.1);
    }

    .dest-ov {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 44, 79, 0.95) 0%, rgba(0, 44, 79, 0.4) 40%, transparent 100%);
    }

    .dest-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 24px;
      z-index: 2;
    }

    .dest-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 1.15rem;
      color: var(--white);
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .dest-sub {
      font-size: .78rem;
      color: rgba(255, 255, 255, 0.8);
      margin-top: 6px;
      line-height: 1.4;
      font-weight: 500;
    }

    .dest-from {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--gold);
      color: var(--navy);
      font-size: .72rem;
      font-weight: 900;
      padding: 5px 14px;
      border-radius: 100px;
      margin-top: 14px;
      box-shadow: 0 4px 12px rgba(255, 183, 3, 0.25);
    }

    .dest-card-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      background: rgba(0, 44, 79, 0.72);
      backdrop-filter: blur(10px);
      color: var(--gold);
      border: 1px solid rgba(255, 183, 3, 0.4);
      font-size: 0.65rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 4px 12px;
      border-radius: 100px;
      z-index: 3;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .dest-card-badge i {
      font-size: 0.75rem;
    }

    @media(max-width:991px) {
      .dest-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 360px;
      }
    }

    @media(max-width:600px) {
      .dest-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        grid-auto-rows: 240px;
      }

      .dest-info {
        padding: 16px;
      }

      .dest-name {
        font-size: 1rem;
      }
    }

    /* PILLS */
    .cat-pills {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      scrollbar-width: none;
      padding-bottom: 4px;
      margin-bottom: 24px;
    }

    .cat-pills::-webkit-scrollbar {
      display: none;
    }

    .cat-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 18px;
      border-radius: 100px;
      border: 1.5px solid var(--border);
      background: var(--white);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: .8rem;
      color: var(--muted);
      cursor: pointer;
      transition: all .2s;
      flex-shrink: 0;
      white-space: nowrap;
    }

    .cat-pill:hover,
    .cat-pill.active {
      background: var(--navy);
      border-color: var(--navy);
      color: var(--white);
    }

    /* PACKAGES */
    .pkg-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 10px;
    }

    .pkg-card {
      background: var(--white);
      border-radius: var(--rl);
      border: 1px solid var(--border);
      overflow: hidden;
      box-shadow: var(--sh);
      transition: all .3s;
      display: flex;
      flex-direction: column;
    }

    .pkg-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shl);
      border-color: transparent;
    }

    .pkg-img-wrap {
      height: 185px;
      overflow: hidden;
      position: relative;
      background: #E2E8F0;
    }

    .pkg-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s;
    }

    .pkg-card:hover .pkg-img-wrap img {
      transform: scale(1.06);
    }

    .pkg-cat-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(10, 22, 40, .75);
      backdrop-filter: blur(8px);
      color: var(--white);
      font-size: .62rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em;
      padding: 3px 10px;
      border-radius: 100px;
    }

    .pkg-badge-hot {
      position: absolute;
      top: 10px;
      right: 10px;
      background: var(--gold);
      color: var(--navy);
      font-size: .62rem;
      font-weight: 800;
      padding: 3px 10px;
      border-radius: 100px;
    }

    .pkg-body {
      padding: 16px 18px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .pkg-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: .95rem;
      color: var(--navy);
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .pkg-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
      margin-bottom: 12px;
    }

    .pkg-t {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      background: var(--bg);
      border: 1px solid var(--border);
      color: var(--muted);
      font-size: .65rem;
      font-weight: 600;
      padding: 3px 8px;
      border-radius: 100px;
    }

    .pkg-bottom {
      margin-top: auto;
      padding-top: 12px;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .pkg-from-txt {
      font-size: .6rem;
      color: var(--muted);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .05em;
    }

    .pkg-price {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--navy);
    }

    .pkg-book {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: linear-gradient(135deg, var(--gold), var(--gold-d));
      color: var(--navy);
      font-size: .76rem;
      font-weight: 800;
      padding: 9px 16px;
      border-radius: 100px;
      transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
      font-family: 'Plus Jakarta Sans', sans-serif;
      white-space: nowrap;
      box-shadow: 0 4px 12px rgba(242, 143, 0, 0.22);
      border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .pkg-book:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(242, 143, 0, 0.3);
      filter: brightness(1.05);
      color: var(--navy);
    }

    @media(max-width:991px) {
      .pkg-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media(max-width:600px) {
      .pkg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }

      .pkg-img-wrap {
        height: 110px;
      }

      .pkg-body {
        padding: 10px 12px;
      }

      .pkg-title {
        font-size: .82rem;
        margin-bottom: 6px;
      }

      .pkg-tags {
        display: none;
      }

      .pkg-price {
        font-size: 1rem;
      }

      .pkg-book {
        padding: 7px 10px;
        font-size: .7rem;
      }

      .pkg-from-txt {
        font-size: .56rem;
      }

      .pkg-cat-badge {
        font-size: .55rem;
        padding: 2px 8px;
      }
    }

    /* SHOW MORE */
    .pkg-show-more-wrap {
      text-align: center;
      margin: 28px 0 10px;
    }

    .pkg-show-more {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      border: 1.5px solid var(--border);
      color: var(--navy);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: .85rem;
      padding: 11px 24px;
      border-radius: 100px;
      cursor: pointer;
      transition: all .2s;
      box-shadow: var(--sh);
    }

    .pkg-show-more:hover {
      background: var(--navy);
      color: var(--white);
      border-color: var(--navy);
    }

    .pkg-hidden {
      display: none !important;
    }

    /* FLEET */
    .fleet-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }

    .fl-row-card {
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(247, 250, 252, .98) 100%);
      border: 1px solid rgba(0, 74, 124, .14);
      border-radius: 24px !important;
      display: grid;
      grid-template-columns: minmax(150px, 34%) 1fr;
      grid-template-rows: auto auto auto;
      align-items: stretch;
      gap: 0;
      box-shadow: 0 16px 44px rgba(0, 44, 79, .09);
      transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    }

    .fl-row-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 5px;
      background: linear-gradient(90deg, var(--gold), var(--blue), var(--navy));
      z-index: 2;
    }

    .fl-row-card::after {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      right: -70px;
      top: -70px;
      border-radius: 50%;
      background: rgba(255, 183, 3, .11);
      pointer-events: none;
    }

    .fl-row-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 24px 60px rgba(0, 44, 79, .16);
      border-color: rgba(255, 183, 3, .55);
    }

    .fl-img-box {
      grid-row: 1 / span 3;
      width: 100%;
      height: 100%;
      min-height: 255px;
      border-radius: 0;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(0, 44, 79, .08), rgba(255, 183, 3, .12));
      border: 0;
    }

    .fl-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s;
    }

    .fl-row-card:hover .fl-img-box img {
      transform: scale(1.06);
    }

    .fl-info {
      position: relative;
      z-index: 3;
      padding: 28px 26px 10px;
      min-width: 0;
    }

    .fl-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      color: var(--navy);
      font-size: clamp(1.05rem, 1.6vw, 1.28rem);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
    }

    .fl-badge {
      font-size: .6rem;
      background: color-mix(in srgb, var(--bg) 14%, white);
      color: var(--bg);
      padding: 5px 10px;
      border-radius: 100px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .05em;
      white-space: nowrap;
      box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--bg) 24%, transparent);
    }

    .fl-models {
      font-size: .86rem;
      color: var(--muted);
      margin-bottom: 12px;
      font-weight: 700;
    }

    .fl-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
    }

    .fl-chip {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: #fff;
      border: 1px solid rgba(0, 74, 124, .12);
      color: #3f5064;
      font-size: .72rem;
      font-weight: 700;
      padding: 7px 10px;
      border-radius: 100px;
      box-shadow: 0 5px 14px rgba(0, 44, 79, .05);
    }

    .fl-rates-col {
      position: relative;
      z-index: 3;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      align-items: stretch;
      padding: 8px 26px 18px;
    }

    .fl-rate-box {
      position: relative;
      overflow: hidden;
      text-align: left;
      padding: 14px 12px;
      border-radius: 16px;
      border: 1px solid rgba(0, 74, 124, .12);
      background: #fff;
      min-width: 0;
      box-shadow: 0 8px 22px rgba(0, 44, 79, .06);
    }

    .fl-rate-box.gold {
      background: linear-gradient(145deg, #fff5cf, #fff);
      border-color: rgba(255, 183, 3, .48);
      box-shadow: 0 10px 26px rgba(255, 183, 3, .14);
    }

    .fl-rl {
      font-size: .58rem;
      text-transform: uppercase;
      letter-spacing: .08em;
      font-weight: 800;
      color: var(--muted);
      margin-bottom: 8px;
    }

    .fl-rv {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(1.08rem, 1.8vw, 1.4rem);
      font-weight: 800;
      color: var(--navy);
      line-height: 1;
    }

    .fl-rv-gold {
      color: var(--gold-d);
    }

    .fl-rv-unit {
      font-size: .62rem;
      color: var(--muted);
      font-weight: 600;
    }

    .fl-cta {
      position: relative;
      z-index: 3;
      padding: 0 26px 26px;
    }

    .fl-book-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      width: 100%;
      background: linear-gradient(135deg, var(--navy), var(--blue) 62%, #006999);
      color: var(--white);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: .88rem;
      padding: 14px 18px;
      border-radius: 18px;
      transition: all .3s;
      box-shadow: 0 12px 26px rgba(0, 44, 79, .2);
      border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .fl-book-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
      filter: brightness(1.1);
      color: var(--white);
    }

    @media(max-width:991px) {
      .fleet-row {
        grid-template-columns: 1fr;
      }
    }

    @media(max-width:620px) {
      .fleet-row {
        gap: 18px;
      }

      .fl-row-card {
        display: block;
        border-radius: 22px !important;
      }

      .fl-img-box {
        height: 190px;
        min-height: 190px;
        border-radius: 0 0 22px 22px;
      }

      .fl-info {
        padding: 24px 18px 10px;
      }

      .fl-name {
        gap: 7px;
      }

      .fl-rates-col {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        padding: 8px 18px 16px;
      }

      .fl-rate-box {
        padding: 12px 10px;
        border-radius: 14px;
      }

      .fl-cta {
        padding: 0 18px 20px;
      }

      .fl-book-btn {
        padding: 13px 16px;
        border-radius: 16px;
      }
    }

    /* FAQ */
    .faq-wrap {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .fq {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r);
      overflow: hidden;
      transition: box-shadow .2s;
    }

    .fq:hover,
    .fq.open {
      box-shadow: var(--sh);
    }

    .fq.open {
      border-color: rgba(255, 183, 3, .45);
    }

    .fq-btn {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 20px;
      background: none;
      border: none;
      cursor: pointer;
      gap: 12px;
      text-align: left;
    }

    .fq-q {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: .9rem;
      color: var(--navy);
    }

    .fq-ic {
      width: 26px;
      height: 26px;
      border-radius: 8px;
      background: var(--bg);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all .25s;
      font-size: .72rem;
      color: var(--navy);
    }

    .fq.open .fq-ic {
      background: var(--gold);
      color: var(--navy);
      transform: rotate(45deg);
    }

    .fq-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s;
    }

    .fq-inner {
      padding: 0 20px 16px;
      font-size: .86rem;
      color: var(--muted);
      line-height: 1.8;
      border-top: 1px solid var(--border);
      padding-top: 14px;
    }

    /* CTA */
    .cta-sec {
      background: linear-gradient(130deg, var(--navy) 0%, var(--blue) 72%, var(--gold) 100%);
      padding: 80px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-sec::before {
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .04);
      top: -200px;
      right: -150px;
    }

    /* FOOTER */
    .foot {
      background: linear-gradient(180deg, #001E36 0%, #000F1E 100%);
      color: rgba(255, 255, 255, .9);
      padding: 64px 24px 32px;
    }

    .foot-inner {
      max-width: 1280px;
      margin: 0 auto;
    }

    .foot-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 36px;
      margin-bottom: 44px;
    }

    .foot-logo {
      margin-bottom: 14px;
      display: block;
      width: min(270px, 100%);
      aspect-ratio: 990 / 480;
      overflow: hidden;
      position: relative;
    }

    .foot-logo img {
      position: absolute;
      left: -26%;
      top: -52%;
      width: 155%;
      height: auto;
      max-width: none;
      margin-left: 0;
    }

    .foot-desc {
      font-size: .82rem;
      line-height: 1.75;
      max-width: 250px;
      margin-bottom: 18px;
      color: rgba(255, 255, 255, .85);
    }

    .foot-social {
      display: flex;
      gap: 8px;
    }

    .foot-s {
      width: 34px;
      height: 34px;
      border-radius: 9px;
      background: rgba(255, 255, 255, .07);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .7);
      transition: all .2s;
    }

    .foot-s:hover {
      background: var(--gold);
      color: var(--navy);
    }

    .foot-col h5,
    .foot-col h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      color: var(--white);
      font-size: .76rem;
      text-transform: uppercase;
      letter-spacing: .09em;
      margin-bottom: 14px;
      border: none;
      background: none;
      padding: 0;
    }

    .foot-link {
      display: block;
      font-size: .81rem;
      color: rgba(255, 255, 255, .85);
      margin-bottom: 8px;
      transition: color .2s;
    }

    .foot-link:hover {
      color: var(--gold);
    }

    .foot-bar {
      border-top: 1px solid rgba(255, 255, 255, .07);
      padding-top: 22px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      font-size: .74rem;
      color: rgba(255, 255, 255, 0.7);
    }

    @media(max-width:991px) {
      .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
      }
    }

    @media(max-width:600px) {
      .foot-grid {
        grid-template-columns: 1fr;
      }
    }

    /* MOBILE STICKY - PRIMARY WHATSAPP / SECONDARY ICONS */
    .mob-bar {
      position: fixed;
      bottom: 24px;
      left: 20px;
      right: 20px;
      z-index: 999;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(0, 0, 0, 0.05);
      padding: 10px;
      display: none;
      gap: 12px;
      border-radius: 30px;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
      align-items: center;
    }

    @media(max-width:991px) {
      .mob-bar {
        display: flex;
      }

      body {
        padding-bottom: 110px;
      }
    }

    .mob-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 24px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .mob-btn:active {
      transform: scale(0.92);
    }

    .mob-btn i {
      font-size: 1.2rem;
    }

    .mob-btn span {
      font-size: 0.85rem;
      white-space: nowrap;
    }

    .mb-w {
      flex: 1;
      background: var(--gold);
      color: var(--navy);
      padding: 14px 24px;
      gap: 10px;
      box-shadow: 0 6px 20px rgba(242, 143, 0, 0.3);
    }

    .mb-c,
    .mb-q {
      flex: 0 0 54px;
      height: 54px;
      width: 54px;
      background: var(--navy);
      color: #fff;
      border-radius: 50% !important;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .mb-q {
      background: var(--gold);
      color: var(--navy);
      box-shadow: 0 6px 15px rgba(242, 143, 0, 0.25);
    }

    .mb-c span,
    .mb-q span {
      display: none;
    }

    /* Icon only for secondary */

    @media(max-width:370px) {
      .mob-bar {
        left: 12px;
        right: 12px;
        gap: 8px;
      }

      .mb-w {
        padding: 14px 16px;
        font-size: 0.8rem;
      }

      .mb-c,
      .mb-q {
        flex: 0 0 48px;
        height: 48px;
        width: 48px;
      }
    }

    /* REVEAL */
    /* TESTIMONIALS */
    /* TESTIMONIALS - PREMIUM 5-STAR UI */
    .t-sec {
      background: radial-gradient(circle at bottom left, #F8FAFC, #FFFFFF);
      padding: 80px 0;
      overflow: hidden;
      border-bottom: 1px solid var(--border);
    }

    .t-badge-5 {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      background: rgba(255, 255, 255, 0.8);
      border: 1.5px solid var(--gold);
      padding: 14px 28px;
      border-radius: 24px;
      box-shadow: 0 12px 32px rgba(255, 183, 3, 0.12);
      margin-bottom: 24px;
      backdrop-filter: blur(10px);
    }

    .t-badge-5 span {
      font-size: 0.8rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 700;
      margin-top: 4px;
    }

    .t-stars-hd {
      display: flex;
      gap: 4px;
      color: var(--gold);
      font-size: 1.3rem;
      filter: drop-shadow(0 0 10px rgba(255, 183, 3, 0.4));
    }

    .t-star-big {
      color: var(--gold);
    }

    .t-track-wrap {
      position: relative;
      width: 100%;
      margin-top: 60px;
      display: flex;
      overflow: hidden;
      mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }

    .t-track {
      display: flex;
      gap: 32px;
      animation: marquee 60s linear infinite;
      width: max-content;
      padding: 20px 0;
    }

    .t-track:hover {
      animation-play-state: paused;
    }

    @keyframes marquee {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    .t-card {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 32px;
      width: 380px;
      flex-shrink: 0;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
      transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
    }

    .t-card:hover {
      transform: translateY(-10px);
      border-color: var(--blue);
      box-shadow: 0 25px 50px rgba(10, 22, 40, 0.1);
      background: #fff;
    }

    .t-head {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
    }

    .t-avatar {
      width: 52px;
      height: 52px;
      border-radius: 100px;
      background: linear-gradient(135deg, var(--navy), var(--blue));
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      color: white;
      font-size: 1rem;
      text-transform: uppercase;
      box-shadow: 0 6px 16px rgba(10, 22, 40, 0.15);
    }

    .t-user-info {
      flex: 1;
    }

    .t-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: .95rem;
      color: var(--navy);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .t-verified {
      color: var(--wa);
      font-size: .8rem;
    }

    .t-date {
      font-size: .72rem;
      color: var(--muted);
      margin-top: 2px;
      font-weight: 600;
    }

    .t-stars {
      display: flex;
      gap: 3px;
      color: var(--gold);
      font-size: 0.9rem;
      margin-bottom: 12px;
    }

    .t-body {
      font-size: .92rem;
      line-height: 1.7;
      color: var(--text);
      margin-bottom: 18px;
      height: 90px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      font-style: italic;
    }

    .t-source {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: .68rem;
      font-weight: 800;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .t-source i {
      color: #4285F4;
      font-size: .9rem;
    }

    /* TRENDING TICKER */
    .ticker-sec {
      background:
        linear-gradient(135deg, rgba(0, 30, 54, .98) 0%, rgba(0, 44, 79, .98) 56%, rgba(0, 74, 124, .98) 100%);
      padding: 14px 0;
      overflow: hidden;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      position: relative;
      z-index: 10;
      display: flex;
      align-items: center;
      gap: 16px;
      box-shadow: 0 12px 30px rgba(0, 30, 54, .2);
    }

    .ticker-sec::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(420px 80px at 8% 50%, rgba(255, 183, 3, .22), transparent 62%),
        linear-gradient(90deg, rgba(255, 255, 255, .08), transparent 28%, rgba(255, 183, 3, .12));
      pointer-events: none;
    }

    .ticker-label {
      position: relative;
      z-index: 2;
      margin-left: clamp(14px, 4vw, 34px);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 13px;
      border-radius: 999px;
      border: 1px solid rgba(255, 183, 3, .36);
      background: rgba(255, 183, 3, .13);
      color: #fff;
      font-size: .68rem;
      font-weight: 900;
      letter-spacing: .09em;
      text-transform: uppercase;
      white-space: nowrap;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
    }

    .ticker-label i {
      color: var(--gold);
    }

    .ticker-wrap {
      position: relative;
      z-index: 2;
      display: flex;
      overflow: hidden;
      flex: 1;
      min-width: 0;
      mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }

    .ticker-track {
      display: flex;
      gap: 16px;
      animation: tickerScroll 46s linear infinite;
      width: max-content;
      align-items: center;
      padding-right: 16px;
    }

    .ticker-track:hover {
      animation-play-state: paused;
    }

    @keyframes tickerScroll {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    .ticker-item {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 270px;
      min-height: 62px;
      padding: 8px 10px 8px 8px;
      color: rgba(255, 255, 255, 0.9);
      font-size: .8rem;
      font-weight: 800;
      white-space: nowrap;
      letter-spacing: 0.01em;
      text-decoration: none !important;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, .14);
      background: rgba(255, 255, 255, .09);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 10px 22px rgba(0, 0, 0, .14);
      backdrop-filter: blur(10px);
      transition: transform .22s ease, border-color .22s ease, background .22s ease;
    }

    .ticker-item:hover {
      color: var(--white);
      transform: translateY(-2px);
      border-color: rgba(255, 183, 3, .55);
      background: rgba(255, 255, 255, .14);
    }

    .ticker-thumb-shell {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      overflow: hidden;
      flex: 0 0 46px;
      border: 1px solid rgba(255, 183, 3, .28);
      background: linear-gradient(135deg, rgba(255, 183, 3, .25), rgba(255, 255, 255, .12));
    }

    .ticker-thumb {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      border: 0;
    }

    .ticker-copy {
      min-width: 0;
      display: grid;
      gap: 2px;
    }

    .ticker-route {
      color: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: .84rem;
      font-weight: 900;
      line-height: 1.15;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 122px;
    }

    .ticker-sub {
      color: rgba(255, 255, 255, .62);
      font-size: .64rem;
      font-weight: 700;
      line-height: 1.2;
    }

    .ticker-price {
      color: var(--gold);
      background: rgba(255, 183, 3, .13);
      border: 1px solid rgba(255, 183, 3, .28);
      border-radius: 12px;
      padding: 6px 9px;
      font-weight: 900;
      font-family: 'Plus Jakarta Sans', sans-serif;
      margin-left: auto;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
    }

    .ticker-hot {
      background: var(--gold);
      color: var(--navy);
      font-size: 0.58rem;
      font-weight: 900;
      padding: 4px 8px;
      border-radius: 999px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      box-shadow: 0 5px 12px rgba(255, 183, 3, .22);
    }

    @media(max-width:700px) {
      .ticker-sec {
        gap: 10px;
        padding: 12px 0;
      }

      .ticker-label {
        margin-left: 12px;
        width: 38px;
        height: 38px;
        justify-content: center;
        padding: 0;
      }

      .ticker-label span {
        display: none;
      }

      .ticker-wrap {
        mask-image: linear-gradient(to right, black 0%, black 86%, transparent);
      }

      .ticker-track {
        gap: 12px;
      }

      .ticker-item {
        min-width: 238px;
        min-height: 58px;
        border-radius: 16px;
      }

      .ticker-thumb-shell {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
      }

      .ticker-route {
        max-width: 94px;
        font-size: .78rem;
      }

      .ticker-sub {
        font-size: .6rem;
      }

      .ticker-price {
        padding: 5px 7px;
        font-size: .78rem;
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: all .6s cubic-bezier(.22, 1, .36, 1);
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* --- SEO KEYWORD TICKER --- */
    .seo-ticker {
      background: #f1f5f9;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 15px 0;
      overflow: hidden;
    }

    .seo-ticker-wrap {
      display: flex;
      overflow: hidden;
      width: 100%;
      mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }

    .seo-ticker-track {
      display: flex;
      gap: 30px;
      animation: seoScroll 40s linear infinite;
      width: max-content;
      align-items: center;
    }

    .seo-ticker-track:hover {
      animation-play-state: paused;
    }

    @keyframes seoScroll {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    .seo-kw-item {
      display: flex;
      align-items: center;
      gap: 10px;
      background: white;
      border: 1.5px solid var(--border);
      padding: 8px 18px;
      border-radius: 100px;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--navy);
      text-decoration: none !important;
      transition: all 0.3s;
      white-space: nowrap;
    }

    .seo-kw-item:hover {
      border-color: var(--blue);
      background: var(--navy);
      color: white;
      transform: translateY(-2px);
    }

    .seo-kw-item i {
      color: var(--blue);
      font-size: 0.8rem;
    }

    .seo-kw-item:hover i {
      color: var(--gold);
    }

    /* --- INSTAGRAM SECTION --- */
    .ig-sec {
      background: var(--white);
      padding: 80px 20px;
      border-top: 1px solid var(--border);
      overflow: hidden;
    }

    .ig-head {
      max-width: 935px;
      margin: 0 auto 44px;
      display: flex;
      gap: 80px;
      align-items: flex-start;
    }

    .ig-profile-pic {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      border: 1px solid var(--border);
      padding: 0;
      background: var(--navy);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .ig-profile-pic img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .ig-info {
      flex: 1;
      padding-top: 10px;
    }

    .ig-user-bar {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 24px;
    }

    .ig-user-bar h3 {
      font-family: var(--font-brand);
      font-size: 1.25rem;
      font-weight: 700;
      margin: 0;
      color: #262626;
      letter-spacing: 0.2px;
    }

    .btn-ig-follow {
      background: linear-gradient(135deg, var(--navy), var(--gold));
      color: var(--white);
      border: none;
      padding: 7px 18px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 0.85rem;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none !important;
      box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .btn-ig-follow:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
      filter: brightness(1.1);
    }

    .ig-stats {
      display: flex;
      gap: 40px;
      margin-bottom: 24px;
    }

    .ig-stat {
      font-size: 1rem;
      color: #262626;
    }

    .ig-stat span {
      font-weight: 700;
      color: #000;
    }

    .ig-bio {
      font-size: 0.95rem;
      line-height: 1.5;
      color: #262626;
    }

    .ig-bio b {
      display: block;
      margin-bottom: 4px;
      font-weight: 600;
    }

    .ig-grid {
      max-width: 935px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .ig-card {
      position: relative;
      aspect-ratio: 1/1;
      overflow: hidden;
      cursor: pointer;
      border-radius: 4px;
      border: 1px solid var(--border);
    }

    .ig-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.4s ease;
    }

    .ig-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: 0.25s;
      padding: 20px;
      text-align: center;
    }

    .ig-card:hover .ig-overlay {
      opacity: 1;
    }

    .ig-card:hover img {
      transform: scale(1.05);
    }

    .ig-cap {
      color: #fff;
      font-size: 0.88rem;
      font-weight: 600;
      margin-bottom: 15px;
      line-height: 1.4;
      transform: translateY(10px);
      transition: 0.3s;
    }

    .btn-ig-book {
      background: #fff;
      color: #000;
      padding: 8px 20px;
      border-radius: 100px;
      font-size: 0.78rem;
      font-weight: 800;
      text-decoration: none !important;
      transform: translateY(10px);
      transition: 0.3s;
    }

    .ig-card:hover .ig-cap,
    .ig-card:hover .btn-ig-book {
      transform: translateY(0);
    }

    .btn-ig-book:hover {
      background: var(--wa);
      color: #fff;
    }

    @media (max-width: 768px) {
      .ig-sec {
        padding: 20px 0;
      }

      .ig-head {
        display: flex;
        align-items: flex-start;
        gap: 24px;
        padding: 0 16px;
        margin-bottom: 20px;
      }

      .ig-profile-pic {
        width: 84px;
        height: 84px;
        margin-bottom: 0;
      }

      .ig-info {
        flex: 1;
        min-width: 0;
        padding-top: 5px;
      }

      .ig-user-bar {
        margin-bottom: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }

      .ig-user-bar h3 {
        font-size: 1.2rem;
        font-weight: 400;
      }

      .btn-ig-follow {
        width: 100%;
        text-align: center;
        padding: 6px 0;
        font-size: 0.82rem;
      }

      .ig-stats {
        border-top: 1px solid var(--border);
        padding: 12px 0;
        margin-bottom: 0;
        justify-content: space-around;
        gap: 0;
      }

      .ig-stat {
        text-align: center;
        display: flex;
        flex-direction: column;
        font-size: 0.8rem;
        color: #8e8e8e;
      }

      .ig-stat span {
        font-size: 1rem;
        color: #262626;
        font-weight: 700;
        margin-bottom: -1px;
      }

      .ig-bio.mobile-only {
        display: block !important;
        padding: 0 16px 18px;
        font-size: 0.85rem;
        border: none;
      }

      .ig-bio.desktop-only {
        display: none !important;
      }

      .ig-grid {
        gap: 1px;
      }

      .ig-overlay {
        padding: 10px;
      }

      .ig-cap {
        font-size: 0.68rem;
        margin-bottom: 8px;
        line-height: 1.3;
      }

      .btn-ig-book {
        padding: 4px 10px;
        font-size: 0.62rem;
      }
    }

    @media (max-width: 768px) {
      .ticker-track,
      .seo-ticker-track,
      .t-track {
        animation-duration: 70s !important;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .ticker-track,
      .seo-ticker-track,
      .t-track {
        animation: none !important;
      }
      * {
        scroll-behavior: auto !important;
      }
    }

    body,
    body *:not(i):not(.fa):not(.fas):not(.far):not(.fab):not(.fa-solid):not(.fa-regular):not(.fa-brands),
    button,
    input,
    select,
    textarea {
      font-family: var(--font-brand) !important;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .hero-title,
    .ticker-route,
    .fl-title,
    .pkg-title,
    .btn,
    .btn-call,
    .nav-links a {
      letter-spacing: 0 !important;
    }
  