:root {
  --secondary: #2E2E2C;
  --primary: #DB9D51;
  --cream: #F9FAC7;
  --bg: #f5f1e6;
  --text: #173126;
  --muted: #647067;
  --card: #ffffff;
  --shadow: 0 20px 50px rgba(46, 46, 44, .12);
  --radius: 24px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  color: var(--text)
}

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

img,
video {
  max-width: 100%;
  display: block
}

.container {
  width: min(1500px, calc(100% - 32px));
  margin: auto
}

.sticky-side {
  height: max-content;
  position: sticky;
  top: 100px;
}

.site-header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 20;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(180deg, #ffffff 7.5%, rgba(255, 255, 255, 0.66) 65%, rgba(255, 255, 255, 0) 100%);
}

.eyetitle {
  font-size: 3em;
}

.nav-wrap {
  display: flex;
  align-items: center;
  padding: 14px 16px 30px 16px;
  gap: 16px
}

.wrap-logo {
  flex: 1;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100px;
  height: 60px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 20px;
  background: var(--secondary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  animation: livePulse 2s infinite ease-in-out;
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 46, 44, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(46, 46, 44, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(46, 46, 44, 0);
  }
}

.brand small {
  display: block;
  color: var(--muted)
}

.nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: center
}

.nav a {
  position: relative;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.5s ease;
}

.nav a.active,
.nav a:hover {
  color: var(--primary);
}

.nav a:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  opacity: 0;
  transition: all 0.3s ease;
}

.nav a.active:before,
.nav a:hover:before {
  opacity: 1;
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(46, 46, 44, .12);
  border-radius: 14px;
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  place-items: center;
  overflow: hidden
}

.hero-video video,
.hero-video .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.hero-video video {
  object-fit: cover;
  filter: saturate(.95) contrast(.95)
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(46, 46, 44, .30), rgba(46, 46, 44, .78))
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
  padding: 72px 0
}

.hero-copy {
  color: #fff
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--primary);
}

.hero h1,
.section h2 {
  margin: .35rem 0 1rem;
  line-height: 1.05
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  max-width: 10ch
}

.hero p {
  font-size: 1.05rem;
  max-width: 100%;
  color: #000;
}

.hero-copy .text-sapo {
  color: #fff;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px
}

.glass,
.card,
.panel,
.sidebar,
.admin-card {
  background: rgba(255, 255, 255, .84);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .45);
  box-shadow: var(--shadow);
  border-radius: var(--radius)
}

.search-card {
  padding: 24px
}

.search-card h2 {
  margin-top: 0
}

.search-grid {
  display: grid;
  gap: 12px
}

#priceRange {
  width: 100%;
  height: 0px;
  padding: 0px;
}

.search-grid select,
.search-grid button,
.search-grid input,
.search-grid textarea {
  width: auto;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(46, 46, 44, .14);
  font: inherit;
  background: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 16px;
  padding: 14px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .25s ease, filter .25s ease
}

.btn:hover {
  transform: translateY(-1px)
}

.btn-primary {
  background: var(--primary) !important;
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .24)
}

.section {
  padding: 80px 0
}

.alt-bg {
  background: linear-gradient(180deg, rgba(46, 46, 44, .05), transparent)
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 3rem)
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px
}

/* Clean Smooth Swiper Slider for Bikes */
.bike-swiper {
  width: 100%;
  padding-top: 16px;
  padding-bottom: 60px;
}

.bike-swiper .swiper-slide {
  width: 320px;
  height: auto;
  /* Allow the card itself to handle hover effects */
}

.bike-swiper .swiper-button-next,
.bike-swiper .swiper-button-prev {
  color: var(--secondary);
  background: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  top: 45%;
}

.bike-swiper .swiper-button-next:after,
.bike-swiper .swiper-button-prev:after {
  font-size: 1.2rem;
  font-weight: 800;
}

.bike-swiper .swiper-button-disabled {
  opacity: 0;
}

.bike-swiper .swiper-pagination-bullet-active {
  background: var(--secondary);
}

@media (max-width: 600px) {
  .bike-swiper .swiper-slide {
    width: 85%;
  }
}

/* Premium Swiper Slider */
.tour-swiper,
.province-swiper {
  width: 100%;
  padding-top: 16px;
  padding-bottom: 60px;
}

.tour-swiper .swiper-slide,
.province-swiper .swiper-slide {
  width: 360px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary) !important;
  background: rgba(255, 255, 255, 0.85);
  width: 52px !important;
  height: 52px !important;
  border-radius: 50%;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px !important;
  font-weight: 800;
}

.swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

.province-card,
.tour-card,
.bike-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 500px;
  background: var(--secondary);
  color: #fff;
  box-shadow: var(--shadow);
}

.province-card,
.bike-card,
.cards-grid .tour-card {
  transition: transform .3s ease;
}

.province-card:hover,
.bike-card:hover,
.cards-grid .tour-card:hover {
  transform: translateY(-6px)
}

.province-card img,
.tour-card img,
.bike-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform .35s ease
}

.province-card:hover img,
.tour-card:hover img,
.bike-card:hover img {
  transform: scale(1.06)
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 18, 13, 0) 30%, rgba(7, 18, 13, 0.75) 75%, rgba(7, 18, 13, 0.95) 100%);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}

.card-overlay h3 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  line-height: 1.35;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-overlay p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 16px;
  line-height: 1.5;
  overflow-y: auto;
  max-height: 184px;
  position: relative;
  padding-right: 10px;
  margin-bottom: 0;
}

.card-overlay p {
  @-moz-document url-prefix() {
    scrollbar-width: thin;
  }

  &::-webkit-scrollbar {
    width: 2px;
  }

  &::-webkit-scrollbar-thumb {
    border-radius: 99px;
    background: var(--nn, #e5e5e5);
  }
}



.hero--home {
  display: flex;
  flex-direction: column;
}

.title--home {
  width: 100%;
  max-width: 100% !important;
}

.hero--home .search-card {
  width: 100%;
}

.badge {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  width: max-content;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgb(255 0 0 / 61%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  z-index: 3;
}

.cards-grid .tour-card .card-overlay {
  gap: 10px
}

.price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#bookingPanel {
  box-shadow: none;
  padding: 0;
}

.tour-card .btn-primary,
.bike-card .btn-primary {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  border-radius: 16px;
  background: var(--primary) !important;
  color: #fff;
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.4);
  transition: all 0.3s ease;
}

.tour-card .btn-primary:hover,
.bike-card .btn-primary:hover {
  background: #f59e0b !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(217, 119, 6, 0.6);
}

.muted {
  color: var(--muted)
}

.rental-highlight {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: linear-gradient(135deg, var(--secondary) 0%, #1a1a19 100%);
  color: #fff;
  padding: 56px;
  border-radius: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.rental-highlight h2 {
  color: #fff;
}

.rental-highlight .eyebrow {
  color: var(--primary);
}

.rental-highlight p {
  color: rgba(255, 255, 255, 0.85);
}

.check-list {
  padding-left: 0;
  line-height: 1.9;
  list-style: none;
  margin-bottom: 32px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-list li::before {
  content: "✔";
  color: var(--primary);
  font-weight: 800;
}

.bike-sneakpeek {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  position: relative;
  z-index: 2;
}

.bike-sneakpeek .mini {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  transition: all 0.3s ease;
  cursor: pointer;
  color: #fff;
}

.bike-sneakpeek .mini:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
  border-color: var(--primary);
}

.bike-sneakpeek img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 16px;
}

.bike-info {
  flex: 1;
}

.bike-info strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.bike-price {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.05rem;
  margin-top: 4px;
}

.bike-arrow {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.bike-sneakpeek .mini:hover .bike-arrow {
  color: var(--primary);
}

.site-footer {
  padding: 28px 0;
  color: var(--text);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap
}

.layout-2col {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px
}

.sidebar,
.panel {
  padding: 20px
}

.filter-group {
  margin-bottom: 18px
}

.filter-group label {
  display: flex;
  margin: .35rem 0;
  align-items: center;
  justify-content: space-between;
}

.tour-detail-layout {
  display: grid;
  grid-template-columns: 1.7fr .9fr;
  gap: 24px;
  align-items: start
}

.sticky {
  position: sticky;
  top: 92px
}

.slider {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow)
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .4s ease
}

.slider img.active {
  opacity: 1
}

.slider-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 12px
}

/* New Itinerary Section */
.yen-itinerary-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Tour Content Wrapper */
.hgl-tour-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
  border-top: 1px solid #d9d9d9;
}

.hgl-tour-itinerary-section,
.hgl-tour-included-section {
  width: 100%;
}

@media (min-width: 992px) {
  .hgl-tour-content-wrapper {
    flex-direction: row;
    align-items: flex-start;
  }

  .hgl-tour-itinerary-section {
    min-width: 0;
  }

  .hgl-tour-included-section {
    min-width: 0;
  }

  #includedSection {
    position: sticky;
    top: 70px;
  }
}

.hgl-note-spacing {
  margin-top: 16px;
}

/* Included Section */
.hgl-included-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .hgl-included-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hgl-included-box {
  background: #f9fdfa;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 16px;
}

.hgl-included-box.excluded-box {
  background: #f9fafb;
  border-color: #e5e7eb;
}

.hgl-box-title {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.hgl-included-box:not(.excluded-box) .hgl-box-title {
  color: #10b981;
}

.excluded-box .hgl-box-title {
  color: #1f2937;
}

.hgl-included-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.hgl-included-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 16px 0;
  border-bottom: 1px dashed #e5e7eb;
}

.hgl-included-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hgl-included-list svg {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}

.excluded-list svg {
  color: #9ca3af;
}

.lt-note {
  background: #f4f6fb;
  border: 1px solid #e5e7eb;
  padding: 16px;
  border-radius: 8px;
}

.lt-note p {
  margin: 0;
  color: #1f2937;
  font-size: 0.95rem;
  line-height: 1.6;
}

.yen-itinerary-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
  overflow: hidden;
}

.yen-itinerary-toggle {
  width: 100%;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.yen-itinerary-toggle-left {
  display: flex;
  align-items: center;
}

.yen-itinerary-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(132, 197, 238, 0.1);
  color: #173126;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin-right: 16px;
  flex-shrink: 0;
}

.yen-itinerary-title-wrap {
  display: flex;
  flex-direction: column;
}

.yen-itinerary-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #173126;
  margin-bottom: 8px;
}

.yen-itinerary-subtitle {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
}

.yen-itinerary-chevron {
  color: #9ca3af;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.yen-itinerary-item.active .yen-itinerary-chevron {
  transform: rotate(180deg);
}

.yen-itinerary-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.yen-itinerary-content-inner {
  padding: 0 16px 20px 16px;
  padding-left: 71px;
  color: #000;
  line-height: 1.6;
}

.yen-itinerary-content-inner b {
  font-weight: 700;
}

.yen-itinerary-content-inner p {
  margin: 0;
}

.yen-itinerary-item.active .yen-itinerary-content {
  max-height: 100%;
}

.form-total {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary)
}

.radio-list label {
  display: block;
  padding: 12px 14px;
  border: 1px solid rgba(46, 46, 44, .12);
  border-radius: 14px;
  margin-bottom: 10px;
  cursor: pointer
}

.radio-list input {
  width: auto;
  margin-right: 8px
}

.admin-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  background: #f3efe3
}

.admin-sidebar {
  padding: 24px;
  background: var(--secondary);
  color: #fff
}

.admin-sidebar a {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  margin-bottom: 10px
}

.admin-sidebar a.active,
.admin-sidebar a:hover {
  background: rgba(255, 255, 255, .12)
}

.admin-main {
  padding: 24px
}

.tab {
  display: none
}

.tab.active {
  display: block
}

.widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 20px
}

.widget {
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow)
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.table th,
.table td {
  padding: 14px;
  border-bottom: 1px solid rgba(46, 46, 44, .08);
  text-align: left
}

.badge-status {
  padding: 8px 10px;
  border-radius: 999px;
  cursor: pointer
}

.status-yellow {
  background: #fef3c7
}

.status-blue {
  background: #dbeafe
}

.status-green {
  background: #dcfce7
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 18, .56);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 30;
}

.modal.active {
  display: flex
}

.modal-box {
  width: min(760px, 100%);
  background: #fff;
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.detail-pan strong {
  color: var(--primary);
  font-size: 18px;
  text-decoration-line: underline;
}

.detail-pan h2 {
  font-size: 32px;
}

.detail-pan .title-tt {
  font-size: 24px;
  color: var(--primary);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(46, 46, 44, .14);
  font: inherit;
  background: #fff;
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: 2px solid var(--primary);
  border-color: transparent;
}

@media (max-width: 960px) {
  .detail-pan strong {
    font-size: 18px;
  }

  .eyetitle {
    font-size: 2em;
  }

  .bike-form-grid-2 {
    grid-template-columns: 1fr !important;
  }

  .hero-content,
  .rental-highlight,
  .layout-2col,
  .tour-detail-layout,
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .sticky {
    position: static
  }

  .nav-wrap {
    gap: 10px;
    flex-direction: row;
    align-items: center;
    padding: 5px 16px;
  }
}

@media (max-width: 768px) {
  .site-header {
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(180deg, #ffffff 7.5%, rgba(255, 255, 255, 0.66) 90%, rgba(255, 255, 255, 0) 100%);
  }

  .slider-controls {
    flex-direction: column;
    gap: 12px;
  }

  .tour-detail-section {
    padding-top: 0px !important;
  }

  .detail-pan h2 {
    font-size: 26px;
    margin-top: 12px;
  }

  .detail-pan {
    padding: 0px !important;
    border-radius: 0 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .detail-pan .slider {
    border-radius: 0 !important;
    width: calc(100% + 20px);
    margin-left: -10px;
  }

  .detail-pan .slider {
    aspect-ratio: 10 / 9 !important;
  }

  .lang-switcher {
    gap: 4px !important;
    order: 0 !important;
  }

  .lang-btn {
    padding: 3px 5px !important;
    font-size: 13px !important;
  }

  .nav-toggle {
    width: 34px;
    height: 34px;
    display: flex
  }

  .nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 16px;
    right: 16px;
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch
  }

  .nav.open {
    display: flex;
    gap: 0px;
  }

  .nav a {
    padding: 10px 0px;
  }

  .nav a:before {
    bottom: 0px;
  }

  .hero {
    min-height: auto
  }

  .hero-copy .text-sapo {
    overflow-y: auto;
    max-height: 200px;
    position: relative;
    padding-right: 10px;
  }

  .hero-copy .text-sapo {
    @-moz-document url-prefix() {
      scrollbar-width: thin;
    }

    &::-webkit-scrollbar {
      width: 2px;
    }

    &::-webkit-scrollbar-thumb {
      border-radius: 99px;
      background: var(--nn, #e5e5e5);
    }
  }

  .hero-copy--elementor {
    max-width: 100% !important;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 42px 0;
    gap: 18px
  }

  .hero-copy h1 {
    max-width: 12ch
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr
  }

  .search-card {
    padding: 18px
  }

  .section {
    padding: 30px 0
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start
  }

  .cards-grid {
    grid-template-columns: 1fr
  }

  .btn-ghost {
    background: rgba(255, 255, 255, .12)
  }

  .footer-grid {
    flex-direction: column
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 20px, 1180px)
  }

  .brand-text small {
    display: none
  }

  .brand-mark {
    width: 40px;
    height: 40px
  }

  .hero h1 {
    font-size: 2.2rem
  }

  .hero p {
    font-size: .98rem
  }

  .hero-actions {
    grid-template-columns: 1fr
  }

  .search-grid select,
  .search-grid button,
  input,
  textarea {
    padding: 13px 14px
  }

  .card-overlay {
    padding: 18px
  }

  .bike-sneakpeek .mini {
    flex-direction: column;
    align-items: flex-start
  }

  .grid-2 {
    grid-template-columns: 1fr
  }
}

/* About Page & Masonry Gallery */
.masonry-gallery {
  column-count: 3;
  column-gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px 20px;
  background: linear-gradient(to top, rgba(15, 23, 18, 0.9), transparent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .masonry-gallery {
    column-count: 2;
  }
}

@media (max-width: 768px) {
  .about-services-section {
    padding: 20px 0 !important;
  }

  .yen-itinerary-content-inner {
    padding-left: 16px;
  }

  .about-section-title {
    font-size: 1.8rem !important;
  }

  .gallery-caption {
    position: static;
    opacity: 1;
    transform: none;
    padding: 16px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    font-size: 0.9rem;
    background: #5a8a72;
  }

  .gallery-item img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .gallery-item {
    background: #111;
  }
}

@media (max-width: 600px) {
  .masonry-gallery {
    column-count: 1;
  }
}

/* About Page Refactored Styles */
.about-page {}

.animate-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.about-hero-glass {
  background: #2E2E2C;
  border-radius: 10px;
  padding: 60px 40px;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gallery-item {
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.gallery-item:hover {
  transform: translateY(-15px) scale(1.03) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5) !important;
  z-index: 2;
}

.about-hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url(../images/bg-focus.png) no-repeat;
  background-size: contain;
  border-top: 2px solid #2E2E2C;
  background-attachment: fixed;
}

.about-hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.about-hero-container {
  z-index: 1;
  padding: 80px;
}

.about-eyebrow {
  color: #ffaa48;
  display: block;
  margin-bottom: 16px;
  letter-spacing: 0.2em;
}

.about-h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 24px;
  font-weight: 800;
  line-height: 1.1;
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.about-sapo {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  overflow-y: auto;
  max-height: 300px;
  position: relative;
  padding-right: 10px;
}

.about-sapo {
  @-moz-document url-prefix() {
    scrollbar-width: thin;
  }

  &::-webkit-scrollbar {
    width: 2px;
  }

  &::-webkit-scrollbar-thumb {
    border-radius: 99px;
    background: var(--nn, #e5e5e5);
  }
}

.about-gallery-section {
  padding: 100px 0;
  background: url(../images/bg-focus.png) no-repeat;
  background-size: contain;
  border-top: 2px solid #2E2E2C;
  border-bottom: 2px solid #2E2E2C;
  background-attachment: fixed;
}

.about-gallery-heading {
  text-align: center;
  margin-bottom: 60px;
}

.about-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 12px;
  color: #2E2E2C;
}

.about-gallery-desc {
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 16px auto 0;
  font-size: 1.1rem;
  color: #2E2E2C;
}

.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

/* Lightbox popup styles */
.lb-overlay {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  backdrop-filter: blur(8px);
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lb-img {
  max-width: 90%;
  max-height: 75vh;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  object-fit: contain;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lb-caption {
  color: #fff;
  margin-top: 20px;
  font-size: 1.15rem;
  text-align: center;
  max-width: 80%;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.lb-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 300;
  cursor: pointer;
}

/* ===================================================================
   YEN-STYLE REDESIGN — Clean, light, pastel aesthetic
   =================================================================== */

/* --- Section Title (Coral/Salmon italic style like yenecotravel) --- */
.yen-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #2E2E2C;
  font-style: italic;
  margin: 0 0 8px;
  line-height: 1.2;
}

.yen-section-sub {
  color: var(--primary);
  font-size: 1.05rem;
  margin: 0 0 40px;
  font-weight: 600;
}

.yen-center {
  text-align: center;
  margin-top: 40px;
}

.yen-center-text {
  text-align: center;
}

/* --- Outline Button (yen style) --- */
.btn-outline-yen {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 2px solid var(--secondary);
  border-radius: 999px;
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.95rem;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline-yen:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 46, 44, 0.2);
}

/* ===================================================================
   ABOUT SECTION
   =================================================================== */
.yen-about-section {
  background: #fff;
}

.yen-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.yen-about-subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 20px;
}

.yen-about-desc {
  font-size: 1.02rem;
  line-height: 1.85;
  color: #4a5568;
  margin: 0 0 16px;
}

.yen-about-text .btn-outline-yen {
  margin-top: 12px;
}

.yen-about-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.yen-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.5s ease;
}

.yen-about-image:hover img {
  transform: scale(1.04);
}

/* ===================================================================
   FEATURED TOURS — White Card Grid (yenecotravel style)
   =================================================================== */
.yen-tours-section {
  background: url(../images/bg-focus.png) no-repeat #202020;
  background-size: cover;
  border-top: 2px solid #2E2E2C;
  border-bottom: 2px solid #2E2E2C;
  background-attachment: fixed;
}

.yen-tours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.yen-tour-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.yen-tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.13);
}

.yen-tour-card-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.yen-tour-card-img-wrap {
  overflow: hidden;
  position: relative;
}

.yen-tour-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.yen-tour-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 10px;
  line-height: 1.35;
}

.yen-tour-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  color: #2E2E2C;
  font-size: 0.88rem;
  margin-bottom: 16px;
  align-items: center;
}

.yen-tour-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.yen-tour-card-meta svg {
  flex-shrink: 0;
}

.yen-tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.yen-tour-card-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: #DB9D51;
}

.yen-tour-card-btn {
  padding: 10px 22px;
  border-radius: 999px;
  background: #DB9D51;
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.yen-tour-card-btn:hover {
  background: #db9c4e;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 129, 107, 0.4);
}

.yen-tour-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 700;
  z-index: 2;
}

/* ===================================================================
   EXPLORE BY DESTINATION (Refined)
   =================================================================== */
.yen-dest-section {
  background: #fff;
}

/* ===================================================================
   MOTORBIKE RENTAL — White Card Grid (yenecotravel style)
   =================================================================== */
.yen-bike-section {
  background: url(../images/bg-focus.png) no-repeat #202020;
  background-size: cover;
  border-top: 2px solid #2E2E2C;
  border-bottom: 2px solid #2E2E2C;
  background-attachment: fixed;
}

.yen-bike-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.yen-bike-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.yen-bike-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.13);
}

.yen-bike-card-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 220px;
  overflow: hidden;
}

.yen-bike-card-img {
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

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

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

.yen-bike-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 0 0 8px;
}

.yen-bike-card-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 14px;
}

.yen-bike-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 16px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.yen-bike-card-specs span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.yen-bike-card-price {
  margin-top: auto;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
}

.yen-bike-card-price small {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.yen-bike-status {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 12px;
  width: fit-content;
}

.yen-bike-status.available {
  background: #dcfce7;
  color: #166534;
}

.yen-bike-status.rented {
  background: #fef3c7;
  color: #92400e;
}

/* ===================================================================
   TRAVEL WITH ANTRAVEL — Values Box
   =================================================================== */
.yen-travel-section {
  background: #fff;
}

.yen-travel-box {
  max-width: 900px;
  margin: 0 auto;
  border: 2px solid var(--secondary);
  border-radius: 32px;
  padding: 60px 48px;
  text-align: center;
}

.yen-travel-icon {
  margin-bottom: 16px;
}

.yen-travel-icon svg {
  opacity: 0.7;
}

.yen-travel-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px;
}

.yen-travel-subtitle {
  font-size: 1.05rem;
  color: var(--primary);
  margin: 0 0 20px;
}

.yen-travel-desc {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.85;
  color: #2E2E2C;
  max-width: 700px;
  margin: 0 auto 40px;
}

.yen-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.yen-value-item {
  text-align: center;
}

.yen-value-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.yen-value-eco {
  background: #dcfce7;
  color: #166534;
}

.yen-value-safe {
  background: #dbeafe;
  color: #1e40af;
}

.yen-value-community {
  background: #fce7f3;
  color: #be185d;
}

.yen-value-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px;
}

.yen-value-item p {
  font-size: 0.9rem;
  color: #2E2E2C;
  line-height: 1.6;
  margin: 0;
}

/* ===================================================================
   FAQ SECTION — Clean Accordion
   =================================================================== */
.yen-faq-section {
  background: url(../images/bg-focus.png) no-repeat;
  background-size: cover;
  border-top: 2px solid #2E2E2C;
  border-bottom: 2px solid #2E2E2C;
  background-attachment: fixed;
}

.yen-faq-list {
  max-width: 900px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.yen-faq-item {
  border: 1px solid #d1d5db;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.yen-faq-item:hover {
  border-color: #9ca3af;
}

.yen-faq-item.active {
  border-color: var(--secondary);
  box-shadow: 0 4px 16px rgba(46, 46, 44, 0.08);
}

.yen-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 16px;
  transition: color 0.3s ease;
}

.yen-faq-question:hover {
  color: var(--secondary);
}

.yen-faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}

.yen-faq-item.active .yen-faq-icon {
  transform: rotate(45deg);
  color: var(--secondary);
}

.yen-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
}

.yen-faq-item.active .yen-faq-answer {
  max-height: 300px;
  padding: 0 28px 24px;
}

.yen-faq-answer p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #4a5568;
  margin: 0;
}

/* ===================================================================
   RESPONSIVE — New Sections
   =================================================================== */
@media (max-width: 960px) {
  .about-hero-container {
    z-index: 1;
    padding: 30px 0;
  }

  .about-hero-glass {
    max-width: 100%;
  }

  .yen-about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .yen-about-image {
    order: -1;
  }

  .yen-tours-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .yen-bike-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .yen-travel-box {
    padding: 40px 28px;
  }

  .yen-values-grid {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .btn-book-now {
    padding: 10px 25px !important;
  }

  .yen-tours-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .yen-bike-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .yen-travel-box {
    padding: 32px 20px;
    border-radius: 24px;
  }

  .yen-faq-question {
    padding: 16px 20px;
    font-size: 0.95rem;
  }

  .yen-faq-answer {
    padding: 0 20px;
  }

  .yen-faq-item.active .yen-faq-answer {
    padding: 0 20px 20px;
  }

  .yen-section-title {
    font-size: 1.6rem;
  }

  .yen-about-desc {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .yen-tour-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .yen-tour-card-btn {
    width: 100%;
    text-align: center;
  }

  .yen-about-grid {
    gap: 24px;
  }

  .yen-about-image img {
    aspect-ratio: 16 / 9;
  }

  .yen-travel-box {
    padding: 28px 16px;
  }

  .yen-value-icon {
    width: 60px;
    height: 60px;
  }

  .yen-faq-question {
    font-size: 0.9rem;
    padding: 14px 16px;
  }
}

/* ===================================================================
   TOURS PAGE — YenEcoTravel-inspired Layout
   =================================================================== */

/* --- Tours Hero Header --- */
.yen-tours-hero {
  background: var(--primary);
  padding: 100px 0 48px;
  border-bottom: 1px solid #d1ddd6;
}

.yen-tours-hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #2E2E2C;
  font-style: italic;
  margin: 0 0 8px;
}

.yen-tours-hero-sub {
  font-size: 1.1rem;
  color: #2E2E2C;
  margin: 0;
}

/* --- Tours Layout (Sidebar + Grid) --- */
.yen-tours-content {
  padding: 48px 0 80px;
  background: url(../images/bg-focus.png) no-repeat #202020;
  background-size: cover;
  border-top: 2px solid #2E2E2C;
  background-attachment: fixed;
}

.yen-tours-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
}

/* --- Sidebar Filters --- */
.yen-tours-sidebar {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 2px solid rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 90px;
}

.yen-sidebar-close {
  display: none;
}

.yen-filter-group {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}

.yen-filter-group:last-of-type {
  border-bottom: none;
  margin-bottom: 16px;
  padding-bottom: 0;
}

.yen-filter-title {
  font-size: 1rem;
  font-weight: 700;
  color: #2E2E2C;
  margin: 0 0 14px;
}

.yen-filter-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
  transition: color 0.2s;
}

.yen-filter-item:hover {
  color: var(--secondary);
}

.yen-filter-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--secondary);
  cursor: pointer;
}

.yen-clear-filters {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.yen-clear-filters:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  background: #f0faf5;
}

/* --- Tours Main Grid --- */
.yen-tours-main {
  min-width: 0;
}

.yen-filter-toggle {
  display: none;
}

.yen-tours-content .yen-tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* --- Price Badge on Card Image (tours page specific) --- */
.yen-tour-card-price-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 800;
  z-index: 2;
}

/* --- BOOK NOW Full Width Button (tours page card) --- */
.yen-tour-card-book {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: var(--primary);
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: auto;
  transition: all 0.3s ease;
}

.yen-tour-card-book:hover {
  background: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(90, 138, 114, 0.4);
}

/* --- No Result Text --- */
.yen-no-result {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  font-size: 1.1rem;
}

/* --- Tours Page Responsive --- */
@media (max-width: 1100px) {
  .yen-tours-content .yen-tours-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 960px) {
  .yen-tours-layout {
    grid-template-columns: 1fr;
  }

  .yen-tours-sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
  }

  .yen-tours-sidebar.open {
    display: flex;
    justify-content: flex-end;
  }

  .yen-tours-sidebar.open::before {
    content: '';
    position: absolute;
    inset: 0;
  }

  .yen-tours-sidebar>*:not(.yen-sidebar-close) {
    position: relative;
    z-index: 1;
  }

  .yen-tours-sidebar.open {
    display: block;
    background: #fff;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    left: auto;
    width: 320px;
    max-width: 85vw;
    padding: 28px;
    overflow-y: auto;
    border-radius: 24px 0 0 24px;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.3s ease;
    z-index: 1001;
  }

  @keyframes slideInRight {
    from {
      transform: translateX(100%);
      opacity: 0;
    }

    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  .yen-sidebar-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    background: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text);
    margin-bottom: 20px;
    margin-left: auto;
    transition: all 0.2s;
  }

  .yen-sidebar-close:hover {
    background: #fee2e2;
    color: #dc2626;
    border-color: #dc2626;
  }

  .yen-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    border: 2px solid #5a8a72;
    background: #fff;
    color: #5a8a72;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 24px;
    transition: all 0.3s;
  }

  .yen-filter-toggle:hover {
    background: #5a8a72;
    color: #fff;
  }

  .yen-filter-toggle svg {
    stroke: currentColor;
  }
}

@media (max-width: 768px) {
  .yen-tours-content .yen-tours-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .yen-tours-hero {
    padding: 40px 0 36px;
  }

  .yen-tours-hero-title {
    font-size: 1.8rem;
  }
}

/* =========================================================================
   BIKE RENTAL CUSTOM STYLES (REPLACING INLINE STYLES)
========================================================================= */
.bike-rental-card {
  min-height: 380px;
}

.bike-rental-img-wrap {
  height: 220px;
}

.bike-status-available {
  color: var(--primary);
  font-weight: 600;
}

.bike-status-unavailable {
  color: var(--muted);
  font-weight: 600;
}

.bike-book-btn {
  width: 100%;
  border: none;
  cursor: pointer;
}

/* Bike Booking Modal Form */
.bike-modal-box {
  max-width: 400px;
  padding: 16px;
}

.bike-modal-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  text-align: center;
}

.bike-booking-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bike-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bike-form-label {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.bike-form-input {
  padding: 10px;
  margin-top: 4px;
  font-size: 0.95rem;
  width: 100%;
}

.bike-form-total-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}

.bike-form-total-wrap strong {
  font-size: 0.95rem;
}

.bike-form-total-wrap .form-total {
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 800;
}

.bike-form-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.bike-btn-cancel {
  background: #f3f4f6;
  color: #4b5563;
  padding: 12px;
  border: none;
  font-weight: 600;
}

.bike-btn-cancel:hover {
  background: #e5e7eb;
}

.bike-btn-submit {
  flex: 1;
  padding: 12px;
  font-size: 1rem;
}

/* ===== CSS VARIABLES ===== */
:root {
  --brand: #ff6602;
  --brand-dark: #e55a00;
  --brand-light: #fff5f0;
  --text: #1a1a2e;
  --text-light: #4a5568;
  --text-muted: #718096;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --success: #10b981;
  --error: #ef4444;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px -12px rgba(0, 0, 0, 0.12);
  --transition: all 0.2s ease;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --service-fee-rate: 0.035;
}

/* ===== RESET (scoped to form only to avoid affecting other widgets) ===== */

/* Form looptrails */
/* ===== RESET (scoped to form only to avoid affecting other widgets) ===== */
.hgl-booking,
.hgl-booking *,
.hgl-booking *::before,
.hgl-booking *::after {
  box-sizing: border-box;
}

.hgl-booking {
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.hgl-form {
  background: var(--bg);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

/* ===== FONT PROTECTION ===== */
.hgl-booking,
.hgl-booking *,
.hgl-booking *::before,
.hgl-booking *::after,
body .elementor .hgl-booking,
body .elementor .hgl-booking *,
body .elementor-widget .hgl-booking,
body .elementor-widget .hgl-booking *,
.elementor-element .hgl-booking,
.elementor-element .hgl-booking * {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}

body .elementor .hgl-booking h1,
body .elementor .hgl-booking h2,
body .elementor .hgl-booking h3,
body .elementor .hgl-booking h4,
body .elementor .hgl-booking p,
body .elementor .hgl-booking span,
body .elementor .hgl-booking label,
body .elementor .hgl-booking input,
body .elementor .hgl-booking select,
body .elementor .hgl-booking textarea,
body .elementor .hgl-booking button {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

.hgl-form h1,
.hgl-form h2,
.hgl-form h3,
.hgl-form h4,
.hgl-form h5,
.hgl-form h6 {
  font-family: var(--font) !important;
  color: inherit;
}

/* ===== HEADER ===== */
.hgl-header {
  border-radius: var(--radius) var(--radius) 0px 0px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 100%);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hgl-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.hgl-header h2 {
  color: #2E2E2C !important;
  font-family: var(--font) !important;
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 6px;
  position: relative;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hgl-header p {
  color: #2E2E2C !important;
  font-family: var(--font) !important;
  font-size: 0.95rem;
  font-weight: 600;
}

/* ===== FORM BODY ===== */
.hgl-body {
  padding: 28px;
}

.hgl-section {
  margin-bottom: 28px;
}

.hgl-section:last-child {
  margin-bottom: 0;
}

.hgl-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hgl-section-title svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

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

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

.hgl-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.hgl-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 640px) {

  .hgl-grid-2,
  .hgl-grid-3,
  .hgl-grid-4 {
    grid-template-columns: 1fr;
  }
}

.hgl-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hgl-field.full {
  grid-column: 1 / -1;
}

.hgl-label {
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  line-height: 1.25 !important;
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: none !important;
  letter-spacing: normal !important;
  margin-bottom: 8px;
}

body .elementor .hgl-booking .hgl-label,
body .elementor-widget .hgl-booking .hgl-label,
.elementor-element .hgl-booking .hgl-label {
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
}

.hgl-required {
  color: var(--error);
}

.hgl-input,
.hgl-select,
.hgl-textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.hgl-input:focus,
.hgl-select:focus,
.hgl-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 102, 2, 0.12);
}

.hgl-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

.hgl-textarea {
  min-height: 100px;
  resize: vertical;
}

.hgl-hint {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 600 !important;
}

/* ===== RADIO CARDS ===== */
.hgl-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hgl-radio-card {
  flex: 1;
  min-width: 120px;
  position: relative;
}

.hgl-radio-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hgl-radio-card-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.hgl-radio-card-content:hover {
  border-color: var(--primary);
  background: var(--brand-light);
}

.hgl-radio-card input:checked+.hgl-radio-card-content {
  border-color: var(--primary);
  background: var(--brand-light);
  color: #2E2E2C;
  font-weight: 600;
}

.hgl-radio-card input:checked+.hgl-radio-card-content::before {
  content: none !important;
}

/* ===== MOTORBIKE CARDS ===== */
.hgl-bike-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (max-width: 640px) {
  .hgl-bike-grid {
    grid-template-columns: 1fr;
  }
}

.hgl-bike-card {
  position: relative;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hgl-bike-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(255, 102, 2, 0.1);
}

.hgl-bike-card.selected {
  border-color: var(--primary);
  background: var(--brand-light);
}

.hgl-bike-card input {
  position: absolute;
  opacity: 0;
}

.hgl-bike-img {
  width: 72px;
  height: 52px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--bg-soft);
  flex-shrink: 0;
}

.hgl-bike-info {
  flex: 1;
  min-width: 0;
}

.hgl-bike-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.hgl-bike-price {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 700;
}

.hgl-bike-check {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.hgl-bike-card.selected .hgl-bike-check {
  background: var(--primary);
  border-color: var(--primary);
}

.hgl-bike-card.selected .hgl-bike-check::after {
  content: none !important;
}

/* ===== BUS GRID ===== */
.hgl-bus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 640px) {
  .hgl-bus-grid {
    grid-template-columns: 1fr;
  }
}

.hgl-bus-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hgl-bus-col-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hgl-bus-col-title svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

/* ===== COST SUMMARY ===== */
.hgl-summary {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 20px;
}

.hgl-summary-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.hgl-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.9rem;
}

.hgl-summary-row.total {
  border-top: 2px solid var(--border);
  margin-top: 10px;
  padding-top: 14px;
  font-weight: 700;
  font-size: 1rem;
}

.hgl-summary-row.total .hgl-summary-value {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.15rem;
}

.hgl-summary-label {
  color: #2E2E2C;
}

.hgl-summary-value {
  font-weight: 600;
  color: var(--text);
}

.hgl-summary-discount {
  color: var(--success);
}

/* ===== PAYMENT OPTIONS ===== */
.hgl-payment-section {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 20px;
}

.hgl-payment-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hgl-payment-title svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.hgl-payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  .hgl-payment-grid {
    grid-template-columns: 1fr;
  }
}

.hgl-payment-card {
  position: relative;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.hgl-payment-card:hover {
  border-color: var(--primary);
}

.hgl-payment-card.selected {
  border-color: var(--primary);
  background: var(--brand-light);
}

.hgl-payment-card input {
  position: absolute;
  opacity: 0;
}

.hgl-payment-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hgl-payment-card-title svg.hgl-pay-icon {
  width: 20px;
  height: 20px;
  stroke: var(--text);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: stroke 0.2s ease;
}

.hgl-payment-card.selected .hgl-payment-card-title svg.hgl-pay-icon {
  stroke: var(--primary);
}

.hgl-payment-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hgl-payment-breakdown {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-top: 12px;
}

.hgl-payment-breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  padding: 4px 0;
}

.hgl-payment-breakdown-row.highlight {
  color: var(--primary);
  font-weight: 600;
  background: transparent !important;
}

.hgl-payment-breakdown-row.remaining {
  color: var(--text-muted);
  font-style: italic;
}

.hgl-service-fee-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hgl-service-fee-note svg {
  width: 14px;
  height: 14px;
  color: var(--success);
}

/* ===== VOUCHER ===== */
.hgl-voucher {
  display: flex;
  gap: 10px;
  max-width: 300px;
}

.hgl-voucher-input {
  flex: 1;
}

.hgl-voucher-btn {
  padding: 0 20px;
  background: var(--text);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.hgl-voucher-btn:hover {
  background: var(--primary);
}

/* ===== TERMS ===== */
.hgl-terms-section {
  margin-top: 20px;
}

.hgl-terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
}

.hgl-terms-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--primary);
}

.hgl-terms-checkbox span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.hgl-terms-toggle {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.hgl-terms-toggle:hover {
  color: var(--brand-dark);
}

.hgl-terms-panel {
  margin-top: 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  overflow: hidden;
  display: none;
}

.hgl-terms-panel.open {
  display: block;
  animation: hglSlideDown 0.3s ease;
}

@keyframes hglSlideDown {
  from {
    opacity: 0;
    max-height: 0;
  }

  to {
    opacity: 1;
    max-height: 800px;
  }
}

.hgl-terms-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.hgl-terms-panel-header strong {
  font-size: 0.9rem;
}

.hgl-terms-close {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  color: var(--text-muted);
  padding: 4px 8px;
  border-radius: 4px;
}

.hgl-terms-close:hover {
  background: var(--border);
  color: var(--text);
}

.hgl-terms-panel-body {
  max-height: 500px;
  overflow-y: auto;
  padding: 16px;
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
}

.hgl-terms-panel-body h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin: 14px 0 6px 0;
}

.hgl-terms-panel-body h4:first-child {
  margin-top: 0;
}

.hgl-terms-panel-body p {
  margin-bottom: 8px;
}

.hgl-terms-panel-body ul {
  margin: 8px 0;
  padding-left: 18px;
}

.hgl-terms-panel-body li {
  margin-bottom: 4px;
}

.hgl-terms-warning {
  background: #fff5f0;
  border-left: 3px solid var(--primary);
  padding: 10px 12px;
  border-radius: 4px;
  margin: 8px 0;
  font-size: 0.8rem;
}

.hgl-terms-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.78rem;
  display: inline-block;
  margin-top: 8px;
}

.hgl-terms-link:hover {
  text-decoration: underline;
}

/* ===== SUBMIT ===== */
.hgl-submit-section {
  text-align: center;
  margin-top: 24px;
}

.hgl-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 48px;
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--text);
  border-radius: 12px;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s ease;
  box-shadow: 5px 5px 0 var(--text);
  position: relative;
}

.hgl-submit-btn:hover:not(:disabled) {
  background: var(--primary);
  transform: translate(-2px, -2px);
  box-shadow: 2px 2px 0 var(--text);
}

.hgl-submit-btn:active:not(:disabled) {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--text);
}

.hgl-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  background: var(--primary);
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 var(--text);
}

.hgl-submit-btn svg.hgl-submit-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hgl-submit-btn .hgl-spinner {
  display: inline-block;
}

.hgl-spinner {
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: hglSpin 0.8s linear infinite;
}

@keyframes hglSpin {
  to {
    transform: rotate(360deg);
  }
}

.hgl-trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.hgl-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hgl-trust-badge svg {
  width: 16px;
  height: 16px;
  color: var(--success);
}

/* ===== TOAST ===== */
.hgl-toast-wrapper {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hgl-toast {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: hglSlideIn 0.3s ease;
}

@keyframes hglSlideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.hgl-toast.success {
  background: var(--success);
}

.hgl-toast.error {
  background: var(--error);
}

.is-hidden {
  display: none !important;
}

.iti {
  width: 100%;
}

.iti__flag-container {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.flatpickr-calendar {
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-lg) !important;
}

.flatpickr-months {
  background: var(--primary) !important;
  border-radius: var(--radius) var(--radius) 0 0 !important;
}

.flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  color: #fff !important;
  font-weight: 600 !important;
}

.flatpickr-weekdays {
  background: var(--primary) !important;
}

.flatpickr-weekday {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600 !important;
}

.flatpickr-day.selected {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

.flatpickr-day:hover {
  background: var(--brand-light) !important;
}

.flatpickr-day.avail-available::after,
.flatpickr-day.avail-limited::after,
.flatpickr-day.avail-full::after,
.flatpickr-day.avail-blocked::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: 3px;
  transform: translateX(-50%);
}

.flatpickr-day.avail-available::after {
  background: #10b981;
}

.flatpickr-day.avail-limited::after {
  background: #f59e0b;
}

.flatpickr-day.avail-full::after {
  background: #ef4444;
}

.flatpickr-day.avail-blocked::after {
  background: #9ca3af;
}

.flatpickr-day.avail-full,
.flatpickr-day.avail-blocked {
  opacity: 0.4;
  pointer-events: none;
  text-decoration: line-through;
}

.hgl-avail-legend {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.73rem;
  color: var(--text-muted);
  margin-top: 6px;
  padding: 0 2px;
}

.hgl-avail-legend-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hgl-avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hgl-avail-loading {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  min-height: 18px;
}

/* ===== CANCELLATION TABLE inside terms ===== */
.hgl-cancel-table {
  list-style: none !important;
  padding: 0 !important;
  margin: 8px 0 !important;
  border-top: 1px solid var(--border);
}

.hgl-cancel-table li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0 !important;
  border-bottom: 1px solid var(--border);
  font-size: 0.78rem !important;
  margin: 0 !important;
}

.hgl-cancel-table .when {
  color: var(--text);
}

.hgl-cancel-table .fee {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  font-size: 0.75rem;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .hgl-header h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .hgl-body {
    padding: 20px 16px;
  }

  .hgl-header {
    padding: 24px 20px;
  }

  .hgl-header h2 {
    font-size: 1.35rem;
    line-height: 1.3;
  }

  .hgl-submit-btn {
    width: 100%;
    padding: 16px 24px;
  }

  .hgl-radio-group {
    flex-direction: column;
  }

  .hgl-radio-card {
    min-width: 100%;
  }
}

/* Hero Elementor Style extracted from inline CSS */
.hero--elementor {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .4;
  z-index: 1;
}

.hero--elementor-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 100%;
  width: 100%;
  display: flex;
}

.hero-copy--elementor {
  max-width: 60%;
}

.hero-title--elementor {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: white;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.text-primary {
  color: var(--primary);
}

.hero-desc--elementor {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 40px;
  font-weight: 500;
  max-width: 600px;
}

.btn-book-now {
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.icon-book-now {
  vertical-align: middle;
  margin-left: 8px;
}

.custom-shape-divider-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom .elementor-shape-fill {
  fill: #fff;
  transform: rotateY(0deg);
  transform-origin: center;
}

.custom-shape-divider-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

/* Language Switcher */

.lang-switcher {
  display: flex;
  gap: 8px;
  order: 1;
}

.lang-btn {
  text-decoration: none;
  font-weight: bold;
  padding: 3px 8px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid #000;
  color: #333;
  background: transparent;
  transition: all 0.2s ease;
}

.lang-btn.active {
  background: var(--primary);
  color: white !important;
  border-color: var(--primary);
  color: white !important;
}

/* Booking Section Headline */
.hgl-booking-header-wrapper {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
}

.hgl-booking-header-wrapper.detail--header {
  margin-bottom: 0px;
}

.hgl-booking-headline {
  font-size: clamp(1.8rem, 4vw, 2rem);
  font-weight: 900;
  color: var(--secondary);
  line-height: 1.2;
}

.hgl-booking-dynamic-wrapper {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.hgl-booking-dynamic-text {
  position: relative;
  z-index: 2;
}

.hgl-booking-highlight-svg {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 20px;
  z-index: 1;
}

.hgl-booking-dynamic-wrapper svg {
  height: calc(100% + 20px);
  left: 50%;
  overflow: visible;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 20px);
}

.hgl-booking-dynamic-wrapper svg path {
  stroke: var(--primary);
  stroke-width: 8px;
  fill: none;
  transition: .3s;
}

.hgl-booking-headline svg path {
  animation: elementor-headline-dash forwards;
  animation-duration: var(--animation-duration, 2.5s);
  animation-iteration-count: infinite;
}

@keyframes elementor-headline-dash {
  0% {
    opacity: 1;
    stroke-dasharray: 0 1500
  }

  to {
    opacity: 1;
    stroke-dasharray: 1500 1500
  }
}

/* Tour Detail Hero Banner */
.detail-hero-section {
  position: relative;
  min-height: 530px;
  padding: 100px 0;
  display: flex;
}

.detail-hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.detail-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) brightness(0.5);
}

.detail-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex: 1;
  padding: 0 16px;
}

.detail-hero-copy {
  text-align: center;
  max-width: 1000px;
  width: 100%;
}

.detail-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0;
  color: white;
  text-transform: uppercase;
  text-align: left;
  font-weight: 900;
}

.detail-hero-section .text {
  display: block;
  font-size: 16px;
  margin-bottom: 0;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 5px;
}

/* About Services Section */
.about-services-section {
  padding: 60px 0;
  background: url(../images/bg-focus.png) no-repeat #202020;
  background-size: cover;
  border-top: 2px solid #2E2E2C;
  border-bottom: 2px solid #2E2E2C;
  background-attachment: fixed;
}

.about-section-title {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 30px;
  position: relative;
  padding-left: 20px;
  font-weight: 800;
}

.about-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 35px;
  background: var(--primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-item {
  background: #F7F7F7;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.service-item:hover {
  background: #E4E0DA;
  transform: translateX(5px);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: #FFF;
}

.icon-badge--primary {
  background: var(--primary);
}

.icon-badge--secondary {
  background: var(--secondary);
}

.icon-badge--ink {
  background: #333333;
}

.icon-badge--sun {
  background: #ffbc00;
}

.icon-badge--sea {
  background: #2f80ed;
}

.icon-badge--pink {
  background: #e5396e;
}

.service-item h4 {
  color: #333333;
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 700;
}

.service-item p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Spectacular Destinations */
.tour-detail-section {
  background: linear-gradient(180deg, #eaf2ee 0%, #f0f4f2 100%);
}

.tour-detail-section #bookingPanel {
  background: transparent;
  border: none;
  backdrop-filter: inherit;
}

.about-destinations-section {
  padding: 60px 0;
  background: url(../images/bg-focus.png) no-repeat #202020;
  background-size: cover;
  background-attachment: fixed;
}

.destinations-container p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
}

.destinations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.destination-tag {
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: default;
}

.destination-tag:hover {
  background: var(--primary);
  color: #FFF;
  border-color: var(--primary);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  animation: pulse-wa 2s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: white;
}

@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.wa-icon {
  width: 32px;
  height: 32px;
  color: #ffffff;
}

/* ========== REVIEWS SLIDER ========== */
.lt-reviews {
  --lt-bg: #ffffff;
  --lt-bg-soft: var(--bg);
  --lt-card: #ffffff;
  --lt-ink: var(--text);
  --lt-ink-muted: var(--muted);
  --lt-line: #dddddd;
  --lt-accent: var(--primary);
  --lt-hover: #e0e0e0;
  --lt-white: #ffffff;
  --lt-ta-green: #00aa6c;
  --lt-font-heading: 'Inter', system-ui, sans-serif;
  --lt-font-body: 'Inter', system-ui, sans-serif;
  --lt-font-label: 'Inter', system-ui, sans-serif;
  background: var(--lt-bg);
  padding: clamp(40px, 5vw, 72px) clamp(20px, 5vw, 64px);
  font-family: var(--lt-font-body);
  color: var(--lt-ink);
  line-height: 1.55;
  margin-bottom: 2rem;
}

.lt-reviews * {
  box-sizing: border-box;
}

.lt-reviews img {
  max-width: 100%;
  display: block;
}

.lt-reviews__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Header ===== */
.lt-reviews__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}

.lt-reviews__head h2 .lt-accent-word {
  color: var(--lt-accent);
  display: inline-block;
}

.lt-reviews__lead {
  font-size: 16px;
  color: var(--lt-ink-muted);
  margin: 0 auto;
}

/* ===== Tripadvisor badge ===== */
.lt-ta-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 auto clamp(32px, 4vw, 48px);
  padding: 16px 26px;
  background: var(--lt-card);
  border: 2px solid var(--lt-ink);
  border-radius: 14px;
  box-shadow: 5px 5px 0 var(--lt-ta-green);
  max-width: 680px;
}

.lt-ta-badge__logo-link {
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
  border: none !important;
  flex-shrink: 0;
  transition: opacity 0.2s ease, transform 0.2s ease !important;
}

.lt-ta-badge__logo-link:hover {
  opacity: 0.8 !important;
  transform: translateY(-1px);
}

.lt-ta-badge__logo {
  height: 32px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.lt-ta-badge__divider {
  width: 1px;
  height: 28px;
  background: var(--lt-line);
}

.lt-ta-badge__rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.lt-ta-badge__stars {
  color: var(--lt-ta-green);
  font-size: 15px;
  letter-spacing: 2px;
  line-height: 1;
}

.lt-ta-badge__score {
  font-family: var(--lt-font-label);
  font-size: 12px;
  font-weight: 700;
  color: var(--lt-ink);
  letter-spacing: 0.3px;
}

.lt-ta-badge__score strong {
  font-weight: 800;
}

.lt-ta-badge__score-sep {
  color: var(--lt-ink-muted);
  margin: 0 6px;
}

@media (max-width: 540px) {
  .lt-ta-badge {
    gap: 12px;
    padding: 14px 18px;
  }

  .lt-ta-badge__divider {
    display: none;
  }

  .lt-ta-badge__rating {
    align-items: center;
  }
}

/* ===== Slider ===== */
.lt-slider {
  position: relative;
}

.lt-slider__viewport {
  overflow: hidden;
  border-radius: 14px;
  padding: 5px;
  margin: -5px;
}

.lt-slider__track {
  display: flex;
  gap: 22px;
  transition: transform 0.55s cubic-bezier(0.22, 0.8, 0.28, 1);
  padding: 6px 0;
  will-change: transform;
}

.lt-slide {
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
}

@media (max-width: 992px) {
  .lt-slider__track {
    gap: 18px;
  }

  .lt-slide {
    flex: 0 0 calc((100% - 18px) / 2);
  }
}

@media (max-width: 640px) {
  .lt-slide {
    flex: 0 0 100%;
  }
}

.lt-review {
  background: var(--lt-card);
  border: 2px solid var(--lt-ink);
  border-radius: 14px;
  padding: 24px 22px 22px;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 320px;
}

.lt-review:hover {
  transform: translateY(-3px);
}

.lt-review__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--lt-line);
}

.lt-review__stars {
  color: var(--lt-ta-green);
  font-size: 14px;
  letter-spacing: 1.6px;
  line-height: 1;
  flex-shrink: 0;
}

.lt-review__date {
  font-family: var(--lt-font-label);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--lt-ink-muted);
  text-transform: uppercase;
}

.lt-review__title {
  font-family: var(--lt-font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--lt-ink);
  margin: 0 0 12px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.lt-review__body {
  font-family: var(--lt-font-body);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--lt-ink-muted);
  margin: 0 0 18px;
  flex-grow: 1;
  overflow-y: auto;
  max-height: 175px;
  position: relative;
}

.lt-review__body {
  @-moz-document url-prefix() {
    scrollbar-width: thin;
  }

  &::-webkit-scrollbar {
    width: 2px;
  }

  &::-webkit-scrollbar-thumb {
    border-radius: 99px;
    background: var(--nn, #e5e5e5);
  }
}

.lt-review__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--lt-line);
  margin-top: auto;
}

.lt-review__author {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.lt-review__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--lt-accent);
  color: var(--lt-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lt-font-label);
  font-size: 13px;
  font-weight: 800;
  border: 2px solid var(--lt-ink);
  flex-shrink: 0;
  text-transform: uppercase;
}

.lt-review__author-info {
  min-width: 0;
  overflow: hidden;
}

.lt-review__author-name {
  font-family: var(--lt-font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--lt-ink);
  line-height: 1.2;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lt-review__author-meta {
  font-family: var(--lt-font-body);
  font-size: 11.5px;
  color: var(--lt-ink-muted);
  line-height: 1.2;
}

.lt-review__link {
  font-family: var(--lt-font-label) !important;
  font-size: 10.5px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: var(--lt-ink) !important;
  transition: color 0.2s ease !important;
  flex-shrink: 0;
}

.lt-review__link:hover {
  color: var(--lt-accent) !important;
}

/* ===== Slider controls ===== */
.lt-slider__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
}

.lt-reviews .lt-slider__dots {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}

.lt-reviews button.lt-slider__dot {
  width: 10px !important;
  height: 10px !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  max-height: none !important;
  border-radius: 50% !important;
  background: var(--lt-white) !important;
  border: 1px solid var(--lt-ink) !important;
  cursor: pointer !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  flex-shrink: 0 !important;
  transition: background 0.2s ease, width 0.3s ease, border-radius 0.3s ease !important;
}

.lt-reviews button.lt-slider__dot:hover {
  background: var(--lt-hover) !important;
}

.lt-reviews button.lt-slider__dot.is-active,
.lt-reviews button.lt-slider__dot.is-active:hover {
  background: var(--lt-accent) !important;
  width: 28px !important;
  border-radius: 999px !important;
}

.lt-slider__nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.lt-slider button.lt-slider__btn {
  width: 48px !important;
  height: 48px !important;
  background: var(--lt-white) !important;
  color: var(--lt-ink) !important;
  border: 2px solid var(--lt-ink) !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 4px 4px 0 var(--lt-ink) !important;
  padding: 0 !important;
  line-height: 1 !important;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s ease, color 0.2s ease !important;
}

.lt-slider button.lt-slider__btn:hover:not(:disabled) {
  background: var(--lt-accent) !important;
  color: var(--lt-white) !important;
}

.lt-slider button.lt-slider__btn:active:not(:disabled) {
  transform: translate(2px, 2px) !important;
  box-shadow: 1px 1px 0 var(--lt-ink) !important;
}

.lt-slider button.lt-slider__btn:disabled {
  opacity: 0.4 !important;
  cursor: not-allowed !important;
  background: var(--lt-bg-soft) !important;
  box-shadow: 4px 4px 0 var(--lt-line) !important;
}

.lt-slider button.lt-slider__btn svg {
  width: 22px !important;
  height: 22px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2.5 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

/* ========== FOOTER REDESIGN ========== */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 40px 20px 50px;
  color: var(--text);
  text-align: center;
  border-top: 2px solid #2E2E2C;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0px;
  /* Ngăn chặn viền mờ ở mép (prevent blurred edges from leaking) */
  z-index: -1;
  background: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.611), rgba(255, 255, 255, 0.8), #ffffff), url(../images/bg-ft.png) no-repeat center;
  background-size: cover;
  filter: blur(10px);
}

.lt-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lt-footer-brand {
  margin-bottom: 8px;
}

.lt-footer-brand .brand {
  justify-content: center;
  height: 90px;
  width: 170px;
}

.lt-footer-brand .brand-text {
  color: #173126;
  font-size: 1.5rem;
}

.lt-footer-contact p {
  margin: 8px 0;
  font-size: 0.95rem;
}

.lt-footer-contact strong {
  font-weight: 700;
}

.lt-footer-contact a {
  color: #2E2E2C;
  font-weight: 500;
  transition: color 0.2s ease;
}

.lt-footer-contact span {
  color: #2E2E2C;
  font-weight: 500;
  transition: color 0.2s ease;
}

.lt-footer-contact a:hover {
  color: var(--primary);
}

.lt-footer-contact span:hover {
  color: var(--primary);
}

.lt-footer-divider {
  width: 100%;
  height: 1px;
  background-color: #2E2E2C;
  margin: 16px 0;
}

.lt-footer-company {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #333;
}

.lt-footer-company p {
  margin: 4px 0;
}

.lt-footer-badge {
  margin-top: 16px;
  margin-bottom: 24px;
}

.lt-footer-badge img {
  height: 40px;
  margin: 0 auto;
}

.lt-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 16px;
}

.lt-footer-copyright {
  font-size: 0.75rem;
  color: #2E2E2C;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.lt-footer-social {
  display: flex;
  gap: 16px;
}

.lt-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  padding: 5px;
  border-radius: 50%;
  background-color: #fff;
  color: var(--text);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lt-footer-social a svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.lt-footer-social a:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  color: #fff;
}

/* Brand specific hover colors */
.lt-footer-social a.social-fb:hover {
  background-color: #1877F2;
}

.lt-footer-social a.social-ig:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.lt-footer-social a.social-wa:hover {
  background-color: #25D366;
}

@media (max-width: 600px) {
  .lt-footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

/* ========== background ========== */
#bookingSection {
  background: url(../images/bg-focus.png) no-repeat;
  background-size: contain;
  background-position: center;
  background-attachment: fixed;
}