/* Restore Original Design CSS */
html,
body {
  background-color: #f8f9fa;
  overscroll-behavior-y: none;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  width: 90%;
  max-width: 900px;
}

.hero-title {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.3;
}

.hero-title span {
  font-weight: 600;
}

.hero-search {
  margin-top: 30px;
  display: flex;
  gap: 10px;
  background: rgba(255,255,255,0.85);
  padding: 10px;
  border-radius: 50px;
  align-items: center;
}

.hero-search .form-control {
  border: none;
  border-radius: 50px;
  padding: 10px 15px;
}

.btn-explore {
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 500;
}

.hero-buttons a {
  border-radius: 50px;
  padding: 10px 20px;
}

.navbar-sticky {
  position: sticky;
  top: 0;
  z-index: 1030;
}

.navbar {
  padding-right: 18px;
  padding-left: 18px;
}

.navbar-brand {
  gap: 8px;
}

.navbar-brand img {
  height: 80px;
  width: auto;
}

.navbar-brand .brand-text {
  font-size: calc(1.4rem - 3px);
}

.navbar-nav .nav-link {
  font-size: calc(1.1rem - 1px);
}

.container {
  max-width: 95%;
  width: 100%;
}

.nav-link:hover {
  color: rgb(160, 152, 152);
}

.nav-link.active {
  color: rgb(160, 152, 152);
}

.hero-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  max-height: 760px;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  background: #111;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 420px at 30% 35%, rgba(0,0,0,.10), rgba(0,0,0,.35)),
    linear-gradient(to top, rgba(0,0,0,.40), rgba(0,0,0,.08));
}

.hero-content {
  margin-top: 15%;
  position: relative;
  z-index: 2;
  padding: 64px;
  color: #fff;
  max-width: 980px;
}

.hero-content-lower {
  margin-top: 20%;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.22);
  font-size: 18px;
}

.hero-title {
  margin-top: 18px;
  margin-bottom: 10px;
  font-weight: 650;
  line-height: 1.05;
  font-size: clamp(38px, 5.2vw, 74px);
}

.hero-strong {
  font-weight: 800;
  color: rgba(255,255,255,.95);
}

.hero-sub {
  color: rgba(255,255,255,.85);
  max-width: 620px;
  font-size: 20px;
  margin: 0;
}

.btn-pill {
  border-radius: 30px;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 18px;
}

.hero-features {
  margin-bottom: -30%;
  position: absolute;
  left: 64px;
  right: 64px;
  bottom: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.feature-chip {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 999px;
  background: rgba(0,0,0,.65);
  border: 1px solid rgba(255,255,255,.18);
}

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 700;
}

.feature-text {
  font-size: 13px;
  color: rgba(255,255,255,.85);
  line-height: 1.25;
}

.dest-wrap {
  max-width: 1800px;
  margin: 0 auto;
}

.dest-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
  padding: 6px;
  margin-left: 5%;
  margin-right: 5%;
}

.dest-tile {
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(2,6,23,.08);
  padding: 12px;
  margin: 4px;
  margin-bottom: 50px;
}

.dest-tile-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #f8fafc;
  border-radius: 14px;
  overflow: hidden;
}

.dest-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: opacity 600ms ease, transform 600ms ease;
}

.dest-tile-body {
  padding: 12px 6px 4px;
}

.dest-tile-title {
  font-weight: 800;
  font-size: 16px;
  color: #0f172a;
  margin-bottom: 4px;
}

.dest-tile-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 13px;
}

.dest-tile-location {
  color: rgba(100,116,139,1);
}

@media (min-width: 1200px) {
  .dest-tile-media {
    aspect-ratio: 16 / 9;
  }
  .dest-tile-title {
    font-size: 18px;
  }
  .dest-tile-meta {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .dest-tiles {
    grid-template-columns: 1fr;
  }
  .dest-tile-media {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 992px) {
  .dest-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pkg-scroll {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
  padding: 6px;
}

.pkg-card {
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(2,6,23,.08);
  padding: 20px;
  margin: 4px;
  margin-bottom: 3px;
}

.pkg-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0b1220;
  border-radius: 14px;
  overflow: hidden;
}

.pkg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pkg-body {
  padding: 16px 16px 18px;
}

.pkg-meta {
  color: rgba(100,116,139,1);
  font-size: 13px;
  margin-bottom: 6px;
}

.pkg-title {
  font-weight: 800;
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 6px;
  color: #0f172a;
}

.pkg-sub {
  color: rgba(100,116,139,1);
  font-size: 18px;
  line-height: 1;
  min-height: 34px;
}

.pkg-bottom {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 8px;
}

.pkg-price {
  font-weight: 900;
  color: #0f172a;
  font-size: 16px;
}

.pkg-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.pkg-actions .btn {
  font-size: calc(1rem - 3px);
  padding: 5px 12px;
}

.pkg-note {
  margin-top: 10px;
  font-size: 25px;
  color: rgba(100,116,139,1);
}

@media (max-width: 768px) {
  .pkg-media {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 28px;
  }
  .hero-card {
    min-height: 520px;
  }
  .hero-features {
    left: 18px;
    right: 18px;
    bottom: 18px;
    grid-template-columns: 1fr;
  }
  .hero-bg {
    height: 100%;
    transform: scale(1);
  }
}

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

@media (max-width: 768px) {
  .pkg-scroll {
    grid-template-columns: 1fr;
  }
}

.pkg-wrap {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .pkg-wrap {
    padding: 0 12px;
  }
}

.t-card {
  background: rgba(255,255,255,1);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 30px rgba(2,6,23,.08);
  min-width: 0;
}

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #14532d;
  background: rgba(34,197,94,.14);
  border: 1px solid rgba(34,197,94,.18);
}

.t-name {
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  font-size: calc(1rem + 3px);
}

.t-meta {
  font-size: 15px;
  color: rgba(100,116,139,1);
  margin-top: 2px;
}

.t-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.t-stars {
  font-size: 17px;
  letter-spacing: 1px;
  color: rgba(148,163,184,1);
}

.t-stars .on {
  color: #f59e0b;
}

.t-score {
  font-size: 15px;
  color: rgba(100,116,139,1);
  font-weight: 700;
}

.t-msg {
  margin-top: 12px;
  color: rgba(51,65,85,1);
  line-height: 1.6;
  font-size: calc(1rem + 3px);
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.t-empty {
  padding: 18px;
  border-radius: 18px;
  border: 1px dashed rgba(15,23,42,.18);
  background: rgba(15,23,42,.02);
  color: rgba(51,65,85,1);
}

.t-form {
  background: #14532d;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 30px rgba(2,6,23,.08);
  color: #fff;
}

.t-form h5 {
  font-size: calc(1.25rem + 3px);
}

.t-form .form-label {
  color: #fff;
  font-size: calc(1rem + 3px);
}

.t-form .text-secondary {
  color: rgba(255,255,255,.85) !important;
  font-size: calc(1rem + 3px);
}

.t-hint {
  font-size: 21px;
  color: rgba(255,255,255,.85);
}

.t-input {
  border-radius: 14px;
  border-color: rgba(15,23,42,.10);
  padding: 12px 14px;
  background: #fff;
  color: #0f172a;
}

.t-form .btn {
  background: #fff;
  color: #0f172a;
  border-color: rgba(15,23,42,.18);
  font-size: calc(1rem + 3px);
}

.t-form .btn:hover {
  background: #f8fafc;
  color: #0f172a;
}

.t-input:focus {
  box-shadow: 0 0 0 .25rem rgba(34,197,94,.15);
  border-color: rgba(34,197,94,.35);
}

.t-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}

.t-left {
  margin-left: 10%;
  position: relative;
  max-height: 600px;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 18px;
  background: rgba(15,23,42,.02);
  border: 1px solid rgba(15,23,42,.08);
  padding: 16px;
}

.t-right {
  margin-right: 15%;
  max-height: 600px;
}

.t-track {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.t-left::-webkit-scrollbar {
  width: 8px;
}

.t-left::-webkit-scrollbar-thumb {
  background: rgba(15,23,42,.18);
  border-radius: 999px;
}

.t-left::-webkit-scrollbar-track {
  background: transparent;
}

.t-item {
  min-width: 360px;
}

.t-nav {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  gap: 8px;
}

.t-navbtn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.95);
  display: grid;
  place-items: center;
  font-size: 18px;
}

.t-navbtn:hover {
  background: #fff;
}

.t-right {
  position: relative;
}

.t-alert {
  margin-left: 6%;
  margin-right: 6%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(34,197,94,.10);
  border: 1px solid rgba(34,197,94,.22);
  color: rgba(20,83,45,1);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 14px 30px rgba(2,6,23,.06);
  margin-bottom: 14px;
}

.t-alert-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(34,197,94,.16);
  border: 1px solid rgba(34,197,94,.18);
  font-weight: 900;
}

.t-alert-title {
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

.t-alert-sub {
  margin: 0;
  font-size: 13px;
  color: rgba(20,83,45,.85);
}

@media (min-width: 992px) {
  .t-form {
    position: sticky;
    top: 18px;
  }
}

@media (max-width: 992px) {
  .t-grid {
    grid-template-columns: 1fr;
  }
  .t-item {
    min-width: 85vw;
  }
  .t-left,
  .t-right {
    margin-left: 0;
    margin-right: 0;
    max-height: none;
  }
  .t-left {
    max-height: 420px;
  }
  .t-right {
    order: 1;
  }
  .t-left {
    order: 2;
  }
}

.tour-wrap {
  margin-top: 2%;
  margin-left: 6%;
  margin-right: 6%;
  margin-bottom: 5%;
}

.tour-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: baseline;
  gap: 22px;
  margin-bottom: 18px;
}

.tour-kicker {
  font-size: 22px;
  font-weight: 600;
  color: rgba(100,116,139,1);
  margin-bottom: 6px;
}

.tour-title {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 900;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.02em;
}

.tour-right {
  margin: 0;
  color: rgba(100,116,139,1);
  font-size: 22px;
  line-height: 1.7;
  max-width: 620px;
  justify-self: end;
}

.tour-grid {
  display: grid;
  gap: 16px;
}

.tour-row {
  display: grid;
  gap: 16px;
}

.tour-row-top {
  grid-template-columns: 1.35fr .85fr;
  grid-template-rows: 460px;
}

.tour-row-bottom {
  grid-template-columns: .85fr 1.35fr;
  grid-template-rows: 460px;
}

.tour-card {
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #0b1220;
  box-shadow: 0 14px 30px rgba(2,6,23,.08);
  border: 1px solid rgba(15,23,42,.06);
  display: block;
  text-decoration: none;
}

.tour-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .45s ease;
}

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

.tour-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.tour-text {
  position: absolute;
  left: 16px;
  bottom: 14px;
  right: 16px;
  color: #fff;
}

.tour-place {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2px;
}

.tour-name {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.tour-lg {
  border-radius: 18px;
}
.tour-sm {
  border-radius: 18px;
}

@media (max-width: 992px) {
  .tour-head {
    grid-template-columns: 1fr;
  }
  .tour-right {
    justify-self: start;
    max-width: 100%;
  }
  .tour-row {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 260px;
  }
}

.footer-clean .footer-links a {
  color: rgba(100, 116, 139, 1);
  text-decoration: none;
  font-size: 1rem;
}
.footer-clean .footer-links a:hover {
  color: rgba(15, 23, 42, 1);
  text-decoration: none;
}
.footer-section-title {
  font-size: 1rem;
}
.footer-booking-text {
  font-size: 1rem;
}
.footer-booking-btn {
  font-size: calc(0.95rem - 3px);
  padding: 8px 16px;
  min-width: 165px;
  text-align: center;
  white-space: nowrap;
  margin-bottom: 8px;
}
.footer-booking-note {
  font-size: 0.875rem;
}
.imgfooter {
  width: 112px;
  height: 112px;
}
.footer-brand-title {
  font-size: calc(1.1rem + 3px);
}
.footer-tagline {
  font-size: calc(1rem - 1px);
}
.footer-social {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}
.footer-social a,
.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.footer-social a:hover,
.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

@media (max-width: 992px) {
  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 992px) {
  .navbar {
    padding-left: 12px;
    padding-right: 12px;
  }
  .navbar-brand img {
    height: 64px;
  }
  .navbar-brand .brand-text {
    font-size: 1.1rem;
  }
  .navbar-nav {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (max-width: 992px) {
  .dest-wrap,
  .pkg-wrap,
  .tour-wrap {
    margin-left: 0;
    margin-right: 0;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.dest-map {
  width: 80%;
  height: 600px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(15, 23, 42, 0.08);
  margin: 0 auto;
}

@media (max-width: 768px) {
  .dest-map {
    height: 320px;
  }
}

.leaflet-popup-content {
  margin: 8px 10px;
}
.leaflet-popup-content-wrapper {
  border-radius: 14px;
}

/* =========================
       MODE PAGE-COMPACT GLOBAL
       ========================= */
.page-compact .navbar {
  padding-right: 16px;
  padding-left: 16px;
}
.page-compact .navbar-brand {
  gap: 6px;
}
.page-compact .navbar-brand img {
  height: 82px;
}
.page-compact .navbar-brand .brand-text {
  font-size: calc(1.4rem - 4px);
}
.page-compact .navbar-nav .nav-link {
  font-size: calc(1.1rem - 2px);
}
.page-compact .navbar .dropdown-toggle {
  font-size: 12px !important;
}

.page-compact main {
  padding-top: calc(1.5rem - 4px);
  padding-bottom: calc(1.5rem - 4px);
}

.page-compact .dest-tiles {
  gap: 14px;
  margin-top: 20px;
  padding: 2px;
}
.page-compact .dest-tile {
  border-radius: 16px;
  padding: 8px;
  margin: 0;
  margin-bottom: 46px;
}
.page-compact .dest-tile-media {
  border-radius: 10px;
}
.page-compact .dest-tile-body {
  padding: 8px 2px 0;
}
.page-compact .dest-tile-title {
  font-size: 12px;
}
.page-compact .dest-tile-meta {
  font-size: 9px;
}

.page-compact .pkg-scroll {
  gap: 14px;
  margin-top: 20px;
  padding: 2px;
  margin-left: 5%;
  margin-right: 5%;
}
.page-compact .pkg-card {
  border-radius: 16px;
  padding: 20px;
  margin: 0;
  margin-bottom: 3px;
}
.page-compact .pkg-media {
  border-radius: 10px;
}
.page-compact .pkg-body {
  padding: 12px 12px 10px;
}
.page-compact .pkg-meta {
  font-size: 11px;
  margin-bottom: 4px;
}
.page-compact .pkg-title {
  font-size: 14px;
  margin-bottom: 2px;
}
.page-compact .pkg-sub {
  font-size: 12px;
  line-height: 1.4;
  min-height: 0;
  margin-bottom: 6px;
}
.page-compact .pkg-bottom {
  margin-top: 8px;
}
.page-compact .pkg-price {
  font-size: 12px;
}
.page-compact .pkg-actions {
  gap: 6px;
  margin-top: 10px;
}
.page-compact .pkg-note {
  margin-top: 8px;
  font-size: 11px;
}
.page-compact .pkg-wrap {
  padding: 0 20px;
}

.page-compact .footer-clean .footer-links a {
  font-size: calc(1rem - 1px);
}
.page-compact .footer-section-title {
  font-size: calc(1rem - 1px);
}
.page-compact .footer-booking-text {
  font-size: calc(1rem - 1px);
}
.page-compact .footer-booking-btn {
  font-size: calc(0.95rem - 4px);
  padding: 6px 14px;
  min-width: 166px;
}
.page-compact .footer-booking-note {
  font-size: calc(0.875rem - 1px);
}
.page-compact .imgfooter {
  width: 116px;
  height: 116px;
}
.page-compact .footer-brand-title {
  font-size: calc(1.1rem + 2px);
}
.page-compact .footer-tagline {
  font-size: calc(1rem - 2px);
}
.page-compact .footer-social {
  gap: 6px;
}
.page-compact .footer-social a {
  width: 51px;
  height: 51px;
}

.page-compact .dest-map {
  height: 676px;
  border-radius: 14px;
}
.page-compact .leaflet-popup-content {
  margin: 4px 6px;
}
.page-compact .leaflet-popup-content-wrapper {
  border-radius: 10px;
}

@media (min-width: 1200px) {
  .page-compact .dest-tile-title {
    font-size: 14px;
  }
  .page-compact .dest-tile-meta {
    font-size: 10px;
  }
}

@media (max-width: 992px) {
  .page-compact .navbar {
    padding-left: 8px;
    padding-right: 8px;
  }
  .page-compact .navbar-brand img {
    height: 60px;
  }
  .page-compact .navbar-brand .brand-text {
    font-size: calc(1.1rem - 4px);
  }
}

@media (max-width: 768px) {
  .page-compact .pkg-wrap {
    padding: 0 8px;
  }
  .page-compact .dest-map {
    height: 316px;
  }
}

/* ===================== */
/* HOME: compact (~6px)  */
/* ===================== */

.page-compact .hero-content {
  padding: 52px;
}
@media (max-width: 768px) {
  .page-compact .hero-content {
    padding: 24px;
  }
}

.page-compact .hero-pill {
  font-size: 12px;
  padding: 6px 10px;
}

.page-compact .hero-title {
  font-size: clamp(32px, 4.4vw, 68px);
}

.page-compact .hero-sub {
  font-size: 14px;
  max-width: 560px;
}

.page-compact .btn-pill {
  font-size: 12px;
  padding: 6px 12px;
}

.page-compact .tour-wrap {
  margin-top: 1.5%;
  margin-bottom: 4%;
}

.page-compact .tour-kicker {
  font-size: 16px;
}

.page-compact .tour-title {
  font-size: clamp(20px, 2.6vw, 38px);
}

.page-compact .tour-right {
  font-size: 16px;
  line-height: 1.6;
  max-width: 560px;
}

.page-compact .tour-place {
  font-size: 14px;
}

.page-compact .tour-name {
  font-size: 16px;
}

.page-compact .t-grid {
  gap: 14px;
}

.page-compact .t-card {
  padding: 14px;
}

.page-compact .t-avatar {
  width: 38px;
  height: 38px;
}

.page-compact .t-name {
  font-size: calc(1rem - 1px);
}

.page-compact .t-meta {
  font-size: 12px;
}

.page-compact .t-stars {
  font-size: 14px;
}

.page-compact .t-score {
  font-size: 12px;
}

.page-compact .t-msg {
  font-size: calc(1rem - 1px);
  line-height: 1.5;
}

.page-compact .t-form {
  padding: 14px;
}

.page-compact .t-form h5 {
  font-size: calc(1.25rem - 3px);
}

.page-compact .t-form .form-label {
  font-size: calc(1rem - 2px);
}

.page-compact .t-form .text-secondary {
  font-size: calc(1rem - 2px);
}

.page-compact .t-input {
  padding: 10px 12px;
}

.page-compact .t-form .btn {
  font-size: calc(1rem - 2px);
  padding: 8px 16px;
}

.page-compact .t-left {
  margin-left: 6%;
  padding: 12px;
}

.page-compact .t-right {
  margin-right: 10%;
}

@media (max-width: 992px) {
  .page-compact .t-left,
  .page-compact .t-right {
    margin-left: 0;
    margin-right: 0;
  }
  .page-compact .t-left {
    max-height: 380px;
  }
}

/* =========================
   NEW DESIGN STYLES
   ========================= */
.navbar-glass {
  background: transparent !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  border-bottom: none !important;
  box-shadow: none !important;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
.navbar-glass.scrolled {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: none !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.03) !important;
}
.navbar-glass .nav-link {
  color: rgba(0,0,0,0.8) !important;
  font-size: 15px !important;
  font-weight: 500;
}
.navbar-glass .nav-link:hover, .navbar-glass .nav-link.active {
  color: #198754 !important;
  font-weight: 600;
}
.navbar-glass .navbar-toggler {
  border-color: rgba(0,0,0,0.2);
}
.navbar-glass .navbar-toggler-icon {
  filter: invert(0);
}
.navbar-glass .brand-text {
  color: #198754 !important;
}
.navbar-glass .btn-outline-secondary {
  color: #198754;
  border-color: #198754;
}
.navbar-glass .btn-outline-secondary:hover {
  background-color: #198754;
  color: white;
}

.footer-dark {
  background-color: #1a1a1a;
  color: #b0b0b0;
  padding: 60px 0 20px;
}
.footer-dark .footer-brand-title {
  color: #198754 !important;
  font-size: 1.4rem;
}
.footer-dark .footer-section-title {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.footer-dark .footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.footer-dark .footer-links a:hover {
  color: #fff;
}
.footer-dark .text-secondary {
  color: #b0b0b0 !important;
}
.footer-dark .footer-social a {
  background: rgba(255,255,255,0.1);
  border-color: transparent;
  color: #fff;
}
.footer-dark .footer-social a:hover {
  background: rgba(255,255,255,0.2);
}
.footer-dark .footer-social-link {
  background: rgba(255,255,255,0.1);
  border-color: transparent;
  color: #fff;
}
.footer-dark .footer-social-link:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
.footer-dark .btn-outline-light:hover {
  background-color: #198754;
  border-color: #198754;
  color: #fff !important;
}

/* Penyeragaman Navbar Glass Global */
body.page-compact {
  background-color: #fff !important;
}

body.page-compact .navbar-glass:not(.scrolled) {
  background-color: transparent !important;
  box-shadow: none !important;
  border-bottom: none !important;
}
