/* =====================================================================
   TRAVELICA AGENCY – style.css  (Redesign Total)
   ===================================================================== */

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

:root {
  /* Colors */
  --blue: #1a73e8;
  --blue-dk: #1557b0;
  --green: #25d366;
  --green-dk: #1eb854;
  --text: #1a1a2e;
  --text-2: #666;
  --text-3: #999;
  --border: #e8e8e8;
  --bg-light: #f7f7f7;
  --white: #ffffff;

  /* Alias vars – dipakai oleh negara.css & detail.css */
  --primary: #1a73e8;
  --primary-dk: #1557b0;
  --text-1: #1a1a2e;
  --bg: #f7f9fb;

  /* Typography */
  --font: 'Poppins', sans-serif;

  /* Misc */
  --radius-card: 14px;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, .09);
  --shadow-card-hover: 0 8px 32px rgba(0, 0, 0, .15);
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

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

img {
  display: block;
  width: 100%;
}

ul {
  list-style: none;
}

/* Custom thin scrollbar – mengganti scrollbar Windows yg lebar 15px */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #c8d0da;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a0aab4;
}

.main-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 64px 0;
}

/* =======================================================
   NAVBAR
======================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, .1);
  border-bottom-color: transparent;
}

.nav-wrap {
  position: relative;
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  height: 50px;
  /* adjusted to match original logo height roughly */
  width: auto;
  object-fit: contain;
}

/* Desktop nav links */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.dn-link {
  padding: 7px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 6px;
  position: relative;
  transition: color var(--transition);
}

.dn-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.dn-link:hover,
.dn-link.active {
  color: var(--blue);
}

.dn-link:hover::after,
.dn-link.active::after {
  transform: scaleX(1);
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.wa-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #25d366;
  color: #fff;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.wa-btn:hover {
  background: #1db954;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

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

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

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

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Mobile Nav Sidebar */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 290px;
  max-width: 82vw;
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
  overflow-y: auto;
  overflow-x: hidden;
  visibility: hidden;
  box-sizing: border-box;
  touch-action: pan-y;
  overscroll-behavior: contain;
}

.mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
}

.mn-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  box-sizing: border-box;
  flex-shrink: 0;
}

.mn-logo {
  height: 32px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.mn-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
}

.mn-link {
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--transition), background var(--transition);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
  display: block;
}

.mn-link:hover,
.mn-link.active {
  color: var(--blue);
  background: #f0f7ff;
  font-weight: 600;
}

.mn-footer {
  padding: 18px 20px;
  border-top: 1px solid var(--border);
  box-sizing: border-box;
  flex-shrink: 0;
}

.mn-footer-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 18px;
  background: #25d366;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  box-sizing: border-box;
  text-align: center;
}

.mn-footer-wa:hover {
  background: #1eb854;
  transform: translateY(-2px);
}

.mn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #f5f5f5;
  border-radius: 8px;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
  flex-shrink: 0;
}

.mn-close:hover {
  background: #e5e5e5;
}



/* =======================================================
   HERO
======================================================= */
.hero {
  position: relative;
  height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 68px;
  width: 100%;
}

@media (max-width: 768px) {
  .hero {
    height: 420px;
    margin-top: 68px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, .62) 0%, rgba(0, 0, 0, .35) 60%, rgba(0, 0, 0, .1) 100%);
}

.hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-plane {
  font-size: 14px;
}

.hero-h1 {
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.8px;
  margin-bottom: 14px;
}

.hero-sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.7;
  margin-bottom: 28px;
}

.br-desk {
  display: inline;
}

/* Search bar */
.searchbar {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  max-width: 520px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .2);
}

.sb-icon {
  padding: 0 12px 0 16px;
  color: #9ca3af;
  display: flex;
  align-items: center;
}

.sb-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 13.5px;
  color: var(--text);
  padding: 14px 0;
  background: transparent;
}

.sb-input::placeholder {
  color: #aaa;
}

.sb-btn {
  padding: 14px 22px;
  background: var(--blue);
  color: #fff;
  border: none;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
  letter-spacing: .2px;
}

.sb-btn:hover {
  background: var(--blue-dk);
}

/* =======================================================
   DESTINASI FAVORIT
======================================================= */
.dest-section {
  background: #fff;
}

.sec-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

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

.sec-title {
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.3px;
}

/* Arrow buttons */
.dest-arrows {
  display: flex;
  gap: 8px;
}

.arr-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.arr-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* Destination track */
.dest-track-wrap {
  overflow: hidden;
}

.dest-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  transition: transform .35s ease;
}

/* Destination card */
.dest-card {
  border-radius: var(--radius-card);
  border: 1.5px solid var(--border);
  overflow: hidden;
  background: #fff;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.dc-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.dc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

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

.dc-pin {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, .9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: all var(--transition);
}

.dc-pin:hover {
  background: var(--blue);
  color: #fff;
}

.dc-footer {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dc-identity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dc-flag {
  font-size: 20px;
}

.dc-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.dc-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  background: var(--blue);
  color: #fff;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
  transition: background var(--transition);
}

.dc-btn:hover {
  background: var(--blue-dk);
}

/* More button */
.dest-more-row {
  margin-top: 24px;
  text-align: center;
}

.dest-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 24px;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
}

.dest-more-btn:hover {
  background: var(--blue);
  color: #fff;
}

/* =======================================================
   REVIEWS
======================================================= */
.reviews-section {
  background: var(--bg-light);
}

/* Top bar */
.reviews-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.reviews-badge {
  display: flex;
  align-items: center;
  gap: 14px;
}

.g-logo {
  flex-shrink: 0;
}

.reviews-badge-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.reviews-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 1.5px;
}

.reviews-score-row {
  display: flex;
  align-items: center;
  gap: 9px;
}

.reviews-score {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.reviews-stars {
  font-size: 17px;
  color: #FBBC05;
  letter-spacing: 1px;
}

.reviews-count {
  font-size: 12px;
  color: var(--text-3);
}

.reviews-all-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue);
  transition: gap var(--transition);
}

.reviews-all-link:hover {
  gap: 8px;
}

/* Slider */
.rv-slider-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rv-arr {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 16px;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.rv-arr:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.rv-viewport {
  flex: 1;
  overflow: hidden;
}

.rv-track {
  display: flex;
  gap: 16px;
  transition: transform .35s ease;
}

/* Review card */
.rv-card {
  flex: 0 0 calc(33.33% - 11px);
  background: #fff;
  border-radius: var(--radius-card);
  padding: 20px;
  border: 1.5px solid var(--border);
  transition: box-shadow var(--transition);
}

.rv-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.rv-card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
}

.rv-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.rv-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
}

.rv-date {
  font-size: 11.5px;
  color: var(--text-3);
}

.rv-stars {
  font-size: 13px;
  color: #FBBC05;
  letter-spacing: .5px;
  margin-top: 2px;
}

.rv-via {
  font-size: 10.5px;
  color: var(--text-3);
  position: absolute;
  right: 0;
  top: 0;
}

.rv-text {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
}

/* Dots */
.rv-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
}

.rv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.rv-dot.active {
  background: var(--blue);
  width: 22px;
  border-radius: 4px;
}

/* =======================================================
   VIDEO SHOWCASE SECTION
======================================================= */
.video-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.video-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.video-header .sec-eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 10px;
  background: rgba(26, 115, 232, 0.08);
  padding: 5px 16px;
  border-radius: 50px;
}

.video-header .sec-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.video-desc {
  font-size: 15.5px;
  color: #64748b;
  line-height: 1.65;
  margin: 0 auto;
}

.video-card-container {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  padding: 8px;
  background: #ffffff;
  box-shadow: 0 20px 50px -12px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(226, 232, 240, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card-container:hover {
  box-shadow: 0 28px 64px -14px rgba(26, 115, 232, 0.22), 0 0 0 1px rgba(26, 115, 232, 0.2);
}

.video-frame-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #0f172a;
}

.video-frame-wrap iframe,
.video-frame-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  border-radius: 14px;
  background: #0f172a;
  display: block;
}

/* Custom Play Overlay Button */
.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.35);
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  border-radius: 14px;
}

.video-play-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-play-btn-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35), 0 0 0 8px rgba(255, 255, 255, 0.25);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  color: #1a73e8;
}

.video-play-btn-circle svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
  fill: currentColor;
}

.video-play-overlay:hover .video-play-btn-circle {
  transform: scale(1.1);
  box-shadow: 0 16px 44px rgba(26, 115, 232, 0.45), 0 0 0 12px rgba(26, 115, 232, 0.2);
}

/* Current Video Info Bar */
.video-current-info {
  margin-top: 18px;
  padding: 16px 20px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.vci-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.vci-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.35;
}

.vci-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  background: #dbeafe;
  color: #1e40af;
  flex-shrink: 0;
}

.vci-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Video Playlist / Multiple Videos Switcher */
.video-playlist-section {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.vp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}

.vp-heading {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #475569;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vp-nav-buttons {
  display: flex;
  gap: 8px;
}

.vp-nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #cbd5e1;
  background: #fff;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}

.vp-nav-btn:hover {
  background: #1a73e8;
  color: #fff;
  border-color: #1a73e8;
}

.video-playlist-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.video-playlist-track::-webkit-scrollbar {
  height: 6px;
}

.video-playlist-track::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.vp-card {
  flex: 0 0 240px;
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  text-align: left;
}

.vp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -6px rgba(15, 23, 42, 0.12);
  border-color: #93c5fd;
}

.vp-card.active {
  border-color: #1a73e8;
  box-shadow: 0 0 0 2px #1a73e8, 0 12px 24px -6px rgba(26, 115, 232, 0.2);
}

.vp-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: #0f172a;
  overflow: hidden;
}

.vp-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.vp-thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #1a73e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.vp-card:hover .vp-thumb-play {
  transform: translate(-50%, -50%) scale(1.15);
}

.vp-badge-duration {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(2px);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.vp-card-body {
  padding: 10px 12px;
}

.vp-card-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.vp-card-active-label {
  display: none;
  font-size: 10.5px;
  font-weight: 700;
  color: #1a73e8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vp-card.active .vp-card-active-label {
  display: block;
}

/* =======================================================
   TOUR PHOTO GALLERY SLIDER (HOMEPAGE)
======================================================= */
.tour-gallery-wrap {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.tour-gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}

.tgh-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  margin: 0;
  line-height: 1.25;
}

.tg-nav-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.tour-gallery-slider-wrap {
  position: relative;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 12px;
  margin: 0 -4px;
}

.tour-gallery-slider-wrap::-webkit-scrollbar {
  display: none;
}

.tour-gallery-track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 4px;
}

.tg-card {
  flex: 0 0 460px;
  width: 460px;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.9);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.tg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.14);
}

.tg-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0f172a;
}

.tg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.tg-caption-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px 18px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.65) 60%, transparent 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none;
}

.tg-item-title {
  font-size: 16.5px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.tg-item-desc {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .tour-gallery-wrap {
    margin-top: 36px;
    padding-top: 28px;
  }

  .tgh-title {
    font-size: 19px;
  }

  .tg-card {
    flex: 0 0 310px;
    width: 310px;
    border-radius: 14px;
  }

  .tg-img-wrapper {
    aspect-ratio: 16 / 10.5;
  }

  .tg-item-title {
    font-size: 15px;
  }

  .tg-item-desc {
    font-size: 11.5px;
  }
}


/* =======================================================
   KENAPA PILIH TRAVELICA
======================================================= */
.kenapa-section {
  background: #fff;
}

.kenapa-header {
  text-align: center;
  margin-bottom: 36px;
}

.kenapa-title {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  background: var(--bg-light);
  padding: 10px 24px;
  border-radius: 50px;
  letter-spacing: .3px;
}

.kenapa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.kp-item {
  background: var(--bg-light);
  border-radius: var(--radius-card);
  padding: 28px 20px;
  text-align: center;
  border: 1.5px solid transparent;
  transition: all var(--transition);
}

.kp-item:hover {
  background: #fff;
  border-color: var(--border);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.kp-icon-wrap {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: transform var(--transition);
}

.kp-item:hover .kp-icon-wrap {
  transform: scale(1.08) rotate(-3deg);
}

.kp-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.kp-desc {
  font-size: 12.5px;
  color: var(--text-3);
  line-height: 1.65;
}

/* =======================================================
   FOOTER
======================================================= */
.footer {
  background: #0d1b2a;
}

.footer-bottom {
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  text-align: center;
  margin: 0;
  letter-spacing: 0.2px;
}

/* =======================================================
   FLOATING WHATSAPP
======================================================= */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
  z-index: 9998;
  transition: transform var(--transition), box-shadow var(--transition);
}

.float-wa:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, .5);
}

/* Mobile-only elements hidden on desktop */
.hero-mobile-content {
  display: none;
}

.sec-header-mobile {
  display: none;
}

/* =======================================================
   RESPONSIVE – TABLET 1024px
======================================================= */
@media (max-width: 1024px) {
  .dest-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .kenapa-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rv-card {
    flex: 0 0 calc(50% - 8px);
  }

  /* Video: panel kanan sedikit lebih sempit */
  .vs-right {
    flex: 0 0 260px;
    padding: 36px 28px;
  }

  .vs-left-content {
    padding: 36px 40px;
  }
}

/* =======================================================
   RESPONSIVE – MOBILE 768px
======================================================= */
@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }

  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .wa-btn {
    display: none;
  }

  .logo-img {
    height: 30px;
  }

  .br-desk {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 380px;
    padding: 32px 0;
  }

  .hero-h1 {
    font-size: clamp(26px, 7vw, 36px);
  }

  .hero-sub {
    display: none;
  }

  .searchbar,
  .sb-input,
  .sb-btn {
    display: none;
  }

  .hero-mobile-content {
    display: block;
    margin-top: 5px;
  }

  .hero-mobile-sub {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
  }

  .hero-mobile-btn {
    display: inline-block;
    background: #008489;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
  }

  .sec-eyebrow,
  .sec-header {
    display: none;
  }

  .sec-header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
  }

  .sec-title-mobile {
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
  }

  .sec-link-mobile {
    font-size: 13px;
    color: #008489;
    font-weight: 600;
  }

  .dest-track {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .dest-card {
    box-shadow: none;
    background: transparent;
  }

  .dest-card:hover {
    box-shadow: none;
    transform: none;
  }

  .dc-img-wrap {
    height: 140px;
    border-radius: 12px;
  }

  .dc-pin,
  .dc-flag,
  .dc-btn {
    display: none;
  }

  .dc-footer {
    padding: 10px 0;
    justify-content: center;
  }

  .dc-identity {
    justify-content: center;
  }

  .dc-name {
    font-size: 13px;
    text-align: center;
  }

  .rv-card {
    flex: 0 0 calc(100%);
  }

  /* Video section di mobile */
  .video-section {
    padding: 48px 0;
  }

  .video-header {
    margin-bottom: 24px;
  }

  .video-card-container {
    border-radius: 14px;
    padding: 5px;
  }

  .video-frame-wrap {
    border-radius: 10px;
  }


  .kenapa-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .kp-item {
    padding: 22px 14px;
  }

  .kp-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .float-wa {
    width: 50px;
    height: 50px;
    bottom: 18px;
    right: 14px;
  }
}

/* =======================================================
   RESPONSIVE – MOBILE 480px
======================================================= */
@media (max-width: 480px) {
  .main-container {
    padding: 0 16px;
  }

  .hero-container {
    padding: 0 16px;
  }

  .dest-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .kenapa-grid {
    grid-template-columns: 1fr;
  }

  .sec-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =======================================================
   DESTINATIONS PAGE
======================================================= */
.page-hero {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 68px;
  width: 100%;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.page-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 20px;
}

.page-hero-title {
  font-size: clamp(32px, 5vw, 48px);
  color: #fff;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

.dest-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .dest-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero {
    height: 250px;
  }

  .dest-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

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

/* =======================================================
   CUSTOM REVIEWS / TESTIMONIALS (MATCHING INSPIRATION)
======================================================= */
.custom-reviews-section {
  background: #FAF5EE;
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}

.rv-section-header {
  margin-bottom: 34px;
}

.rv-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: #8c827a;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.rv-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: #2b201a;
  letter-spacing: -0.6px;
  line-height: 1.15;
}

.rv-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 -8px;
}

.rv-carousel-container {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 14px 8px 24px;
}

.rv-carousel-container::-webkit-scrollbar {
  display: none;
}

.rv-cards-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.rv-card-item {
  flex: 0 0 275px;
  width: 275px;
  display: flex;
}

.rv-card-inner {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px 24px 22px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.035);
  border: 1px solid rgba(220, 210, 200, 0.45);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.rv-card-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.rv-stars {
  display: flex;
  gap: 3px;
  font-size: 16px;
  color: #ff6584;
  margin-bottom: 14px;
  line-height: 1;
}

.rv-star.empty {
  color: #e5e7eb;
}

.rv-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: #374151;
  margin-bottom: 22px;
  flex-grow: 1;
  font-weight: 400;
  word-break: break-word;
}

.rv-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f3f4f6;
}

.rv-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.rv-author-avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.rv-author-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
}

.rv-author-name {
  font-size: 13.5px;
  font-weight: 600;
  color: #1f2937;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rv-author-role {
  font-size: 11.5px;
  color: #9ca3af;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}

/* Arrow buttons */
.rv-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  color: #374151;
}

.rv-nav-btn:hover {
  background: #ffffff;
  color: #111827;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.16);
  transform: translateY(-50%) scale(1.08);
}

.rv-nav-btn:active {
  transform: translateY(-50%) scale(0.96);
}

.rv-nav-btn.rv-nav-prev {
  left: -20px;
}

.rv-nav-btn.rv-nav-next {
  right: -20px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .rv-nav-btn.rv-nav-prev {
    left: 4px;
  }
  .rv-nav-btn.rv-nav-next {
    right: 4px;
  }
}

@media (max-width: 768px) {
  .custom-reviews-section {
    padding: 50px 0 60px;
  }

  .rv-section-header {
    margin-bottom: 24px;
  }

  .rv-card-item {
    flex: 0 0 255px;
    width: 255px;
  }

  .rv-nav-btn {
    width: 36px;
    height: 36px;
  }
  
  .rv-nav-btn svg {
    width: 15px;
    height: 15px;
  }

  .rv-nav-btn.rv-nav-prev {
    left: 2px;
  }

  .rv-nav-btn.rv-nav-next {
    right: 2px;
  }
}

/* =======================================================
   WHATSAPP ADMIN SELECTION MODAL
======================================================= */
body.modal-open {
  overflow: hidden !important;
}

button.float-wa {
  border: none;
  cursor: pointer;
}

.wa-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}

.wa-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.wa-modal-dialog {
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-modal-overlay.open .wa-modal-dialog {
  transform: translateY(0) scale(1);
}

.wa-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid #f1f5f9;
  background: #ffffff;
}

.wa-modal-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wa-modal-icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-modal-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 2px;
  line-height: 1.25;
}

.wa-modal-subtitle {
  font-size: 12.5px;
  color: #64748b;
  margin: 0;
  line-height: 1.35;
}

.wa-modal-close {
  background: #f1f5f9;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.wa-modal-close:hover {
  background: #e2e8f0;
  color: #0f172a;
  transform: rotate(90deg);
}

.wa-modal-body {
  padding: 20px 24px 24px;
  background: #f8fafc;
}

.wa-admin-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wa-admin-card {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  font-family: inherit;
  display: block;
}

.wa-admin-card:hover {
  border-color: #25D366;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.18), 0 2px 6px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.wa-admin-card:active {
  transform: scale(0.985);
}

.wa-admin-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wa-admin-card-title {
  font-size: 15.5px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.wa-admin-card-dots {
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.wa-admin-card:hover .wa-admin-card-dots {
  color: #25D366;
  transform: scale(1.15);
}

@media (max-width: 480px) {
  .wa-modal-overlay {
    padding: 16px;
    align-items: flex-end;
  }

  .wa-modal-dialog {
    border-radius: 24px 24px 16px 16px;
    max-width: 100%;
  }

  .wa-modal-header {
    padding: 18px 18px 14px;
  }

  .wa-modal-body {
    padding: 16px 18px 20px;
  }

  .wa-admin-card {
    padding: 16px 18px;
  }

  .wa-admin-card-title {
    font-size: 14.5px;
  }
}

/* =======================================================
   SEARCH AUTOCOMPLETE DROPDOWN (Homepage Hero)
======================================================= */
.searchbar { position: relative; }

.sb-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.16);
  z-index: 2000;
  overflow: hidden;
  animation: sbDropIn .15s ease;
}

@keyframes sbDropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sb-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  cursor: pointer;
  transition: background .13s;
  border-bottom: 1px solid #f1f5f9;
}

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

.sb-dropdown-item:hover { background: #f0f7ff; }

.sb-di-icon {
  font-size: 16px;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}

.sb-di-main {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sb-di-sub {
  font-size: 12px;
  color: #64748b;
  white-space: nowrap;
}