/* Shared itinerary/tour-page styles - linked by every tour page */
/* ══════════════════════════════════════
       ITINERARY PAGE — YATRAVED
    ══════════════════════════════════════ */

    :root {
      --primary: #ff5722;
      --primary-dark: #e64a19;
      --accent: #ff9800;
      --text: #1a1a1a;
      --text-muted: #666;
      --bg: #fff;
      --bg-light: #f9f9f9;
      --border: #e8e8e8;
      --green: #22c55e;
      --radius: 14px;
      --shadow: 0 4px 20px rgba(0,0,0,.08);
      --shadow-hover: 0 8px 32px rgba(0,0,0,.15);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; scroll-padding-top: 84px; }
    body { font-family: 'Nunito', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; }

    /* ══ HERO ══ */
    .it-hero {
      position: relative;
      height: 92vh;
      min-height: 620px;
      max-height: 900px;
      overflow: clip;
    }
    .it-hero-media {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .it-hero-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.45) 45%, rgba(0,0,0,.12) 100%),
        linear-gradient(to right, rgba(0,0,0,.35) 0%, transparent 60%);
    }
    .it-hero-content {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 0 44px 72px;
      z-index: 5;
    }
    .it-breadcrumb {
      /* Reset the global `nav { background:#fff; position:sticky; ... }` rule
         from style.css, which would otherwise paint this breadcrumb as a white box. */
      background: transparent;
      position: static;
      box-shadow: none;
      padding: 0;
      width: auto;
      z-index: auto;
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: rgba(255,255,255,.6);
      font-weight: 600;
      margin-bottom: 18px;
    }
    .it-breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; }
    .it-breadcrumb a:hover { color: #fff; }
    .it-breadcrumb span { font-size: 10px; }
    .it-hero-tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 18px;
    }
    .it-tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(255,255,255,.14);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,.22);
      color: #fff;
      font-size: 11px;
      font-weight: 800;
      padding: 5px 13px;
      border-radius: 20px;
      letter-spacing: .04em;
    }
    .it-tag.hot { background: rgba(255,87,34,.75); border-color: rgba(255,87,34,.4); }
    .it-hero-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(2.2rem, 5.5vw, 4rem);
      color: #fff;
      line-height: 1.1;
      margin-bottom: 16px;
      max-width: 760px;
    }
    .it-hero-title em { font-style: italic; color: #ffb74d; }
    .it-hero-meta {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }
    .it-hero-meta-item {
      display: flex;
      align-items: center;
      gap: 7px;
      color: rgba(255,255,255,.85);
      font-size: 13.5px;
      font-weight: 700;
    }
    .it-hero-meta-item svg { width:16px; height:16px; fill:rgba(255,255,255,.6); flex-shrink:0; }
    .it-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
    .btn-hero-book {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--primary);
      color: #fff;
      padding: 16px 32px;
      border-radius: 50px;
      font-size: 15px;
      font-weight: 800;
      text-decoration: none;
      transition: background .2s, transform .2s, box-shadow .2s;
      border: none;
      cursor: pointer;
      font-family: 'Nunito', sans-serif;
      box-shadow: 0 4px 24px rgba(255,87,34,.45);
      letter-spacing: .01em;
    }
    .btn-hero-book:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 8px 32px rgba(255,87,34,.55);
    }
    .btn-hero-ghost {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: rgba(255,255,255,.15);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      color: #fff;
      padding: 15px 28px;
      border-radius: 50px;
      font-size: 15px;
      font-weight: 800;
      text-decoration: none;
      border: 1.5px solid rgba(255,255,255,.4);
      transition: background .2s, border-color .2s;
      cursor: pointer;
      font-family: 'Nunito', sans-serif;
      letter-spacing: .01em;
    }
    .btn-hero-ghost:hover {
      background: rgba(255,255,255,.28);
      border-color: rgba(255,255,255,.65);
    }

    /* Scroll hint */
    .scroll-hint {
      position: absolute;
      bottom: 80px;
      right: 44px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: rgba(255,255,255,.5);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .scroll-hint-line {
      width: 1px;
      height: 40px;
      background: rgba(255,255,255,.3);
      animation: scrollPulse 2s ease infinite;
    }
    @keyframes scrollPulse {
      0%,100% { opacity: .3; transform: scaleY(1); }
      50% { opacity: .8; transform: scaleY(1.15); }
    }

    /* ══ STICKY PRICE BAR ══ */
    .price-bar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 950;
      background: #fff;
      border-bottom: 2px solid var(--border);
      box-shadow: 0 2px 16px rgba(0,0,0,.06);
      transform: translateY(-100%);
      transition: transform .3s ease;
    }
    .price-bar.visible { transform: translateY(0); }
    .price-bar-inner {
      max-width: 1720px;
      margin: 0 auto;
      padding: 0 44px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .pb-title {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 14px;
      color: var(--text);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .pb-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
    .pb-price { font-family: 'Poppins', sans-serif; font-weight: 900; font-size: 1.3rem; color: var(--primary); }
    .pb-price span { font-size: 11px; font-weight: 600; color: var(--text-muted); }
    .pb-tabs {
      display: flex;
      gap: 0;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .pb-tab {
      padding: 0 20px;
      height: 64px;
      display: flex;
      align-items: center;
      font-size: 13px;
      font-weight: 700;
      color: var(--text-muted);
      text-decoration: none;
      border-bottom: 2px solid transparent;
      white-space: nowrap;
      transition: all .18s;
    }
    .pb-tab:hover, .pb-tab.active { color: var(--primary); border-bottom-color: var(--primary); }

    /* ══ MAIN LAYOUT ══ */
    .it-main {
      max-width: 1720px;
      margin: 0 auto;
      padding: 48px 44px 0;
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 40px;
      align-items: start;
    }
    .it-content { min-width: 0; }

    /* ══ SECTION TITLES ══ */
    .it-sec-title {
      font-family: 'Poppins', sans-serif;
      font-weight: 800;
      font-size: 1.5rem;
      color: var(--text);
      margin-bottom: 6px;
    }
    .it-sec-title span { color: var(--primary); }
    .it-sec-sub {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 28px;
    }

    /* ══ QUICK STATS BAR ══ */
    .quick-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border: 1.5px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
      margin-bottom: 40px;
      background: #fff;
    }
    .qs-item {
      padding: 20px 22px;
      border-right: 1.5px solid var(--border);
      display: flex;
      align-items: center;
      gap: 13px;
    }
    .qs-item:last-child { border-right: none; }
    .qs-icon {
      width: 42px; height: 42px;
      border-radius: 12px;
      background: #fff4f0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }
    .qs-label { font-size: 10.5px; font-weight: 700; color: #aaa; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
    .qs-val { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 15px; color: var(--text); line-height: 1.2; overflow-wrap: anywhere; }
    .qs-item { min-width: 0; }
    .qs-item > div { min-width: 0; }

    /* ══ HIGHLIGHTS ══ */
    .highlights-sec { margin-bottom: 48px; }
    .highlights-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .hl-item {
      display: flex;
      align-items: flex-start;
      gap: 11px;
      background: #f9f9f9;
      border-radius: 12px;
      padding: 14px 16px;
      border: 1.5px solid transparent;
      transition: border-color .18s, background .18s;
    }
    .hl-item:hover { border-color: var(--primary); background: #fff4f0; }
    .hl-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--primary);
      flex-shrink: 0;
      margin-top: 5px;
    }
    .hl-item p { font-size: 13.5px; line-height: 1.5; color: var(--text); font-weight: 600; }

    /* ══ PHOTO GALLERY ══ */
    .gallery-sec { margin-bottom: 48px; }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: 220px 220px;
      gap: 10px;
    }
    .gallery-item {
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }
    .gallery-item:first-child {
      grid-row: 1 / 3;
      grid-column: 1 / 2;
    }
    .gallery-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform .4s;
    }
    .gallery-item:hover img { transform: scale(1.07); }
    .gallery-more-overlay { display: none; }

    /* ══ ITINERARY ══ */
    .itinerary-sec { margin-bottom: 48px; }
    .itin-day {
      border: 1.5px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      margin-bottom: 10px;
      transition: box-shadow .2s;
    }
    .itin-day:hover { box-shadow: 0 4px 20px rgba(0,0,0,.07); }
    .itin-day-hd {
      display: flex;
      align-items: center;
      gap: 0;
      cursor: pointer;
      background: #fff;
      border: none;
      width: 100%;
      text-align: left;
      padding: 0;
      font-family: inherit;
    }
    .itin-day-num {
      background: var(--primary);
      color: #fff;
      font-family: 'Poppins', sans-serif;
      font-weight: 900;
      font-size: 12px;
      padding: 0 16px;
      height: 62px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-width: 72px;
      flex-shrink: 0;
      letter-spacing: .04em;
    }
    .itin-day-num .day-n { font-size: 18px; line-height: 1; }
    .itin-day-info {
      flex: 1;
      padding: 16px 20px;
    }
    .itin-day-title {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 14px;
      color: var(--text);
      line-height: 1.35;
    }
    .itin-day-sub {
      font-size: 11.5px;
      color: var(--text-muted);
      font-weight: 600;
      margin-top: 3px;
    }
    .itin-day-pills { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 6px; }
    .itin-pill {
      font-size: 10px;
      font-weight: 800;
      padding: 2px 9px;
      border-radius: 10px;
      background: #f0f0f0;
      color: #666;
    }
    .itin-pill.stay { background: #e3f2fd; color: #1565c0; }
    .itin-pill.meal { background: #e8f5e9; color: #2e7d32; }
    .itin-pill.drive { background: #fff3e0; color: #e65100; }
    .itin-day-chevron {
      padding: 0 20px;
      color: #aaa;
      font-size: 18px;
      transition: transform .3s;
      flex-shrink: 0;
    }
    .itin-day.open .itin-day-chevron { transform: rotate(180deg); }
    .itin-day-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease;
      background: #fafafa;
      border-top: 0 solid var(--border);
    }
    .itin-day.open .itin-day-body {
      max-height: 1200px;
      border-top-width: 1.5px;
    }
    .itin-day-body-inner {
      padding: 20px 24px 22px;
    }
    .itin-day-body-inner ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .itin-day-body-inner ul li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      line-height: 1.7;
      color: var(--text-muted);
    }
    .itin-day-body-inner ul li::before {
      content: '•';
      color: var(--primary);
      font-weight: 900;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .itin-day-body-inner .itin-tip {
      margin-top: 14px;
      padding: 12px 16px;
      background: #fff4f0;
      border-left: 3px solid var(--primary);
      border-radius: 0 10px 10px 0;
      font-size: 13px;
      color: var(--primary-dark);
      font-weight: 700;
    }

    /* ══ INCLUSIONS ══ */
    .inclusions-sec { margin-bottom: 48px; }
    .incl-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .incl-box {
      border-radius: 16px;
      padding: 24px;
      border: 1.5px solid;
    }
    .incl-box.inc { border-color: #c8e6c9; background: #f1f8e9; }
    .incl-box.exc { border-color: #ffccbc; background: #fff3e0; }
    .incl-box-title {
      display: flex;
      align-items: center;
      gap: 9px;
      font-family: 'Poppins', sans-serif;
      font-weight: 800;
      font-size: 14px;
      margin-bottom: 16px;
    }
    .incl-box.inc .incl-box-title { color: #2e7d32; }
    .incl-box.exc .incl-box-title { color: #bf360c; }
    .incl-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .incl-list li {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      font-size: 13.5px;
      line-height: 1.55;
      color: var(--text);
    }
    .incl-list li::before {
      font-size: 15px;
      flex-shrink: 0;
      margin-top: 0px;
    }
    .incl-box.inc .incl-list li::before { content: '✓'; color: #2e7d32; font-weight: 900; }
    .incl-box.exc .incl-list li::before { content: '✕'; color: #bf360c; font-weight: 900; }

    /* ══ IMPORTANT NOTES ══ */
    .notes-sec { margin-bottom: 48px; }
    .note-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 16px 18px;
      background: #fffde7;
      border-radius: 12px;
      border: 1.5px solid #fff9c4;
      margin-bottom: 8px;
    }
    .note-item:last-child { margin-bottom: 0; }
    .note-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
    .note-item p { font-size: 13.5px; line-height: 1.7; color: #555; }
    .note-item strong { color: var(--text); }

    /* ══ THINGS TO CARRY ══ */
    .carry-sec { margin-bottom: 48px; }
    .carry-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }
    .carry-item {
      display: flex;
      align-items: center;
      gap: 11px;
      background: #f9f9f9;
      border-radius: 12px;
      padding: 13px 15px;
      font-size: 13px;
      font-weight: 700;
      color: var(--text);
      border: 1.5px solid #f0f0f0;
      transition: all .18s;
    }
    .carry-item:hover { background: #fff4f0; border-color: var(--primary); }
    .carry-item-icon { font-size: 20px; flex-shrink: 0; }

    /* ══ MAP ROUTE ══ */
    .route-sec { margin-bottom: 48px; }
    .route-visual {
      background: linear-gradient(135deg, #0a0f1e 0%, #1a1f3e 100%);
      border-radius: 18px;
      padding: 32px 28px;
      position: relative;
      overflow: hidden;
    }
    .route-visual::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 24px 24px;
    }
    .route-stops {
      display: flex;
      align-items: center;
      gap: 0;
      flex-wrap: wrap;
      gap: 4px;
      position: relative;
      z-index: 2;
    }
    .route-stop {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
    }
    .rs-dot {
      width: 12px; height: 12px;
      border-radius: 50%;
      background: var(--accent);
      border: 2px solid rgba(255,255,255,.3);
      flex-shrink: 0;
    }
    .rs-dot.home { background: var(--primary); }
    .rs-name {
      font-size: 11px;
      font-weight: 800;
      color: rgba(255,255,255,.85);
      text-align: center;
      white-space: nowrap;
    }
    .route-line {
      flex: 1;
      min-width: 20px;
      height: 2px;
      background: linear-gradient(to right, var(--accent), rgba(255,152,0,.3));
      margin-bottom: 17px;
      position: relative;
    }
    .route-line::after {
      content: '›';
      position: absolute;
      right: -4px;
      top: -9px;
      color: var(--accent);
      font-size: 14px;
    }
    .route-info {
      margin-top: 24px;
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      position: relative;
      z-index: 2;
    }
    .ri-item { display: flex; flex-direction: column; gap: 3px; }
    .ri-lbl { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .08em; }
    .ri-val { font-size: 14px; font-weight: 800; color: #fff; }

    /* ══ FAQ ══ */
    .faq-sec { margin-bottom: 48px; }
    .faq-item {
      border-bottom: 1.5px solid var(--border);
    }
    .faq-item:first-of-type { border-top: 1.5px solid var(--border); }
    .faq-btn {
      width: 100%;
      background: none;
      border: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 20px 4px;
      cursor: pointer;
      text-align: left;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 14.5px;
      color: var(--text);
      transition: color .18s;
    }
    .faq-btn:hover, .faq-btn.open { color: var(--primary); }
    .faq-icon {
      width: 30px; height: 30px;
      border-radius: 50%;
      background: #f5f5f5;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
      transition: background .18s, transform .3s;
      font-weight: 400;
    }
    .faq-btn.open .faq-icon {
      background: var(--primary);
      color: #fff;
      transform: rotate(45deg);
    }
    .faq-answer {
      display: block;
      max-height: 0;
      overflow: hidden;
      transition: max-height .36s ease, padding .28s;
    }
    .faq-answer.open {
      max-height: 320px;
      padding-bottom: 20px;
    }
    .faq-answer p {
      font-size: 14.5px;
      line-height: 1.85;
      color: var(--text-muted);
    }

    /* ══ RELATED TRIPS CAROUSEL ══ */
    .related-sec {
      padding: 64px 0 80px;
      background: #f8f8f6;
      border-top: 1.5px solid var(--border);
    }
    .related-inner {
      max-width: 1720px;
      margin: 0 auto;
      padding: 0 44px;
    }
    .related-hd {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 28px;
      flex-wrap: wrap;
      gap: 12px;
    }
    .related-title {
      font-family: 'Poppins', sans-serif;
      font-weight: 800;
      font-size: 1.5rem;
      color: var(--text);
    }
    .related-title span { color: var(--primary); }
    .rel-viewall {
      font-size: 13px;
      font-weight: 700;
      color: var(--primary);
      text-decoration: none;
    }
    .rel-viewall:hover { text-decoration: underline; }
    .rel-carousel-wrap {
      position: relative;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .rel-viewport { overflow: hidden; flex: 1; }
    .rel-track {
      display: flex;
      gap: 20px;
      transition: transform .42s cubic-bezier(.25,.46,.45,.94);
    }
    .rel-card {
      flex: 0 0 calc(33.333% - 14px);
      background: #fff;
      border-radius: 20px;
      border: 1.5px solid var(--border);
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      transition: transform .22s, box-shadow .22s;
    }
    .rel-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 44px rgba(0,0,0,.11);
    }
    .rel-card-img {
      position: relative;
      height: 200px;
      overflow: hidden;
    }
    .rel-card-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform .4s;
    }
    .rel-card:hover .rel-card-img img { transform: scale(1.06); }
    .rel-card-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 55%);
    }
    .rel-badge {
      position: absolute;
      top: 12px; left: 12px;
      z-index: 2;
      background: var(--primary);
      color: #fff;
      font-size: 10px;
      font-weight: 800;
      padding: 4px 10px;
      border-radius: 20px;
    }
    .rel-dur {
      position: absolute;
      bottom: 12px; left: 12px;
      z-index: 2;
      color: #fff;
      font-size: 11.5px;
      font-weight: 700;
    }
    .rel-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
    .rel-card-dest { font-size: 10.5px; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 5px; }
    .rel-card-name {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 14.5px;
      color: var(--text);
      line-height: 1.35;
      flex: 1;
      margin-bottom: 12px;
    }
    .rel-card-prices {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin-bottom: 12px;
    }
    .rel-price { font-family: 'Poppins', sans-serif; font-weight: 900; font-size: 1.2rem; color: var(--primary); }
    .rel-old { font-size: 12.5px; color: #bbb; text-decoration: line-through; }
    .rel-save { font-size: 11px; font-weight: 800; color: #2e7d32; background: #e8f5e9; padding: 2px 8px; border-radius: 10px; }
    .rel-card-dates {
      font-size: 12px;
      color: #888;
      font-weight: 600;
      background: #f8f8f6;
      border-radius: 8px;
      padding: 7px 11px;
      margin-bottom: 12px;
    }
    .rel-card-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--primary);
      color: #fff;
      border-radius: 10px;
      padding: 10px;
      font-size: 13px;
      font-weight: 800;
      transition: background .18s;
    }
    .rel-card:hover .rel-card-btn { background: var(--primary-dark); }

    .rel-nav {
      width: 44px; height: 44px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      background: #fff;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all .18s;
      color: var(--text);
      box-shadow: 0 2px 10px rgba(0,0,0,.06);
    }
    .rel-nav:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
    .rel-nav:disabled { opacity: .3; cursor: default; }
    .rel-dots {
      display: flex;
      justify-content: center;
      gap: 7px;
      margin-top: 24px;
    }
    .rel-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #ddd;
      border: none;
      cursor: pointer;
      transition: background .2s, transform .2s;
      padding: 0;
    }
    .rel-dot.active { background: var(--primary); transform: scale(1.35); }

    /* ══ STICKY SIDEBAR ══ */
    .it-sidebar { position: sticky; top: 76px; }
    .sidebar-book-card {
      background: #fff;
      border: 1.5px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0,0,0,.08);
      margin-bottom: 20px;
    }
    .sbc-top {
      background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
      padding: 22px 24px 18px;
      position: relative;
    }
    .sbc-top::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 20px 20px;
    }
    .sbc-label {
      font-size: 10.5px;
      font-weight: 800;
      color: rgba(255,255,255,.5);
      text-transform: uppercase;
      letter-spacing: .09em;
      margin-bottom: 8px;
      position: relative;
      z-index: 1;
    }
    .sbc-price-row {
      display: flex;
      align-items: baseline;
      gap: 10px;
      position: relative;
      z-index: 1;
      margin-bottom: 4px;
    }
    .sbc-price {
      font-family: 'Poppins', sans-serif;
      font-weight: 900;
      font-size: 2rem;
      color: #fff;
    }
    .sbc-old {
      font-size: 14px;
      color: rgba(255,255,255,.4);
      text-decoration: line-through;
    }
    .sbc-save-tag {
      background: #22c55e;
      color: #fff;
      font-size: 10px;
      font-weight: 800;
      padding: 3px 9px;
      border-radius: 20px;
      position: relative;
      z-index: 1;
    }
    .sbc-per {
      font-size: 12px;
      color: rgba(255,255,255,.45);
      position: relative;
      z-index: 1;
    }
    .sbc-body { padding: 22px 24px 24px; }
    .sbc-options { margin-bottom: 18px; }
    .sbc-opt-label {
      font-size: 11px;
      font-weight: 800;
      color: #aaa;
      text-transform: uppercase;
      letter-spacing: .07em;
      margin-bottom: 8px;
    }
    .sbc-opt-row { display: flex; gap: 8px; }
    .sbc-opt {
      flex: 1;
      padding: 11px 12px;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      cursor: pointer;
      text-align: center;
      transition: all .18s;
      font-family: 'Nunito', sans-serif;
    }
    .sbc-opt.active { border-color: var(--primary); background: #fff4f0; }
    .sbc-opt-type { font-size: 11px; font-weight: 700; color: #888; }
    .sbc-opt-price { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 14px; color: var(--text); }
    .sbc-opt.active .sbc-opt-type { color: var(--primary); }
    .sbc-divider { height: 1px; background: var(--border); margin: 16px 0; }
    .sbc-dates-label {
      font-size: 11px;
      font-weight: 800;
      color: #aaa;
      text-transform: uppercase;
      letter-spacing: .07em;
      margin-bottom: 10px;
    }
    .sbc-date-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
    .sbc-chip {
      padding: 7px 14px;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      font-size: 12px;
      font-weight: 700;
      color: var(--text);
      cursor: pointer;
      transition: all .18s;
      font-family: 'Nunito', sans-serif;
      background: none;
    }
    .sbc-chip.active { border-color: var(--primary); background: var(--primary); color: #fff; }
    .sbc-chip:hover:not(.active) { border-color: var(--primary); color: var(--primary); }
    .btn-book-now {
      width: 100%;
      background: var(--primary);
      color: #fff;
      border: none;
      border-radius: 12px;
      padding: 16px;
      font-size: 15px;
      font-weight: 800;
      cursor: pointer;
      font-family: 'Nunito', sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background .18s, transform .18s;
      margin-bottom: 10px;
    }
    .btn-book-now:hover { background: var(--primary-dark); transform: translateY(-1px); }
    .btn-wa {
      width: 100%;
      background: #25D366;
      color: #fff;
      border: none;
      border-radius: 12px;
      padding: 13px;
      font-size: 14px;
      font-weight: 800;
      cursor: pointer;
      font-family: 'Nunito', sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background .18s;
      text-decoration: none;
    }
    .btn-wa:hover { background: #1ebe5e; }
    .sbc-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      font-size: 12px;
      color: #888;
      font-weight: 600;
      margin-top: 14px;
    }

    /* Trust sidebar card */
    .trust-card {
      background: #fff;
      border: 1.5px solid var(--border);
      border-radius: 16px;
      padding: 20px 22px;
      margin-bottom: 16px;
    }
    .trust-card-title {
      font-family: 'Poppins', sans-serif;
      font-weight: 800;
      font-size: 13px;
      color: var(--text);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 7px;
    }
    .trust-list { display: flex; flex-direction: column; gap: 10px; }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--text);
      font-weight: 600;
    }
    .trust-item-icon {
      width: 32px; height: 32px;
      border-radius: 8px;
      background: #fff4f0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      flex-shrink: 0;
    }

    /* ══ RESPONSIVE ══ */
    @media (max-width: 1200px) {
      .it-main { grid-template-columns: 1fr 340px; padding: 36px 28px 0; gap: 28px; }
      .rel-card { flex: 0 0 calc(50% - 10px); }
      .related-inner { padding: 0 28px; }
    }
    @media (max-width: 960px) {
      .it-main { grid-template-columns: 1fr; padding: 24px 20px 0; }
      .it-sidebar { position: static; order: -1; }
      .sidebar-book-card { max-width: 560px; }
      .it-hero-content { padding: 0 20px 56px; }
      .quick-stats { grid-template-columns: repeat(2, 1fr); }
      .qs-item:nth-child(2) { border-right: none; }
      .qs-item:nth-child(3) { border-top: 1.5px solid var(--border); }
      .qs-item:nth-child(4) { border-top: 1.5px solid var(--border); border-right: none; }
      .price-bar-inner { padding: 0 20px; }
      .pb-title { display: block; }
      .pb-tabs { display: none; }
      .pb-price { font-size: 1.15rem; }
      .carry-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      .it-hero { height: 75vh; }
      .it-hero-title { font-size: 1.9rem; }
      .highlights-grid { grid-template-columns: 1fr; }
      .incl-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px 160px; }
      .gallery-item:first-child { grid-row: 1; grid-column: 1 / 3; }
      .rel-card { flex: 0 0 calc(100% - 0px); }
      .related-inner { padding: 0 16px; }
      .pb-tabs { gap: 0; }
      .pb-tab { padding: 0 12px; font-size: 12px; }
      .carry-grid { grid-template-columns: 1fr; }
    }
