/* ========================================================================== */
/* DAFTAR ISI BERKAS CSS UTAMA: GO TRAVELIST ASIA (GTA)                      */
/* ========================================================================== */
/* 1. RESET STANDAR WAJIB & PENGATURAN GLOBAL CLOUDFLARE PAGES              */
/* 2. ROOT VARIABLES & TOKENS TEMA DARK LUXURY                               */
/* 3. RESET ELEMEN KONTROL FORMULIR & NORMALISASI INPUT                      */
/* 4. TATA LETAK RESPONSIF CERDAS (MULTI-DEVICE FLUID ARCHITECTURE)          */
/* 5. DUAL-STATE STICKY SEARCH HEADER (HEADER PENCARIAN MELEKAT)             */
/* 6. BANNER ROTATOR SUITE (5-SLOT FLASH SNIPPET & TRAVELOGS BANNER)         */
/* 7. PILAR UTAMA & FILTER SUB-KATEGORI HORIZONTAL                           */
/* 8. GRID ASIMETRIS OFFSET & KARTU PRODUK (PRODUCT CARDS)                   */
/* 9. DROPDOWN WILAYAH BERANTAI & FILTER PILL TAGS                           */
/* 10. KARTU ARTIKEL TRAVELOGS & PREVIEW EDITORIAL                           */
/* 11. SISTEM TAB PROFIL PENGGUNA & MANAJEMEN AKUN MANDIRI                   */
/* 12. PERMANENT STICKY BOTTOM NAVIGATION BAR (BILAH NAVIGASI BAWAH)         */
/* 13. MODAL SUITE LAYOUT (AUTH, DETAIL PRODUK, CHECKOUT WIZARD, READER)    */
/* 14. DOCKING BAR BAWAH & TOMBOL AKSI MODAL                                 */
/* 15. TOMBOL KEMBALI KE ATAS MELAYANG (FLOATING BACK TO TOP BUTTON)         */
/* 16. PROTEKSI KEAMANAN KONTEN & MEDIA ANTI-PENCURIAN ASET                  */
/* 17. MEDIA QUERIES MULTI-DEVICE (MOBILE, TABLET, DESKTOP, ULTRA-WIDE)      */
/* ========================================================================== */

/* ========================================================================== */
/* BAGIAN 1: RESET STANDAR WAJIB & PENGATURAN GLOBAL CLOUDFLARE PAGES        */
/* ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  background-color: #070D1E;
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* PEMBERSIHAN & RESET KHUSUS BENTROKAN ELEMEN SISTEME / PIHAK KETIGA */
header:not(.gta-safe-node),
footer:not(.gta-safe-node),
nav.navbar,
#header,
#footer,
.header-wrapper,
.footer-wrapper,
div[class*="header-wrapper"],
div[class*="footer-wrapper"],
.systeme-header,
.systeme-footer,
[class*="systeme-header"],
[class*="systeme-footer"],
.page-header,
.page-footer {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ========================================================================== */
/* BAGIAN 2: ROOT VARIABLES & TOKENS TEMA DARK LUXURY                        */
/* ========================================================================== */
:root {
  --gta-bg: #070D1E;
  --gta-container: #0F172A;
  --gta-panel: #151E36;
  --gta-border: #334155;
  --gta-cyan: #00E5FF;
  --gta-purple: #8B5CF6;
  --gta-emerald: #10B981;
  --gta-amber: #FFD700;
  --gta-rose: #FF5722;
  --gta-text: #FFFFFF;
  --gta-muted: #94A3B8;
  --gta-glow-cyan: rgba(0, 229, 255, 0.35);
  --gta-glow-amber: rgba(255, 215, 0, 0.35);
  --gta-glow-purple: rgba(139, 92, 246, 0.35);
}

/* ========================================================================== */
/* BAGIAN 3: RESET ELEMEN KONTROL FORMULIR & NORMALISASI INPUT               */
/* ========================================================================== */
button {
  cursor: pointer;
  outline: none;
  border: none;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  outline: none;
}

/* GAYA INPUT CHECKOUT & INPUT FORMULIR UMUM */
.gta-checkout-input {
  width: 100% !important;
  background-color: #0F172A !important;
  border: 1.5px solid #334155 !important;
  border-radius: 14px !important;
  padding: 12px 14px !important;
  color: #FFFFFF !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  outline: none !important;
  box-sizing: border-box !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.gta-checkout-input:focus {
  border-color: #00E5FF !important;
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.3) !important;
}

.gta-checkout-label {
  font-size: 10px !important;
  font-weight: 800 !important;
  color: #94A3B8 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 5px !important;
  display: block !important;
}

/* ========================================================================== */
/* BAGIAN 4: TATA LETAK RESPONSIF CERDAS (MULTI-DEVICE FLUID ARCHITECTURE)   */
/* ========================================================================== */
#gta-master-panel {
  background-color: var(--gta-bg);
  color: var(--gta-text);
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
  padding-bottom: 115px;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  box-sizing: border-box;
  overflow: visible !important;
  -webkit-tap-highlight-color: transparent;
}

#gta-master-panel *,
#gta-master-panel *::before,
#gta-master-panel *::after {
  box-sizing: border-box;
}

/* ANIMASI TRANSISI ANTAR TAMPILAN VIEW */
.gta-main-view {
  display: none;
  padding: 16px;
  animation: gtaViewFadeIn 0.25s ease-out;
}

.gta-main-view.active {
  display: block;
}

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

/* ========================================================================== */
/* BAGIAN 5: DUAL-STATE STICKY SEARCH HEADER (HEADER PENCARIAN MELEKAT)      */
/* ========================================================================== */
#my-sticky-header {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 60 !important;
  background: rgba(7, 13, 30, 0.97) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border-bottom: 1px solid rgba(0, 229, 255, 0.25) !important;
  border-bottom-left-radius: 18px !important;
  border-bottom-right-radius: 18px !important;
  padding: 12px 16px !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 2px 12px rgba(0, 229, 255, 0.12) !important;
  will-change: transform;
}

.gta-sticky-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 38px;
  overflow: hidden;
  transform-origin: top;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease, height 0.25s ease, margin 0.25s ease;
  will-change: transform, opacity, height;
}

#my-sticky-header.scrolled .gta-sticky-brand-row {
  height: 0 !important;
  margin-bottom: 0 !important;
  opacity: 0 !important;
  transform: translateY(-10px) scaleY(0.8) !important;
  pointer-events: none !important;
}

#my-sticky-header.scrolled {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.gta-logo-group {
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
}

.gta-logo-group img {
  height: 26px;
  width: auto;
  object-fit: contain;
}

.gta-logo-title {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-transform: uppercase;
}

.gta-logo-title span {
  color: var(--gta-cyan);
}

.gta-travel-hub-pill {
  font-size: 9px;
  font-weight: 800;
  color: var(--gta-cyan);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.35);
  padding: 3px 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 4.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gta-search-bar-wrap {
  width: 100%;
  position: relative;
  margin-top: 8px;
  transition: margin 0.25s ease;
}

#my-sticky-header.scrolled .gta-search-bar-wrap {
  margin-top: 0 !important;
}

.gta-search-input {
  width: 100% !important;
  background-color: #0F172A !important;
  border: 1px solid rgba(0, 229, 255, 0.3) !important;
  border-radius: 14px !important;
  padding: 10px 14px 10px 38px !important;
  color: #FFFFFF !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  outline: none !important;
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.15) !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.gta-search-input:focus {
  border-color: var(--gta-cyan) !important;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.35) !important;
}

.gta-search-input::placeholder {
  color: #64748B !important;
  font-weight: 600 !important;
}

.gta-search-icon-fixed {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gta-cyan);
  pointer-events: none;
}

/* ========================================================================== */
/* BAGIAN 6: BANNER ROTATOR SUITE (5-SLOT FLASH SNIPPET & TRAVELOGS)         */
/* ========================================================================== */
.gta-banner-viewport {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.gta-banner-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.5s ease-in-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.gta-banner-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.gta-banner-gradient-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #070D1E 0%, rgba(7, 13, 30, 0.3) 50%, transparent 100%);
}

.gta-banner-content-box {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 10;
}

.gta-banner-slot-dots {
  position: absolute;
  top: 12px;
  right: 14px;
  display: flex;
  gap: 5px;
  z-index: 10;
}

.gta-banner-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.gta-banner-dot.active {
  width: 18px;
  border-radius: 10px;
  background: var(--gta-cyan);
  box-shadow: 0 0 8px var(--gta-cyan);
}

/* ========================================================================== */
/* BAGIAN 7: PILAR UTAMA & FILTER SUB-KATEGORI HORIZONTAL                    */
/* ========================================================================== */
.gta-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.gta-pillar-card {
  background: #0F172A;
  border: 1.5px solid #334155;
  border-radius: 16px;
  padding: 12px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gta-pillar-card .pillar-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #151E36;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gta-muted);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
}

.gta-pillar-card span {
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gta-muted);
  text-align: center;
}

.gta-pillar-card.active,
.gta-pillar-card:hover {
  border-color: var(--gta-cyan);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.25);
  background: rgba(0, 229, 255, 0.04);
}

.gta-pillar-card.active .pillar-icon-box {
  background: var(--gta-cyan);
  color: #070D1E;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.5);
}

.gta-pillar-card.active span {
  color: #FFFFFF;
}

/* SUB-KATEGORI SCROLL BAR */
.gta-subcat-bar {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 6px;
  margin-bottom: 14px;
}

.gta-subcat-bar::-webkit-scrollbar {
  display: none;
}

.gta-subcat-pill {
  background: #151E36;
  color: #94A3B8;
  border: 1px solid #334155;
  font-size: 10.5px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 14px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gta-subcat-pill.active {
  background: rgba(0, 229, 255, 0.15);
  border-color: var(--gta-cyan);
  color: var(--gta-cyan);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

/* GRID PROMO FLASHSALE */
.gta-promo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}

.gta-promo-tile {
  position: relative;
  height: 78px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.gta-promo-tile:hover {
  transform: translateY(-2px);
  border-color: var(--gta-cyan);
}

.gta-promo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gta-promo-tile .promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 13, 30, 0.92) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 4px;
}

.gta-promo-tile span {
  font-size: 8px;
  font-weight: 900;
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

/* ========================================================================== */
/* BAGIAN 8: GRID ASIMETRIS OFFSET & KARTU PRODUK (PRODUCT CARDS)            */
/* ========================================================================== */
.gta-offset-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}

.gta-offset-col-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gta-offset-col-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.gta-product-card {
  background: #0F172A;
  border: 1px solid #334155;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gta-product-card:hover {
  transform: translateY(-4px);
  border-color: var(--gta-cyan);
  box-shadow: 0 12px 25px rgba(0, 229, 255, 0.2);
}

.gta-card-thumb-wrap {
  position: relative;
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
}

.gta-card-thumb-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gta-badge-pill {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(7, 13, 30, 0.88);
  backdrop-filter: blur(6px);
  color: var(--gta-cyan);
  border: 1px solid rgba(0, 229, 255, 0.4);
  font-size: 8px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gta-product-card-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gta-prod-title {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  color: #FFFFFF;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 32px;
}

.gta-prod-price {
  font-size: 14px;
  font-weight: 900;
  color: var(--gta-emerald);
}

.gta-prod-location {
  font-size: 10px;
  font-weight: 600;
  color: var(--gta-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ========================================================================== */
/* BAGIAN 9: DROPDOWN WILAYAH BERANTAI & FILTER PILL TAGS                    */
/* ========================================================================== */
.gta-dropdown-container {
  position: relative;
  width: 100%;
}

.gta-dropdown-btn {
  width: 100%;
  background: #0F172A;
  border: 1.5px solid #334155;
  color: #FFFFFF;
  border-radius: 14px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 800;
  transition: all 0.2s ease;
}

.gta-dropdown-btn.active,
.gta-dropdown-btn:hover {
  border-color: var(--gta-cyan);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.25);
}

.gta-dropdown-options-box {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  max-height: 220px;
  background: #151E36;
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 14px;
  overflow-y: auto;
  z-index: 60;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.85);
  display: none;
}

.gta-dropdown-options-box.active {
  display: block;
}

.gta-dropdown-option-item {
  padding: 10px 14px;
  font-size: 11.5px;
  font-weight: 700;
  color: #FFFFFF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.gta-dropdown-option-item:hover {
  background: rgba(0, 229, 255, 0.15);
  color: var(--gta-cyan);
}

.gta-tag-scroll-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.gta-tag-scroll-list::-webkit-scrollbar {
  display: none;
}

.gta-filter-pill-tag {
  white-space: nowrap;
  background: #0F172A;
  border: 1px solid #334155;
  color: var(--gta-muted);
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gta-filter-pill-tag.active {
  background: rgba(0, 229, 255, 0.12);
  border-color: var(--gta-cyan);
  color: var(--gta-cyan);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.25);
}

/* ========================================================================== */
/* BAGIAN 10: KARTU ARTIKEL TRAVELOGS & PREVIEW EDITORIAL                    */
/* ========================================================================== */
.gta-article-card {
  background: #0F172A;
  border: 1px solid #334155;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.gta-article-card:hover {
  transform: translateY(-3px);
  border-color: var(--gta-purple);
}

.gta-article-thumb {
  width: 100%;
  padding-top: 68%;
  position: relative;
  background-size: cover;
  background-position: center;
}

.gta-article-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(7, 13, 30, 0.88);
  backdrop-filter: blur(4px);
  color: var(--gta-purple);
  border: 1px solid rgba(139, 92, 246, 0.4);
  font-size: 8px;
  font-weight: 900;
  padding: 2.5px 7px;
  border-radius: 6px;
  text-transform: uppercase;
}

.gta-article-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gta-article-title {
  font-size: 11.5px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 31px;
}

.gta-article-author {
  font-size: 9.5px;
  color: #94A3B8;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ========================================================================== */
/* BAGIAN 11: SISTEM TAB PROFIL PENGGUNA & MANAJEMEN AKUN MANDIRI            */
/* ========================================================================== */
.gta-profile-tabs-header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background: #0F172A;
  padding: 4px;
  border-radius: 14px;
  border: 1px solid #334155;
  margin-bottom: 14px;
}

.gta-tab-btn {
  padding: 8px 4px;
  text-align: center;
  font-size: 10.5px;
  font-weight: 800;
  color: #94A3B8;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gta-tab-btn.active {
  background: #151E36;
  color: var(--gta-cyan);
  border: 1px solid rgba(0, 229, 255, 0.4);
}

.gta-profile-pane {
  display: none;
  animation: gtaPaneFade 0.2s ease;
}

.gta-profile-pane.active {
  display: block;
}

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

/* ========================================================================== */
/* BAGIAN 12: PERMANENT STICKY BOTTOM NAVIGATION BAR                         */
/* ========================================================================== */
.gta-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: 72px;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px;
  z-index: 50;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.75);
}

.gta-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 68px;
  height: 52px;
  color: var(--gta-muted);
  transition: all 0.2s ease;
  border-radius: 14px;
  position: relative;
}

.gta-nav-item span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.gta-nav-item.active {
  color: var(--gta-cyan);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.35);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.gta-nav-item:active {
  transform: scale(0.92);
}

.gta-booking-btn-raised {
  position: relative;
  top: -16px;
  width: 58px;
  height: 58px;
  background: radial-gradient(circle at 30% 30%, #00E5FF 0%, #151E36 80%, #070D1E 100%);
  border: 2px solid var(--gta-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.7), inset 0 0 10px rgba(0, 229, 255, 0.5);
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
}

.gta-booking-btn-raised img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(0, 229, 255, 0.8));
}

.gta-booking-btn-raised:active {
  transform: scale(0.9) translateY(4px);
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.95);
}

.gta-booking-label-raised {
  font-size: 10px;
  font-weight: 800;
  color: var(--gta-muted);
  position: absolute;
  bottom: -18px;
  white-space: nowrap;
  text-align: center;
}

.gta-nav-center-wrap.active .gta-booking-label-raised {
  color: var(--gta-cyan);
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
}

/* ========================================================================== */
/* BAGIAN 13: MODAL SUITE LAYOUT (AUTH, DETAIL, CHECKOUT, READER)             */
/* ========================================================================== */
.gta-full-modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #070D1E;
  z-index: 9999;
  display: none;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  animation: gtaModalFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.gta-full-modal.active {
  display: flex !important;
}

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

.gta-modal-sticky-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}

.gta-modal-close-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #151E36;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gta-modal-close-btn:active {
  transform: scale(0.9);
  border-color: var(--gta-cyan);
  color: var(--gta-cyan);
}

.gta-modal-body-wrap {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 0 120px 0;
  box-sizing: border-box;
  position: relative;
}

.gta-modal-hero-cover {
  width: 100%;
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: #0F172A;
}

.gta-modal-hero-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #070D1E 0%, transparent 60%);
}

.gta-gallery-dots {
  position: absolute;
  bottom: 14px;
  right: 16px;
  background: rgba(7, 13, 30, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 800;
  color: #FFFFFF;
  z-index: 10;
}

/* ========================================================================== */
/* BAGIAN 14: DOCKING BAR BAWAH & TOMBOL AKSI MODAL                          */
/* ========================================================================== */
.gta-modal-bottom-dock {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 70;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8);
  box-sizing: border-box;
}

.gta-btn-reserve {
  flex: 1;
  background: #00E5FF;
  color: #070D1E;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px;
  border-radius: 14px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
  transition: all 0.2s ease;
}

.gta-btn-reserve:active {
  transform: scale(0.96);
}

.gta-btn-affiliate-alt {
  width: 100%;
  background: #FFD700;
  color: #070D1E;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 13px 16px;
  border-radius: 14px;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 0 16px rgba(255, 215, 0, 0.35);
}

.gta-btn-affiliate-alt:active {
  transform: scale(0.97);
}

/* ========================================================================== */
/* BAGIAN 15: TOMBOL KEMBALI KE ATAS MELAYANG (FLOATING BACK TO TOP)         */
/* ========================================================================== */
.gta-back-top-btn {
  position: fixed;
  bottom: 84px;
  right: calc(50% - 225px);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0F172A;
  border: 1.5px solid var(--gta-cyan);
  color: var(--gta-cyan);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 48;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gta-back-top-btn:active {
  transform: scale(0.9);
}

.gta-back-top-btn.visible {
  display: flex;
}

@media (max-width: 480px) {
  .gta-back-top-btn {
    right: 16px;
  }
}

/* ========================================================================== */
/* BAGIAN 16: PROTEKSI KEAMANAN KONTEN & MEDIA ANTI-PENCURIAN ASET           */
/* ========================================================================== */
@media print {
  body, html, #gta-master-panel {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    opacity: 0 !important;
  }
}

#gta-master-panel,
#gta-master-panel * {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  -webkit-touch-callout: none !important;
}

#gta-master-panel input,
#gta-master-panel textarea {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

#gta-master-panel img {
  -webkit-user-drag: none !important;
  -khtml-user-drag: none !important;
  -moz-user-drag: none !important;
  -o-user-drag: none !important;
  user-drag: none !important;
  pointer-events: none !important;
  -webkit-touch-callout: none !important;
}

/* ========================================================================== */
/* BAGIAN 17: MEDIA QUERIES MULTI-DEVICE FLUID RESPONSIVE                    */
/* ========================================================================== */

/* PERANGKAT SELULER (< 768PX) - APLIKASI MANDIRI PENUH */
@media (max-width: 767px) {
  #gta-master-panel {
    max-width: 480px;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.95);
  }
}

/* TABLET & DESKTOP (768PX HINGGA 1399PX) - TAMPILAN SITUS WEB PROFESIONAL */
@media (min-width: 768px) {
  #gta-master-panel {
    max-width: 1200px;
    padding-bottom: 40px;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.85);
  }

  /* KONTROL HEADER LEBAR PENUH DESKTOP */
  #my-sticky-header {
    border-radius: 0 0 24px 24px !important;
    padding: 16px 32px !important;
  }

  .gta-sticky-brand-row {
    height: 46px;
  }

  .gta-logo-title {
    font-size: 18px;
  }

  .gta-logo-group img {
    height: 32px;
  }

  .gta-search-bar-wrap {
    max-width: 600px;
    margin: 12px auto 0 auto;
  }

  /* TAMPILAN BANNER FLUID LEBAR */
  .gta-banner-viewport {
    height: 340px;
    border-radius: 28px;
  }

  .gta-banner-content-box {
    bottom: 24px;
    left: 28px;
    right: 28px;
    gap: 8px;
  }

  .gta-banner-content-box h2 {
    font-size: 20px !important;
  }

  /* GRID PRODUK MULTI-KOLOM PADA DESKTOP */
  .gta-offset-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .gta-offset-col-right {
    margin-top: 0;
  }

  /* PROMO GRID FLASHSALE EXPANDED */
  .gta-promo-grid {
    gap: 12px;
  }

  .gta-promo-tile {
    height: 110px;
    border-radius: 16px;
  }

  .gta-promo-tile span {
    font-size: 11px;
  }

  /* MODAL BODY CONTAINER PADA LAYAR BESAR */
  .gta-modal-body-wrap {
    max-width: 780px;
    padding-bottom: 100px;
  }

  .gta-modal-hero-cover {
    height: 380px;
    border-radius: 24px 24px 0 0;
  }

  .gta-modal-bottom-dock {
    max-width: 780px;
    border-radius: 24px 24px 0 0;
  }

  /* NAVIGASI BAWAH DIADAPTASI MENJADI DOCK ELEGAN TENGAH */
  .gta-bottom-nav {
    max-width: 620px;
    bottom: 16px;
    border-radius: 24px;
    border: 1px solid rgba(0, 229, 255, 0.25);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
  }

  .gta-back-top-btn {
    bottom: 30px;
    right: 36px;
  }
}

/* LAYAR SANGAT BESAR (>= 1400PX) */
@media (min-width: 1400px) {
  #gta-master-panel {
    max-width: 1320px;
  }

  .gta-banner-viewport {
    height: 400px;
  }

  .gta-offset-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .gta-modal-body-wrap {
    max-width: 900px;
  }

  .gta-modal-bottom-dock {
    max-width: 900px;
  }
}
