/* ========================================
CUSTOM PREMIUM SCROLLBAR
======================================== */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #138EF2;
  border-radius: 10px;
  border: 2.5px solid #f1f5f9;
  transition: background 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}
::-webkit-scrollbar-thumb:hover {
  background: #FFD700;
}
::-webkit-scrollbar-thumb:active {
  background: #0d7dd8;
}
html {
  scrollbar-width: thin;
  scrollbar-color: #138EF2 #f1f5f9;
}

/* ========================================
2. CSS VARIABLES (ROOT)
======================================== */
:root {
  --boxed: #5f758d;
  --body: #e8f5e9;
  --colors: #138EF2;
  --color2: #FFD700;
  --color3: #ffc700;
  --primtext: "DM Sans", sans-serif;
  --subtext: "DM Sans", sans-serif;
  --titletext: "DM Sans", sans-serif;
}

/* ========================================
3. GLOBAL RESET & BASE
======================================== */
* {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden; /* Mencegah scroll horizontal yang menyebabkan zoom macet */
  width: 100%;
}
a {
  text-decoration: none !important;
}
i.fas.fa-chevron-down {
  display: none;
}
img {
  max-width: 100%;
  height: auto;
}

/* ========================================
4. HEADER STYLES - FIXED
======================================== */
.header-body {
  padding: 5px;
  background-color: transparent !important;
  border: none !important;
  transition: all 0.5s ease;
  width: 100%;
  margin: 0;
}

.brand-name,
.text span,
.text h1,
.text h2 {
  text-transform: none !important;
}

html.sticky-header-enabled #header.header-transparent:not(.header-transparent-not-fixed) .header-body {
  position: relative;
}

html:not(.sticky-header-active) .header-body {
  margin-top: 10px !important;
  transition: all 1s ease !important;
}

html:not(.sticky-header-active) #header.header-transparent .header-nav-main:not(.header-nav-main-dark) nav > ul > li > a {
  color: #fff;
}

html:not(.sticky-header-active) #header.header-transparent .header-nav-main:not(.header-nav-main-dark) nav > ul > li > a.dropdown-toggle:after {
  border-color: #fff transparent transparent transparent;
}

html.sticky-header-active #header.header-transparent .header-body {
  transition: all 1s ease !important;
}

html.sticky-header-active #header.header-transparent .header-body::before {
  opacity: 1;
  background-color: #1A2B4987;
  backdrop-filter: saturate(180%) blur(20px);
  border: none !important;
  transition: all 0.5s ease !important;
}

#header .header-nav.header-nav-stripe nav > ul > li > a {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  font-family: var(--primtext);
  text-transform: capitalize;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.38);
  padding: 0 10px;
}

@media (min-width: 768px) {
  #header .header-nav.header-nav-stripe nav > ul > li > a {
    padding: 0 13px !important;
    min-height: 50px;
    height: 50px;
  }
  
  #header .header-nav.header-nav-stripe nav > ul > li.open > a,
  #header .header-nav.header-nav-stripe nav > ul > li:hover > a {
    border-radius: 5px !important;
    background-color: var(--colors);
  }
  
  #header .header-nav.header-nav-stripe nav > ul > li > a.dropdown-toggle:after {
    border-color: #fff transparent transparent transparent !important;
  }
}

/* FIX: Header full width di mobile */
@media (max-width: 768px) {
  #header,
  #header .header-body,
  #header .header-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    left: 0 !important;
    right: 0 !important;
  }
  
  html:not(.sticky-header-active) .header-body {
    margin-top: 10px !important;
  }
  
  .header-body {
    background: transparent !important;
    padding: 10px 15px !important;
  }
}

/* ========================================
5. HEADER 3 KOLOM (LOGO, NAV, SWITCHER) — PERBAIKAN ALIGNMENT
======================================== */
.header-3-col {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100%;
  gap: 20px;
}
.header-col-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.header-col-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
  align-items: center !important;
}
.header-col-nav nav > ul {
  display: flex !important;
  align-items: center !important;
  height: 50px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}
.header-col-nav nav > ul > li {
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
}
.header-col-actions {
  flex: 0 0 auto;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  flex-wrap: nowrap !important;
  height: 50px !important;
  margin: 0 !important;
  padding: 0 !important;
}
.header-col-actions .lang-dropdown,
.header-col-actions .currency-dropdown {
  display: inline-flex !important;
  align-items: center !important;
  position: relative;
  margin: 0 !important;
  vertical-align: middle;
  height: 100%;
}
.header-col-actions .lang-toggle,
.header-col-actions .currency-toggle {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px;
  padding: 0 16px !important;
  height: 40px !important;
  line-height: 1 !important;
  font-size: 14px !important;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  border-radius: 50px !important;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  white-space: nowrap;
  margin-top: -22px;
}
.header-col-actions .lang-toggle:hover,
.header-col-actions .currency-toggle:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: #FFD700;
  color: #FFD700 !important;
}
html.sticky-header-active .header-col-actions .lang-toggle,
html.sticky-header-active .header-col-actions .currency-toggle {
  background: rgba(19, 142, 242, 0.1);
  border-color: rgba(19, 142, 242, 0.3);
  color: #1a1a1a !important;
}

/* ========================================
6. MOBILE MENU (RESPONSIVE)
======================================== */
@media (max-width: 991px) {
  .header-col-nav {
    display: none !important;
  }
  .header-col-actions {
    gap: 8px !important;
    height: auto !important;
  }
  .header-col-actions .lang-toggle,
  .header-col-actions .currency-toggle {
    padding: 6px 12px !important;
    font-size: 13px !important;
    height: 36px !important;
    margin-top: -2px;
  }
}

@media (max-width: 768px) {
  html:not(.sticky-header-active) .header-body {
    margin-top: 10px !important;
  }
  
  /* Tombol Menu */
  #menu-button {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    padding: 0;
    z-index: 9999;
    transition: all 0.3s ease;
    margin-left: 10px;
    border-color: #111;
    color: #111;
  }
  #menu-button:hover {
    background: rgba(255, 255, 255, 0.3);
  }
  .b-p-bg-color .bar1,
  .b-p-bg-color .bar2,
  .b-p-bg-color .bar3 {
    width: 20px;
    height: 2px;
    margin: 3px 0;
    background: #fff;
    border-radius: 2px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  #menu-button.active .bar1 {
    transform: rotate(45deg) translate(4px, 4px);
  }
  #menu-button.active .bar2 {
    opacity: 0;
    transform: translateX(-10px);
  }
  #menu-button.active .bar3 {
    transform: rotate(-45deg) translate(4px, -4px);
  }
  
  /* Wrapper Menu */
  #menuWrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: linear-gradient(135deg, #0a192f 0%, #138EF2 100%);
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    overflow-y: auto;
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  }
  #menuWrapper.show-box {
    opacity: 1 !important;
    visibility: visible !important;
  }
  #menuWrapper .container {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
  }
  
  /* Tombol Close */
  #menuWrapper #close {
    position: absolute;
    top: max(15px, env(safe-area-inset-top));
    right: 15px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff !important;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 100000;
  }
  #menuWrapper #close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
    border-color: #fff;
  }
  
  /* Menu List */
  .menu-tour ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 400px;
    padding: 0;
    margin: 0 auto;
    position: relative;
    top: 2%;
    text-align: left;
    list-style: none;
  }
  .menu-tour li {
    padding: 0;
    margin: 0;
    border-bottom: none;
    width: 100%;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  } 
  #menuWrapper.show-box .menu-tour li {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Stagger Animation */
  #menuWrapper.show-box .menu-tour li:nth-child(1) { transition-delay: 0.1s; }
  #menuWrapper.show-box .menu-tour li:nth-child(2) { transition-delay: 0.15s; }
  #menuWrapper.show-box .menu-tour li:nth-child(3) { transition-delay: 0.2s; }
  #menuWrapper.show-box .menu-tour li:nth-child(4) { transition-delay: 0.25s; }
  #menuWrapper.show-box .menu-tour li:nth-child(5) { transition-delay: 0.3s; }
  #menuWrapper.show-box .menu-tour li:nth-child(6) { transition-delay: 0.35s; }
  #menuWrapper.show-box .menu-tour li:nth-child(7) { transition-delay: 0.4s; }
  #menuWrapper.show-box .menu-tour li:nth-child(8) { transition-delay: 0.45s; }
  
  /* Link Menu */
  .menu-tour a {
    display: block;
    padding: 16px 24px;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px; 
    transition: all 0.3s ease;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--primtext);
  }
  .menu-tour a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #FFD700 !important;
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.3);
  }
  
  /* Logo di Menu */
  .menu-tour li:first-child {
    margin-bottom: 40px;
    text-align: center;
    opacity: 1 !important;
    transform: none !important;
    transition-delay: 0s !important;
  }
  .menu-tour li:first-child img {
    height: 60px;
    filter: brightness(0) invert(1);
    display: inline-block;
  }
  
  /* Switcher di Mobile Menu */
  .mobile-switcher-item {
    margin-top: 30px !important;
    padding-top: 25px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }
  .mobile-switchers-wrapper {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }
  .mobile-switchers-wrapper .lang-dropdown,
  .mobile-switchers-wrapper .currency-dropdown {
    display: inline-block !important;
  }
  .menu-tour .lang-toggle,
  .menu-tour .currency-toggle {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    gap: 8px;
    min-height: 44px;
  }
  .menu-tour .lang-toggle:hover,
  .menu-tour .currency-toggle:hover {
    background: rgba(255, 215, 0, 0.2) !important;
    border-color: #FFD700 !important;
    color: #FFD700 !important;
  }
  
  /* Utility lainnya */
  .menu-tour a {
    font-family: var(--primtext);
  }
  .logo-menu {
    align-items: flex-start !important;
  }
  .menu-andro {
    justify-content: flex-end !important;
    margin-right: 10px;
  }
  .header-logo {
    margin-left: 10px !important;
  }
  .display-pc-share {
    display: none;
  }
  .header-logo img {
    height: 35px !important;
  }
  .col-6.col-md-3.mb-3 {
    padding: 0 5px; 
  }
}

/* ========================================
7. SECTION ALL PAGE
======================================== */
.section-allpage {
  position: relative;
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.section-allpage::before,
.section-allpage::after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  opacity: 0.6;
}
.section-allpage::before { top: 0; }
.section-allpage::after {
  bottom: 0;
  transform: rotate(180deg);
}
.section-allpage .text {
  position: absolute;
  inset: 0;
  text-align: center;
  z-index: 10;
  display: flex;
  align-items: center;
  font-family: var(--primtext);
}
.section-allpage .text h1 {
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 600;
  color: white;
  font-size: 45px;
  line-height: 50px;
  margin-bottom: 15px;
}
.section-allpage .text p {
  color: #f1f1f1;
  letter-spacing: 0.5px;
  font-size: 17px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .section-allpage {
    height: 200px;
    top: 0;
    margin-top: -20px;
  }
  .section-allpage .text h1 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 5px;
  }
  .section-allpage .text p {
    font-size: 13px;
  }
}

/* ========================================
8. BLOG STYLES
======================================== */
.wrap-blog {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}
.wrap-blog img {
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}
.wrap-blog2 span {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  font-family: var(--primtext);
  font-weight: 600;
  font-size: 11px;
  display: block;
  margin-bottom: 8px;
}
span.catcat {
  position: absolute;
  bottom: 13%;
  z-index: 1;
  left: 4%;
  background: var(--colors);
  font-family: var(--primtext);
  color: #fff;
  font-weight: 600;
  border-radius: 100px;
  padding: 3px 20px;
  font-size: 13px;
  text-transform: uppercase;
}
.wrap-blog2 h3 {
  text-transform: unset;
  font-family: var(--primtext);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 30px;
  color: #333;
  font-size: 21px;
  margin-bottom: 10px;
}
.wrap-blog2 p {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  font-family: var(--primtext);
  color: #777;
}
.wrap-blog2 a {
  border-radius: 5px;
  font-family: var(--primtext);
  color: var(--color2);
  padding: 0;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.5s ease;
}
.wrap-blog2 a:hover {
  color: #000;
}
@media (max-width: 768px) {
  .wrap-blog2 span {
    font-size: 10px;
    margin-bottom: 5px;
  }
  .wrap-blog2 h3 {
    line-height: 30px;
    font-size: 20px;
  }
  .wrap-blog2 p {
    font-size: 14px;
    line-height: 27px;
  }
}
@media (min-width: 768px) {
  .display-pc-share { display: flex; }
  .container { max-width: 1140px; }
}
@media (min-width: 1340px) {
  .container { max-width: 1240px; }
}

/* ========================================
9. UTILITY CLASSES
======================================== */
span.text-wid {
  font-family: var(--primtext);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
}
.social-icons:not(.social-icons-clean) li a {
  color: var(--colors) !important;
}
.btn-book-atas {
  font-family: var(--primtext);
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  text-transform: capitalize;
  border-radius: 100px;
  margin: 15px 0 5px 15px;
  padding: 8px 20px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.5s ease;
}
.btn-book-atas:hover {
  background: #fff;
  color: var(--colors);
}
.headatas {
  height: 85px;
  padding: 20px;
}
.smooth-slide {
  position: relative;
  bottom: 100px;
}
.pad6rem {
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .pad6rem { padding: 3rem 0; }
  .headatas { height: 60px; padding: 0; }
  .col-tour {
    position: relative;
    overflow-y: scroll;
    z-index: 1;
  }
}
@media (min-width: 768px) {
  .container-global { padding: 0 7%; }
}
@media (max-width: 768px) {
  .container-global { padding: 0 5%; }
}

/* ========================================
10. TITLE GLOBAL
======================================== */
.title-global .tag-atas {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 24px;
  color: #000;
  background: var(--color2);
  letter-spacing: 1px;
  border-radius: 50px;
  padding: 2px 20px;
  font-family: var(--subtext);
  display: block;
  width: max-content;
  margin: 0 auto 5px;
}
.title-global h2 {
  font-size: 40px;
  line-height: 60px;
  color: #000;
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: 0.3px;
  text-transform: unset;
  font-family: var(--primtext);
}
.title-global h2 span {
  color: var(--colors);
  font-weight: 700;
  font-size: unset;
  text-transform: unset;
  display: unset;
  letter-spacing: unset;
}
.title-global p {
  font-family: var(--primtext);
  color: #555;
  font-size: 16px;
}
.title-global .mtmb {
  margin-top: -25px;
}
@media screen and (max-width: 576px) {
  .title-global h2 {
    font-size: 25px;
    line-height: 40px;
    margin-bottom: 40px;
    text-align: center;
  }
  .title-global p {
    margin-bottom: 25px;
    text-align: center;
  }
  .title-global .tag-atas {
    font-size: 11px;
    text-align: center;
    margin: 0 auto 10px;
  }
  .title-global .btnprofile {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ========================================
11. PRODUCT CARDS
======================================== */
.product {
  font-family: var(--primtext);
}
.product .card {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  border: none;
  box-shadow: 5px 5px 10px rgba(0,0,0,0.06), -2px -2px 10px rgba(0,0,0,0.06);
  transition: all 0.5s ease;
  cursor: pointer;
} 
.product .card .img {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
}
.product .card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; 
}
.product .card .img::after {
  content: " ";
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 0%;
  width: 200%;
  background: var(--colors) !important;
  opacity: 0.25 !important;
  transition: all 0.5s ease;
  transform: translate(-50%, -50%) rotate(-45deg);
  pointer-events: none;
}
.product .card .img::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(19, 142, 242, 0) 0%, rgba(19, 142, 242, 0.3) 100%);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 2;
  pointer-events: none;
}
.product .card:hover .img::before { opacity: 1; }
.product .card:hover .img::after {
  background: var(--colors) !important;
  opacity: 0.2 !important;
  height: 300%;
}
.product .card img { transition: all 0.5s ease; }
.product .card:hover img { transform: scale(1.1); }
.product .card .info-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(5px);
  background: linear-gradient(to top, rgba(10, 20, 40, 0.95) 10%, rgba(10, 20, 40, 0.7) 50%, transparent 100%);
  -webkit-backdrop-filter: blur(50px);
  padding: 18px 22px;
  z-index: 10;
  border-top: 0px solid rgba(255,255,255,0.3);
}
.product .card .package-name {
  font-family: var(--primtext);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.3;
}
.product .card .location-info {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  font-family: var(--primtext);
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
.product .card .location-info i {
  color: var(--colors);
  margin-right: 5px;
  font-size: 14px;
}
.product .card .button-group {
  display: flex;
  gap: 8px;
}
.product .card .btn-book-now,
.product .card .btn-details {
  flex: 1;
  color: #fff;
  border: none;
  padding: 10px 12px;
  border-radius: 6px;
  font-family: var(--primtext);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.product .card .btn-book-now { background: var(--colors); }
.product .card .btn-book-now:hover {
  background: #0d7dd8 !important;
  color: #000 !important;
  border-color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(19,142,242,0.3);
}
.product .card .btn-details {
  background: var(--colors);
  border: 2px solid var(--colors);
  cursor: pointer;
}
.product .card .btn-details:hover {
  background: var(--colors);
  transform: translateY(-2px);
}
.product .card .card-body,
.product .card .price,
.product .card .rating,
.product .card .info-tag,
.product .card .btn-wraper {
  display: none !important;
}
.product .card:hover {
  box-shadow: 0 10px 30px rgba(19, 142, 242, 0.25);
  transform: translateY(-5px);
}
.product-home .slick-list { overflow: unset; }

/* ========================================
12. CAR PRODUCT
======================================== */
.car-prod { font-family: var(--primtext); }
.car-prod .card {
  overflow: hidden;
  position: relative;
  border-radius: 0;
  border: none;
  box-shadow: 5px 5px 10px rgba(0,0,0,0.06), -2px -2px 10px rgba(0,0,0,0.06);
}
.car-prod .card .price span { font-size: 18px; font-weight: 700; }
.car-prod .card img { margin: 10px 0; object-position: center; padding: 20px 20px 0; }
.car-prod .card .price-wrap .final { font-size: 13px; }
.car-prod .card .price-wrap .final span { color: black; font-size: 18px; font-weight: 600; }
.car-prod.supir .card .price-wrap .final { font-size: 11px; }
.car-prod.supir .card .price-wrap .final span { color: black; font-size: 15px; font-weight: 600; }
.car-prod .card .price-wrap .disc {
  color: #c3c3c3;
  font-size: 13px;
  position: relative;
  font-weight: 600;
  width: max-content;
}
.car-prod .card .price-wrap .disc::after {
  position: absolute;
  content: " ";
  width: 110%;
  height: 1px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #333;
}
.car-prod .card-body { position: relative; }
.car-prod .card .rating { font-size: 13px; margin-bottom: 12px; color: #878787; }
.car-prod .card .rating i { font-size: 15px; margin-right: 4px; color: #ffa127; }
.car-prod .card .price-wrap .top { margin: 15px 0 5px; }
.car-prod .card .price-wrap .top .avb {
  background: rgba(50, 205, 50, 0.5);
  color: #000;
  padding: 3px 13px;
  border-radius: 15px;
  font-family: var(--primtext);
}
.car-prod .card .info-tag {
  position: absolute;
  width: 90%;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--colors);
  padding: 8px 13px;
}
.car-prod .card .info i {
  color: #fff;
  padding: 5px;
  display: flex;
  margin-right: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--colors);
  font-size: 13px;
  width: 25px;
  height: 25px;
}
.car-prod .card .card-title {
  margin-top: 0;
  font-size: 19px;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  font-weight: 600;
  line-height: 30px;
}
.car-prod .card p { margin-bottom: 12px; font-size: 15px; color: #323232; letter-spacing: 0.3px; }
.car-prod .card .notes p { margin-bottom: 7px; font-size: 13px; line-height: 20px; color: #323232; letter-spacing: 0; }
.car-prod .card .notes p b { font-weight: 700; color: var(--colors); font-size: 15px; }
.car-prod .card .btn-wraper {
  border-top: 0.5px solid rgba(28, 28, 28, 0.25);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.car-prod .card .btn {
  width: 100%;
  margin: 15px 0 0;
  background: var(--colors);
  font-size: 15px;
  padding: 10px;
  font-weight: 500;
  color: white;
  letter-spacing: 0.3px;
  border-radius: 100px;
  transition: all 0.5s ease;
}
.car-prod .card .btn:hover { background: black; color: white; }
.car-prod .card .btn.btn-book { border-right: 0.5px solid rgba(28, 28, 28, 0.25); }

@media screen and (max-width: 576px) {
  .car-prod .row.justify-content-center { justify-content: start !important; }
  .car-prod .card .price-wrap .top .txt { font-size: 12px; }
  .car-prod .card .price-wrap .top .avb { font-size: 10px; padding: 1px 13px; }
  .car-prod .card .info { flex-wrap: wrap; }
  .car-prod .card .notes p { line-height: 18px; font-size: 10px; }
  .car-prod .card .notes p b { font-size: 13px; }
  .car-prod .card .info .bx { margin: 5px 5px 0 0 !important; }
  .car-prod .card .info i { font-size: 11px; width: 18px; height: 18px; margin-right: 3px; }
  .car-prod .card .card-title { margin: 0; font-size: 15px; line-height: 20px; }
  .car-prod .card .rating { font-size: 8px; margin-bottom: 5px; line-height: 2; }
  .car-prod .card .rating i { font-size: 10px; margin-right: 2px; }
  .car-prod .card .price-wrap .final { font-size: 8px; line-height: 1; }
  .car-prod .card .price-wrap .final span { font-size: 14px; line-height: 1; }
  .car-prod.supir .card .price-wrap .final { font-size: 8px; }
  .car-prod.supir .card .price-wrap .final span { font-size: 10px; }
  .car-prod .card .price-wrap .disc { font-size: 13px; }
  .car-prod .card .btn { width: 100%; font-size: 11px; padding: 0.6rem 1rem; }
}

/* ========================================
13. REVIEW & SLIDER
======================================== */
.list-star { margin-bottom: 9px; position: relative; }
.list-star i { color: #FFDC00; font-size: 13px; }
.btn-contact1 {
  background: var(--colors);
  color: #fff;
  font-family: var(--primtext);
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px 30px;
  transition: all 0.5s ease;
  letter-spacing: 2px;
}
.btn-contact1:hover { background: var(--color2); border-color: white; color: #fff; }
span.label-name {
  position: absolute;
  top: 3%;
  left: 0;
  z-index: 3;
  background: var(--colors);
  color: white;
  font-family: var(--primtext);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 6px 20px 6px 15px;
  font-weight: 600;
  font-size: 12px;
  border-radius: 0 100px 100px 0;
}
.ss-arrow button {
  margin: 0;
  padding: 0;
  background: white;
  border: 1px solid var(--colors);
  height: 30px;
  width: 30px;
  font-size: 12px;
  transform: scale(1.2);
  color: var(--colors);
  border-radius: 100px;
  outline: none;
  appearance: none;
}
.ss-arrow .slide-arrow { position: absolute; top: 44% !important; margin-top: -15px; }
.ss-arrow .prev-arrow { left: -1%; z-index: 1; }
.ss-arrow .next-arrow { right: -1%; z-index: 1; }
.review-slide .slick-dots {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 3rem 0 0;
  list-style-type: none;
}
.review-slide .slick-dots button {
  display: block;
  width: 0.6rem !important;
  height: 0.6rem !important;
  padding: 0;
  border: none !important;
  border-radius: 100%;
  transform: scale(1) !important;
  background-color: var(--color2) !important;
  text-indent: -9999px;
}
.review-slide .slick-dots li { margin: 0 0.25rem; }
.review-slide .slick-dots li.slick-active button { background-color: var(--colors) !important; }
@media (max-width: 768px) {
  .ss-arrow button { transform: scale(1.2); }
  .ss-arrow .slide-arrow { top: 45%; }
  .ss-arrow .prev-arrow { left: -1%; z-index: 1; }
}

/* ========================================
14. REVIEW SECTION
======================================== */
.wrap-review {
  padding: 3rem;
  position: relative;
  border: 1px solid #ccc;
  text-align: center;
  background-color: white;
  border-radius: 10px;
  height: 440px;
  margin: 10px;
}
.wrap-review p {
  font-family: var(--subtext);
  color: #000;
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  letter-spacing: 0.1px;
}
.tirev h2 { font-family: var(--primtext) !important; font-size: 40px; line-height: 55px; }
@media (max-width: 768px) {
  .tirev h2 { font-family: var(--primtext) !important; font-size: 28px; line-height: 40px; }
}
.slide-fix { padding-top: 10px; }
.wrap-why {
  padding: 35px 18px 28px;
  background: white;
  box-shadow: 0 0 87px 5px rgba(220, 230, 237, 0.75);
  border-radius: 5px;
  margin-bottom: 15px;
}
.list-stars i { color: #ffe000; margin: 5px; font-size: 15px; }
.list-stars { position: relative; margin-bottom: 30px; }
.from-reveiw a { color: var(--colors); font-weight: 600; }
.from-reveiw p { font-size: 14px; }
.from-reveiw img { height: 50px; margin: auto; margin-bottom: 13px; }
.from-reveiw .gole { height: 40px; }
.from-reveiw {
  position: absolute;
  font-family: var(--subtext);
  text-align: center;
  left: 0;
  right: 0;
  bottom: 3%;
}
.btn-full {
  background: var(--colors);
  color: white;
  font-family: var(--subtext);
  padding: 10px 25px;
  font-size: 15px;
  border-radius: 0;
  letter-spacing: 1px;
  text-transform: capitalize;
  transition: all 0.5s ease;
}
@media (max-width: 768px) {
  .wrap-review p { color: #555; font-size: 13px; line-height: 27px; }
  .btn-full { padding: 10px 13px; font-size: 13px; }
  .pad-cus { background-size: contain !important; }
  .wrap-review { padding: 2rem; }
}
.revrev .slick-list { overflow: unset !important; }

/* ========================================
15. SLIDER VIDEO
======================================== */
.slider-video { position: relative; }
.slider-video::after,
.slider-video::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  height: 40vh;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  opacity: 0.8;
}
.slider-video::after { z-index: 4; top: 0; transform: rotate(180deg); }
.slider-video::before { z-index: 2; bottom: 0; transform: rotate(0deg); }
.img-slide {
  width: 100%;
  position: relative;
  height: 100vh;
  object-fit: cover;
  object-position: top;
  filter: brightness(0.7);
}
.slider-video .text {
  position: absolute;
  z-index: 5;
  width: 80%;
  left: 15%;
  top: 47%;
  transform: translateY(-30%);
}
.slider-video .baner {
  position: absolute;
  z-index: 3;
  width: 30%;
  top: -1rem;
  left: 6%;
  background: var(--colors);
  height: 85%;
  opacity: 0.4;
}
.slider-video .baner-smal {
  position: absolute;
  z-index: 3;
  width: 20%;
  bottom: -1px;
  right: 8%;
  background-image: linear-gradient(0deg, var(--colors), var(--colors), transparent);
  height: 40%;
  opacity: 0.4;
}
.slider-video .text h1,
.slider-video .text h2 {
  font-size: 60px;
  line-height: 70px;
  color: #fff;
  margin: 0 0 18px auto;
  text-transform: capitalize;
  font-weight: 800;
  font-family: var(--primtext);
  letter-spacing: 1px;
  text-align: left;
  max-width: 100%;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}
.slider-video .text span {
  font-size: 14px;
  line-height: 30px;
  color: #fff;
  font-family: var(--subtext);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
}
.slider-video .text p {
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  font-family: var(--subtext);
  letter-spacing: 0.1px;
  max-width: 800px;
  font-weight: 400;
  text-align: left;
}
.slider-video .text .btn { 
  color: #fff;
  background: #138EF2;
  margin-top: 5px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--subtext);
  padding: 12px 30px;
  letter-spacing: 2px;
  border-radius: 0;
  z-index: 5;
  border: none;
  transition: all 0.3s ease;
}
.slider-video .text .btn:hover { background-color: #fff; border-color: #fff; color: #000; }
video.video embed { object-fit: cover; width: 100%; height: 100vh; }
.patern { position: absolute; left: 0; bottom: -1px; width: 100%; z-index: 3; }

@media (max-width: 768px) {
  .img-slide { height: 70vh; }
  .slider-video .baner-smal { display: none; }
  .slider-video .baner {
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 90%;
    background: transparent;
    background-image: linear-gradient(180deg, var(--colors), var(--colors), transparent);
  }
  .slider-video .text { top: 50%; left: 0; padding: 0 3%; width: 100%; }
  .slider-video .text span { margin: 0 auto; display: block; font-size: 10px; }
  .slider-video .text h1,
  .slider-video .text h2 { font-size: 28px; text-align: center; line-height: 38px; }
  .slider-video .text p { font-size: 13px; line-height: 23px; color: #fff; text-align: center; }
  .slider-video .text .btn { font-size: 12px; padding: 12px 20px; }
  .slider-video::after { height: 10vh; }
}

/* ========================================
16. CATEGORY CARDS
======================================== */
.wrap-cate {
  font-family: var(--primtext);
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 3px;
  transition: all 0.5s ease;
  background: black;
}
.wrap-cate img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: all 0.5s ease !important;
}
.wrap-cate2 {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 35px;
}
.wrap-cate2 h3 {
  color: white;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0;
  margin-bottom: 0;
}
.wrap-cate2 .btn-cate {
  background: var(--color2);
  color: white;
  border: 1px solid;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 10px 28px;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 600;
  transition: all 0.5s ease;
}
.wrap-cate2 .btn-cate:hover { background: #111; color: #fff; border-color: #111; }
.wrap-cate:hover img { transform: scale(1.1); }
@media (min-width: 768px) { .rowdes { margin: 0; } }
@media (max-width: 768px) {
  .col-cate { padding: 0 5px; }
  .wrap-cate { margin-bottom: 5px; border-radius: 8px; }
  .wrap-cate2 { bottom: 4%; padding: 10px; text-align: center; }
  .wrap-cate img { height: 120px !important; }
  .wrap-cate2 h3 { font-size: 14px; line-height: 24px; }
  .catcat { margin-bottom: 0; }
  .wrap-cate2 p { display: none; }
  .wrap-cate2 .price { font-size: 18px; margin-bottom: 11px; }
  .wrap-cate2 .btn-cate { padding: 5px 15px; font-size: 7px; }
  .wrap-cate::before { background: transparent linear-gradient(180deg, rgba(13, 28, 52, 0) 0, #000 100%) 0 0 no-repeat padding-box; }
}
.bg-prodct { background-color: rgba(213, 222, 255, 0.21); }
.category-wr .product-slick .slick-list { overflow: unset; }

/* ========================================
17. WHY SECTION
======================================== */
.why-section {
  position: relative;
  font-family: var(--primtext);
  transition: all 0.5s ease;
}
.why-section:hover i { background: var(--color2) !important; color: #fff !important; }
.why-section i {
  background: var(--colors);
  font-size: 45px;
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 80px;
  border-radius: 15px;
  margin-bottom: 30px;
  color: #fff;
  transition: all 0.5s ease;
}
.why-section h3 {
  font-family: var(--primtext);
  font-weight: 700;
  text-transform: capitalize;
  font-size: 22px;
  color: #fff;
  letter-spacing: 0;
  margin-bottom: 15px;
}
.why-section p { color: #eee; font-size: 15px; font-family: var(--primtext); }
.why .title-global .tag-atas { border: solid 1px #FFD700; background: var(--color2); color: #000; }
@media (max-width: 768px) {
  .why-section { text-align: center; }
  .title-primary { margin-bottom: 30px; }
  .title-primary span { font-size: 11px; margin-bottom: 4px; }
  .title-primary h2 { font-size: 26px; line-height: 40px; }
  .container { padding: 0 20px; }
  .why-section i { font-size: 40px; }
  .why-section h3 { font-size: 16px; margin-bottom: 6px; }
  .why-section p { font-size: 13px; }
  .col3636 { padding: 0 5px; }
}

/* ========================================
18. FLOATING ELEMENTS & SCROLL TO TOP
======================================== */
#chatbtn {
  background: #089dff;
  color: #fff;
  width: 50px;
  height: 50px;
  font-size: 20px;
  outline: none;
  border-radius: 50%;
  float: right;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 2px rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px rgba(0,0,0,0.2);
  z-index: 9999;
}
.sosmed .facebook i { background-color: #4267b2; }
.sosmed .instagram i { background-color: #d10869; }
.sosmed .whatsapp i { background-color: #25d366; }
.sosmed .messenger i { background-color: #0084ff; }
.sosmed .telegram i { background-color: #51bae7; }
.sosmed .youtube i { background-color: red; }
.sosmed .email i { background-color: #f17721; }
.fixed-bottom #sosmed a i {
  margin: 5px auto;
  display: block;
  color: #FFF;
  padding: 12px;
  opacity: 0.8;
  text-align: center;
}
.social-icons:not(.social-icons-clean) li a { background: #fff !important; }
html .scroll-to-top { bottom: 25px; border-radius: 5px; right: 80px; }
.icon-custom { font-size: 25px !important; width: 50px; height: 50px; border-radius: 50%; }

/* ========================================
19. SCROLL TO TOP BUTTON (MODERN)
======================================== */
#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: #138EF2;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  padding: 0;
}
#scrollToTopBtn.show {
  display: flex !important;
  animation: fadeInUp 0.3s ease;
}
#scrollToTopBtn:hover {
  background-color: #FFD700;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
#scrollToTopBtn svg { width: 20px; height: 20px; stroke: #ffffff; display: block; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
  #scrollToTopBtn { bottom: 20px; right: 20px; width: 45px; height: 45px; }
}
/* Sembunyikan tombol scroll-to-top bawaan template */
html .scroll-to-top,
a.scroll-to-top,
.scroll-to-top,
.porto-scrolltop,
#scroll-top,
.back-to-top {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ========================================
20. TRANSFER FARE - CLEAN & RESPONSIVE
======================================== */
.transfer-fare-section { padding: 5rem 0; background: #f0f6ff; font-family: var(--primtext); }
.transfer-fare-header { text-align: center; margin-bottom: 3rem; }
.transfer-tag {
  display: inline-block;
  background: #FFD700;
  color: #000;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.transfer-fare-header h2 { font-size: 2.2rem; font-weight: 400; color: #1a1a1a; margin: 0 0 12px; letter-spacing: -0.3px; font-family: var(--primtext); }
.text-highlight { color: #138EF2; font-weight: 700; }
.transfer-subtitle { color: #7a8a9e; font-size: 0.95rem; margin: 0; font-family: var(--primtext); }
.transfer-card {
  max-width: 1400px;
  width: 95%;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 3rem;
  box-shadow: 0 4px 20px rgba(19, 142, 242, 0.06);
  border: 1px solid rgba(19, 142, 242, 0.08);
}
.transfer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 2rem; }
.transfer-field { display: flex; flex-direction: column; gap: 8px; }
.transfer-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #5a6b82;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-family: var(--primtext);
  padding-left: 4px;
}
.label-icon { color: #138EF2; font-size: 1rem; }
.select-wrapper { position: relative; }
.transfer-select {
  width: 100%;
  padding: 14px 42px 14px 16px;
  border: 1.5px solid #e4ecf4;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 400;
  color: #333;
  background: #fff;
  cursor: pointer;
  appearance: none;
  font-family: var(--primtext);
  transition: all 0.25s ease;
  outline: none;
}
.transfer-select:hover { border-color: #c5d7e8; }
.transfer-select:focus { border-color: #138EF2; box-shadow: 0 0 0 3px rgba(19, 142, 242, 0.1); }
.transfer-select:invalid,
.transfer-select option[value=" "] { color: #8a9bb0; }
.select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #8a9bb0;
  font-size: 0.75rem;
  pointer-events: none;
  transition: transform 0.2s ease;
}
.select-wrapper:focus-within .select-arrow { color: #138EF2; }
.transfer-action { display: flex; justify-content: center; margin-top: 1.5rem; }
.btn-calculate {
  background: #138EF2;
  color: #fff;
  border: 2px solid #138EF2;
  padding: 16px 48px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(19, 142, 242, 0.3);
  font-family: var(--primtext);
  min-width: 240px;
}
.btn-calculate:hover {
  background: #ffffff !important;
  color: #138EF2 !important;
  border-color: #138EF2 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(19, 142, 242, 0.4);
}
.btn-calculate:active { transform: translateY(0); }
.btn-calculate i { font-size: 1rem; }
.error-message {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 14px 18px;
  border-radius: 10px;
  margin-top: 1rem;
  font-size: 0.9rem;
  display: none;
  text-align: center;
  font-family: var(--primtext);
}
.error-message.show { display: block; animation: shake 0.5s; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}
.transfer-result {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, #138EF2 0%, #0d7dd8 100%);
  border-radius: 16px; 
  color: #fff;
  text-align: center;
  box-shadow: 0 10px 30px rgba(19,142,242,0.3);
  animation: fadeInUp 0.5s ease;
}
.transfer-result .btn-book-now {
  background: #25D366 !important;
  color: #fff !important;
  border: 2px solid #25D366 !important;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}
.transfer-result .btn-book-now:hover {
  background: #ffffff !important;
  color: #25D366 !important;
  border-color: #25D366 !important;
  box-shadow: 0 10px 25px rgba(19, 142, 242, 0.4);
}
.result-title { font-size: 1.2rem; font-weight: 600; margin: 0 0 1.5rem; opacity: 0.95; font-family: var(--primtext); }
.result-route { background: rgba(255,255,255,0.15); border-radius: 12px; padding: 18px; margin-bottom: 1.5rem; }
.route-info { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 12px; font-size: 1rem; flex-wrap: wrap; }
.route-point { font-weight: 600; }
.route-arrow { opacity: 0.7; font-size: 1.2rem; }
.route-details { display: flex; justify-content: center; gap: 24px; font-size: 0.9rem; opacity: 0.9; flex-wrap: wrap; }
.route-details i { margin-right: 4px; }
.result-total { margin: 2rem 0; }
.total-amount { font-size: 3.5rem; font-weight: 800; line-height: 1; text-shadow: 2px 2px 4px rgba(0,0,0,0.2); margin-bottom: 8px; font-family: var(--primtext); }
.total-vehicle { display: block; font-size: 1.1rem; opacity: 0.9; font-family: var(--primtext); }
.fare-breakdown { background: rgba(255,255,255,0.1); border-radius: 12px; padding: 24px; margin: 2rem 0; text-align: left; }
.breakdown-header { font-weight: 700; font-size: 1.05rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid rgba(255,255,255,0.25); font-family: var(--primtext); }
.breakdown-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px dashed rgba(255,255,255,0.25); font-size: 0.95rem; flex-wrap: wrap; gap: 8px; }
.breakdown-item:last-child { border-bottom: none; }
.breakdown-label { color: rgba(255,255,255,0.9); font-weight: 500; }
.breakdown-value { font-weight: 600; color: #fff; }
.breakdown-total { margin-top: 8px; padding-top: 16px; border-top: 2px solid rgba(255,255,255,0.4) !important; border-bottom: none !important; font-weight: 700; font-size: 1.05rem; }
.breakdown-total .breakdown-label { font-weight: 700; font-size: 1.05rem; }
.breakdown-total .breakdown-value { font-size: 1.1rem; font-weight: 700; }
.result-note { background: rgba(255,255,255,0.1); border-radius: 10px; padding: 14px 18px; margin-bottom: 1.5rem; font-size: 0.9rem; line-height: 1.6; display: flex; align-items: flex-start; gap: 10px; text-align: left; font-family: var(--primtext); }
.result-note i { font-size: 1rem; flex-shrink: 0; margin-top: 3px; }
.result-note strong { font-weight: 700; }
.btn-book-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff !important;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
  font-family: var(--primtext);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-book-now:hover { background: #22c55e; transform: translateY(-3px); box-shadow: 0 10px 25px rgba(37,211,102,0.5); color: #fff !important; }
.btn-book-now i { font-size: 1.2rem; }

@media (max-width: 991px) {
  .transfer-fare-section { padding: 4rem 0; }
  .transfer-card { padding: 2.5rem 2rem; }
  .transfer-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .transfer-fare-header h2 { font-size: 2rem; }
  .total-amount { font-size: 3rem; }
}
@media (max-width: 767px) {
  .transfer-fare-section { padding: 3rem 0; }
  .transfer-fare-header h2 { font-size: 1.75rem; line-height: 1.3; }
  .transfer-subtitle { font-size: 0.9rem; }
  .transfer-card { padding: 2rem 1.5rem; border-radius: 14px; width: 95%; }
  .transfer-grid { grid-template-columns: 1fr; gap: 18px; }
  .transfer-label { font-size: 0.75rem; }
  .label-icon { font-size: 1rem; }
  .transfer-select { padding: 16px 42px 16px 16px; font-size: 1rem; min-height: 54px; }
  .select-arrow { right: 16px; font-size: 0.85rem; }
  .transfer-action { margin-top: 1.5rem; }
  .btn-calculate { width: 100%; padding: 18px 32px; font-size: 1rem; min-width: auto; }
  .transfer-result { padding: 2rem 1.5rem; margin-top: 2rem; border-radius: 14px; }
  .result-title { font-size: 1.1rem; }
  .route-info { flex-direction: column; gap: 6px; font-size: 0.95rem; }
  .route-details { gap: 16px; font-size: 0.85rem; }
  .total-amount { font-size: 2.5rem; }
  .total-vehicle { font-size: 1rem; }
  .fare-breakdown { padding: 18px; }
  .breakdown-header { font-size: 0.95rem; }
  .breakdown-item { flex-direction: column; align-items: flex-start; gap: 6px; padding: 10px 0; font-size: 0.9rem; }
  .breakdown-value { font-size: 0.95rem; font-weight: 700; }
  .breakdown-total { font-size: 1rem; }
  .breakdown-total .breakdown-label, .breakdown-total .breakdown-value { font-size: 1rem; }
  .result-note { font-size: 0.85rem; padding: 12px 14px; }
  .btn-book-now { width: 100%; padding: 16px 28px; font-size: 0.95rem; }
}
@media (max-width: 480px) {
  .transfer-fare-header h2 { font-size: 1.5rem; }
  .transfer-card { padding: 1.75rem 1.25rem; width: 92%; }
  .transfer-select { padding: 14px 40px 14px 14px; font-size: 0.95rem; min-height: 52px; }
  .btn-calculate { padding: 16px 24px; font-size: 0.95rem; }
  .transfer-result { padding: 1.75rem 1.25rem; }
  .total-amount { font-size: 2.2rem; }
  .route-details { gap: 12px; }
  .btn-book-now { padding: 14px 24px; font-size: 0.9rem; }
}

/* ========================================
21. SWIPER PAGINATION
======================================== */
.packageSwiper { padding-bottom: 50px !important; overflow: visible; }
.packageSwiper .swiper-slide { height: auto; }
.swiper-pagination-bullet { width: 12px; height: 12px; background: #ddd; opacity: 1; margin: 0 6px; transition: all 0.3s ease; }
.swiper-pagination-bullet-active { background: #138EF2; width: 32px; border-radius: 6px; }
@media (max-width: 767px) {
  .packageSwiper .swiper-slide { max-width: 100% !important; flex: 0 0 100% !important; }
  .product .card { margin: 0 auto !important; max-width: 95% !important; }
  .swiper-pagination-bullet-active { background: #138EF2 !important; }
}

/* ========================================
22. GALLERY APPLE - ANIMATION
======================================== */
.gallery-apple { padding: 5rem 0; background: #fff; overflow: hidden; }
.apple-gallery-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.4) 8%, black 15%, black 85%, rgba(0,0,0,.4) 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.4) 8%, black 15%, black 85%, rgba(0,0,0,.4) 92%, transparent 100%);
}
.apple-track {
  display: flex;
  align-items: center;
  gap: 15px;
  width: max-content;
  animation: appleMove 60s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}
.apple-gallery-wrapper:hover .apple-track { animation-play-state: paused; }
.apple-card {
  position: relative;
  width: 400px;
  aspect-ratio: 4/3;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.5s ease;
}
.apple-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.3) blur(0.1) hue-rotate(10deg);
  transition: filter 0.6s ease, transform 0.8s ease;
}
.apple-card:hover img { filter: brightness(1) saturate(1) blur(0); transform: scale(1.08); }
.apple-card::before {
  content: " ";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 113, 227, 0.15) 10%, rgba(255, 255, 255, 0.92) 150%, rgba(0, 113, 227, 0.1) 90%);
  z-index: 1;
  transition: opacity 0.6s ease;
  opacity: 1;
}
.apple-card:hover::before { opacity: 0; }
.apple-card span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 16px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  font-family: var(--primtext);
  opacity: 0.85;
  transition: all 0.4s ease;
}
.apple-card:hover span { opacity: 1; background: rgba(255,255,255,0.25); transform: translateY(-2px); }
.apple-card:hover { transform: scale(1.03); box-shadow: 0 15px 40px rgba(0,0,0,0.2); }
@keyframes appleMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 991px) {
  .apple-card { width: 320px; }
  .apple-card span { font-size: 16px; }
  .apple-track { gap: 20px; }
}
@media (max-width: 768px) { 
  .gallery-apple { padding: 3rem 0; }
  .apple-track { gap: 15px; animation-duration: 40s; }
  .apple-card { width: 280px; border-radius: 16px; }
  .apple-card span { font-size: 14px; left: 15px; bottom: 15px; padding: 6px 12px; }
}
@media (max-width: 480px) {
  .apple-card { width: 240px; }
  .apple-track { gap: 12px; }
}

/* ========================================
23. FAQ PREMIUM IMAGE
======================================== */
.faq-premium-wrap { position: relative; }
.faq-premium-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,.12);
  transform-style: preserve-3d;
  transition: transform .4s ease, box-shadow .4s ease;
  opacity: 0;
  transform: translateY(60px) scale(.96);
}
.faq-premium-card.faq-show { opacity: 1; transform: translateY(0) scale(1); }
.faq-premium-card img { width: 100%; height: 480px; display: block; object-fit: cover; transition: transform 0.5s ease; }
.faq-premium-card:hover img { transform: scale(1.08); }
.faq-premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: radial-gradient(circle at var(--faq-x,50%) var(--faq-y,50%), rgba(255,255,255,.25), transparent 35%);
  z-index: 2;
  pointer-events: none;
}
.faq-premium-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: linear-gradient(120deg, rgba(255,255,255,.45), transparent 25%, transparent 70%, rgba(255,255,255,.15));
  pointer-events: none;
}
.faq-premium-glow {
  position: absolute;
  left: -120px;
  top: 50%;
  width: 320px;
  height: 320px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(19,142,242,.35), transparent 70%);
  filter: blur(70px);
  z-index: -1;
  animation: faqPremiumFloat 8s ease-in-out infinite;
}
@keyframes faqPremiumFloat {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(-60%) scale(1.15); }
}
@media (max-width: 992px) { .faq-premium-card img { height: 340px; } }
@media (max-width: 768px) {
  .faq-premium-card, .faq-premium-card img { border-radius: 24px; }
  .faq-premium-card img { height: 250px; }
  .faq-premium-glow { width: 220px; height: 220px; }
}
@media (max-width: 480px) {
  .faq-premium-card img { height: 200px; }
  .faq-content { margin-top: 28px; }
}

/* ========================================
24. PREMIUM MODAL STYLES (FIXED IMAGE COVER)
======================================== */
.package-modal {
  position: fixed;
  inset: 0;
  background: rgba(8,8,10,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  padding: 20px;
  overflow-y: auto;
}
.package-modal.active { opacity: 1; visibility: visible; }
.modal-content {
  background: #fff;
  border-radius: 20px;
  max-width: 700px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  scrollbar-width: thin;
  scrollbar-color: #138EF2 #f1f5f9;
}
.package-modal.active .modal-content { transform: scale(1) translateY(0); }
.modal-content::-webkit-scrollbar { width: 6px; }
.modal-content::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 3px; }
.modal-content::-webkit-scrollbar-thumb { background: #138EF2; border-radius: 3px; }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.95);
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: #374151;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.modal-close:hover { background: #138EF2; color: #fff; border-color: #138EF2; transform: rotate(90deg); }
.modal-header {
  position: relative;
  width: 100%;
  background-color: #f0f0f0;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  aspect-ratio: 16 / 9;
}
@media (min-width: 768px) and (max-width: 991px) { .modal-header { aspect-ratio: 4 / 3; } }
@media (max-width: 767px) {
  .modal-header { aspect-ratio: 3 / 4; height: auto !important; min-height: auto !important; max-height: 32vh !important; }
}
.modal-header img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: brightness(0.85);
  transition: transform 0.6s ease;
  cursor: zoom-in !important;
}
@media (max-width: 767px) {
  .modal-header img { object-fit: contain; background-color: #f0f0f0; }
}
.package-modal:hover .modal-header img { transform: scale(1.03); }
.modal-header-overlay {
  position: absolute;
  inset: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  pointer-events: none;
  z-index: 1;
}
.modal-header-overlay h2 { font-size: clamp(24px, 5vw, 30px); font-weight: 800; margin: 0 0 8px; letter-spacing: -0.4px; text-shadow: 0 3px 8px rgba(0,0,0,0.5); }
.modal-header-overlay .location { font-size: 14px; opacity: 0.95; display: flex; align-items: center; gap: 6px; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.quick-info-bar { display: flex; flex-wrap: wrap; gap: 10px; padding: 16px 24px; background: #f8fafc; border-bottom: 1px solid #e5e7eb; }
.info-pill { display: flex; align-items: center; gap: 6px; background: #fff; border: 1px solid #e2e8f0; padding: 7px 14px; border-radius: 100px; font-size: 13px; font-weight: 500; color: #4b5563; }
.info-pill i { color: #138EF2; font-size: 14px; }
.trust-badges { display: flex; gap: 12px; padding: 14px 24px; background: #fff; border-bottom: 1px solid #f0f0f0; }
.trust-badge { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: #374151; }
.trust-badge i { font-size: 15px; }
.trust-badge.rating i { color: #FFB800; }
.trust-badge.cancellation i { color: #22c55e; }
.modal-body { padding: 8px 0; }
.modal-section { padding: 22px 24px; border-bottom: 1px solid #f0f0f0; }
.modal-section:last-of-type { border-bottom: none; }
.modal-section h3 { font-size: 16px; font-weight: 700; color: #111; margin: 0 0 14px; display: flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: 0.3px; }
.modal-section h3 i { color: #138EF2; font-size: 18px; }
.modal-section p { color: #555; line-height: 1.7; margin: 0; font-size: 14px; }
.itinerary-timeline { position: relative; padding-left: 24px; border-left: 2px solid #e5e7eb; }
.timeline-item { position: relative; padding-bottom: 16px; padding-left: 16px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { position: absolute; left: -31px; top: 4px; width: 12px; height: 12px; background: #fff; border: 3px solid #138EF2; border-radius: 50%; box-shadow: 0 0 0 3px rgba(19,142,242,0.1); }
.timeline-content { font-size: 14px; color: #374151; font-weight: 500; line-height: 1.5; }
.highlights-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.highlight-item { display: flex; align-items: center; gap: 8px; background: #f8fafc; border: 1px solid #e2e8f0; padding: 10px 12px; border-radius: 8px; font-size: 13px; font-weight: 500; color: #4b5563; transition: all 0.2s; }
.highlight-item:hover { background: #fff; border-color: #138EF2; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(19,142,242,0.1); }
.highlight-item i { color: #22c55e; font-size: 14px; flex-shrink: 0; }
.modal-footer-sticky {
  position: sticky;
  bottom: 0;
  background: #eef5ff;
  padding: 18px 24px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 10;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.06);
}
.price-info .label { font-size: 12px; color: #6b7280; margin: 0; font-weight: 500; }
.price-info .amount { font-size: 28px; font-weight: 800; color: #111; margin: 2px 0 0; letter-spacing: -0.5px; }
.action-buttons { display: flex; gap: 10px; }
.btn-pdf, .btn-book {
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  transition: all 0.25s;
  white-space: nowrap;
  min-height: 48px;
  cursor: pointer;
  border: none;
}
.modal-footer-sticky .btn-pdf,
.modal-footer-sticky .btn-book {
  background: #138EF2 !important;
  color: #ffffff !important;
  border: 2px solid #138EF2 !important;
  box-shadow: 0 4px 15px rgba(19, 142, 242, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.modal-footer-sticky .btn-pdf:hover,
.modal-footer-sticky .btn-book:hover {
  background: #ffffff !important;
  color: #138EF2 !important;
  border-color: #138EF2 !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(19, 142, 242, 0.4);
}
.modal-footer-sticky .btn-pdf:active,
.modal-footer-sticky .btn-book:active { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(19, 142, 242, 0.3); }
.modal-footer-sticky .btn-pdf i,
.modal-footer-sticky .btn-book i { color: #ffffff !important; transition: color 0.3s ease; font-size: 16px; }
.modal-footer-sticky .btn-pdf:hover i,
.modal-footer-sticky .btn-book:hover i { color: #138EF2 !important; }
.modal-booking-date { padding: 0 24px 16px; display: flex; flex-direction: column; gap: 8px; }
.modal-booking-date label { font-size: 13px; font-weight: 600; color: #4b5563; display: flex; align-items: center; gap: 6px; font-family: var(--primtext); }
.modal-booking-date label i { color: var(--colors); font-size: 14px; }
.custom-date-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-family: var(--primtext);
  font-size: 14px;
  color: #111;
  background: #fff;
  cursor: pointer; 
  transition: all 0.3s ease;
  outline: none;
}
.custom-date-input:focus { border-color: var(--colors); box-shadow: 0 0 0 3px rgba(19, 142, 242, 0.1); }
.custom-date-input::-webkit-calendar-picker-indicator { cursor: pointer; opacity: 0.6; transition: 0.2s; }
.custom-date-input::-webkit-calendar-picker-indicator:hover { opacity: 1; transform: scale(1.1); }
.price-info.model-bold-premium { background: #f8fafc; border: 1px solid #e2e8f0; border-left: 4px solid #138EF2; border-radius: 10px; padding: 16px 20px; text-align: left; }
.price-info.model-bold-premium .bold-header { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.price-info.model-bold-premium .bold-icon { color: #138EF2; font-size: 16px; }
.price-info.model-bold-premium .bold-label { font-size: 12px; font-weight: 700; color: #138EF2; text-transform: uppercase; letter-spacing: 0.5px; margin: 0; }
.price-info.model-bold-premium .bold-main { font-size: 18px; font-weight: 800; color: #111; margin: 0 0 4px; line-height: 1.3; }
.price-info.model-bold-premium .bold-sub { font-size: 13px; color: #6b7280; margin: 0; line-height: 1.4; }

@media (max-width: 768px) {
  .modal-booking-date { padding: 0 20px 12px; }
  .custom-date-input { padding: 14px 16px; font-size: 16px; }
  .price-info.model-bold-premium { padding: 14px 16px; }
  .price-info.model-bold-premium .bold-main { font-size: 16px; }
}
@media (max-width: 767px) {
  .modal-header-overlay { padding: 15px 20px !important; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%) !important; }
  .modal-header-overlay h2 { font-size: 20px !important; margin-bottom: 5px !important; }
  .quick-info-bar, .trust-badges, .modal-section, .modal-footer-sticky { padding-left: 20px; padding-right: 20px; }
  .highlights-grid { grid-template-columns: 1fr; }
  .modal-footer-sticky { flex-direction: column; align-items: stretch; gap: 12px; }
  .price-info { text-align: center; }
  .action-buttons { width: 100%; flex-direction: column; gap: 10px; }
  .btn-pdf, .btn-book { flex: 1; }
  .modal-footer-sticky .btn-pdf, .modal-footer-sticky .btn-book { padding: 14px 18px !important; font-size: 13px !important; }
  .package-modal .modal-content { max-width: 95%; overflow-x: hidden; }
  .package-modal .modal-section p, .package-modal .timeline-content, .package-modal .highlight-item, .package-modal .modal-header-overlay h2, .package-modal .modal-header-overlay .location { word-wrap: break-word; word-break: break-word; white-space: normal; }
  .package-modal .highlight-item { padding: 10px 12px; font-size: 13px; line-height: 1.4; }
  .package-modal .modal-header { width: 100%; max-width: 100%; }
  .package-modal .modal-section { padding: 18px 20px; }
  .package-modal .itinerary-timeline { padding-left: 20px; }
  .package-modal .timeline-item { padding-left: 12px; }
  .package-modal .fa-solid, .package-modal .fa-regular, .package-modal .fa-brands { flex-shrink: 0; }
  .package-modal .breakdown-item, .package-modal .route-info, .package-modal .info-pill { flex-wrap: wrap; gap: 6px; }
  .package-modal .modal-header-overlay h2 { font-size: 1.3rem !important; line-height: 1.3; }
  .package-modal .action-buttons { flex-direction: column; gap: 10px; }
  .package-modal .btn-pdf, .package-modal .btn-book { width: 100%; justify-content: center; }
}

/* ========================================
25. LIGHTBOX STYLES
======================================== */
#lb { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 9999999; align-items: center; justify-content: center; }
#lb.active { display: flex !important; }
#lb img { max-width: 95%; max-height: 90vh; object-fit: contain; border-radius: 8px; }
#lb .x {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: #138EF2;
  color: #fff;
  border: 0px solid #fff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
#lb .cap {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  background: rgba(0,0,0,0.7);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
}

/* ========================================
26. FOOTER PREMIUM
======================================== */
.footer-wave-premium { background: #fff; line-height: 0; margin-bottom: -1px; }
.footer-wave-premium svg { width: 100%; height: 60px; display: block; }
.footer-premium {
  background: #138EF2 !important;
  color: #fff !important;
  font-family: var(--primtext);
  position: relative;
  overflow: hidden;
}
.footer-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255,255,255,0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.footer-premium-main { padding: 80px 0 60px; position: relative; z-index: 1; }
.footer-premium-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.3fr; gap: 60px; align-items: start; }
.footer-col-premium { position: relative; }
.brand-identity { margin-bottom: 40px; }
.footer-logo-premium { max-width: 240px; height: auto; filter: brightness(0) invert(1); margin-bottom: 25px; display: block; transition: transform 0.3s ease; }
.footer-logo-premium:hover { transform: scale(1.05); }
.brand-tagline { color: rgba(255,255,255,0.9) !important; font-size: 17px; line-height: 1.7; margin: 0; max-width: 360px; font-weight: 400; }
.contact-grid-premium { display: flex; flex-direction: column; gap: 16px; margin-bottom: 35px; }
.contact-link-premium {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.contact-link-premium:hover { background: #fff !important; transform: translateX(5px); border-color: #fff; }
.contact-icon-wrap {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.contact-link-premium:hover .contact-icon-wrap { background: #111 !important; color: #fff !important; transform: rotate(360deg); }
.contact-link-premium:hover .contact-label,
.contact-link-premium:hover .contact-value { color: #111 !important; }
.contact-info { display: flex; flex-direction: column; gap: 3px; }
.contact-label { color: rgba(255,255,255,0.65) !important; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; transition: color 0.3s ease; }
.contact-value { color: #fff !important; font-size: 16px; font-weight: 700; transition: color 0.3s ease; }
.social-premium { display: flex; gap: 14px; }
.social-link-premium {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
}
.social-link-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
  z-index: 0;
}
.social-link-premium:hover::before { transform: scale(1); }
.social-link-premium:hover { color: #111 !important; border-color: #fff; transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.25); }
.social-link-premium i { position: relative; z-index: 1; }
.footer-title-premium { color: #fff !important; font-size: 18px; font-weight: 700; margin: 0 0 30px; text-transform: uppercase; letter-spacing: 1.5px; display: flex; align-items: center; gap: 12px; }
.title-accent { font-size: 14px; color: rgba(255,255,255,0.5) !important; font-weight: 700; opacity: 0.8; }
.nav-premium { display: flex; flex-direction: column; gap: 10px; }
.nav-link-premium {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  color: rgba(255,255,255,0.9) !important;
  text-decoration: none !important;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.nav-link-premium::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: #fff;
  transition: width 0.3s ease;
  z-index: 0;
}
.nav-link-premium:hover::before { width: 100%; }
.nav-link-premium:hover { color: #111 !important; padding-left: 22px; }
.nav-text { position: relative; z-index: 1; }
.nav-link-premium i { font-size: 14px; opacity: 0; transform: translateX(-10px); transition: all 0.3s ease; position: relative; z-index: 1; }
.nav-link-premium:hover i { opacity: 1; transform: translateX(0); color: #111 !important; }
.payment-premium { margin-bottom: 30px; }
.payment-heading { color: rgba(255,255,255,0.8) !important; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 18px; }
.payment-grid-premium { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.payment-item-premium {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 26px;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.payment-item-premium:hover { background: #fff !important; color: #111 !important; transform: translateY(-3px); border-color: #fff; box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.payment-item-premium.bank { font-size: 13px; font-weight: 700; letter-spacing: 0.5px; }
.cta-premium {
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.cta-content { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; }
.cta-icon {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 28px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
  animation: pulse-wa 2s infinite;
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 15px rgba(37,211,102,0.3); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
}
.cta-text h5 { color: #fff !important; font-size: 18px; font-weight: 700; margin: 0 0 5px; }
.cta-text p { color: rgba(255,255,255,0.8) !important; font-size: 15px; margin: 0; }
.cta-button-premium {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #25D366 !important;
  color: #fff !important;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
  position: relative;
  overflow: hidden;
}
.cta-button-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.cta-button-premium:hover::before { left: 100%; }
.cta-button-premium:hover { background: #fff !important; color: #111 !important; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.25); }
.cta-button-premium i { font-size: 18px; transition: transform 0.3s ease; }
.cta-button-premium:hover i { transform: translateX(4px); }
.footer-bottom-premium { background: rgba(0,0,0,0.15); padding: 24px 0; position: relative; z-index: 1; border-top: 1px solid rgba(255,255,255,0.1); }
.bottom-content-premium { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 15px; }
.copyright-premium { color: rgba(255,255,255,0.8) !important; font-size: 14px; margin: 0; font-weight: 400; text-align: center; width: 100%; }
.copyright-premium strong { color: #fff !important; font-weight: 700; }
.bottom-links-premium { display: flex; gap: 10px; align-items: center; }
.bottom-links-premium a { color: rgba(255,255,255,0.8) !important; text-decoration: none !important; font-size: 14px; transition: all 0.3s ease; font-weight: 500; padding: 4px 10px; border-radius: 6px; }
.bottom-links-premium a:hover { color: #111 !important; background: #fff; }
.bottom-links-premium .separator { color: rgba(255,255,255,0.3); font-size: 12px; }

@media (max-width: 991px) {
  .footer-premium-main { padding: 60px 0 45px; }
  .footer-premium-grid { grid-template-columns: 1fr 1fr; gap: 50px 40px; }
  .footer-col-premium:first-child { grid-column: 1 / -1; text-align: center; }
  .brand-identity { max-width: 550px; margin: 0 auto 35px; }
  .footer-logo-premium { margin: 0 auto 20px; }
  .brand-tagline { max-width: 100%; }
  .contact-grid-premium { max-width: 500px; margin: 0 auto 30px; }
  .social-premium { justify-content: center; }
  .footer-col-premium:last-child { grid-column: 1 / -1; max-width: 550px; margin: 0 auto; width: 100%; }
}
@media (max-width: 767px) {
  .footer-wave-premium svg { height: 45px; }
  .footer-premium-main { padding: 50px 0 35px; }
  .footer-premium-grid { grid-template-columns: 1fr; gap: 45px; text-align: center; }
  .footer-col-premium { text-align: center; }
  .brand-tagline { font-size: 15px; }
  .contact-link-premium { justify-content: center; }
  .footer-title-premium { justify-content: center; font-size: 16px; }
  .nav-link-premium { justify-content: center; gap: 10px; }
  .nav-link-premium i { display: none; }
  .payment-grid-premium { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .payment-item-premium { font-size: 22px; padding: 12px 0; }
  .payment-item-premium.bank { font-size: 11px; }
  .cta-premium { padding: 24px; }
  .cta-content { flex-direction: column; text-align: center; gap: 14px; }
  .cta-text h5 { font-size: 16px; }
  .cta-button-premium { padding: 14px 24px; font-size: 15px; }
  .bottom-content-premium { flex-direction: column; text-align: center; gap: 14px; }
  .bottom-links-premium { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 480px) {
  .footer-logo-premium { max-width: 180px; }
  .brand-tagline { font-size: 14px; }
  .contact-link-premium { padding: 10px 12px; }
  .contact-icon-wrap { width: 40px; height: 40px; font-size: 16px; }
  .contact-value { font-size: 14px; }
  .social-link-premium { width: 42px; height: 42px; font-size: 16px; }
  .payment-grid-premium { gap: 6px; }
  .payment-item-premium { font-size: 18px; padding: 10px 0; border-radius: 8px; }
  .payment-item-premium.bank { font-size: 10px; }
  .cta-icon { width: 50px; height: 50px; font-size: 24px; }
  .cta-text h5 { font-size: 15px; }
  .cta-text p { font-size: 13px; }
  .cta-button-premium { padding: 14px 20px; font-size: 14px; }
  .copyright-premium { font-size: 13px; }
  .bottom-links-premium a { font-size: 13px; }
}

/* ========================================
27. FAQ ACCORDION - PREMIUM STYLE
======================================== */
.faq-wrapper { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border-radius: 12px; overflow: hidden; transition: all 0.3s ease; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: #f9fafb;
  border: none;
  border-left: 4px solid #138EF2;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #138EF2;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--primtext);
  position: relative;
  gap: 15px;
}
.faq-question span { flex: 1; line-height: 1.5; }
.faq-question:hover { background: #eef6ff; color: #0d7dd8; padding-left: 26px; }
.faq-question:focus { outline: none; box-shadow: 0 0 0 3px rgba(19, 142, 242, 0.15); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); stroke: currentColor; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); background: #ffffff; will-change: max-height; }
.faq-answer-inner { padding: 20px 24px 24px; color: #4a5568; line-height: 1.7; font-size: 0.95rem; font-family: var(--primtext); border-top: 1px solid #f0f0f0; }
.faq-answer-inner p { margin: 0; }
.faq-item.active { box-shadow: 0 8px 25px rgba(19, 142, 242, 0.15); }
.faq-item.active .faq-question { background: #138EF2 !important; color: #ffffff !important; border-left: 4px solid #FFD700; padding-left: 22px; }
.faq-item.active .faq-question:hover { background: #0d7dd8 !important; color: #ffffff !important; }
.faq-item.active .faq-icon { transform: rotate(180deg); stroke: #ffffff !important; color: #ffffff !important; }
.faq-item.active .faq-answer { max-height: 500px; }
@media (max-width: 768px) {
  .faq-question { padding: 16px 18px; font-size: 0.95rem; }
  .faq-question:hover { padding-left: 22px; }
  .faq-answer-inner { padding: 16px 18px 20px; font-size: 0.9rem; }
  .faq-icon { width: 18px; height: 18px; }
}
@media (max-width: 480px) {
  .faq-question { padding: 14px 16px; font-size: 0.9rem; gap: 10px; }
  .faq-answer-inner { padding: 14px 16px 18px; font-size: 0.85rem; }
}

/* ========================================
28. PREMIUM TEXT SLIDE ANIMATIONS
======================================== */
.text-slide { opacity: 1; transform: translateY(0); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
html.anim-enabled .text-slide { opacity: 0; transform: translateY(25px); }
html.anim-enabled .text-slide.in-view { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
html.anim-enabled .slider-video .text .brand-name { opacity: 0; transform: translateY(30px); animation: heroFloat 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards; }
html.anim-enabled .slider-video .text h1,
html.anim-enabled .slider-video .text h2 { opacity: 0; transform: translateY(30px); animation: heroFloat 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards; }
html.anim-enabled .slider-video .text p { opacity: 0; transform: translateY(30px); animation: heroFloat 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards; }
html.anim-enabled .slider-video .text .btn { opacity: 0; transform: translateY(20px) scale(0.95); animation: heroBtnFloat 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards; }
@keyframes heroFloat { to { opacity: 1; transform: translateY(0); } }
@keyframes heroBtnFloat { to { opacity: 1; transform: translateY(0) scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .text-slide, .slider-video .text .brand-name, .slider-video .text h1, .slider-video .text h2, .slider-video .text p, .slider-video .text .btn {
    opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important;
  }
}

/* ========================================
29. PRELOADER
======================================== */
#preloader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #138EF2, #0a192f);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; }
.loader-logo { width: 280px; height: 280px; object-fit: contain; margin-bottom: 40px; filter: brightness(0) invert(1); animation: logo-pulse 1.5s ease-in-out infinite; }
@keyframes logo-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.05); opacity: 0.85; } }
.loader-bar { width: 300px; height: 3px; background: rgba(255,255,255,0.2); border-radius: 10px; overflow: hidden; }
.loader-fill { width: 0%; height: 100%; background: linear-gradient(90deg, #FFD700, #fff); animation: loading 1.5s ease forwards; }
@keyframes loading { to { width: 100%; } }
@media (max-width: 768px) { .loader-logo { width: 180px; height: 180px; margin-bottom: 30px; } }
@media (max-width: 480px) { .loader-logo { width: 140px; height: 140px; margin-bottom: 20px; } }

/* ========================================
30. SCROLL PROGRESS
======================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #138EF2, #FFD700);
  z-index: 99999;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(19, 142, 242, 0.5);
}

/* ========================================
31. STATS SECTION
======================================== */
.stat-card-v1 {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 35px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}
.stat-card-v1:hover { transform: translateY(-10px); background: rgba(255,255,255,0.15); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.stat-icon-v1 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fff, #fff);
  color: #138EF2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}
.stat-card-v1:hover .stat-icon-v1 { transform: rotateY(360deg) scale(1.1); }
.stat-number-v1 { font-size: 48px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 10px; font-family: var(--primtext); text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.stat-label-v1 { font-size: 14px; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
@media (max-width: 768px) {
  .stat-card-v1 { padding: 25px 15px; }
  .stat-icon-v1 { width: 60px; height: 60px; font-size: 24px; }
  .stat-number-v1 { font-size: 36px; }
  .stat-label-v1 { font-size: 12px; }
}

/* ========================================
32. LANGUAGE & CURRENCY SWITCHER STYLES
======================================== */
.lang-dropdown, .currency-dropdown { position: relative; display: inline-block; }
.lang-toggle, .currency-toggle {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  font-family: var(--primtext);
}
.lang-toggle:hover, .currency-toggle:hover { background: rgba(255, 255, 255, 0.25); }
.lang-menu, .currency-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  overflow: hidden;
}
.lang-dropdown.active .lang-menu, .currency-dropdown.active .currency-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-item, .currency-item { display: flex; align-items: center; gap: 10px; padding: 10px 16px; color: #333; text-decoration: none; font-size: 14px; font-weight: 500; transition: all 0.2s ease; cursor: pointer; font-family: var(--primtext); }
.lang-item:hover, .currency-item:hover { background: #f0f6ff; color: #138EF2; }
.lang-item.active, .currency-item.active { background: #138EF2; color: #fff; }
.lang-item .flag, .currency-item .flag { font-size: 16px; }
html.sticky-header-active .lang-toggle, html.sticky-header-active .currency-toggle { background: rgba(19, 142, 242, 0.1); border-color: rgba(19, 142, 242, 0.2); color: #1a1a1a; }
html.sticky-header-active .lang-toggle:hover, html.sticky-header-active .currency-toggle:hover { background: rgba(19, 142, 242, 0.2); }
@media (max-width: 768px) {
  .lang-toggle, .currency-toggle { padding: 5px 10px; font-size: 12px; }
  .lang-menu, .currency-menu { right: -10px; min-width: 130px; }
}

/* ========================================
33. FIX: IOS AUTO-ZOOM & TOUCH TARGETS
======================================== */
@media (max-width: 768px) {
  .transfer-select, .custom-date-input, input[type="number"], select { font-size: 16px !important; min-height: 48px; }
  .package-modal { padding: 10px 10px calc(10px + env(safe-area-inset-bottom)) 10px !important; }
  .modal-footer-sticky { padding-bottom: calc(18px + env(safe-area-inset-bottom)) !important; }
  .header-switchers-wrapper .lang-toggle, .header-switchers-wrapper .currency-toggle { min-height: 44px; padding: 0 12px !important; }
}

/* ========================================
34. GLOBAL FONT CONSISTENCY & SAFETY NET
======================================== */
body, .package-modal .btn-pdf, .package-modal .btn-book { font-family: var(--primtext) !important; }
.price-info .label.flexible { color: #138EF2 !important; font-weight: 700 !important; font-size: 13px !important; text-transform: uppercase; letter-spacing: 0.5px; }
.price-info .amount.flexible-text { font-size: 16px !important; font-weight: 600 !important; color: #111 !important; line-height: 1.4 !important; letter-spacing: 0 !important; }

/* ========================================
35. CURRENCY APPROX & ADDITIONAL CURRENCY DROPDOWN TWEAKS
======================================== */
.total-amount-wrapper { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.total-amount-approx { font-size: 1.5rem; opacity: 0.95; font-weight: 500; background: rgba(255,255,255,0.15); padding: 4px 12px; border-radius: 20px; display: inline-block; }
@media (max-width: 767px) { .total-amount-approx { font-size: 1rem; } }

/* Tambahan margin agar currency dropdown terpisah rapi dari language switcher */
.currency-dropdown { margin-left: 12px; }

/* ========================================
GALLERY APPLE - OPTIMASI RINGAN + ANIMASI
======================================== */
.gallery-apple { padding: 5rem 0; background: #fff; overflow: hidden; }
.apple-gallery-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.apple-track {
  display: flex;
  align-items: center;
  gap: 15px;
  width: max-content;
  animation: appleMove 60s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}
.apple-gallery-wrapper:hover .apple-track { animation-play-state: paused; }
.apple-card {
  width: 400px;
  aspect-ratio: 4/3;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  transform: translateZ(0);
}
.apple-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.1);
  transition: filter 0.3s ease, transform 0.5s ease;
}
.apple-card:hover img { filter: brightness(1) saturate(1.2); transform: scale(1.05); }
.apple-card::before { display: none; }
.apple-card span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 16px;
  background: rgba(0,0,0,0.5);
  border-radius: 50px;
  font-family: var(--primtext);
  transition: all 0.2s ease;
}
.apple-card:hover span { background: rgba(0,0,0,0.7); transform: translateY(-2px); }

@media (max-width: 768px) {
  .gallery-apple { padding: 2rem 0; }
  .apple-card { width: 260px; }
  .apple-card span { font-size: 14px; padding: 4px 10px; left: 12px; bottom: 12px; }
  .apple-card:hover img { transform: scale(1.02); }
}
@media (max-width: 480px) {
  .apple-card { width: 220px; }
  .apple-card span { font-size: 12px; }
}
@keyframes appleMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .apple-track { animation: none !important; } }

/* ========================================
FIX: SCROLL TO TOP BUTTON UNTUK MOBILE
======================================== */
@media (max-width: 768px) {
  #scrollToTopBtn {
    display: flex !important;
    bottom: 70px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #138EF2;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 9999;
  }
  #scrollToTopBtn:hover { background-color: #FFD700; }
  .scroll-to-top, a.scroll-to-top, .porto-scrolltop, #scroll-top { display: none !important; }
}

/* ========================================
MEMPERKECIL UKURAN CARD (PAKET & ITINERARY)
======================================== */
.product .card, .car-prod .card { max-width: 500px; width: 100%; margin-left: auto; margin-right: auto; }
@media (min-width: 992px) {
  .product .col-lg-4, .car-prod .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
}
@media (max-width: 991px) and (min-width: 768px) {
  .product .card, .car-prod .card { max-width: 230px; }
}
@media (max-width: 767px) {
  .product .card, .car-prod .card { max-width: 90%; }
}
