/* =============================================
   ALTA TOUR – WEB.CSS  (Travolo-inspired, matches genktriplombok.com)
   =============================================
   Primary: #ff681a  (Exact genk color)
   Font:    Jost (exact genk font)
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #505050;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.625;
}

a { color: inherit; text-decoration: none; outline: 0; transition: color .4s; }
a:hover { color: var(--theme); }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; transition: all .3s; }
.hidden { display: none !important; }

:root {
  --theme:   #ff681a;
  --theme2:  #37d4d9;
  --dark:    #111330;
  --title:   #1c1c1c;
  --body:    #505050;
  --smoke:   #f7f7f7;
  --border:  #e8e8e8;
  --bg1:     #f7f9fc;
  --white:   #ffffff;
  --radius:  10px;
  --shadow:  0 4px 24px rgba(0,0,0,.06);
  --shadow2: 0 8px 40px rgba(0,0,0,.10);
}

/* ==============================
   CONTAINER
   ============================== */
.vs-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ==============================
   PRELOADER
   ============================== */
.preloader {
  position: fixed; inset: 0;
  background: #fff;
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .4s .2s;
}
.preloader.done { opacity: 0; pointer-events: none; }
.preloader-inner { display: flex; gap: 10px; }
.preloader-dot {
  width: 12px; height: 12px;
  background: var(--theme);
  border-radius: 50%;
  animation: pdot 1.2s ease infinite;
}
.preloader-dot:nth-child(2) { animation-delay: .2s; }
.preloader-dot:nth-child(3) { animation-delay: .4s; }
@keyframes pdot { 0%,80%,100%{transform:scale(.5);opacity:.5} 40%{transform:scale(1);opacity:1} }

/* ==============================
   HEADER 2-BARIS (persis seperti referensi)
   ============================== */
.vs-header {
  position: sticky; top: 0; z-index: 500;
  box-shadow: 0 2px 16px rgba(0,0,0,.12);
}

/* --- ROW 1: Top Info Bar (putih) --- */
.hdr-topbar {
  background: #fff;
  border-bottom: 1px solid #ebebeb;
  padding: 6px 0;
}
.hdr-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.hdr-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; text-decoration: none;
}
.hdr-logo-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--theme), #ff9a5c);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(255,104,26,.3);
  flex-shrink: 0;
}
.hdr-logo-text { line-height: 1.15; }
.hlt-main {
  display: block;
  font-size: 15px; font-weight: 900;
  color: var(--title); letter-spacing: .5px;
}
.hlt-sub {
  display: block;
  font-size: 9px; font-weight: 700;
  color: var(--theme); letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Info items group */
.hdr-info-group {
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap;
}
.hdr-info-item {
  display: flex; align-items: center; gap: 10px;
}
.hdr-info-icon {
  color: var(--theme2);
  width: 38px; height: 38px;
  background: rgba(55,212,217,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hdr-info-label {
  display: block;
  font-size: 12px; font-weight: 700; color: #1c1c1c;
}
.hdr-info-value {
  display: block;
  font-size: 14px; font-weight: 700;
  color: var(--theme);
  transition: opacity .2s;
}
.hdr-info-value:hover { opacity: .8; }

/* --- ROW 2: Nav Bar (gelap/hitam) --- */
.hdr-navbar {
  background: transparent;
  padding: 0;
  margin-top: -8px;
}
.hdr-navbar-inner {
  background: #1e1e1e;
  border-radius: 8px;
  padding: 0 24px;
  display: flex; align-items: center;
  justify-content: space-between;
  height: 54px;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

/* Nav links */
.main-nav { flex: 1; }
.nav-list {
  display: flex; align-items: center;
  list-style: none; gap: 0;
  height: 54px;
}
.nav-a {
  display: flex; align-items: center; gap: 4px;
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,.85);
  padding: 0 22px;
  height: 54px;
  white-space: nowrap;
  position: relative;
  transition: color .3s ease, background .3s ease;
}
.nav-a:hover {
  color: var(--theme);
  background: rgba(255,255,255,.08);
}
.nav-a.active {
  color: #ffffff;
  background: rgba(255,255,255,.04);
}
.nav-a svg { transition: transform .25s; opacity: .7; }

/* Dropdown */
.has-child { position: relative; }
.has-child:hover > .nav-a svg { transform: rotate(180deg); }
.sub-nav {
  position: absolute; top: 100%; left: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
  min-width: 230px;
  border-top: 3px solid var(--theme);
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all .25s;
  z-index: 100;
  list-style: none;
  padding: 6px 0;
}
.has-child:hover .sub-nav { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-nav li a {
  display: block;
  padding: 10px 18px;
  font-size: 13px; font-weight: 500;
  color: var(--body);
  transition: color .2s, background .2s;
  border-left: 3px solid transparent;
}
.sub-nav li a:hover {
  color: var(--theme);
  background: var(--bg1);
  border-left-color: var(--theme);
}

/* Right side: search + kontak */
.hdr-nav-right {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.hdr-search-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--theme); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.hdr-search-btn:hover { background: #e55a10; transform: scale(1.08); }
.hdr-kontak-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--theme);
  color: #fff !important;
  font-size: 14px; font-weight: 700;
  padding: 8px 8px 8px 18px; border-radius: 8px;
  white-space: nowrap;
  transition: background .2s;
  box-shadow: 0 3px 12px rgba(255,104,26,.3);
}
.hdr-kontak-btn:hover { background: #e55a10; color: #fff; }
.hdr-kontak-icon {
  width: 28px; height: 28px;
  background: var(--theme2);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hdr-logo-img {
  max-height: 64px;
  width: auto;
  display: block;
}

/* Footer logo image */
.footer-logo-img {
  max-height: 90px;
  width: auto;
  display: block;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

/* Search Box (dropdown) */
.hdr-search-box {
  background: var(--dark);
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.search-box-inner {
  display: flex; gap: 0; overflow: hidden;
  border-radius: 8px; border: 2px solid var(--theme);
  max-width: 500px; margin: 0 auto;
}
.search-box-inner input {
  flex: 1; height: 44px; border: none; outline: none;
  padding: 0 16px; font-size: 14px;
  font-family: inherit; background: #fff; color: #333;
}
.search-box-inner button {
  width: 44px; height: 44px;
  background: var(--theme); border: none; color: #fff;
  font-size: 18px; cursor: pointer;
  transition: background .2s;
}
.search-box-inner button:hover { background: #e55a10; }

/* Hamburger */
.hamburger-btn {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.hamburger-btn span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }

/* Mobile Drawer */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 600;
}
.mobile-drawer {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 280px; background: #fff; z-index: 700;
  box-shadow: 4px 0 24px rgba(0,0,0,.15);
  animation: slideInL .3s ease;
}
@keyframes slideInL { from{transform:translateX(-100%)} to{transform:translateX(0)} }
.mobile-drawer-head {
  background: var(--theme); color: #fff;
  padding: 16px 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; font-size: 14px;
}
.mobile-drawer-head button { background: none; border: none; color: #fff; font-size: 18px; }
.md-list { list-style: none; padding: 8px 0; }
.md-list li a {
  display: block; padding: 13px 20px;
  font-size: 15px; font-weight: 600; color: var(--title);
  border-bottom: 1px solid #f0f0f0;
  transition: color .2s, background .2s;
}
.md-list li a:hover { color: var(--theme); background: var(--bg1); }

/* ==============================
   SHARED BUTTON STYLES
   ============================== */
.vs-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--theme);
  color: #fff !important;
  font-size: 14px; font-weight: 700;
  padding: 11px 24px;
  border-radius: 8px;
  border: 2px solid var(--theme);
  white-space: nowrap;
  cursor: pointer;
  transition: background .25s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(255,104,26,.3);
  font-family: inherit;
}
.vs-btn:hover { background: #e55a10; border-color: #e55a10; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,104,26,.35); }
.vs-btn.sm { font-size: 13px; padding: 8px 18px; }
.vs-btn.w-full { width: 100%; justify-content: center; }
.vs-btn-outline {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent;
  color: #fff !important;
  font-size: 14px; font-weight: 700;
  padding: 9px 22px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,.7);
  white-space: nowrap;
  cursor: pointer;
  transition: all .25s;
  font-family: inherit;
}
.vs-btn-outline:hover { background: rgba(255,255,255,.15); }


/* ==============================
   HERO SLIDER
   ============================== */
.hero-section { position: relative; overflow: hidden; }
.hero-slider { position: relative; }
.hero-slide {
  display: none;
  min-height: 520px;
  padding: 80px 30px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-slide.active { display: flex; gap: 40px; }
.hero-content {
  flex: 1; max-width: 580px;
  position: relative; z-index: 2;
  animation: fadeUp .6s ease;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
.hero-content { max-width: 1250px; margin: 0 auto; }

.hero-slide { justify-content: center; }
.hero-content {
  max-width: 640px;
  text-align: center;
}
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 100px;
  padding: 5px 18px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: .3px;
}
.hero-content h1 {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.theme-text { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.25); }
.hero-content p {
  font-size: 16px; color: rgba(255,255,255,.85);
  line-height: 1.7; margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.hero-deco { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-circle {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.c1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.c2 { width: 250px; height: 250px; bottom: -60px; left: 10%; }
.hero-emoji {
  position: absolute;
  font-size: 120px;
  right: 10%; top: 50%; transform: translateY(-50%);
  opacity: .15; pointer-events: none;
}

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.4);
  color: #fff;
  width: 48px; height: 48px; border-radius: 50%;
  font-size: 22px; font-weight: 300;
  z-index: 5; transition: background .2s, border-color .2s;
  display: flex; align-items: center; justify-content: center;
}
.hero-arrow:hover { background: var(--theme); border-color: var(--theme); }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }

.hero-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 5;
}
.hdot {
  width: 32px; height: 4px;
  background: rgba(255,255,255,.35);
  border: none; border-radius: 2px;
  transition: background .2s, width .2s;
  padding: 0;
}
.hdot.active { background: #fff; width: 48px; }


/* ==============================
   BOOKING BAR
   ============================== */
.booking-bar-section {
  padding: 0 30px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 20;
  margin-top: -36px;
}
.booking-bar-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(255,104,26,.08);
  border: 1px solid rgba(255,104,26,.06);
  max-width: 950px;
  width: 100%;
}
.bb-input-box, .bb-select-box {
  flex: 1.2;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #ffede5;
  border-radius: 10px;
  padding: 12px 18px;
  background: #fff;
  position: relative;
  transition: all .3s ease;
}
.bb-input-box:focus-within, .bb-select-box:focus-within {
  border-color: var(--theme);
  box-shadow: 0 0 0 3px rgba(255,104,26,.12);
}
.bb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme);
  flex-shrink: 0;
}
.bb-input-box input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  background: transparent;
  font-family: inherit;
}
.bb-input-box input::placeholder {
  color: #999;
}
.bb-select-box select {
  width: 100%;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 20px;
}
.bb-arrow {
  position: absolute;
  right: 18px;
  display: flex;
  align-items: center;
  pointer-events: none;
  color: #555;
}
.bb-btn-find {
  flex: 1;
  background: var(--theme);
  color: #fff;
  border: none;
  border-radius: 10px;
  height: 48px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
  font-family: inherit;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(255,104,26,.3);
}
.bb-btn-find:hover {
  background: #e55a10;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255,104,26,.4);
}

/* ==============================
   SECTIONS
   ============================== */
.vs-section { padding: 70px 0; }
.bg-smoke { background: var(--smoke); }

/* Section Titles */
.sec-title-row {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap; gap: 12px;
}
.sec-title-row.center { justify-content: center; }
.sec-sub-title {
  display: inline-block;
  font-size: 13px; font-weight: 700;
  color: var(--theme);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 6px;
}
.sec-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--title);
  line-height: 1.3;
}
.sec-filter-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* ==============================
   FILTER PILLS
   ============================== */
.filter-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.fp {
  border: 1.5px solid #e0e0e0;
  background: #fff;
  color: #666;
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 12px; font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.fp:hover  { border-color: var(--theme); color: var(--theme); }
.fp.active { background: var(--theme); border-color: var(--theme); color: #fff; }

/* ==============================
   PAKET GRID (3 col – exact match)
   ============================== */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.empty-pkg { color: #ccc; font-size: 14px; grid-column: 1/-1; padding: 40px; text-align: center; }

/* Package Card */
.pkg-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid #f0f0f0;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex; flex-direction: column;
}
.pkg-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,.10);
  border-color: #d8d8d8;
}

.pkg-img-wrap { position: relative; overflow: hidden; }
.pkg-img {
  width: 100%; height: 240px; object-fit: cover;
  display: block; transition: transform .4s;
}
.pkg-card:hover .pkg-img { transform: scale(1.06); }
.pkg-no-img {
  width: 100%; height: 240px;
  background: linear-gradient(135deg, #1565c0 0%, #42a5f5 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; color: rgba(255,255,255,.8);
}
.pkg-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--theme); color: #fff;
  font-size: 10px; font-weight: 800;
  padding: 3px 10px; border-radius: 5px;
  text-transform: uppercase; letter-spacing: .3px;
}

.pkg-body {
  padding: 14px 15px 16px;
  flex: 1; display: flex; flex-direction: column;
}
.pkg-name {
  font-size: 13px; font-weight: 800;
  color: var(--title);
  text-transform: uppercase; letter-spacing: .3px;
  margin-bottom: 8px; line-height: 1.3;
}

/* Meta row (icon pills) */
.pkg-meta { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 10px; }
.pkg-mp {
  display: inline-flex; align-items: center; gap: 4px;
  background: #f5f5f5; border-radius: 5px;
  padding: 3px 8px;
  font-size: 10px; font-weight: 700; color: #555;
}
.pkg-mp svg { color: var(--theme); }

/* Price */
.pkg-price {
  margin-top: auto;
  font-size: 16px; font-weight: 900;
  color: var(--theme);
}
.pkg-price-note {
  font-size: 10px; color: #aaa; font-weight: 500; margin-top: 2px;
}

/* Pagination */
.pkg-pagination {
  display: flex; justify-content: center; gap: 6px;
  margin-top: 36px; flex-wrap: wrap;
}
.pag-n {
  min-width: 36px; height: 36px;
  border: 1.5px solid #e0e0e0;
  background: #fff; color: #555;
  border-radius: 7px;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; font-family: inherit;
}
.pag-n:hover  { border-color: var(--theme); color: var(--theme); }
.pag-n.active { background: var(--theme); border-color: var(--theme); color: #fff; }

/* ==============================
   SEWA MOBIL
   ============================== */
.mobil-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}
.mobil-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid #f0f0f0;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
}
.mobil-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(255,104,26,.1); }
.mobil-img { width: 100%; height: 180px; object-fit: cover; }
.mobil-no-img {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, #263238, #455a64);
  display: flex; align-items: center; justify-content: center; font-size: 52px;
}
.mobil-body { padding: 16px; }
.mobil-name { font-size: 16px; font-weight: 800; color: var(--title); margin-bottom: 8px; }
.mobil-meta { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 10px; }
.mobil-meta span {
  background: #f5f5f5; border-radius: 5px;
  padding: 3px 9px; font-size: 11px; color: #666; font-weight: 600;
}
.mobil-price { font-size: 20px; font-weight: 900; color: var(--theme); margin-bottom: 14px; }
.mobil-price small { font-size: 13px; color: #aaa; font-weight: 500; }
.btn-sewa-m {
  display: block; width: 100%;
  background: var(--theme); color: #fff;
  border: none; border-radius: 8px;
  padding: 10px; font-size: 14px; font-weight: 700;
  text-align: center; cursor: pointer;
  transition: background .2s; font-family: inherit;
}
.btn-sewa-m:hover { background: #e55a10; }

/* ==============================
   GALLERY
   ============================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gal-item {
  border-radius: 10px; overflow: hidden;
  position: relative; cursor: pointer;
}
.gal-item img { width: 100%; height: 180px; object-fit: cover; display: block; transition: transform .35s; }
.gal-item:hover img { transform: scale(1.05); }
.gal-item:nth-child(4n+1) img { height: 220px; }
.gal-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  color: #fff; padding: 24px 12px 10px;
  font-size: 12px; opacity: 0; transition: opacity .2s;
}
.gal-item:hover .gal-cap { opacity: 1; }

/* ==============================
   KEUNGGULAN
   ============================== */
.why-section { background: var(--bg1); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-item {
  background: #fff;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  border: 1.5px solid rgba(255,104,26,.12);
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.why-item:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(255,104,26,.15); }
.why-num {
  font-size: 38px; font-weight: 900; color: var(--theme);
  line-height: 1; margin-bottom: 6px;
}
.why-icon-box { font-size: 28px; margin-bottom: 12px; }
.why-item h4 { font-size: 15px; font-weight: 800; color: var(--title); margin-bottom: 8px; }
.why-item p  { font-size: 13px; color: var(--body); line-height: 1.7; }

/* ==============================
   BOOKING FORM
   ============================== */
.booking-form-wrap {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 56px; align-items: start;
}
.bfw-info .sec-sub-title { margin-bottom: 6px; }
.bfw-info .sec-title  { margin-bottom: 14px; }
.bfw-info > p { font-size: 14px; color: var(--body); line-height: 1.7; margin-bottom: 22px; }

.bfw-contact { list-style: none; margin-bottom: 22px; }
.bfw-contact li {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 14px; font-size: 14px; line-height: 1.6;
}
.bfw-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #fff0ea;
  color: var(--theme);
  border-radius: 8px;
  flex-shrink: 0;
}
.bfw-contact-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.bfw-sosmed { display: flex; gap: 8px; flex-wrap: wrap; }
.bsb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px; border-radius: 8px;
  font-size: 13px; font-weight: 700;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}
.bsb:hover { opacity: .85; transform: translateY(-1px); }
.bsb svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: #fff; }
.whatsapp  { background: #25d366; color: #fff; }
.facebook  { background: #1877f2; color: #fff; }

.bfw-form {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 6px 36px rgba(0,0,0,.09);
  border: 1.5px solid #f0f0f0;
}
.bfw-form h3 { font-size: 20px; font-weight: 800; color: var(--title); margin-bottom: 22px; }
.bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bf-group { margin-bottom: 14px; }
.bf-group label {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--title); margin-bottom: 6px;
}
.bf-group input, .bf-group select, .bf-group textarea {
  width: 100%;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px; font-family: inherit;
  color: #333; outline: none; background: #fff;
  resize: vertical;
  transition: border-color .2s;
  height: auto;
}
.bf-group input:focus,
.bf-group select:focus,
.bf-group textarea:focus { border-color: var(--theme); }

/* ==============================
   FOOTER
   ============================== */
.vs-footer { background: var(--dark); }
.footer-top { padding: 60px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 36px;
}
.fw-logo {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.fw-logo-icon {
  width: 38px; height: 38px; background: var(--theme);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fwl-main { font-size: 14px; font-weight: 900; color: #fff; letter-spacing: .5px; }
.fwl-sub  { font-size: 9px;  font-weight: 700; color: var(--theme); letter-spacing: 1.5px; text-transform: uppercase; }
.footer-widget > p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.75; max-width: 230px; }

.fw-social { display: flex; gap: 8px; margin-top: 18px; }
.fw-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.fw-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.fw-social a:hover { background: var(--theme); }
.fw-social a:hover svg {
  transform: scale(1.1);
}

.fw-title {
  font-size: 14px; font-weight: 800; color: #fff;
  text-transform: uppercase; letter-spacing: .8px;
  margin-bottom: 16px;
}
.fw-links { list-style: none; }
.fw-links li { margin-bottom: 10px; }
.fw-links a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .2s; }
.fw-links a:hover { color: var(--theme); }

.fw-contact { list-style: none; }
.fw-contact li {
  font-size: 13px; color: rgba(255,255,255,.5);
  margin-bottom: 10px; line-height: 1.6;
}
.admin-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px; color: rgba(255,255,255,.3);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px; padding: 5px 12px;
  transition: all .2s;
}
.admin-link:hover { color: #fff; border-color: rgba(255,255,255,.3); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 18px 0;
}
.footer-bottom .vs-container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }

/* ==============================
   MODAL
   ============================== */
.vs-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeIn .2s ease;
}
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.vs-modal-box {
  background: #fff;
  border-radius: 16px;
  max-width: 600px; width: 100%;
  max-height: 92vh; overflow-y: auto;
  position: relative;
  animation: slideUp .28s ease;
}
@keyframes slideUp { from{transform:translateY(24px);opacity:0} to{transform:translateY(0);opacity:1} }
.vs-modal-close {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,.95);
  border: none; border-radius: 50%;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  z-index: 2; transition: background .2s;
}
.vs-modal-close:hover { background: #f0f0f0; }

.vm-img-wrap { position: relative; }
.vm-img-wrap img { width: 100%; height: 240px; object-fit: cover; border-radius: 16px 16px 0 0; }
.vm-no-img {
  width: 100%; height: 240px;
  background: linear-gradient(135deg, #e55a10, var(--theme));
  border-radius: 16px 16px 0 0;
  display: flex; align-items: center; justify-content: center; font-size: 72px;
}
.vm-badge {
  position: absolute; bottom: 10px; left: 14px;
  background: var(--theme); color: #fff;
  border-radius: 5px; padding: 4px 13px;
  font-size: 11px; font-weight: 800; text-transform: uppercase;
}

.vm-body { padding: 20px 24px; }
.vm-title { font-size: 20px; font-weight: 900; color: var(--title); text-transform: uppercase; margin-bottom: 6px; }
.vm-price { font-size: 24px; font-weight: 900; color: var(--theme); margin-bottom: 8px; }
.vm-catatan { font-size: 13px; color: var(--body); line-height: 1.7; margin-bottom: 16px; }
.vm-price-img-wrap {
  margin-bottom: 16px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 12px;
}
.vm-price-img-title {
  font-size: 12px;
  font-weight: 700;
  color: #6c757d;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
#detailPriceImg {
  width: 100%;
  border-radius: 6px;
  display: block;
  object-fit: contain;
  max-height: 400px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.vm-tabs {
  display: flex; gap: 4px; margin-bottom: 14px;
  border-bottom: 2px solid #f0f0f0;
}
.vm-tab {
  border: none; background: none;
  padding: 8px 16px;
  font-size: 13px; font-weight: 700; color: #aaa;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .2s, border-color .2s;
  font-family: inherit;
}
.vm-tab.active { color: var(--theme); border-bottom-color: var(--theme); }
.vm-content { font-size: 14px; color: var(--body); line-height: 1.8; min-height: 50px; margin-bottom: 18px; }
.vm-content ul { padding-left: 20px; }
.vm-content li { margin-bottom: 4px; }

/* ==============================
   WA FLOAT
   ============================== */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 300;
  width: 56px; height: 56px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(37,211,102,.45);
  transition: transform .2s;
  animation: waPulse 2.5s ease infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse {
  0%,100%{box-shadow:0 6px 22px rgba(37,211,102,.45)}
  50%{box-shadow:0 6px 34px rgba(37,211,102,.7)}
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1100px) {
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger-btn { display: flex; }
  .hdr-phone { display: none; }
  .booking-form-wrap { grid-template-columns: 1fr; gap: 32px; }
  .bf-row { grid-template-columns: 1fr; }
  .hdr-info-group {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px 14px !important;
    width: 100%;
  }
  .hdr-topbar-inner {
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    justify-content: center !important;
  }
  .hdr-topbar {
    padding: 8px 0 !important;
  }
  .hdr-logo {
    margin-bottom: 2px;
  }
  .hdr-info-item {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    white-space: nowrap !important;
  }
  .hdr-info-label {
    display: none !important;
  }
  .hdr-info-icon {
    background: none !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    color: var(--theme2) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .hdr-info-icon svg {
    width: 14px !important;
    height: 14px !important;
  }
  .hdr-info-value {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: var(--theme) !important;
    line-height: 1.2 !important;
  }
}
@media (max-width: 650px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .booking-bar-wrap { flex-direction: column; gap: 12px; padding: 20px; }
  .bb-input-box, .bb-select-box { width: 100%; }
  .bb-btn-find { width: 100%; height: 48px; }
  .hdr-wa { display: none; }
  .hero-slide { min-height: 380px; padding: 50px 20px; }
  .hero-arrow { display: none; }
}

/* ==============================
   CATEGORIES SECTION
   ============================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
  margin-top: 16px;
}

.cat-card {
  position: relative;
  height: 430px;
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #ffefe6; /* Soft light-orange border */
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.03);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 3px solid transparent;
  pointer-events: none;
  transition: border-color 0.3s;
  z-index: 4;
}

.cat-card.active::after {
  border-color: var(--theme);
}

.cat-card:hover, .cat-card.active {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(255, 104, 26, 0.12);
  border-color: var(--theme); /* Solid theme orange on hover */
}

.cat-card-img-wrap {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
  background: #f8f9fa;
  border-bottom: 1.5px solid #ffefe6;
}

.cat-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cat-card:hover .cat-card-img {
  transform: scale(1.08);
}

.cat-card-no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  background: linear-gradient(135deg, #fff2eb 0%, #ffe0d1 100%);
  color: var(--theme);
}

.cat-card-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cat-card-location {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  margin-bottom: 6px;
}

.cat-card-location svg {
  color: #444; /* Dark pin icon */
  margin-right: 4px;
}

.cat-card-title {
  font-size: 20px;
  font-weight: 800;
  color: #333; /* Dark gray bold title */
  line-height: 1.25;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.cat-card-divider {
  border: none;
  border-top: 1px solid #ffd5c2; /* Light orange divider */
  margin: 0 0 10px 0;
}

.cat-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  margin-bottom: 14px;
}

.cat-card-meta-item {
  display: flex;
  align-items: center;
}

.cat-card-meta-item svg {
  color: #444;
  margin-right: 4px;
}

.cat-card-meta-divider {
  color: #ccc;
  font-weight: 300;
}

.cat-card-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--theme2); /* Vibrant cyan price tag */
  margin-top: auto;
}

@media (max-width: 768px) {
  .cat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
    margin-bottom: 32px;
  }
  .cat-card {
    width: 100%;
    height: 410px;
  }
}

/* ==============================
   DETAIL PAGE (ADDED FOR NEW FITUR)
   ============================== */
.detail-banner-section {
  position: relative;
  padding: 80px 0;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 40px;
}
.detail-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 19, 48, 0.85) 0%, rgba(26, 33, 62, 0.8) 50%, rgba(15, 52, 96, 0.75) 100%);
  z-index: 1;
}
.detail-banner-content {
  position: relative;
  z-index: 2;
}
.detail-breadcrumbs {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.75);
}
.detail-breadcrumbs a {
  color: rgba(255, 255, 255, 0.75);
}
.detail-breadcrumbs a:hover {
  color: var(--theme);
}
.detail-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.2;
}
.detail-badge-price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.detail-badge {
  background: var(--theme);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 5px;
  text-transform: uppercase;
}
.detail-price-tag {
  font-size: 18px;
  font-weight: 700;
  color: var(--theme2);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 30px;
  align-items: start;
}

.detail-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.detail-main-img-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid #f0f0f0;
  box-shadow: var(--shadow);
}
.detail-main-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.detail-main-no-img {
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, var(--theme), #ff9a5c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 84px;
  color: #fff;
}

.detail-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 28px;
  border: 1.5px solid #f0f0f0;
  box-shadow: var(--shadow);
}
.detail-card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--title);
  margin-bottom: 16px;
  border-bottom: 2px solid var(--theme);
  padding-bottom: 8px;
  display: inline-block;
}
.detail-card-body {
  font-size: 15px;
  color: var(--body);
  line-height: 1.7;
}

.detail-inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.inc-exc-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  border: 1.5px solid #f0f0f0;
  box-shadow: var(--shadow);
}
.inc-exc-card.inclusions {
  border-left: 4px solid #25d366;
}
.inc-exc-card.exclusions {
  border-left: 4px solid #f44336;
}
.inc-exc-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.inc-exc-title.inc { color: #1e7e34; }
.inc-exc-title.exc { color: #c82333; }
.inc-exc-list {
  list-style: none;
  font-size: 14px;
  line-height: 1.6;
}
.inc-exc-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}
.inc-exc-list.inc li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #25d366;
  font-weight: bold;
}
.inc-exc-list.exc li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #f44336;
  font-weight: bold;
}

.detail-price-img-section {
  text-align: center;
}
.detail-price-img-wrap {
  border: 1.5px dashed var(--theme);
  border-radius: 12px;
  padding: 16px;
  background: #fffdfb;
}
.detail-price-img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform .3s;
}
.detail-price-img:hover {
  transform: scale(1.015);
}

.detail-sidebar {
  position: sticky;
  top: 90px;
  z-index: 10;
}
.booking-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1.5px solid #f0f0f0;
  box-shadow: var(--shadow2);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.booking-card-price-lbl {
  font-size: 12px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
}
.booking-card-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--theme);
  line-height: 1.1;
  margin-bottom: 6px;
}
.booking-sidebar-form h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--title);
  margin-bottom: 12px;
  border-bottom: 1px solid #eee;
  padding-bottom: 6px;
}
.booking-card-benefit {
  background: var(--bg1);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 12px;
  color: #666;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.booking-card-benefit span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.booking-sidebar-form .bf-group {
  margin-bottom: 10px;
}
.booking-sidebar-form .bf-group label {
  font-size: 11px;
  margin-bottom: 4px;
}
.booking-sidebar-form .bf-group input,
.booking-sidebar-form .bf-group select {
  padding: 8px 10px;
  font-size: 13px;
  border-radius: 6px;
}

.detail-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--theme);
  margin-bottom: 16px;
  transition: transform .2s;
}
.detail-back-link:hover {
  transform: translateX(-4px);
}

@media (max-width: 991px) {
  .detail-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .detail-sidebar {
    position: static;
  }
  .detail-inc-exc-grid {
    grid-template-columns: 1fr;
  }
  .vs-container {
    padding: 0 16px !important;
  }
}

/* ==============================
   BACK TO TOP BUTTON
   ============================== */
.back-to-top {
  position: fixed;
  bottom: 92px;
  right: 24px;
  z-index: 300;
  width: 44px;
  height: 44px;
  background: var(--theme);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(255, 104, 26, 0.3);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  outline: none;
  transform: translateY(20px);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #e55a10;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 104, 26, 0.5);
}

/* Center alignment and premium styling for the simplified single-widget footer */
.vs-footer .footer-top .vs-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.vs-footer .footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.vs-footer .footer-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.vs-footer .fw-logo {
  justify-content: center;
  margin-bottom: 20px;
}
.footer-logo-img {
  max-width: 140px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.vs-footer .footer-widget > p {
  max-width: 450px;
  margin: 0 auto 20px;
  text-align: center;
  line-height: 1.8;
  font-size: 14px;
}

.vs-footer .fw-social {
  justify-content: center;
  margin-top: 10px;
  gap: 12px;
}

.vs-footer .fw-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.vs-footer .fw-social a:hover {
  background: var(--theme);
  border-color: var(--theme);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 104, 26, 0.4);
}

