/* ====================================================
   LETSGO TRAVEL — style.css (Enhanced Edition)
   ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Google+Sans+Code:ital,wght@0,300..800;1,300..800&family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Onest:wght@100..900&family=Space+Grotesk:wght@300..700&display=swap');

:root {
  --lime: #c8e63a;
  --lime-dk: #afd42e;
  --lime-lt: #e4f598;
  --teal: #0d4a56;
  --teal-dk: #092f38;
  --teal-lt: #1a6878;
  --teal-glow: rgba(26, 104, 120, 0.25);
  --navy: #071e25;
  --white: #ffffff;
  --off-white: #f7faf3;
  --light-gray: #f0f4f0;
  --mid-gray: #7a8a8e;
  --dark-text: #0f2e38;
  --body-text: #3a5260;
  --border: rgba(13, 74, 86, 0.1);

  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Onest", sans-serif;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --shadow-lime: 0 8px 28px rgba(200, 230, 58, 0.4);
  --transition: 0.3s ease;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--dark-text);
  overflow-x: hidden;
  max-width: 100%;
  width: 100%
}

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none
}

/* ── Reusables ── */
.section-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--lime)
}

.section-tag.dark {
  color: var(--teal-lt)
}

.section-tag.light {
  color: rgba(255, 255, 255, .7)
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white)
}

.sec-title.dark {
  color: var(--dark-text)
}

.sec-title em {
  font-style: italic;
  color: var(--teal-lt)
}

.sec-desc {
  color: var(--body-text);
  font-size: .95rem;
  line-height: 1.75;
  max-width: 480px;
  margin-top: 14px
}

.sec-sub {
  color: var(--body-text);
  font-size: .93rem;
  max-width: 560px;
  margin: 12px auto 0;
  line-height: 1.7
}

.sec-header {
  margin-bottom: 48px
}

.sec-header.center {
  text-align: center
}

.sec-header.center .sec-sub {
  margin-left: auto;
  margin-right: auto
}

.btn-lime {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: var(--navy);
  font-weight: 700;
  font-size: .88rem;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform .2s, box-shadow .2s;
  box-shadow: var(--shadow-lime);
  /* white-space: nowrap */
}

.btn-lime:hover {
  background: var(--lime-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(200, 230, 58, .5)
}

.btn-lime.sm {
  padding: 9px 20px;
  font-size: .82rem
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  font-weight: 600;
  font-size: .88rem;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--transition)
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--white)
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark-text);
  border: 2px solid var(--dark-text);
  font-weight: 600;
  font-size: .88rem;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--transition)
}

.btn-outline-dark:hover {
  background: var(--dark-text);
  color: var(--white)
}

.sec-footer-link {
  text-align: center;
  margin-top: 48px
}

.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease
}

.reveal-item.visible {
  opacity: 1;
  transform: translateY(0)
}

/* =====================================================
   TOP BAR
   ===================================================== */

.topbar {
  background: var(--teal-dk);
  color: rgba(255, 255, 255, .65);
  font-size: .76rem;
  font-weight: 500;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 38px;
  position: relative;
  z-index: 998;
  width: 100%;
  overflow: hidden;
}

/* Left contacts */
.topbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.tb-item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  color: rgba(255, 255, 255, .55);
  font-size: .74rem;
}

.tb-item i {
  color: var(--lime);
  font-size: .72rem;
}

.tb-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, .15);
  flex-shrink: 0;
}

/* Center marquee */
.topbar-center {
  flex: 1;
  overflow: hidden;
  text-align: center;
  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%);
}

.topbar-marquee {
  display: inline-block;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  color: rgba(255, 255, 255, .6);
  font-size: .74rem;
}

.topbar-marquee strong {
  color: var(--lime);
  font-weight: 700;
}

.topbar-marquee i {
  color: var(--lime);
  font-size: .7rem;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(60%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Right */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.tb-wa {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .6);
  font-size: .74rem;
  font-weight: 600;
  transition: color var(--transition);
}

.tb-wa i {
  color: #25d366;
  font-size: .9rem;
}

.tb-wa:hover {
  color: var(--white);
}

/* =====================================================
   NAVBAR
   ===================================================== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 10px 24px;
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition);
  width: 100%;
  overflow: visible;
}

.nav-inner {
  background: rgba(7, 26, 34, .82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-xl);
  padding: 10px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .35), 0 0 0 1px rgba(200, 230, 58, .05);
  transition: all var(--transition);
  width: 100%;
}

.navbar.scrolled .nav-inner {
  background: rgba(7, 26, 34, .97);
  box-shadow: 0 12px 48px rgba(0, 0, 0, .5), 0 0 0 1px rgba(200, 230, 58, .1);
  border-color: rgba(255, 255, 255, .05);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo .logo {
  max-width: 112px;
  width: 100%;
  display: block;
  height: auto;
}

/* Nav links */
.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links ul {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links ul li a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, .75);
  font-size: .88rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  position: relative;
}

/* Hover underline dot */
.nav-links ul li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--lime);
  border-radius: 2px;
  transition: width .25s ease;
}

.nav-links ul li a:hover,
.nav-links ul li a.nav-active {
  color: var(--lime);
  background: rgba(200, 230, 58, .08);
}

.nav-links ul li a:hover::after,
.nav-links ul li a.nav-active::after {
  width: 20px;
}

/* Right actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Search button */
.search-btn {
  width: 38px;
  height: 38px;
  background: rgba(200, 230, 58, .12);
  color: var(--lime);
  border-radius: 10px;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  border: 1px solid rgba(200, 230, 58, .2);
}

.search-btn:hover {
  background: var(--lime);
  color: var(--navy);
  transform: scale(1.06);
  box-shadow: var(--shadow-lime);
}

/* Call button */
.nav-call-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .6);
  font-size: .82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .1);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-call-btn i {
  color: var(--lime);
  font-size: .85rem;
}

.nav-call-btn:hover {
  background: rgba(255, 255, 255, .07);
  color: var(--white);
  border-color: rgba(255, 255, 255, .2);
}

/* CTA button */
.btn-register {
  background: var(--lime);
  color: var(--navy);
  font-weight: 700;
  font-size: .82rem;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  box-shadow: 0 3px 14px rgba(200, 230, 58, .3);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.btn-register:hover {
  background: var(--lime-dk);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lime);
}

.btn-register i {
  font-size: .75rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
  z-index: 9999;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-close {
  display: none;
}

/* =====================================================
   SEARCH OVERLAY
   ===================================================== */

.overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  backdrop-filter: blur(4px);
  width: 100%;
  overflow: hidden;
}

.overlay-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--teal-dk);
  padding: 60px 40px 50px;
  z-index: 1200;
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.search-overlay.active {
  transform: translateY(0);
}

.search-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--white);
  font-size: 1.1rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1201;
  transition: color var(--transition), transform .3s, background var(--transition);
}

.search-close:hover {
  color: var(--navy);
  background: var(--lime);
  border-color: var(--lime);
  transform: rotate(90deg);
}

.search-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.search-inner h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 28px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0 20px;
}

.search-box i {
  color: var(--mid-gray);
  font-size: 1.1rem;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 18px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark-text);
}

.search-box .btn-lime {
  border-radius: 10px;
  margin: 8px;
}

.search-popular {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.search-popular span {
  color: rgba(255, 255, 255, .45);
  font-size: .85rem;
}

.search-popular a {
  color: var(--white);
  font-size: .85rem;
  background: rgba(255, 255, 255, .1);
  padding: 5px 14px;
  border-radius: 20px;
  transition: background var(--transition), color var(--transition);
}

.search-popular a:hover {
  background: var(--lime);
  color: var(--navy);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1024px) {
  .nav-call-btn span {
    display: none;
  }

  .nav-call-btn {
    padding: 7px 10px;
  }

  .nav-links ul {
    gap: 0;
  }

  .nav-links ul li a {
    padding: 7px 10px;
    font-size: .83rem;
  }
}

@media (max-width: 900px) {
  .topbar-left {
    display: none;
  }

  .topbar-right {
    display: none;
  }

  .topbar-center {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 8px 12px;
  }

  .nav-inner {
    padding: 8px 16px;
    border-radius: var(--radius-lg);
  }

  /* Mobile nav drawer */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--teal-dk);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 72px 28px 40px;
    z-index: 9998;
    transition: right .35s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, .4);
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
  }

  .nav-links ul li {
    width: 100%;
  }

  .nav-links ul li a {
    width: 100%;
    padding: 12px 16px;
    font-size: .95rem;
    border-radius: var(--radius-sm);
    justify-content: space-between;
  }

  .nav-links ul li a::after {
    display: none;
  }

  .nav-close {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-call-btn {
    display: none;
  }

  .btn-register {
    font-size: .78rem;
    padding: 8px 14px;
  }

  .btn-register i {
    display: none;
  }
}

@media (max-width: 480px) {
  .topbar {
    padding: 0 16px;
  }

  .search-overlay {
    padding: 50px 20px 40px;
  }

  .search-inner h3 {
    font-size: 1.5rem;
  }
}

/* ====================================================
   HERO
   ==================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  width: 100%;
  max-width: 100%
}

.hero-bg {
  position: absolute;
  inset: 0
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: zoomBg 20s ease-in-out infinite alternate
}

@keyframes zoomBg {
  from {
    transform: scale(1.05)
  }

  to {
    transform: scale(1.12)
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(7, 30, 37, .55) 0%, rgba(9, 47, 56, .7) 55%, rgba(7, 25, 32, .88) 100%)
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
  width: 100%;
  padding: 0 24px 100px;
  animation: heroIn 1s ease both
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(32px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 22px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .4)
}

.hero-title em {
  font-style: italic;
  color: var(--lime-lt)
}

.hero-desc {
  color: rgba(255, 255, 255, .78);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 36px
}

.hero-thumbs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap
}

.thumb {
  width: 155px;
  height: 105px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
  transition: transform .35s, box-shadow .35s, border-color .35s;
  flex-shrink: 0
}

.thumb:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .5);
  border-color: var(--lime)
}

.hero-cats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: stretch
}

.cat {
  flex: 1;
  padding: 20px 16px;
  text-align: center;
  background: rgba(7, 30, 37, .85);
  backdrop-filter: blur(10px);
  cursor: pointer;
  border-right: 1px solid rgba(255, 255, 255, .07);
  transition: background var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px
}

.cat:last-child {
  border-right: none
}

.cat-num {
  font-size: .7rem;
  color: rgba(255, 255, 255, .45);
  font-weight: 600
}

.cat-lbl {
  font-size: .88rem;
  font-weight: 600;
  color: var(--white)
}

.cat.active, .cat:hover {
  background: var(--lime)
}

.cat.active .cat-num, .cat.active .cat-lbl, .cat:hover .cat-num, .cat:hover .cat-lbl {
  color: var(--navy)
}

/* ====================================================
   PASSPORT
   ==================================================== */
.passport-sec {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 100px 80px;
  background: var(--white);
  flex-wrap: wrap;
  overflow: hidden
}

.passport-left {
  flex: 1;
  min-width: 300px
}

.passport-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0
}

.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--lime);
  transition: transform .3s, box-shadow .3s
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

.si-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal-lt), var(--teal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0
}

.stat-item strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark-text)
}

.stat-item span {
  font-size: .78rem;
  color: var(--mid-gray)
}

.passport-avatars {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.avatars {
  display: flex
}

.avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -10px;
  object-fit: cover;
  transition: transform .2s
}

.avatars img:first-child {
  margin-left: 0
}

.avatars img:hover {
  transform: translateY(-4px) scale(1.1);
  z-index: 1
}

.passport-avatars>span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--body-text)
}

.passport-right {
  flex: 1;
  min-width: 280px
}

.passport-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  max-width: 100%
}

.passport-img-wrap img {
  border-radius: var(--radius-lg);
  height: 500px;
  box-shadow: var(--shadow-lg)
}

.passport-badge, .passport-badge2 {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow)
}

.passport-badge {
  bottom: -20px;
  left: 0
}

.passport-badge2 {
  top: 24px;
  right: 0
}

.pb-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--lime);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0
}

.passport-badge div strong, .passport-badge2 div strong {
  display: block;
  font-size: 1rem;
  color: var(--dark-text)
}

.passport-badge div small, .passport-badge2 div small {
  color: var(--mid-gray);
  font-size: .75rem
}

/* ====================================================
   DESTINATIONS
   ==================================================== */
.dest-sec {
  padding: 100px 60px;
  background: var(--light-gray);
  overflow: hidden
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  cursor: pointer
}

.dest-card img {
  height: 100%;
  transition: transform .5s
}

.dest-card:hover img {
  transform: scale(1.08)
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 30, 37, .92) 0%, rgba(7, 30, 37, .1) 55%, transparent 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 22px 20px;
  gap: 12px;
  transition: background var(--transition)
}

.dest-card:hover .dest-overlay {
  background: linear-gradient(to top, rgba(7, 30, 37, .97) 0%, rgba(7, 30, 37, .3) 55%, transparent 80%)
}

.dest-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--lime);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px
}

.dest-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white)
}

.dest-info p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .65);
  margin-top: 4px
}

.dest-info p i {
  color: var(--lime)
}

.dest-price {
  display: inline-block;
  background: var(--lime);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 6px
}

.dest-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--lime);
  font-size: .82rem;
  font-weight: 600;
  border: 1px solid rgba(200, 230, 58, .35);
  padding: 8px 18px;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s, background .3s
}

.dest-card:hover .dest-btn {
  opacity: 1;
  transform: translateY(0);
  background: var(--lime);
  color: var(--navy)
}

/* ====================================================
   ADVENTURE
   ==================================================== */
.adventure-sec {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  width: 100%
}

.adv-left {
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 580px;
  max-width: 100%
}

/* Adventure auto-slide track */
.adv-slide-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1)
}

.adv-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%
}

.adv-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.adv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 30, 37, .75) 0%, rgba(13, 74, 86, .5) 100%)
}

.adv-text {
  position: absolute;
  inset: 0;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

.adv-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  margin-bottom: 6px
}

.adv-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1
}

.adv-badge {
  position: absolute;
  top: 40px;
  right: 40px;
  background: var(--lime);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(200, 230, 58, .5);
  animation: pulse 2.5s ease-in-out infinite
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.05)
  }
}

.badge-pct {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1
}

.badge-lbl {
  font-size: .68rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  line-height: 1.3
}

.adv-nav {
  position: absolute;
  bottom: 24px;
  left: 40px;
  display: flex;
  gap: 8px
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: background var(--transition), width .3s
}

.dot.active {
  background: var(--lime);
  width: 24px;
  border-radius: 4px
}

/* ====================================================
   WHY CHOOSE US — left slider + right 4-col grid
   ==================================================== */
.why-sec {
  padding: 100px 60px;
  background: var(--white);
  overflow: hidden
}

.why-inner {
  display: flex;
  gap: 48px;
  align-items: stretch
}

/* ── Left Slider ── */
.why-slider {
  flex: 0 0 400px;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 560px;
  box-shadow: var(--shadow-lg)
}

.why-slide-track {
  display: flex;
  height: 100%;
  transition: transform .65s cubic-bezier(.4, 0, .2, 1)
}

.why-slide {
  flex: 0 0 100%;
  height: 100%
}

.why-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(7, 30, 37, .2) 0%, rgba(7, 30, 37, .65) 100%)
}

.why-slider-text {
  position: absolute;
  bottom: 56px;
  left: 28px;
  right: 28px;
  z-index: 2
}

.why-slider-tag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 8px
}

.why-slider-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15
}

.why-slider-title em {
  font-style: italic;
  color: var(--lime-lt)
}

.why-dots {
  position: absolute;
  bottom: 22px;
  left: 28px;
  display: flex;
  gap: 8px;
  z-index: 2
}

/* ── Right Content ── */
.why-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0
}

.why-right .sec-header {
  margin-bottom: 28px
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  flex: 1
}

.why-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 16px;
  border-top: 3px solid var(--lime);
  transition: transform .3s, box-shadow .3s, border-top-color .3s;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-top-color: var(--teal-lt)
}

.why-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal-lt), var(--teal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0
}

.why-card h4 {
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.25;
  margin: 0
}

.why-card p {
  font-size: .78rem;
  color: var(--body-text);
  line-height: 1.65;
  margin: 0
}

/* ====================================================
   NUMBERS
   ==================================================== */
.numbers-sec {
  padding: 100px 60px;
  background: var(--off-white);
  text-align: center;
  overflow: hidden
}

.numbers-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px
}

.num-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  min-width: 160px;
  flex: 1;
  max-width: 200px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-top: 4px solid var(--lime);
  transition: transform .3s, box-shadow .3s
}

.num-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow)
}

.nc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal-lt), var(--teal));
  color: var(--white);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px
}

.nc-val {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px
}

.num-val {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  /* color: var(--dark-text); */
  line-height: 1
}

.num-suf {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal-lt)
}

.num-card p {
  font-size: .82rem;
  color: var(--mid-gray);
  margin-top: 8px;
  font-weight: 500
}

.numbers-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap
}

/* ====================================================
   CREATIVE GALLERY SECTION
   ==================================================== */
.creative-gallery-sec {
  padding: 100px 60px;
  background: var(--white);
  overflow: hidden
}

/* Tab buttons */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px
}

.gtab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .88rem;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--body-text);
  transition: all var(--transition)
}

.gtab:hover {
  border-color: var(--teal-lt);
  color: var(--teal)
}

.gtab.active {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--navy);
  box-shadow: var(--shadow-lime)
}

/* Slider wrap */
.gallery-slider-wrap {
  display: none;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/7;
  background: #000
}

.gallery-slider-wrap.active {
  display: block
}

.gslider-track {
  display: flex;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
  height: 100%
}

.gslide {
  flex: 0 0 100%;
  position: relative;
  overflow: hidden
}

.gslide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s
}

/* slide info */
.gslide-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 36px;
  background: linear-gradient(to top, rgba(7, 26, 34, .92) 0%, transparent 100%);
  color: var(--white);
}

.gslide-info h4 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 6px
}

.gslide-info p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  gap: 6px
}

.gslide-info p i {
  color: var(--lime)
}

/* Video slide */
.vslide {
  cursor: pointer
}

.video-thumb {
  position: relative;
  width: 100%;
  height: 100%
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.vplay-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(200, 230, 58, .9);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: transform .3s, box-shadow .3s, background .3s;
  box-shadow: 0 8px 30px rgba(200, 230, 58, .4);
  padding-left: 5px;
}

.vslide:hover .vplay-btn {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 12px 48px rgba(200, 230, 58, .6)
}

.vslide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 26, 34, .9) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 28px 36px
}

.vslide-info {
  color: var(--white)
}

.vtag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 8px
}

.vslide-info h4 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 6px
}

.vslide-info p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .65)
}

/* Slider buttons */
.gslider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 10;
}

.gslider-btn.prev {
  left: 16px
}

.gslider-btn.next {
  right: 16px
}

.gslider-btn:hover {
  background: var(--lime);
  color: var(--navy);
  border-color: var(--lime);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-lime)
}

/* Dots */
.gslider-dots {
  position: absolute;
  bottom: 16px;
  right: 24px;
  display: flex;
  gap: 6px;
  z-index: 10
}

.gslider-dots .sdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: all .3s;
  border: none
}

.gslider-dots .sdot.active {
  background: var(--lime);
  width: 22px;
  border-radius: 4px
}

/* Thumbnail strip */
.gthumb-strip {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--lime) transparent;
}

.gthumb-strip::-webkit-scrollbar {
  height: 4px
}

.gthumb-strip::-webkit-scrollbar-track {
  background: transparent
}

.gthumb-strip::-webkit-scrollbar-thumb {
  background: var(--lime);
  border-radius: 4px
}

.gthumb {
  width: 110px;
  height: 68px;
  border-radius: 10px;
  object-fit: cover;
  cursor: pointer;
  flex-shrink: 0;
  border: 2px solid transparent;
  transition: all .3s;
  opacity: .65
}

.gthumb.active {
  border-color: var(--lime);
  opacity: 1;
  box-shadow: 0 4px 16px rgba(200, 230, 58, .35)
}

.gthumb:hover {
  opacity: 1;
  border-color: rgba(200, 230, 58, .5)
}

/* ── VIDEO MODAL ── */
.vmodal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px
}

.vmodal.open {
  display: flex
}

.vmodal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .88);
  backdrop-filter: blur(6px)
}

.vmodal-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px
}

.vmodal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all .3s
}

.vmodal-close:hover {
  background: var(--lime);
  color: var(--navy)
}

.vmodal-frame {
  position: relative;
  padding-top: 56.25%
}

.vmodal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius)
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center
}

.lightbox.open {
  display: flex
}

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .93);
  backdrop-filter: blur(6px)
}

.lb-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 1000px;
  padding: 20px
}

.lb-img-wrap {
  flex: 1;
  position: relative;
  text-align: center
}

.lb-img-wrap img {
  max-height: 75vh;
  width: auto;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5)
}

.lb-caption {
  margin-top: 12px;
  color: rgba(255, 255, 255, .7);
  font-size: .85rem
}

.lb-close {
  position: absolute;
  top: 10px;
  right: 20px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all .3s;
  z-index: 2
}

.lb-close:hover {
  background: var(--lime);
  color: var(--navy)
}

.lb-nav {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all .3s;
  flex-shrink: 0
}

.lb-nav:hover {
  background: var(--lime);
  color: var(--navy);
  border-color: var(--lime)
}

.lb-counter {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, .5);
  color: rgba(255, 255, 255, .7);
  font-size: .8rem;
  padding: 4px 12px;
  border-radius: 20px
}

/* ====================================================
   TEAM
   ==================================================== */
.team-sec {
  padding: 100px 80px;
  display: flex;
  align-items: center;
  gap: 80px;
  background: var(--light-gray);
  flex-wrap: wrap;
  overflow: hidden
}

.team-photos-wrap {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px
}

.team-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer
}

.tp1 {
  grid-column: 1;
  grid-row: 1/3;
  height: 380px
}

.tp2 {
  grid-column: 2;
  grid-row: 1;
  height: 180px
}

.tp3 {
  grid-column: 2;
  grid-row: 2;
  height: 180px
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s
}

.team-photo:hover img {
  transform: scale(1.06)
}

.tp-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(7, 30, 37, .9) 0%, transparent 100%);
  padding: 30px 16px 16px;
  color: var(--white)
}

.tp-label strong {
  display: block;
  font-size: .92rem;
  font-weight: 700
}

.tp-label span {
  font-size: .75rem;
  color: rgba(255, 255, 255, .65)
}

.team-content {
  flex: 1;
  min-width: 280px
}

.team-perks {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.team-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--body-text)
}

.team-perks li i {
  color: var(--lime);
  background: #f3fde8;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem
}

/* ====================================================
   NEWSLETTER
   ==================================================== */
.newsletter-sec {
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--teal-dk);
  min-height: 500px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%
}

.nl-content {
  flex: 1;
  min-width: 320px;
  padding: 80px 70px;
  color: var(--white)
}

.nl-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--lime);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
  box-shadow: 0 6px 20px rgba(200, 230, 58, .4)
}

.nl-content h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px
}

.nl-content p {
  color: rgba(255, 255, 255, .65);
  font-size: .93rem;
  line-height: 1.7;
  margin-bottom: 32px
}

.nl-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px
}

.nl-input-wrap {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-sm);
  padding: 0 18px;
  transition: border-color var(--transition)
}

.nl-input-wrap:focus-within {
  border-color: var(--lime)
}

.nl-input-wrap i {
  color: rgba(255, 255, 255, .4)
}

.nl-input-wrap input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  padding: 15px 0
}

.nl-input-wrap input::placeholder {
  color: rgba(255, 255, 255, .35)
}

.nl-trust {
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap
}

.nl-trust i {
  color: var(--lime)
}

.nl-trust span {
  color: rgba(255, 255, 255, .2)
}

.nl-image {
  flex: 0 0 42%;
  position: relative;
  min-height: 500px;
  overflow: hidden
}

.nl-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.85)
}

.nl-float-card {
  position: absolute;
  bottom: 36px;
  left: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg)
}

.nl-float-card i {
  color: var(--teal-lt);
  font-size: 1.2rem
}

.nl-float-card strong {
  display: block;
  font-size: .88rem;
  color: var(--dark-text)
}

.nl-float-card small {
  font-size: .75rem;
  color: var(--mid-gray)
}

/* ====================================================
   REVIEWS — CAROUSEL
   ==================================================== */
.reviews-sec {
  padding: 100px 60px;
  background: var(--off-white);
  overflow: hidden
}

.review-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  justify-content: center;
  flex-wrap: wrap
}

.review-summary strong {
  font-size: 1.2rem;
  color: var(--dark-text)
}

.review-summary span {
  font-size: .85rem;
  color: var(--mid-gray)
}

.rv-stars {
  display: flex;
  gap: 3px
}

.rv-stars i {
  color: #f5a623;
  font-size: .9rem
}

.rv-stars.big i {
  font-size: 1.1rem
}

/* Testimonial Carousel */
.testimonial-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px
}

.testimonial-carousel {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-lg)
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1)
}

.testimonial-track .review-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
  position: relative
}

.testimonial-track .review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow)
}

.testimonial-track .review-card.featured {
  background: var(--teal-dk);
  border-color: var(--teal-lt)
}

.testimonial-track .review-card.featured .rv-stars i {
  color: var(--lime)
}

.testimonial-track .review-card.featured p {
  color: rgba(255, 255, 255, .8)
}

.testimonial-track .review-card.featured .rv-author strong {
  color: var(--white)
}

.testimonial-track .review-card.featured .rv-author span {
  color: rgba(255, 255, 255, .5)
}

.rv-badge {
  position: absolute;
  /* top: -14px; */
  right: 20px;
  background: var(--lime);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px
}

.testimonial-track .review-card p {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--body-text);
  margin: 16px 0 22px;
  font-style: italic
}

.rv-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.rv-author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--lime)
}

.rv-author strong {
  display: block;
  font-size: .9rem;
  color: var(--dark-text)
}

.rv-author span {
  font-size: .76rem;
  color: var(--mid-gray)
}

.rv-carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all .3s;
  box-shadow: var(--shadow-sm)
}

.rv-carousel-btn:hover {
  background: var(--lime);
  color: var(--navy);
  border-color: var(--lime);
  box-shadow: var(--shadow-lime)
}

.rv-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px
}

.rv-carousel-dots .rvdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all .3s
}

.rv-carousel-dots .rvdot.active {
  background: var(--lime);
  width: 24px;
  border-radius: 4px
}

/* ====================================================
   BLOG
   ==================================================== */
.blog-sec {
  padding: 100px 60px;
  background: var(--white);
  overflow: hidden
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px
}

.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--off-white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow)
}

.blog-img {
  position: relative;
  height: 220px;
  overflow: hidden
}

.blog-img img {
  height: 100%;
  transition: transform .5s
}

.blog-card:hover .blog-img img {
  transform: scale(1.07)
}

.blog-cat {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--lime);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px
}

.blog-cat.beach {
  background: #3abde6;
  color: var(--white)
}

.blog-cat.cultural {
  background: #e6923a;
  color: var(--white)
}

.blog-body {
  padding: 24px 24px 28px
}

.blog-meta {
  font-size: .75rem;
  color: var(--mid-gray);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap
}

.blog-meta i {
  color: var(--teal-lt)
}

.blog-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.3;
  margin-bottom: 10px
}

.blog-body p {
  font-size: .85rem;
  color: var(--mid-gray);
  line-height: 1.65;
  margin-bottom: 18px
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal-lt);
  font-size: .84rem;
  font-weight: 600;
  transition: gap .2s, color var(--transition)
}

.blog-link:hover {
  gap: 10px;
  color: var(--teal)
}

/* ====================================================
   CONTACT SECTION
   ==================================================== */
.contact-sec {
  padding: 100px 60px;
  background: var(--light-gray);
  overflow: hidden
}

.contact-inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  flex-wrap: wrap
}

.contact-left {
  flex: 1;
  min-width: 280px
}

.contact-info-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--lime);
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s
}

.contact-info-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow)
}

.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-lt), var(--teal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0
}

.contact-info-item strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 3px
}

.contact-info-item span {
  font-size: .82rem;
  color: var(--mid-gray)
}

.contact-right {
  flex: 1;
  min-width: 300px
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow)
}

.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 28px
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.cf-field label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark-text)
}

.cf-field label span {
  color: #e74c3c
}

.cf-field input,
.cf-field select,
.cf-field textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--dark-text);
  background: var(--off-white);
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  width: 100%
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--teal-lt);
  box-shadow: 0 0 0 3px var(--teal-glow);
  background: var(--white)
}

.cf-field textarea {
  resize: vertical;
  min-height: 120px
}

.cf-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8a8e' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer
}

.cf-submit {
  width: 100%;
  justify-content: center;
  padding: 15px 30px;
  font-size: .95rem;
  margin-top: 6px
}

/* =====================================================
   FOOTER — Complete
   ===================================================== */

.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .5);
  overflow: hidden;
  width: 100%;
}

/* ══════════════════════════════════
   ① BIG TEXT STRIP
══════════════════════════════════ */
.footer-brand-strip {
  position: relative;
  padding: 64px 80px 0;
  overflow: hidden;
}

/* Floating icons layer */
.footer-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* SVG dotted route */
.ff-route {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 120px;
  transform: translateY(-50%);
  opacity: .6;
}

/* Floating icons base */
.ff-el {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  animation: ffFloat 6s ease-in-out infinite;
}

.ff1 {
  top: 18%;
  left: 6%;
  font-size: 1.4rem;
  color: rgba(200, 230, 58, .22);
  animation-duration: 7s;
  animation-delay: 0s;
  transform: rotate(-20deg);
}

.ff2 {
  top: 55%;
  left: 18%;
  font-size: .9rem;
  color: rgba(255, 255, 255, .08);
  animation-duration: 5s;
  animation-delay: .8s;
}

.ff3 {
  top: 20%;
  left: 38%;
  font-size: 1.6rem;
  color: rgba(200, 230, 58, .1);
  animation-duration: 8s;
  animation-delay: .3s;
}

.ff4 {
  top: 65%;
  left: 55%;
  font-size: 1rem;
  color: rgba(255, 255, 255, .07);
  animation-duration: 6.5s;
  animation-delay: 1.4s;
}

.ff5 {
  top: 15%;
  left: 72%;
  font-size: 1.3rem;
  color: rgba(200, 230, 58, .15);
  animation-duration: 7.5s;
  animation-delay: .5s;
}

.ff6 {
  top: 60%;
  left: 82%;
  font-size: .85rem;
  color: rgba(255, 255, 255, .07);
  animation-duration: 5.5s;
  animation-delay: 1.8s;
}

.ff7 {
  top: 30%;
  left: 90%;
  font-size: 1rem;
  color: rgba(200, 230, 58, .1);
  animation-duration: 9s;
  animation-delay: .2s;
}

.ff8 {
  top: 75%;
  left: 28%;
  font-size: .8rem;
  color: rgba(255, 255, 255, .06);
  animation-duration: 6s;
  animation-delay: 2.2s;
}

@keyframes ffFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }

  33% {
    transform: translateY(-10px) rotate(5deg);
  }

  66% {
    transform: translateY(6px) rotate(-4deg);
  }
}

/* Tag line */
.footer-strip-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.footer-strip-tag span {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, .15);
}

/* Big name wrapper */
.footer-bigname-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  line-height: .92;
  padding-bottom: 8px;
}

.footer-bigname {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 12vw, 12rem);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: .95;
  user-select: none;
  white-space: nowrap;
}

/* "Royal" — white faint outline */
.footer-bigname-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .13);
}

/* "Holidays" — lime tinted outline, staggered right */
.footer-bigname-filled {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(200, 230, 58, .2);
  padding-left: 80px;
}

/* Stats bar */
.footer-strip-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 32px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  position: relative;
  z-index: 1;
}

.fss-item {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.fss-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .8);
  line-height: 1.2;
  margin-bottom: 4px;
}

.fss-item span {
  font-size: .68rem;
  color: rgba(255, 255, 255, .3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.fss-div {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .09);
  flex-shrink: 0;
}

/* ══════════════════════════════════
   ② MAIN FOOTER BODY
══════════════════════════════════ */
.footer-main {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 52px 80px 60px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

/* Brand / about col */
.footer-about {
  flex: 0 0 280px;
  padding-right: 0;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo {
  max-width: 120px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: .75;
  transition: opacity var(--transition);
}

.footer-logo:hover {
  opacity: 1;
}

.footer-about>p {
  font-size: .82rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .32);
  margin-bottom: 22px;
  max-width: 230px;
}

/* Socials */
.footer-socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.fs-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .38);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  transition: all var(--transition);
}

.fs-icon:hover {
  background: var(--lime);
  color: var(--navy);
  border-color: var(--lime);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lime);
}

/* Vertical divider */
.footer-vdiv {
  width: 1px;
  align-self: stretch;
  min-height: 180px;
  background: rgba(255, 255, 255, .07);
  margin: 0 56px;
  flex-shrink: 0;
}

/* Link columns */
.footer-col {
  flex: 1;
  min-width: 140px;
  padding-right: 20px;
}

.footer-col:last-child {
  padding-right: 0;
}

.footer-col h5 {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .22);
  margin: 0 0 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: .82rem;
  color: rgba(255, 255, 255, .4);
  display: inline-block;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-col ul li a:hover {
  color: var(--lime);
  padding-left: 5px;
}

/* Contact list */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .4);
  line-height: 1.5;
}

.footer-contact-list li i {
  color: var(--lime);
  font-size: .78rem;
  width: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-list li a {
  color: rgba(255, 255, 255, .4);
  transition: color var(--transition);
}

.footer-contact-list li a:hover {
  color: var(--lime);
}

/* ══════════════════════════════════
   ③ BOTTOM BAR
══════════════════════════════════ */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 80px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: .75rem;
  color: rgba(255, 255, 255, .2);
  max-width: none;
}

.footer-bottom p strong {
  color: rgba(255, 255, 255, .38);
}

.footer-bottom p i {
  color: var(--lime);
  font-size: .65rem;
  margin: 0 1px;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom-right a {
  font-size: .74rem;
  color: rgba(255, 255, 255, .2);
  transition: color var(--transition);
}

.footer-bottom-right a:hover {
  color: rgba(255, 255, 255, .55);
}

.footer-bottom-right span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  display: inline-block;
}

.footer-payments {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-payments i {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, .14);
  transition: color var(--transition);
}

.footer-payments i:hover {
  color: rgba(255, 255, 255, .45);
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1200px) {
  .footer-bigname-filled {
    padding-left: 60px;
  }

  .footer-vdiv {
    margin: 0 40px;
  }
}

@media (max-width: 1024px) {

  .footer-brand-strip,
  .footer-main,
  .footer-bottom {
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer-bigname {
    font-size: clamp(4rem, 11vw, 9rem);
    letter-spacing: -2px;
  }

  .footer-bigname-filled {
    padding-left: 48px;
  }

  .footer-vdiv {
    margin: 0 36px;
  }
}

@media (max-width: 768px) {
  .footer-brand-strip {
    padding: 44px 20px 0;
  }

  .footer-bigname {
    font-size: clamp(2.8rem, 11vw, 5.5rem);
    letter-spacing: -1px;
    white-space: normal;
  }

  .footer-bigname-filled {
    padding-left: 16px;
  }

  .footer-strip-stats {
    flex-wrap: wrap;
    padding: 18px 0;
    gap: 4px;
  }

  .fss-div {
    display: none;
  }

  .fss-item {
    flex: 1 1 45%;
    text-align: left;
    padding: 8px 4px;
  }

  .footer-main {
    padding: 36px 20px 44px;
    gap: 28px;
  }

  .footer-about {
    flex: 0 0 100%;
    padding-right: 0;
  }

  .footer-vdiv {
    display: none;
  }

  .footer-col {
    flex: 1 1 140px;
    padding-right: 0;
  }

  .footer-bottom {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* Show only 3 floating icons on mobile */
  .ff-el {
    display: none;
  }

  .ff1, .ff3, .ff5 {
    display: flex;
  }
}

@media (max-width: 480px) {
  .footer-bigname {
    font-size: clamp(2.2rem, 10vw, 4rem);
  }

  .footer-bigname-filled {
    padding-left: 10px;
  }

  .fss-item {
    flex: 1 1 100%;
  }
}

/* ====================================================
   BACK TO TOP
   ==================================================== */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--navy);
  font-size: 1rem;
  box-shadow: 0 6px 22px rgba(200, 230, 58, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s, visibility .3s, transform .3s, background .2s
}

.back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.back-top:hover {
  background: var(--lime-dk);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(200, 230, 58, .55)
}

/* ====================================================
   RESPONSIVE
   ==================================================== */

/* ── Global horizontal scroll prevention ── */
html, body {
  overflow-x: hidden;
  max-width: 100%;
  position: relative
}

/* Prevent any child from ever exceeding viewport width */
section,
header,
footer,
.topbar,
.navbar,
.nav-inner,
.hero,
.passport-sec,
.dest-sec,
.adventure-sec,
.numbers-sec,
.creative-gallery-sec,
.team-sec,
.newsletter-sec,
.reviews-sec,
.blog-sec,
.contact-sec,
.footer {
  max-width: 100%;
  overflow-x: clip
}

@media(max-width:1200px) {
  .passport-sec {
    padding: 80px 48px;
    gap: 48px
  }

  .dest-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .dest-card {
    height: 340px
  }

  .team-sec {
    padding: 80px 48px;
    gap: 48px
  }

  .dropdown-mega {
    width: min(660px, 90vw)
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .why-slider {
    flex: 0 0 320px
  }
}

@media(max-width:960px) {
  .topbar {
    padding: 8px 16px
  }

  .topbar-center, .topbar-right {
    display: none
  }

  .navbar {
    padding: 8px 12px
  }

  /* Fix search button visibility on mobile */
  .search-btn {
    display: flex
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(300px, 82vw);
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 64px 20px 40px;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(110%);
    transition: transform .38s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -12px 0 50px rgba(0, 0, 0, .5);
    z-index: 9998;
    visibility: hidden
  }

  .nav-links.open {
    transform: translateX(0);
    visibility: visible
  }

  .nav-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background var(--transition);
    display: none;
  }

  .nav-close:hover {
    background: rgba(255, 255, 255, .18)
  }

  .nav-links ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%
  }

  .nav-links ul li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
  }

  .nav-links ul li>a {
    padding: 12px 4px;
    width: 100%;
    justify-content: space-between;
    font-size: .95rem
  }

  .dropdown, .dropdown-mega {
    position: static !important;
    left: auto !important;
    transform: none !important;
    box-shadow: none;
    background: rgba(255, 255, 255, .04);
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    padding: 4px 0;
    display: none;
    border-top: none;
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: 1fr !important;
    margin: 0 !important;
    overflow: hidden
  }

  .has-dropdown.mob-open .dropdown, .has-mega.mob-open .dropdown-mega {
    display: block
  }

  .mega-header {
    padding: 14px 16px;
    background: rgba(255, 255, 255, .06)
  }

  .mega-header .mega-title {
    font-size: 1.1rem;
    color: var(--white)
  }

  .mega-header .mega-desc {
    color: rgba(255, 255, 255, .55)
  }

  .mega-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0
  }

  .mega-card {
    padding: 10px 16px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
  }

  .mega-card:hover {
    background: rgba(255, 255, 255, .06);
    transform: none
  }

  .mc-body strong {
    color: rgba(255, 255, 255, .85)
  }

  .mc-price {
    color: rgba(255, 255, 255, .4)
  }

  .dropdown-inner a {
    color: rgba(255, 255, 255, .75);
    padding: 9px 10px;
    font-size: .84rem
  }

  .dropdown-inner a::after {
    display: none
  }

  .dropdown-inner a div strong {
    color: rgba(255, 255, 255, .9)
  }

  .dropdown-inner a div small {
    color: rgba(255, 255, 255, .4)
  }

  .dropdown-inner a .dd-icon {
    opacity: .85
  }

  .dropdown-inner a:hover {
    background: rgba(255, 255, 255, .06);
    color: var(--lime);
    transform: none
  }

  .dropdown-inner a:hover div strong {
    color: var(--lime)
  }

  /* Nav left: keep search and register visible but compact */
  .nav-left {
    gap: 8px
  }

  .btn-register {
    padding: 8px 14px;
    font-size: .78rem;
    display: none;
  }

  .hamburger {
    display: flex
  }

  .nav-inner {
    border-radius: 14px;
    padding: 8px 16px
  }

  .passport-sec {
    flex-direction: column;
    padding: 60px 28px
  }

  .passport-right {
    width: 100%
  }

  .passport-img-wrap img {
    height: 340px
  }

  .passport-badge2 {
    top: 16px;
    right: 0
  }

  .passport-badge {
    left: 0
  }

  .dest-sec, .numbers-sec, .gallery-sec, .blog-sec, .reviews-sec, .creative-gallery-sec, .contact-sec {
    padding: 60px 24px
  }

  .why-sec {
    padding: 60px 24px
  }

  .why-inner {
    flex-direction: column
  }

  .why-slider {
    flex: none;
    width: 100%;
    min-height: 320px
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px
  }

  .adventure-sec {
    min-height: 400px
  }

  .adv-left {
    width: 100%;
    min-height: 400px
  }

  .numbers-row {
    gap: 12px
  }

  .num-card {
    min-width: 130px;
    padding: 24px 16px
  }

  .gallery-slider-wrap {
    aspect-ratio: 16/9
  }

  /* Testimonial carousel responsive */
  .testimonial-carousel-wrap {
    gap: 10px
  }

  .testimonial-track .review-card {
    flex: 0 0 calc(50% - 12px)
  }

  .rv-carousel-btn {
    width: 40px;
    height: 40px;
    font-size: .85rem
  }

  .team-sec {
    flex-direction: column;
    padding: 60px 28px;
    gap: 36px
  }

  .team-photos-wrap {
    width: 100%
  }

  .tp1 {
    height: 260px
  }

  .tp2, .tp3 {
    height: 125px
  }

  .newsletter-sec {
    flex-direction: column
  }

  .nl-content {
    padding: 56px 28px
  }

  .nl-image {
    width: 100%;
    min-height: 260px;
    order: -1
  }

  .nl-float-card {
    left: 16px;
    bottom: 18px
  }

  /* Contact responsive */
  .contact-inner {
    flex-direction: column;
    gap: 40px
  }

  .contact-form-wrap {
    padding: 28px 22px
  }

  .cf-row {
    grid-template-columns: 1fr
  }

  .blog-sec {
    padding: 60px 24px
  }

  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto
  }

  .footer-top {
    padding: 56px 20px 36px;
    gap: 24px
  }

  .footer-bottom {
    padding: 18px 20px;
    flex-direction: column;
    text-align: center;
    align-items: center
  }

  .footer-bottom p {
    text-align: center
  }

  .footer-payments {
    justify-content: center
  }

  .footer-brand {
    flex: none;
    width: 100%
  }

  .footer-col {
    min-width: calc(50% - 12px);
    flex: 0 0 calc(50% - 12px)
  }

  .footer-col.wide {
    flex: none;
    width: 100%
  }
}

@media(max-width:600px) {
  .why-sec {
    padding: 48px 16px
  }

  .why-slider {
    min-height: 240px
  }

  .why-grid {
    grid-template-columns: 1fr 1fr
  }

  .hero-title {
    font-size: 2rem
  }

  .hero-thumbs {
    gap: 8px
  }

  .thumb {
    width: 90px;
    height: 65px
  }

  .hero-cats {
    flex-wrap: wrap
  }

  .cat {
    min-width: 50%;
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, .07)
  }

  .passport-stats {
    grid-template-columns: 1fr
  }

  .dest-grid {
    grid-template-columns: 1fr
  }

  .dest-card {
    height: 260px
  }

  .adv-title {
    font-size: 2.2rem
  }

  .numbers-row {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 12px
  }

  .num-card {
    min-width: 130px;
    flex: 0 0 auto
  }

  .gallery-slider-wrap {
    aspect-ratio: 4/3
  }

  .gslide-info h4, .vslide-info h4 {
    font-size: 1.2rem
  }

  .gthumb {
    width: 72px;
    height: 48px
  }

  .team-photos-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto
  }

  .tp1, .tp2, .tp3 {
    grid-column: auto;
    grid-row: auto;
    height: 200px
  }

  .nl-content h2 {
    font-size: 1.8rem
  }

  .nl-form {
    flex-direction: column
  }

  /* Testimonial single card on mobile */
  .testimonial-carousel-wrap {
    flex-direction: row;
    gap: 8px
  }

  .testimonial-track .review-card {
    flex: 0 0 calc(100% - 0px)
  }

  .rv-carousel-btn {
    width: 36px;
    height: 36px;
    font-size: .8rem;
    flex-shrink: 0
  }

  /* Contact mobile */
  .contact-sec {
    padding: 60px 18px
  }

  .contact-form-wrap {
    padding: 22px 16px
  }

  .cf-row {
    grid-template-columns: 1fr
  }

  .footer-top {
    gap: 20px;
    padding: 40px 16px 28px
  }

  .footer-col {
    min-width: 100%;
    flex: none;
    width: 100%
  }

  .footer-col.wide {
    flex: none;
    min-width: 100%;
    width: 100%
  }

  .footer-bottom {
    padding: 16px;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 12px
  }

  .footer-bottom p {
    font-size: .78rem;
    line-height: 1.7;
    word-break: break-word
  }

  .footer-payments {
    justify-content: center;
    font-size: 1.4rem;
    gap: 10px
  }

  .footer-socials {
    flex-wrap: wrap
  }

  .lb-inner {
    flex-direction: column;
    padding: 56px 12px 12px
  }

  .lb-nav {
    display: none
  }

  /* Search overlay mobile fix */
  .search-overlay {
    padding: 48px 20px 36px
  }

  .search-inner h3 {
    font-size: 1.4rem;
    margin-bottom: 18px
  }

  .search-box {
    flex-wrap: wrap;
    padding: 0 14px
  }

  .search-box .btn-lime {
    width: 100%;
    justify-content: center;
    margin: 6px 0 8px
  }

  /* Hero mobile fixes */
  .hero-content {
    padding: 80px 16px 110px
  }

  .hero-desc {
    font-size: .9rem
  }

  /* Section padding fix for very small screens */
  .passport-sec {
    padding: 48px 16px
  }

  .dest-sec,
  .numbers-sec,
  .creative-gallery-sec,
  .blog-sec,
  .reviews-sec,
  .team-sec,
  .contact-sec {
    padding: 48px 16px
  }

  .adv-badge {
    width: 72px;
    height: 72px;
    top: 20px;
    right: 20px
  }

  .why-sec {
    padding: 56px 16px
  }

  .why-grid {
    grid-template-columns: 1fr 1fr
  }

  .numbers-cta {
    flex-direction: column;
    align-items: center
  }

  .btn-lime,
  .btn-outline,
  .btn-outline-dark {
    white-space: normal;
    text-align: center;
    justify-content: center
  }

  /* Footer fix */
  .footer-top {
    padding: 40px 16px 28px
  }

  .footer-bottom {
    padding: 16px;
    font-size: .75rem
  }

  .footer-payments {
    font-size: 1.3rem;
    gap: 8px
  }

  /* Gallery thumbs on tiny screens */
  .gthumb-strip {
    gap: 6px
  }

  /* Testimonial review card padding */
  .testimonial-track .review-card {
    padding: 22px 16px
  }

  /* Contact form wrap */
  .contact-form-wrap {
    border-radius: var(--radius)
  }

  /* Adventure badge size */
  .adv-badge {
    width: 72px;
    height: 72px;
    top: 20px;
    right: 20px
  }

  .badge-pct {
    font-size: 1.1rem
  }
}

/* ── Extra small screens (≤380px) ── */
@media(max-width:380px) {
  .nav-inner {
    padding: 6px 12px;
    gap: 8px
  }

  .nav-logo span {
    font-size: 1.25rem
  }

  .logo-pin {
    width: 28px;
    height: 28px;
    font-size: .75rem
  }

  .hamburger span {
    width: 22px
  }

  .hero-title {
    font-size: 1.7rem
  }

  .hero-thumbs {
    display: none
  }

  .sec-title {
    font-size: 1.6rem
  }

  .passport-stats {
    gap: 12px
  }

  .stat-item {
    padding: 12px
  }

  .dest-card {
    height: 220px
  }

  .num-card {
    min-width: 110px;
    padding: 18px 12px
  }

  .num-val {
    font-size: 2.2rem
  }

  .nl-content {
    padding: 40px 16px
  }

  .nl-content h2 {
    font-size: 1.5rem
  }

  .footer-apps {
    flex-direction: column
  }

  .app-badge {
    width: 100%
  }
}

/* Hero fallback — shown when no DB image is available */
.hero-img-fallback {
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=85');
  background-size: cover;
  background-position: center;
}

/* ── DESTINATION CAROUSEL ─────────────────────────────── */
.dest-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 0;
}

.dest-carousel {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.dest-track {
  display: flex;
  gap: 20px;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.dest-track .dest-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 220px;
}

.dest-carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all .3s;
  box-shadow: var(--shadow-sm);
}

.dest-carousel-btn:hover {
  background: var(--lime);
  color: var(--navy);
  border-color: var(--lime);
  box-shadow: var(--shadow-lime);
}

.dest-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.dest-carousel-dots .ddot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all .3s;
}

.dest-carousel-dots .ddot.active {
  background: var(--lime);
  width: 24px;
  border-radius: 4px;
}

/* ── BLOG CAROUSEL ────────────────────────────────────── */
.blog-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.blog-carousel {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.blog-track {
  display: flex;
  gap: 28px;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.blog-track .blog-card {
  flex: 0 0 calc(33.333% - 19px);
  min-width: 0;
}

.blog-carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all .3s;
  box-shadow: var(--shadow-sm);
}

.blog-carousel-btn:hover {
  background: var(--lime);
  color: var(--navy);
  border-color: var(--lime);
  box-shadow: var(--shadow-lime);
}

.blog-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.blog-carousel-dots .bldot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all .3s;
}

.blog-carousel-dots .bldot.active {
  background: var(--lime);
  width: 24px;
  border-radius: 4px;
}

/* ── RESPONSIVE: Carousel overrides ──────────────────── */
@media (max-width: 1200px) {
  .dest-track .dest-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 960px) {
  .dest-track .dest-card {
    flex: 0 0 calc(50% - 10px);
  }

  .blog-track .blog-card {
    flex: 0 0 calc(50% - 14px);
  }

  .dest-carousel-btn, .blog-carousel-btn {
    width: 40px;
    height: 40px;
    font-size: .85rem;
  }
}

@media (max-width: 600px) {
  .dest-track .dest-card {
    flex: 0 0 100%;
  }

  .blog-track .blog-card {
    flex: 0 0 100%;
  }

  .dest-carousel-wrap, .blog-carousel-wrap {
    flex-direction: row;
    gap: 8px;
  }

  .dest-carousel-btn, .blog-carousel-btn {
    width: 36px;
    height: 36px;
    font-size: .8rem;
    flex-shrink: 0;
  }
}

/* =====================================================
   TEAM CAROUSEL
   ===================================================== */

.team-sec {
  padding: 100px 80px;
  display: flex;
  align-items: center;
  gap: 80px;
  background: var(--light-gray);
  flex-wrap: wrap;
  overflow: hidden;
}

/* LEFT content — unchanged from original */
.team-content {
  flex: 1;
  min-width: 300px;
}

.team-perks {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.team-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--body-text);
}

.team-perks li i {
  color: var(--lime);
  background: #f3fde8;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  flex-shrink: 0;
}

/* Nav arrows + counter */
.team-carousel-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 16px;
}

.team-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.team-nav-btn:hover {
  background: var(--lime);
  color: var(--navy);
  border-color: var(--lime);
  box-shadow: var(--shadow-lime);
  transform: scale(1.08);
}

.team-nav-counter {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-text);
  min-width: 54px;
  text-align: center;
}

/* Dots */
.team-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.team-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all .3s;
}

.team-dot.active {
  background: var(--lime);
  width: 26px;
  border-radius: 4px;
}

/* =====================================================
   RIGHT: Carousel
   ===================================================== */

.team-carousel-wrap {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.team-carousel-track {
  position: relative;
  width: 100%;
  height: 520px;
}

/* Each card — stacked absolutely, only active is visible */
.team-card {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  opacity: 0;
  transform: translateX(60px) scale(.96);
  transition: opacity .5s cubic-bezier(.4, 0, .2, 1),
    transform .5s cubic-bezier(.4, 0, .2, 1);
  pointer-events: none;
  box-shadow: var(--shadow-lg);
}

.team-card.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.team-card.exit {
  opacity: 0;
  transform: translateX(-60px) scale(.96);
}

/* Card image */
.team-card-img {
  position: relative;
  width: 100%;
  height: 100%;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(7, 30, 37, .92) 0%,
      rgba(7, 30, 37, .3) 50%,
      transparent 80%);
}

/* Badge top-left */
.team-card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--lime);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-lime);
}

/* Card info bottom */
.team-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  z-index: 2;
}

.team-card-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.team-card-meta h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 4px;
}

.team-card-meta p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .65);
  display: flex;
  align-items: center;
  gap: 5px;
}

.team-card-meta p i {
  color: var(--lime);
  font-size: .75rem;
}

/* Tags */
.team-card-tags {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.team-card-tags span {
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .85);
  font-size: .7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, .15);
  white-space: nowrap;
  backdrop-filter: blur(6px);
}

/* =====================================================
   Stack Thumbnails
   ===================================================== */

.team-stack-thumbs {
  position: absolute;
  bottom: 24px;
  right: -20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.tthumb {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  cursor: pointer;
  opacity: .55;
  transform: scale(.9);
  transition: all .3s;
  box-shadow: var(--shadow);
}

.tthumb:hover {
  opacity: .85;
  transform: scale(.96);
}

.tthumb.active {
  opacity: 1;
  transform: scale(1.1);
  border-color: var(--lime);
  box-shadow: var(--shadow-lime);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1024px) {
  .team-sec {
    padding: 80px 40px;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .team-sec {
    padding: 60px 20px;
    flex-direction: column;
    gap: 36px;
  }

  .team-carousel-track {
    height: 420px;
  }

  .team-stack-thumbs {
    right: 8px;
    bottom: 16px;
  }

  .tthumb {
    width: 44px;
    height: 44px;
  }
}

/* =====================================================
   NEWSLETTER — Minimal Compact Sober
   ===================================================== */

.newsletter-sec {
  background: var(--teal-dk);
  padding: 64px 80px;
  overflow: hidden;
  width: 100%;
}

.nl-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── LEFT ── */
.nl-left {
  flex: 1.1;
  min-width: 260px;
  padding-right: 60px;
}

.nl-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 10px 0 12px;
}

.nl-left h2 em {
  font-style: italic;
  color: var(--lime);
}

.nl-left>p {
  color: rgba(255, 255, 255, .55);
  font-size: .88rem;
  line-height: 1.7;
  max-width: 380px;
}

/* ── VERTICAL DIVIDER ── */
.nl-divider {
  width: 1px;
  height: 140px;
  background: rgba(255, 255, 255, .1);
  flex-shrink: 0;
  margin: 0 60px;
}

/* ── RIGHT ── */
.nl-right {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Action buttons */
.nl-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.nl-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .7);
  font-size: .86rem;
  font-weight: 600;
  transition: color var(--transition);
}

.nl-link i {
  color: #25d366;
  font-size: 1rem;
}

.nl-link:hover {
  color: var(--white);
}

/* Trust chips */
.nl-chips {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nl-chips li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  color: rgba(255, 255, 255, .4);
  font-weight: 500;
}

.nl-chips li i {
  color: var(--lime);
  font-size: .65rem;
}

/* Social proof */
.nl-proof {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nl-avatars {
  display: flex;
}

.nl-avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--teal-dk);
  object-fit: cover;
  margin-left: -8px;
}

.nl-avatars img:first-child {
  margin-left: 0;
}

.nl-proof span {
  font-size: .76rem;
  color: rgba(255, 255, 255, .4);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .newsletter-sec {
    padding: 52px 36px;
  }

  .nl-divider {
    display: none;
  }

  .nl-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .nl-left {
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .newsletter-sec {
    padding: 44px 20px;
  }

  .nl-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ====================================================
   PAGE HERO — Shared across all inner pages
   ==================================================== */

.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  width: 100%;
}

.ph-bg {
  position: absolute;
  inset: 0;
}

.ph-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: zoomBg 20s ease-in-out infinite alternate;
}

.ph-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(7, 30, 37, .5) 0%, rgba(9, 47, 56, .65) 55%, rgba(7, 25, 32, .85) 100%);
}

.ph-overlay-dark {
  background: linear-gradient(160deg, rgba(7, 30, 37, .65) 0%, rgba(9, 47, 56, .78) 55%, rgba(7, 25, 32, .92) 100%);
}

.ph-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 120px 24px 80px;
  animation: heroIn 1s ease both;
}

.ph-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  flex-wrap: wrap;
}

.ph-breadcrumb a {
  color: rgba(255, 255, 255, .65);
  transition: color var(--transition);
}

.ph-breadcrumb a:hover {
  color: var(--lime);
}

.ph-breadcrumb i {
  font-size: .6rem;
  color: rgba(255, 255, 255, .3);
}

.ph-badge {
  display: inline-block;
  background: var(--lime);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.ph-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .4);
}

.ph-title em {
  font-style: italic;
  color: var(--lime-lt);
}

.ph-sub {
  color: rgba(255, 255, 255, .75);
  font-size: .98rem;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

.ph-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  z-index: 2;
}

.ph-scroll-hint span {
  display: block;
  width: 2px;
  height: 8px;
  background: rgba(255, 255, 255, .4);
  border-radius: 2px;
  animation: scrollHint 1.6s ease-in-out infinite;
}

.ph-scroll-hint span:nth-child(2) {
  animation-delay: .2s;
}

.ph-scroll-hint span:nth-child(3) {
  animation-delay: .4s;
}

@keyframes scrollHint {
  0%, 100% {
    opacity: .3;
    transform: scaleY(.8);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* ====================================================
   CF ALERT STYLES
   ==================================================== */
.cf-alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 500;
}

.cf-alert-success {
  background: #e8f8e8;
  color: #1a7a1a;
  border: 1px solid #b8e8b8;
}

.cf-alert-error {
  background: #fde8e8;
  color: #c0392b;
  border: 1px solid #f5c6c6;
}

/* ====================================================
   ABOUT PAGE
   ==================================================== */

.about-story-sec {
  padding: 100px 80px;
  background: var(--white);
  overflow: hidden;
}

.about-story-inner {
  display: flex;
  gap: 80px;
  align-items: center;
  flex-wrap: wrap;
}

.about-story-left {
  flex: 1;
  min-width: 300px;
}

.about-img-stack {
  position: relative;
  padding-bottom: 30px;
}

.abs-main {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.abs-secondary {
  position: absolute;
  bottom: 0;
  right: -30px;
  width: 200px;
  height: 150px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
}

.abs-stat-card {
  position: absolute;
  top: 28px;
  left: -20px;
  background: var(--lime);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-lime);
}

.abs-stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.abs-stat-card span {
  font-size: .7rem;
  font-weight: 700;
  color: rgba(7, 30, 37, .65);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.abs-stat-card2 {
  position: absolute;
  top: 50%;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
}

.abs-stat-card2 i {
  color: var(--lime);
  font-size: 1.3rem;
}

.abs-stat-card2 strong {
  display: block;
  font-size: 1rem;
  color: var(--dark-text);
  font-weight: 700;
}

.abs-stat-card2 span {
  font-size: .75rem;
  color: var(--mid-gray);
}

.about-story-right {
  flex: 1;
  min-width: 300px;
}

.about-values-list {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.av-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--lime);
  transition: transform .3s, box-shadow .3s;
}

.av-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.av-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal-lt), var(--teal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}

.av-item strong {
  display: block;
  font-size: .92rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 3px;
}

.av-item span {
  font-size: .8rem;
  color: var(--body-text);
}

/* Stats Banner */
.about-stats-banner {
  background: var(--teal-dk);
  padding: 60px 80px;
  overflow: hidden;
}

.asb-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.asb-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 20px;
}

.asb-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(200, 230, 58, .15);
  color: var(--lime);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.asb-num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.asb-num span:last-child {
  font-size: 1.4rem;
  color: var(--lime);
}

.asb-item p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 500;
}

.asb-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, .1);
  flex-shrink: 0;
}

/* Why Section — About page */
.about-why-sec {
  padding: 100px 80px;
  background: var(--light-gray);
  overflow: hidden;
}

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about-why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border-top: 3px solid var(--lime);
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.awc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-lt), var(--teal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.about-why-card h4 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark-text);
}

.about-why-card p {
  font-size: .8rem;
  color: var(--body-text);
  line-height: 1.65;
}

/* Team — About */
.about-team-sec {
  padding: 100px 80px;
  background: var(--white);
  overflow: hidden;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.at-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s, box-shadow .35s;
  background: var(--off-white);
}

.at-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.at-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.at-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.at-card:hover .at-img img {
  transform: scale(1.07);
}

.at-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 30, 37, .6) 0%, transparent 60%);
}

.at-info {
  padding: 20px 18px 22px;
}

.at-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.at-info p {
  font-size: .8rem;
  color: var(--mid-gray);
  margin-bottom: 10px;
}

.at-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.at-tags span {
  font-size: .68rem;
  font-weight: 600;
  background: rgba(13, 74, 86, .1);
  color: var(--teal-lt);
  padding: 4px 10px;
  border-radius: 20px;
}

/* Testimonials — About */
.about-testimonials-sec {
  padding: 100px 80px;
  background: var(--off-white);
  overflow: hidden;
}

.about-rv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-rv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  transition: transform .3s, box-shadow .3s;
}

.about-rv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.about-rv-card.featured {
  background: var(--teal-dk);
  border-color: var(--teal-lt);
}

.about-rv-card.featured p {
  color: rgba(255, 255, 255, .75);
}

.about-rv-card.featured .rv-stars i {
  color: var(--lime);
}

.about-rv-card.featured .rv-author strong {
  color: var(--white);
}

.about-rv-card.featured .rv-author span {
  color: rgba(255, 255, 255, .5);
}

.about-rv-card p {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--body-text);
  margin: 14px 0 20px;
  font-style: italic;
}

/* CTA — About */
.about-cta-sec {
  padding: 100px 80px;
  background: var(--teal-dk);
  text-align: center;
  overflow: hidden;
}

.about-cta-inner {
  max-width: 680px;
  margin: 0 auto;
}

.about-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin: 12px 0 18px;
}

.about-cta-inner h2 em {
  color: var(--lime);
  font-style: italic;
}

.about-cta-inner p {
  color: rgba(255, 255, 255, .6);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.about-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.about-cta-btns .btn-outline {
  border-color: rgba(255, 255, 255, .3);
  color: rgba(255, 255, 255, .8);
}

.about-cta-btns .btn-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .6);
  color: var(--white);
}

/* ====================================================
   BLOG DETAIL PAGE
   ==================================================== */

.blog-detail-hero .ph-title.blog-ph-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.dest-hero-price {
  display: inline-block;
  margin-top: 14px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  color: rgba(255, 255, 255, .85);
  font-size: .88rem;
  padding: 8px 20px;
  border-radius: 30px;
  backdrop-filter: blur(8px);
}

.dest-hero-price strong {
  color: var(--lime);
  font-size: 1rem;
}

.blog-ph-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 14px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
  flex-wrap: wrap;
}

.blog-ph-meta i {
  color: var(--lime);
}

.blog-detail-sec {
  padding: 80px 60px;
  background: var(--white);
  overflow: hidden;
}

.blog-detail-inner {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  max-width: 1240px;
  margin: 0 auto;
}

/* Article */
.blog-article {
  flex: 1;
  min-width: 0;
}

.blog-article-intro {
  margin-bottom: 36px;
}

.ba-lead {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--body-text);
  border-left: 4px solid var(--lime);
  padding-left: 20px;
  font-style: italic;
}

.blog-article-body {
  color: var(--body-text);
  font-size: .93rem;
  line-height: 1.85;
}

.blog-article-body h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-text);
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-gray);
}

.blog-article-body p {
  margin-bottom: 18px;
}

.ba-pullquote {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 32px 0;
  position: relative;
}

.ba-pullquote i {
  color: var(--lime);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 10px;
}

.ba-pullquote blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark-text);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.ba-tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.ba-tip-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px;
  border-top: 2px solid var(--lime);
  transition: transform .3s;
}

.ba-tip-card:hover {
  transform: translateY(-3px);
}

.ba-tip-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal-lt), var(--teal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  margin-bottom: 10px;
}

.ba-tip-card h4 {
  font-weight: 700;
  font-size: .9rem;
  color: var(--dark-text);
  margin-bottom: 6px;
}

.ba-tip-card p {
  font-size: .78rem;
  color: var(--body-text);
  line-height: 1.6;
  margin: 0;
}

.ba-highlight-box {
  background: linear-gradient(135deg, var(--teal-dk), var(--teal));
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 28px 0;
}

.ba-hb-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--lime);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.ba-highlight-box strong {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: .92rem;
  margin-bottom: 5px;
}

.ba-highlight-box p {
  color: rgba(255, 255, 255, .75);
  font-size: .82rem;
  line-height: 1.6;
  margin: 0;
}

.ba-author-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 44px;
  border: 1px solid var(--border);
}

.ba-author-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--lime);
  flex-shrink: 0;
}

.ba-author-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 3px;
}

.ba-author-card span {
  display: block;
  font-size: .78rem;
  color: var(--teal-lt);
  font-weight: 600;
  margin-bottom: 8px;
}

.ba-author-card p {
  font-size: .82rem;
  color: var(--body-text);
  line-height: 1.65;
  margin: 0;
}

.ba-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.ba-tags span {
  background: var(--light-gray);
  color: var(--body-text);
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all .3s;
}

.ba-tags span:hover {
  background: var(--lime);
  color: var(--navy);
}

.ba-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.ba-share>span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark-text);
}

.ba-share-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--border);
  color: var(--body-text);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: all .3s;
}

.ba-share-btn:hover {
  background: var(--lime);
  color: var(--navy);
  border-color: var(--lime);
  transform: translateY(-2px);
}

/* Sidebar */
.blog-sidebar {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 90px;
}

.sidebar-cta-card {
  background: var(--teal-dk);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  text-align: center;
}

.scc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--lime);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 14px;
}

.sidebar-cta-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.sidebar-cta-card p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.6;
  margin-bottom: 20px;
}

.sidebar-cta-card .btn-lime {
  width: 100%;
  justify-content: center;
}

.sidebar-info-card, .dest-facts-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.sidebar-info-card h5, .dest-facts-card h5 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-gray);
}

.sic-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sic-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
}

.sic-list li i {
  color: var(--lime);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.sic-list li span {
  color: var(--mid-gray);
  flex: 1;
}

.sic-list li strong {
  color: var(--dark-text);
  font-weight: 700;
}

.sidebar-contact-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--border);
}

.sidebar-contact-card h5 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.scc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--body-text);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all .3s;
}

.scc-link i {
  color: var(--teal-lt);
  font-size: .95rem;
}

.scc-link:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.scc-link.wa i {
  color: #25d366;
}

.scc-link.wa:hover {
  background: #25d366;
  border-color: #25d366;
}

/* Related Posts */
.related-posts-sec {
  padding: 80px 60px;
  background: var(--light-gray);
  overflow: hidden;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rp-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .35s, box-shadow .35s;
  display: block;
  border: 1px solid var(--border);
}

.rp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.rp-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.rp-img img {
  height: 100%;
  transition: transform .5s;
}

.rp-card:hover .rp-img img {
  transform: scale(1.07);
}

.rp-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--lime);
  color: var(--navy);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.rp-info {
  padding: 20px 20px 24px;
}

.rp-meta {
  font-size: .74rem;
  color: var(--mid-gray);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.rp-meta i {
  color: var(--teal-lt);
}

.rp-info h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.3;
  margin-bottom: 8px;
}

.rp-info p {
  font-size: .8rem;
  color: var(--mid-gray);
  line-height: 1.6;
  margin-bottom: 14px;
}

/* ====================================================
   DESTINATION DETAIL PAGE
   ==================================================== */

.dest-detail-sec {
  padding: 80px 60px;
  background: var(--white);
  overflow: hidden;
}

.dest-detail-inner {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  max-width: 1240px;
  margin: 0 auto;
}

.dest-main-content {
  flex: 1;
  min-width: 0;
}

.dmc-section {
  margin-bottom: 48px;
}

.dmc-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light-gray);
}

.dmc-section p {
  font-size: .93rem;
  color: var(--body-text);
  line-height: 1.85;
  margin-bottom: 14px;
}

.dest-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.dh-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 22px;
  border-top: 3px solid var(--lime);
  transition: transform .3s, box-shadow .3s;
}

.dh-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.dh-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal-lt), var(--teal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  margin-bottom: 12px;
}

.dh-card h4 {
  font-weight: 700;
  font-size: .92rem;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.dh-card p {
  font-size: .8rem;
  color: var(--body-text);
  line-height: 1.6;
  margin: 0;
}

/* Itinerary */
.dest-itinerary {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 16px;
}

.di-item {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.di-item:last-child {
  border-bottom: none;
}

.di-day {
  background: var(--lime);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  align-self: flex-start;
  flex-shrink: 0;
}

.di-content h4 {
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark-text);
  margin-bottom: 6px;
}

.di-content p {
  font-size: .83rem;
  color: var(--body-text);
  line-height: 1.65;
  margin: 0;
}

/* Inclusions */
.dest-inclusions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}

.di-col {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.di-col h5 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.di-col h5 i {
  color: #27ae60;
}

.di-col-no h5 i {
  color: #e74c3c;
}

.di-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.di-col ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  color: var(--body-text);
}

.di-col ul li i.fa-check {
  color: #27ae60;
}

.di-col ul li i.fa-xmark {
  color: #e74c3c;
}

/* Dest Sidebar */
.dest-sidebar {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 90px;
}

.dest-booking-card {
  background: var(--teal-dk);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  text-align: center;
}

.dbc-price {
  margin-bottom: 20px;
}

.dbc-price span {
  display: block;
  font-size: .75rem;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.dbc-price strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
}

.dbc-price small {
  font-size: .75rem;
  color: rgba(255, 255, 255, .4);
}

.dbc-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

.dbc-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, .65);
  font-size: .84rem;
  font-weight: 600;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-sm);
  transition: all .3s;
  margin-bottom: 16px;
}

.dbc-call:hover {
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}

.dbc-call i {
  color: var(--lime);
}

.dbc-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.dbc-trust span {
  font-size: .72rem;
  color: rgba(255, 255, 255, .45);
  display: flex;
  align-items: center;
  gap: 5px;
}

.dbc-trust span i {
  color: var(--lime);
  font-size: .65rem;
}

/* More Destinations */
.more-dests-sec {
  padding: 80px 60px;
  background: var(--light-gray);
  overflow: hidden;
}

.more-dests-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.md-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  display: block;
}

.md-card img {
  height: 100%;
  transition: transform .5s;
}

.md-card:hover img {
  transform: scale(1.08);
}

.md-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 30, 37, .92) 0%, rgba(7, 30, 37, .1) 55%, transparent 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  gap: 8px;
}

/* Dest Enquire Section */
.dest-enquire-sec {
  padding: 80px 60px;
  background: var(--teal-dk);
  overflow: hidden;
}

.des-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.des-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 10px 0 12px;
}

.des-left h2 em {
  font-style: italic;
  color: var(--lime);
}

.des-left p {
  color: rgba(255, 255, 255, .55);
  font-size: .9rem;
  line-height: 1.7;
  max-width: 460px;
}

.des-right {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.des-right .btn-outline {
  border-color: rgba(255, 255, 255, .3);
  color: rgba(255, 255, 255, .8);
}

.des-right .btn-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .6);
  color: var(--white);
}

/* ====================================================
   CONTACT PAGE
   ==================================================== */

.contact-hero .ph-content {
  padding-top: 140px;
}

/* Contact Cards */
.contact-cards-sec {
  padding: 0 60px;
  background: var(--white);
  overflow: hidden;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cc-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 3px solid var(--lime);
  transition: transform .3s, box-shadow .3s;
}

.cc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.cc-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal-lt), var(--teal));
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.cc-icon-wa {
  background: linear-gradient(135deg, #25d366, #128C7E);
}

.cc-icon-mail {
  background: linear-gradient(135deg, var(--teal-lt), var(--teal));
}

.cc-icon-loc {
  background: linear-gradient(135deg, #e67e22, #c0392b);
}

.cc-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 6px;
}

.cc-card p {
  font-size: .78rem;
  color: var(--mid-gray);
  margin-bottom: 10px;
  line-height: 1.5;
}

.cc-card a,
.cc-card span {
  font-size: .84rem;
  font-weight: 600;
  color: var(--teal-lt);
  transition: color .3s;
  display: block;
}

.cc-card a:hover {
  color: var(--teal);
}

/* Main contact section */
.contact-main-sec {
  padding: 80px 60px;
  background: var(--white);
  overflow: hidden;
}

.contact-main-inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.contact-form-col {
  flex: 1.1;
  min-width: 300px;
}

.cfw-header {
  margin-bottom: 36px;
}

.contact-info-col {
  flex: 1;
  min-width: 280px;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-socials p {
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 12px;
}

.contact-socials .footer-socials .fs-icon {
  border-color: var(--border);
  color: var(--body-text);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

/* FAQ Section */
.faq-sec {
  padding: 80px 60px;
  background: var(--light-gray);
  overflow: hidden;
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color .3s;
}

.faq-q:hover {
  color: var(--teal-lt);
}

.faq-chevron {
  color: var(--teal-lt);
  font-size: .8rem;
  flex-shrink: 0;
  transition: transform .35s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-item.open .faq-q {
  color: var(--teal-lt);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1), padding .3s;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a p {
  font-size: .88rem;
  color: var(--body-text);
  line-height: 1.8;
  padding-bottom: 20px;
}

/* ====================================================
   RESPONSIVE — NEW PAGES
   ==================================================== */

@media (max-width: 1200px) {
  .about-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .more-dests-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .about-story-sec, .about-why-sec, .about-team-sec, .about-testimonials-sec, .about-cta-sec {
    padding: 72px 48px;
  }

  .about-stats-banner {
    padding: 48px;
  }

  .blog-detail-sec, .dest-detail-sec, .related-posts-sec, .more-dests-sec, .dest-enquire-sec {
    padding: 64px 40px;
  }

  .contact-cards-sec, .contact-main-sec, .faq-sec {
    padding: 64px 40px;
  }
}

@media (max-width: 960px) {
  .about-story-inner {
    flex-direction: column;
  }

  .abs-secondary {
    right: 0;
  }

  .abs-stat-card {
    left: 0;
  }

  .abs-stat-card2 {
    right: 0;
  }

  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-rv-grid {
    grid-template-columns: 1fr;
  }

  .about-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .asb-inner {
    gap: 4px;
  }

  .asb-divider {
    display: none;
  }

  .asb-item {
    flex: 1 1 45%;
  }

  .blog-detail-inner, .dest-detail-inner {
    flex-direction: column;
  }

  .blog-sidebar, .dest-sidebar {
    width: 100%;
    position: static;
  }

  .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dest-highlights-grid {
    grid-template-columns: 1fr;
  }

  .dest-inclusions {
    grid-template-columns: 1fr;
  }

  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-main-inner {
    flex-direction: column;
  }

  .ba-tips-grid {
    grid-template-columns: 1fr;
  }

  .more-dests-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .des-inner {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .about-story-sec, .about-why-sec, .about-team-sec, .about-testimonials-sec, .about-cta-sec {
    padding: 52px 20px;
  }

  .about-stats-banner {
    padding: 40px 20px;
  }

  .about-why-grid {
    grid-template-columns: 1fr;
  }

  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .blog-detail-sec, .dest-detail-sec, .related-posts-sec, .more-dests-sec, .dest-enquire-sec {
    padding: 48px 18px;
  }

  .contact-cards-sec, .contact-main-sec, .faq-sec {
    padding: 48px 18px;
  }

  .contact-cards-sec {
    margin-top: -24px;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .related-posts-grid {
    grid-template-columns: 1fr;
  }

  .more-dests-grid {
    grid-template-columns: 1fr;
  }

  .dest-inclusions {
    grid-template-columns: 1fr;
  }

  .ph-content {
    padding: 100px 20px 60px;
  }

  .abs-main {
    height: 340px;
  }

  .abs-secondary {
    width: 130px;
    height: 100px;
  }
}

@media (max-width: 420px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }

  .about-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .des-right {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ====================================================
   CONTACT PAGE — ENHANCED UI
   ==================================================== */

/* Quick Reach Cards */
.contact-reach-sec {
  padding: 20px 60px;
  background: var(--white);
  position: relative;
  z-index: 10;
  margin-top: -0;
}

.contact-reach-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cr-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px 22px 26px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-bottom: 3px solid transparent;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}

.cr-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.cr-card:hover::before {
  transform: scaleX(1);
}

.cr-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .14);
}

.cr-icon-wrap {
  position: relative;
  flex-shrink: 0;
}

.cr-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal-lt), var(--teal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  position: relative;
  z-index: 1;
}

.cr-icon-wa {
  background: linear-gradient(135deg, #25d366, #128C7E);
}

.cr-icon-mail {
  background: linear-gradient(135deg, var(--teal-lt), var(--teal));
}

.cr-icon-loc {
  background: linear-gradient(135deg, #e67e22, #c0392b);
}

.cr-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 18px;
  background: rgba(13, 74, 86, .15);
  animation: crPulse 2.5s ease-in-out infinite;
}

.cr-pulse-wa {
  background: rgba(37, 211, 102, .15);
}

.cr-pulse-mail {
  background: rgba(13, 74, 86, .15);
}

.cr-pulse-loc {
  background: rgba(230, 126, 34, .12);
}

@keyframes crPulse {
  0%, 100% {
    transform: scale(1);
    opacity: .7;
  }

  50% {
    transform: scale(1.18);
    opacity: 0;
  }
}

.cr-body h4 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 3px;
}

.cr-body p {
  font-size: .75rem;
  color: var(--mid-gray);
  margin-bottom: 8px;
}

.cr-link {
  font-size: .82rem;
  font-weight: 700;
  color: var(--teal-lt);
  display: block;
  transition: color .3s;
}

.cr-link:hover {
  color: var(--teal);
}

.cr-link-wa {
  color: #128C7E;
}

.cr-link-wa:hover {
  color: #0a6b4f;
}

.cr-link-mail {
  color: var(--teal-lt);
}

.cr-link-loc {
  color: #c0392b;
  cursor: default;
}

/* Enhanced Main Contact Section */
.contact-main-sec {
  padding: 100px 60px;
  background: var(--off-white);
  overflow: hidden;
  position: relative;
}

.contact-main-bg-deco {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 230, 58, .07) 0%, transparent 70%);
  pointer-events: none;
}

.contact-main-inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.contact-form-col {
  flex: 1.1;
  min-width: 300px;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.cfw-tag-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.cfw-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}

.cfw-header {
  margin-bottom: 36px;
}

/* Enhanced form fields with icons */
.cf-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.cf-input-wrap>i {
  position: absolute;
  left: 15px;
  color: var(--mid-gray);
  font-size: .85rem;
  z-index: 1;
  transition: color .3s;
}

.cf-input-wrap input,
.cf-input-wrap select {
  width: 100%;
  padding-left: 42px !important;
}

.cf-input-wrap:focus-within>i {
  color: var(--teal-lt);
}

.cf-select-wrap select {
  padding-left: 42px;
}

.cf-trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.cf-trust-row span {
  font-size: .75rem;
  color: var(--mid-gray);
  display: flex;
  align-items: center;
  gap: 5px;
}

.cf-trust-row span i {
  color: var(--teal-lt);
}

/* Contact Info Col */
.contact-info-col {
  flex: 1;
  min-width: 280px;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-map-label {
  background: var(--teal-dk);
  color: rgba(255, 255, 255, .7);
  font-size: .75rem;
  font-weight: 600;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.contact-map-label i {
  color: var(--lime);
}

.contact-socials p {
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 12px;
}

.contact-socials .footer-socials .fs-icon {
  border-color: var(--border);
  color: var(--body-text);
}

/* Why Strip */
.contact-why-strip {
  background: var(--teal-dk);
  padding: 48px 60px;
  overflow: hidden;
}

.contact-why-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cwy-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
}

.cwy-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200, 230, 58, .15);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.cwy-item strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.cwy-item span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.5;
}

.cwy-div {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, .1);
  flex-shrink: 0;
}

/* Enhanced FAQ - two column layout */
.faq-sec {
  padding: 100px 60px;
  background: var(--light-gray);
  overflow: hidden;
}

.faq-sec-inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.faq-sec-left {
  flex: 0 0 260px;
  position: sticky;
  top: 100px;
}

.faq-sec-right {
  flex: 1;
  min-width: 300px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow .3s;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item.open {
  box-shadow: var(--shadow-sm);
  border-color: rgba(13, 74, 86, .15);
}

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 20px 22px;
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 600;
  color: var(--dark-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color .3s, background .3s;
}

.faq-q:hover {
  color: var(--teal-lt);
  background: var(--off-white);
}

.faq-item.open .faq-q {
  color: var(--teal-lt);
  background: var(--off-white);
}

.faq-chevron {
  color: var(--teal-lt);
  font-size: .8rem;
  flex-shrink: 0;
  transition: transform .35s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1);
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a p {
  font-size: .87rem;
  color: var(--body-text);
  line-height: 1.8;
  padding: 0 22px 20px;
}

/* ====================================================
   LISTING PAGES — SHARED STYLES
   ==================================================== */

.listing-hero .ph-content {
  padding-top: 140px;
}

.blog-listing-hero .ph-content {
  padding-top: 140px;
}

/* Filter Bar */
.listing-filter-sec {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 60px;
  position: sticky;
  top: 70px;
  z-index: 90;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.listing-filter-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.lf-label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  flex-shrink: 0;
}

.lf-label i {
  color: var(--lime);
}

.lf-btns {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
}

.lf-btn {
  padding: 7px 18px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  background: transparent;
  color: var(--body-text);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all .25s;
  white-space: nowrap;
}

.lf-btn:hover {
  border-color: var(--teal-lt);
  color: var(--teal-lt);
  background: rgba(26, 104, 120, .06);
}

.lf-btn.active {
  background: var(--lime);
  color: var(--navy);
  border-color: var(--lime);
  box-shadow: 0 4px 14px rgba(200, 230, 58, .3);
}

.lf-count {
  font-size: .78rem;
  font-weight: 600;
  color: var(--mid-gray);
  margin-left: auto;
  flex-shrink: 0;
  background: var(--light-gray);
  padding: 5px 14px;
  border-radius: 20px;
}

/* Grid Section */
.listing-grid-sec {
  padding: 80px 60px;
  background: var(--light-gray);
  min-height: 60vh;
}

/* ====================================================
   DESTINATION LISTING
   ==================================================== */

.dest-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.dl-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .35s, box-shadow .35s;
  text-decoration: none;
}

.dl-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.dl-card.hidden {
  display: none;
}

.dl-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.dl-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.dl-card:hover .dl-card-img img {
  transform: scale(1.08);
}

.dl-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--lime);
  color: var(--navy);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 2;
}

.dl-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 30, 37, .0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .35s;
}

.dl-card:hover .dl-card-overlay {
  background: rgba(7, 30, 37, .45);
}

.dl-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: var(--navy);
  font-size: .82rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s;
}

.dl-card:hover .dl-explore-btn {
  opacity: 1;
  transform: translateY(0);
}

.dl-card-body {
  padding: 22px 22px 20px;
}

.dl-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.dl-card-top h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.2;
}

.dl-price {
  text-align: right;
  flex-shrink: 0;
}

.dl-price span {
  display: block;
  font-size: .65rem;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dl-price strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-lt);
}

.dl-places {
  font-size: .8rem;
  color: var(--mid-gray);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 14px;
}

.dl-places i {
  color: var(--lime);
}

.dl-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}

.dl-card-meta span {
  font-size: .74rem;
  color: var(--mid-gray);
  display: flex;
  align-items: center;
  gap: 5px;
}

.dl-card-meta span i {
  color: var(--teal-lt);
}

.dl-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.dl-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal-lt);
  font-size: .82rem;
  font-weight: 700;
  transition: gap .2s, color .3s;
}

.dl-card:hover .dl-book-btn {
  gap: 10px;
  color: var(--teal);
}

.dl-secure {
  font-size: .72rem;
  color: var(--mid-gray);
  display: flex;
  align-items: center;
  gap: 4px;
}

.dl-secure i {
  color: var(--lime);
}

/* Listing CTA */
.listing-cta-sec {
  background: var(--teal-dk);
  padding: 80px 60px;
  overflow: hidden;
}

.listing-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.listing-cta-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 10px 0 14px;
}

.listing-cta-left h2 em {
  font-style: italic;
  color: var(--lime);
}

.listing-cta-left p {
  color: rgba(255, 255, 255, .55);
  font-size: .9rem;
  line-height: 1.7;
  max-width: 440px;
}

.listing-cta-right {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, .8);
  border: 2px solid rgba(255, 255, 255, .3);
  font-weight: 600;
  font-size: .88rem;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .6);
  color: var(--white);
}

/* Empty State */
.listing-empty {
  text-align: center;
  padding: 80px 20px;
  max-width: 400px;
  margin: 0 auto;
}

.listing-empty i {
  font-size: 3rem;
  color: var(--border);
  margin-bottom: 20px;
  display: block;
}

.listing-empty h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--dark-text);
  margin-bottom: 10px;
}

.listing-empty p {
  font-size: .88rem;
  color: var(--mid-gray);
  margin-bottom: 24px;
}

/* ====================================================
   BLOG LISTING PAGE
   ==================================================== */

.blog-listing-sec {
  padding: 80px 60px;
  background: var(--light-gray);
}

/* Featured Post */
.blog-featured-wrap {
  max-width: 1200px;
  margin: 0 auto 56px;
}

.blog-featured-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .35s, box-shadow .35s;
  text-decoration: none;
}

.blog-featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.bfc-img {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.bfc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.blog-featured-card:hover .bfc-img img {
  transform: scale(1.05);
}

.bfc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 30, 37, .3) 0%, transparent 60%);
}

.bfc-featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--lime);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  box-shadow: var(--shadow-lime);
}

.bfc-body {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bfc-meta {
  font-size: .78rem;
  color: var(--mid-gray);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.bfc-meta i {
  color: var(--teal-lt);
}

.bfc-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mid-gray);
  display: inline-block;
}

.bfc-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.25;
  margin-bottom: 14px;
}

.bfc-body p {
  font-size: .88rem;
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Blog Listing Grid */
.blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.bl-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .35s, box-shadow .35s;
  text-decoration: none;
}

.bl-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

.bl-card.hidden {
  display: none;
}

.bl-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.bl-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.bl-card:hover .bl-card-img img {
  transform: scale(1.07);
}

.bl-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 30, 37, .3) 0%, transparent 50%);
}

.bl-card-body {
  padding: 22px 22px 24px;
}

.bl-meta {
  font-size: .74rem;
  color: var(--mid-gray);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.bl-meta i {
  color: var(--teal-lt);
}

.bl-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.3;
  margin-bottom: 8px;
}

.bl-card-body p {
  font-size: .82rem;
  color: var(--mid-gray);
  line-height: 1.65;
  margin-bottom: 16px;
}

/* Blog CTA */
.blog-cta-sec {
  background: var(--teal-dk);
  padding: 100px 60px;
  overflow: hidden;
}

.blog-cta-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.blog-cta-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--lime);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-lime);
}

.blog-cta-text {
  flex: 1;
}

.blog-cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 10px 0 12px;
}

.blog-cta-text h2 em {
  color: var(--lime);
  font-style: italic;
}

.blog-cta-text p {
  color: rgba(255, 255, 255, .55);
  font-size: .88rem;
  line-height: 1.7;
}

.blog-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  flex-shrink: 0;
}

.blog-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .7);
  font-size: .85rem;
  font-weight: 600;
  transition: color .3s;
}

.blog-cta-wa i {
  color: #25d366;
  font-size: 1.1rem;
}

.blog-cta-wa:hover {
  color: var(--white);
}

/* ====================================================
   RESPONSIVE — NEW PAGES
   ==================================================== */

@media (max-width: 1200px) {
  .dest-listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .contact-reach-sec {
    padding: 0 40px;
  }

  .contact-main-sec {
    padding: 72px 40px;
  }

  .contact-why-strip {
    padding: 40px;
  }

  .faq-sec {
    padding: 72px 40px;
  }

  .listing-filter-sec {
    padding: 0 40px;
  }

  .listing-grid-sec,
  .blog-listing-sec {
    padding: 60px 40px;
  }

  .listing-cta-sec,
  .blog-cta-sec {
    padding: 60px 40px;
  }

  .blog-featured-card {
    grid-template-columns: 1fr;
  }

  .bfc-img {
    min-height: 280px;
  }
}

@media (max-width: 960px) {
  .contact-reach-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-main-inner {
    flex-direction: column;
  }

  .faq-sec-inner {
    flex-direction: column;
    gap: 40px;
  }

  .faq-sec-left {
    position: static;
    flex: none;
  }

  .cwy-item {
    flex: 1 1 45%;
  }

  .cwy-div {
    display: none;
  }

  .dest-listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }

  .blog-cta-icon {
    margin: 0 auto;
  }

  .blog-cta-actions {
    align-items: center;
  }

  .listing-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .listing-cta-right {
    justify-content: center;
  }

  .listing-cta-left p {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .contact-reach-sec {
    padding: 0 20px;
    margin-top: -36px;
  }

  .contact-reach-inner {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .contact-main-sec {
    padding: 56px 20px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .contact-why-strip {
    padding: 36px 20px;
  }

  .faq-sec {
    padding: 56px 20px;
  }

  .listing-filter-sec {
    padding: 0 20px;
    position: relative;
    top: auto;
  }

  .listing-grid-sec,
  .blog-listing-sec {
    padding: 48px 20px;
  }

  .listing-cta-sec,
  .blog-cta-sec {
    padding: 56px 20px;
  }

  .lf-count {
    display: none;
  }
}

@media (max-width: 600px) {
  .contact-reach-inner {
    grid-template-columns: 1fr;
  }

  .cr-card {
    flex-direction: row;
  }

  .dest-listing-grid {
    grid-template-columns: 1fr;
  }

  .blog-listing-grid {
    grid-template-columns: 1fr;
  }

  .cwy-item {
    flex: 1 1 100%;
  }

  .bfc-img {
    min-height: 220px;
  }

  .bfc-body {
    padding: 28px 22px;
  }
}

/* ====================================================
   DESTINATION DETAILS — IMMERSIVE HERO
   ==================================================== */

.dd-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  width: 100%;
}

.dd-hero-bg {
  position: absolute;
  inset: 0;
}

.dd-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: zoomBg 22s ease-in-out infinite alternate;
}

.dd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 26, 34, .98) 0%, rgba(7, 26, 34, .6) 45%, rgba(7, 26, 34, .15) 100%);
}

.dd-hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .4;
}

.dd-breadcrumb {
  position: absolute;
  top: 110px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  z-index: 5;
  flex-wrap: wrap;
}

.dd-breadcrumb a {
  color: rgba(255, 255, 255, .65);
  transition: color .3s;
}

.dd-breadcrumb a:hover {
  color: var(--lime);
}

.dd-breadcrumb span {
  color: rgba(255, 255, 255, .3);
}

.dd-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 80px;
  width: 100%;
  max-width: 900px;
}

.dd-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}

.dd-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 2s ease-in-out infinite;
}

.dd-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 800;
  color: var(--white);
  line-height: .95;
  margin-bottom: 24px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, .5);
  letter-spacing: -2px;
}

.dd-hero-places {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .8);
  font-size: .85rem;
  padding: 8px 18px;
  border-radius: 30px;
  backdrop-filter: blur(8px);
  margin-bottom: 32px;
}

.dd-hero-places i {
  color: var(--lime);
}

.dd-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.dd-hstat {
  padding: 0 24px;
  text-align: center;
}

.dd-hstat:first-child {
  padding-left: 0;
}

.dd-hstat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 4px;
}

.dd-hstat span {
  font-size: .7rem;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.dd-hstat-div {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .15);
  flex-shrink: 0;
}

.dd-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.dd-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .75);
  font-size: .88rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, .08);
  transition: all .3s;
}

.dd-call-btn:hover {
  background: rgba(255, 255, 255, .15);
  color: var(--white);
}

.dd-call-btn i {
  color: var(--lime);
}

.dd-scroll-hint {
  position: absolute;
  bottom: 28px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.dd-scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.dd-scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--lime);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(14px);
    opacity: 0;
  }
}

.dd-scroll-hint span {
  font-size: .65rem;
  color: rgba(255, 255, 255, .35);
  letter-spacing: 2px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* Sticky booking bar */
.dd-sticky-bar {
  position: fixed;
  top: -80px;
  left: 0;
  right: 0;
  z-index: 950;
  background: rgba(7, 26, 34, .97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 230, 58, .2);
  transition: top .4s cubic-bezier(.4, 0, .2, 1);
}

.dd-sticky-bar.visible {
  top: 0;
}

.dd-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 60px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.dd-sticky-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.dd-sticky-name i {
  color: var(--lime);
}

.dd-sticky-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.dd-sticky-meta span {
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
  display: flex;
  align-items: center;
  gap: 5px;
}

.dd-sticky-meta span strong {
  color: var(--lime);
}

.dd-sticky-meta span i {
  color: var(--lime);
  font-size: .75rem;
}

.dd-sticky-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dd-sticky-call {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: all .3s;
}

.dd-sticky-call:hover {
  background: var(--lime);
  color: var(--navy);
  border-color: var(--lime);
}

/* Destination Gallery */
.dd-gallery-sec {
  padding: 80px 60px 60px;
  background: var(--white);
  overflow: hidden;
}

.dd-gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.dd-section-tag {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal-lt);
  margin-bottom: 10px;
}

.dd-gallery-title h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.2;
}

.dd-gallery-title h2 em {
  font-style: italic;
  color: var(--teal-lt);
}

.dd-gallery-header>p {
  font-size: .88rem;
  color: var(--mid-gray);
  max-width: 320px;
  line-height: 1.7;
}

/* Masonry gallery */
.dd-gallery-masonry {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.9fr;
  gap: 12px;
  height: auto;
}

.dd-gm-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dd-gm-item {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.dd-gm-tall {
  flex: 2;
}

.dd-gm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.dd-gm-item:hover img {
  transform: scale(1.08);
}

.dd-gm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 26, 34, .0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .35s;
}

.dd-gm-item:hover .dd-gm-overlay {
  background: rgba(7, 26, 34, .5);
}

.dd-gm-overlay span {
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .3s, transform .3s;
  background: rgba(200, 230, 58, .9);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 30px;
}

.dd-gm-item:hover .dd-gm-overlay span {
  opacity: 1;
  transform: scale(1);
}

.dd-gm-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.dd-gm-play i {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(200, 230, 58, .9);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  padding-left: 4px;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 8px 28px rgba(200, 230, 58, .4);
}

.dd-gm-video-thumb:hover .dd-gm-play i {
  transform: scale(1.15);
}

/* Content sections with numbered decor */
.dmc-section {
  display: flex;
  gap: 32px;
  margin-bottom: 64px;
  align-items: flex-start;
}

.dmc-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  color: rgba(13, 74, 86, .06);
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
  margin-top: -8px;
}

.dmc-content {
  flex: 1;
  min-width: 0;
}

/* Timeline itinerary */
.dd-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
}

.dd-tl-item {
  display: flex;
  gap: 24px;
  padding-bottom: 36px;
  position: relative;
}

.dd-tl-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 64px;
}

.dd-tl-day {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--teal-dk);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.dd-tl-day span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
}

.dd-tl-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal-dk), rgba(13, 74, 86, .1));
  margin-top: 8px;
  border-radius: 2px;
}

.dd-tl-right {
  flex: 1;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  border-left: 3px solid var(--lime);
  transition: transform .3s, box-shadow .3s;
}

.dd-tl-right:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.dd-tl-right h4 {
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.dd-tl-right p {
  font-size: .85rem;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 12px;
}

.dd-tl-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.dd-tl-tags span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 600;
  background: rgba(13, 74, 86, .1);
  color: var(--teal-lt);
  padding: 4px 10px;
  border-radius: 20px;
}

/* Highlights grid */
.dd-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.dd-hl-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 20px;
  border-top: 2px solid var(--lime);
  transition: transform .3s, box-shadow .3s;
}

.dd-hl-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.dd-hl-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--teal-lt), var(--teal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}

.dd-hl-body h4 {
  font-weight: 700;
  font-size: .9rem;
  color: var(--dark-text);
  margin-bottom: 5px;
}

.dd-hl-body p {
  font-size: .78rem;
  color: var(--body-text);
  line-height: 1.65;
  margin: 0;
}

/* Inclusions */
.dd-inclusions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.dd-inc-col {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.dd-inc-header {
  padding: 14px 20px;
  font-size: .82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(231, 76, 60, .08);
  color: #c0392b;
  border-bottom: 1px solid var(--border);
}

.dd-inc-yes {
  background: rgba(39, 174, 96, .1);
  color: #27ae60;
}

.dd-inc-col ul {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dd-inc-col ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  color: var(--body-text);
}

.dd-inc-col ul li i.fa-check {
  color: #27ae60;
}

.dd-inc-col ul li i.fa-xmark {
  color: #e74c3c;
}

/* Sidebar gallery */
.dd-sidebar-gallery, .bd-sidebar-gallery {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.dd-sidebar-gallery h5, .bd-sidebar-gallery h5 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-gray);
}

.dd-sg-grid, .bd-sg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.dd-sg-img, .bd-sg-grid img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform .3s;
  cursor: pointer;
}

.dd-sg-img:hover, .bd-sg-grid img:hover {
  transform: scale(1.04);
}

/* Gallery lightbox */
.dd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: none;
  align-items: center;
  justify-content: center;
}

.dd-lightbox.open {
  display: flex;
}

.dd-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .95);
  backdrop-filter: blur(8px);
}

.dd-lb-inner {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
}

.dd-lb-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all .3s;
}

.dd-lb-close:hover {
  background: var(--lime);
  color: var(--navy);
}

#ddLbImg {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  display: block;
}

/* ====================================================
   BLOG DETAILS — CINEMATIC HERO
   ==================================================== */

.bd-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  width: 100%;
}

.bd-hero-bg {
  position: absolute;
  inset: 0;
}

.bd-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: zoomBg 20s ease-in-out infinite alternate;
}

.bd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 26, 34, .97) 0%, rgba(7, 26, 34, .5) 50%, rgba(7, 26, 34, .1) 100%);
}

.bd-hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .35;
}

.bd-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 70px;
  width: 100%;
  max-width: 920px;
}

.bd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .77rem;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.bd-breadcrumb a {
  color: rgba(255, 255, 255, .6);
  transition: color .3s;
}

.bd-breadcrumb a:hover {
  color: var(--lime);
}

.bd-breadcrumb span {
  color: rgba(255, 255, 255, .25);
}

.bd-hero-badge {
  display: inline-block;
  background: var(--lime);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.bd-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -1px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .4);
}

.bd-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.bd-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bd-author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--lime);
}

.bd-meta-item strong {
  display: block;
  font-size: .88rem;
  color: var(--white);
}

.bd-meta-item span {
  font-size: .74rem;
  color: rgba(255, 255, 255, .5);
}

.bd-meta-sep {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, .15);
}

.bd-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}

.bd-meta-pill i {
  color: var(--lime);
  font-size: .75rem;
}

.bd-scroll-hint {
  position: absolute;
  bottom: 28px;
  right: 48px;
  z-index: 2;
}

.bd-scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.bd-scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--lime);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}

/* Reading progress bar */
.bd-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--lime);
  z-index: 9999;
  width: 0%;
  transition: width .1s;
  box-shadow: 0 0 10px rgba(200, 230, 58, .6);
}

/* Article image elements */
.ba-image-strip {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 12px;
  margin: 36px 0;
  /* height: 360px; */
}

.ba-img-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.ba-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-img-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(7, 26, 34, .8);
  color: rgba(255, 255, 255, .8);
  font-size: .72rem;
  padding: 5px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(6px);
}

.ba-img-caption i {
  color: var(--lime);
}

.ba-img-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ba-img-thumb {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ba-img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Full width article image */
.ba-full-img {
  position: relative;
  margin: 36px -24px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 420px;
}

.ba-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-full-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 24px 18px;
  background: linear-gradient(to top, rgba(7, 26, 34, .8) 0%, transparent 100%);
  font-size: .8rem;
  color: rgba(255, 255, 255, .65);
  font-style: italic;
}

/* Two column image pair */
.ba-img-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 32px 0;
}

.ba-img-pair-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
}

.ba-img-pair-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.ba-img-pair-item:hover img {
  transform: scale(1.05);
}

.ba-img-pair-item span {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(7, 26, 34, .75);
  color: rgba(255, 255, 255, .85);
  font-size: .74rem;
  padding: 4px 12px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}

/* Experience showcase */
.ba-exp-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 32px 0;
}

.ba-exp-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 180px;
}

.ba-exp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.ba-exp-item:hover img {
  transform: scale(1.08);
}

.ba-exp-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(to top, rgba(7, 26, 34, .85) 0%, transparent 100%);
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
}

.ba-exp-label i {
  color: var(--lime);
  font-size: .85rem;
}

/* ====================================================
   ABOUT PAGE — NEXT LEVEL
   ==================================================== */

/* Cinematic hero */
.ab-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.ab-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.ab-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ab-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: zoomBg 25s ease-in-out infinite alternate;
}

.ab-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(7, 26, 34, .75) 0%, rgba(9, 47, 56, .85) 60%, rgba(7, 25, 32, .95) 100%);
}

.ab-hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .5;
}

/* Floating shapes */
.ab-floats {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.ab-float {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 230, 58, .15);
  animation: abFloatAnim 8s ease-in-out infinite;
}

.ab-f1 {
  width: 180px;
  height: 180px;
  top: 12%;
  right: 8%;
  animation-duration: 9s;
}

.ab-f2 {
  width: 80px;
  height: 80px;
  top: 65%;
  left: 5%;
  animation-duration: 7s;
  animation-delay: 1s;
  background: rgba(200, 230, 58, .05);
}

.ab-f3 {
  width: 40px;
  height: 40px;
  top: 30%;
  left: 12%;
  animation-duration: 6s;
  animation-delay: 2s;
  background: rgba(200, 230, 58, .08);
}

.ab-f4 {
  width: 120px;
  height: 120px;
  bottom: 15%;
  right: 15%;
  animation-duration: 11s;
  animation-delay: .5s;
}

.ab-f5 {
  width: 24px;
  height: 24px;
  top: 50%;
  right: 25%;
  animation-duration: 5s;
  animation-delay: 3s;
  background: rgba(200, 230, 58, .12);
}

.ab-float-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(200, 230, 58, .12);
  animation: abFloatAnim 12s linear infinite;
}

.ab-r1 {
  width: 300px;
  height: 300px;
  top: -60px;
  right: -60px;
  animation-duration: 20s;
}

.ab-r2 {
  width: 200px;
  height: 200px;
  bottom: 5%;
  left: 2%;
  animation-duration: 15s;
  animation-delay: 2s;
}

.ab-float-cross {
  position: absolute;
  color: rgba(200, 230, 58, .2);
  font-size: 1.5rem;
  font-weight: 300;
  animation: abFloatAnim 10s ease-in-out infinite;
}

.ab-c1 {
  top: 20%;
  left: 6%;
  animation-delay: 1s;
}

.ab-c2 {
  bottom: 28%;
  right: 6%;
  animation-duration: 8s;
}

@keyframes abFloatAnim {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }

  33% {
    transform: translateY(-18px) rotate(5deg);
  }

  66% {
    transform: translateY(10px) rotate(-4deg);
  }
}

.ab-float-dot-cluster {
  position: absolute;
  top: 60%;
  right: 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  animation: abFloatAnim 12s ease-in-out infinite;
}

.ab-float-dot-cluster span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(200, 230, 58, .25);
  display: block;
}

/* Breadcrumb */
.ab-breadcrumb {
  position: absolute;
  top: 110px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .4);
  z-index: 5;
}

.ab-breadcrumb a {
  color: rgba(255, 255, 255, .55);
  transition: color .3s;
}

.ab-breadcrumb a:hover {
  color: var(--lime);
}

.ab-breadcrumb span {
  color: rgba(255, 255, 255, .2);
}

/* Hero content */
.ab-hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.ab-hero-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 28px;
}

.ab-tag-line {
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, .2);
}

.ab-hero-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}

.ab-title-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 800;
  color: var(--white);
  line-height: .92;
  letter-spacing: -3px;
  opacity: 0;
  transform: translateY(40px);
  animation: titleSlideUp .8s ease forwards;
}

.ab-title-line:nth-child(1) {
  animation-delay: .1s;
}

.ab-title-line:nth-child(2) {
  animation-delay: .25s;
}

.ab-title-line:nth-child(3) {
  animation-delay: .4s;
}

.ab-title-em {
  font-style: italic;
  color: var(--lime-lt);
  -webkit-text-stroke: 0;
}

@keyframes titleSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ab-hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: titleSlideUp .8s ease forwards .55s;
}

.ab-hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  opacity: 0;
  animation: titleSlideUp .8s ease forwards .7s;
}

.ab-hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ab-proof-avatars {
  display: flex;
}

.ab-proof-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .3);
  object-fit: cover;
  margin-left: -8px;
}

.ab-proof-avatars img:first-child {
  margin-left: 0;
}

.ab-hero-proof span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
}

/* Scroll hint */
.ab-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
  opacity: 0;
  animation: titleSlideUp .8s ease forwards .9s;
}

.ab-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(200, 230, 58, .6), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.ab-scroll-hint span {
  font-size: .62rem;
  color: rgba(255, 255, 255, .3);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Marquee strip */
.ab-marquee-sec {
  background: var(--navy);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(200, 230, 58, .12);
  border-bottom: 1px solid rgba(200, 230, 58, .12);
}

.ab-marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marqueeLeft 22s linear infinite;
  width: max-content;
}

.ab-marquee-track span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .2);
  text-transform: uppercase;
  letter-spacing: 2px;
  flex-shrink: 0;
}

.ab-mq-dot {
  color: var(--lime) !important;
  opacity: 1 !important;
}

@keyframes marqueeLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Story section */
.ab-story-sec {
  display: flex;
  gap: 80px;
  padding: 120px 80px;
  background: var(--white);
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
}

.ab-story-left {
  flex: 1;
  min-width: 300px;
}

.ab-story-right {
  flex: 1;
  min-width: 300px;
}

/* 3D stacked image cards */
.ab-img-3d-wrap {
  position: relative;
  height: 520px;
  perspective: 1200px;
}

.ab-img-card {
  position: absolute;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform .6s cubic-bezier(.34, 1.56, .64, 1);
}

.ab-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ab-ic-back {
  width: 75%;
  height: 75%;
  bottom: 0;
  right: 0;
  transform: rotate(-6deg) translateZ(-60px);
  filter: brightness(.7);
  z-index: 1;
}

.ab-ic-mid {
  width: 70%;
  height: 70%;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(4deg) translateZ(-30px);
  filter: brightness(.8);
  z-index: 2;
}

.ab-ic-front {
  width: 78%;
  height: 82%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-1deg) translateZ(0);
  z-index: 3;
}

.ab-img-3d-wrap:hover .ab-ic-back {
  transform: rotate(-10deg) translateZ(-60px) translateX(-8px);
}

.ab-img-3d-wrap:hover .ab-ic-mid {
  transform: translateY(-50%) rotate(7deg) translateZ(-30px);
}

.ab-img-3d-wrap:hover .ab-ic-front {
  transform: translate(-50%, -50%) rotate(-2deg) translateZ(20px) scale(1.02);
}

.ab-ic-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--lime);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lime);
}

.ab-ic-badge i {
  color: var(--navy);
  font-size: 1.2rem;
}

.ab-ic-badge strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}

.ab-ic-badge small {
  font-size: .7rem;
  color: rgba(7, 26, 34, .65);
}

.ab-year-float {
  position: absolute;
  top: 12px;
  right: -24px;
  background: var(--teal-dk);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  z-index: 4;
  animation: abFloatAnim 6s ease-in-out infinite;
}

.ab-year-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
}

.ab-year-label {
  font-size: .68rem;
  color: rgba(255, 255, 255, .5);
  display: block;
  margin-top: 4px;
}

/* Story right */
.ab-story-tag {
  margin-bottom: 20px;
}

.ab-tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 74, 86, .1);
  color: var(--teal-lt);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 20px;
  border: 1px solid rgba(13, 74, 86, .15);
}

.ab-story-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.15;
  margin-bottom: 24px;
}

.ab-story-title em {
  font-style: italic;
  color: var(--teal-lt);
}

.ab-story-body p {
  font-size: .93rem;
  color: var(--body-text);
  line-height: 1.85;
  margin-bottom: 16px;
}

.ab-values-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}

.ab-val-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--lime);
  transition: transform .3s, box-shadow .3s;
}

.ab-val-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
}

.ab-val-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal-lt), var(--teal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}

.ab-val-item strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 3px;
}

.ab-val-item span {
  font-size: .8rem;
  color: var(--body-text);
}

/* Numbers section */
.ab-numbers-sec {
  position: relative;
  background: var(--teal-dk);
  padding: 80px 80px;
  overflow: hidden;
}

.ab-numbers-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ab-nb-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.ab-ng1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  background: rgba(200, 230, 58, .06);
}

.ab-ng2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  right: -50px;
  background: rgba(13, 74, 86, .3);
}

.ab-numbers-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.ab-num-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 24px 20px;
}

.ab-num-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(200, 230, 58, .12);
  color: var(--lime);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 1px solid rgba(200, 230, 58, .2);
}

.ab-num-val {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}

.ab-num-val span:last-child {
  font-size: 1.6rem;
  color: var(--lime);
}

.ab-num-item>p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
  font-weight: 500;
}

.ab-num-div {
  width: 1px;
  height: 70px;
  background: rgba(255, 255, 255, .08);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   KINETIC TYPOGRAPHY SECTION — Peak UI
═══════════════════════════════════════════════ */
.ab-kinetic-sec {
  position: relative;
  padding: 100px 0;
  background: var(--navy);
  overflow: hidden;
  user-select: none;
  cursor: default;
}

/* Subtle radial glow behind text */
.ab-kinetic-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 50%, rgba(200, 230, 58, .04) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 75% 50%, rgba(99, 179, 237, .03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ab-kinetic-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.ab-kinetic-row {
  font-family: var(--font-display);
  font-size: clamp(5rem, 13vw, 13rem);
  font-weight: 900;
  line-height: .88;
  white-space: nowrap;
  letter-spacing: -0.03em;
  padding: 0 48px;
  will-change: transform;
  transition: transform .08s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: block;
}

/* Hover shimmer effect on each row */
.ab-kinetic-row::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  padding: inherit;
  font: inherit;
  letter-spacing: inherit;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(200, 230, 58, .18) 45%,
      rgba(255, 255, 255, .12) 50%,
      rgba(200, 230, 58, .18) 55%,
      transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  background-position: -200% 0;
  transition: background-position .6s ease;
  pointer-events: none;
}

.ab-kinetic-row:hover::after {
  background-position: 200% 0;
}

/* Row variants */
.ab-kr-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .1);
  transition: -webkit-text-stroke-color .4s ease, transform .08s cubic-bezier(0.16, 1, 0.3, 1);
}

.ab-kr-outline:hover {
  -webkit-text-stroke-color: rgba(255, 255, 255, .22);
}

.ab-kr-filled {
  color: rgba(255, 255, 255, .06);
  transition: color .4s ease, transform .08s cubic-bezier(0.16, 1, 0.3, 1);
}

.ab-kr-filled:hover {
  color: rgba(255, 255, 255, .12);
}

.ab-kr-lime {
  color: transparent;
  -webkit-text-stroke: 2px rgba(200, 230, 58, .18);
  transition: -webkit-text-stroke-color .4s ease, transform .08s cubic-bezier(0.16, 1, 0.3, 1);
}

.ab-kr-lime:hover {
  -webkit-text-stroke-color: rgba(200, 230, 58, .45);
}

/* ── Floating orbs ──────────────────────────────── */
.ab-kinetic-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.ab-orb {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .12);
  will-change: transform;
  transition: transform .12s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .3s ease;
  /* layered shadow for depth */
  box-shadow:
    0 8px 24px rgba(0, 0, 0, .45),
    0 2px 6px rgba(0, 0, 0, .3),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}

.ab-orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1), filter .4s ease;
  filter: saturate(.85) brightness(.9);
}

/* Subtle entry animations */
.ab-orb1 {
  width: 220px;
  height: 220px;
  top: 8%;
  left: 7%;
  animation: orbFloat1 7s ease-in-out infinite;
}

.ab-orb2 {
  width: 155px;
  height: 155px;
  top: 52%;
  left: 22%;
  animation: orbFloat2 9s ease-in-out infinite;
}

.ab-orb3 {
  width: 190px;
  height: 190px;
  top: 4%;
  right: 9%;
  animation: orbFloat3 8s ease-in-out infinite;
}

.ab-orb4 {
  width: 140px;
  height: 140px;
  bottom: 6%;
  right: 18%;
  animation: orbFloat4 6s ease-in-out infinite;
}

/* Lime ring on hover — pointer-events enabled on individual orbs */
.ab-orb:hover {
  border-color: rgba(200, 230, 58, .5);
  box-shadow:
    0 0 0 4px rgba(200, 230, 58, .08),
    0 12px 40px rgba(0, 0, 0, .5),
    inset 0 1px 0 rgba(255, 255, 255, .1);
}

.ab-orb:hover img {
  transform: scale(1.08);
  filter: saturate(1.1) brightness(1.05);
}

/* Floating keyframes — each orb drifts independently */
@keyframes orbFloat1 {
  0%, 100% {
    translate: 0px 0px;
  }

  33% {
    translate: 8px -12px;
  }

  66% {
    translate: -6px 8px;
  }
}

@keyframes orbFloat2 {
  0%, 100% {
    translate: 0px 0px;
  }

  40% {
    translate: -10px 10px;
  }

  70% {
    translate: 6px -6px;
  }
}

@keyframes orbFloat3 {
  0%, 100% {
    translate: 0px 0px;
  }

  30% {
    translate: -8px -10px;
  }

  65% {
    translate: 10px 6px;
  }
}

@keyframes orbFloat4 {
  0%, 100% {
    translate: 0px 0px;
  }

  45% {
    translate: 8px -8px;
  }

  80% {
    translate: -6px 10px;
  }
}

/* Pause float on hover so parallax takes over cleanly */
.ab-orb:hover {
  animation-play-state: paused;
}

/* Orb label tooltip */
.ab-orb-label {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .5);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .3s ease;
  text-transform: uppercase;
}

.ab-orb:hover .ab-orb-label {
  opacity: 1;
}

/* Mouse-follow highlight line */
.ab-kinetic-cursor-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(200, 230, 58, .15), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 3;
}

.ab-kinetic-sec:hover .ab-kinetic-cursor-line {
  opacity: 1;
}

/* Mobile — scale down orbs */
@media (max-width: 768px) {
  .ab-kinetic-row {
    padding: 0 20px;
  }

  .ab-orb1 {
    width: 130px;
    height: 130px;
  }

  .ab-orb2 {
    width: 90px;
    height: 90px;
  }

  .ab-orb3 {
    width: 110px;
    height: 110px;
  }

  .ab-orb4 {
    width: 85px;
    height: 85px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ab-orb {
    animation: none !important;
  }

  .ab-kinetic-row {
    transition: none !important;
  }
}

/* Grain overlay */
.ab-kinetic-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: .45;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}

/* Orb 5 — Goa */
.ab-orb5 {
  width: 120px;
  height: 120px;
  top: 38%;
  right: 5%;
  animation: orbFloat2 10s ease-in-out infinite;
}

/* Animated ring pulse around each orb */
.ab-orb-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 230, 58, 0);
  transition: border-color .4s ease, transform .4s ease;
  pointer-events: none;
}

.ab-orb:hover .ab-orb-ring {
  border-color: rgba(200, 230, 58, .35);
  transform: scale(1.08);
  animation: ringPulse 1.4s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1.08);
  }

  50% {
    opacity: .4;
    transform: scale(1.14);
  }
}

/* Orb label — with icon */
.ab-orb-label {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .55);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .3s ease, bottom .3s ease;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

.ab-orb-label i {
  color: rgba(200, 230, 58, .7);
  font-size: 9px;
}

.ab-orb:hover .ab-orb-label {
  opacity: 1;
  bottom: -28px;
}

/* Bottom CTA strip */
.ab-kinetic-cta {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 56px;
  padding: 0 40px;
  flex-wrap: wrap;
}

.ab-kinetic-cta-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  display: flex;
  align-items: center;
  gap: 6px;
}

.ab-kinetic-cta-tag i {
  color: rgba(200, 230, 58, .5);
}

.ab-kinetic-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1.5px solid rgba(200, 230, 58, .3);
  color: rgba(200, 230, 58, .9);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  background: rgba(200, 230, 58, .04);
  transition: background .3s ease, border-color .3s ease, color .3s ease, transform .3s ease;
}

.ab-kinetic-cta-btn:hover {
  background: rgba(200, 230, 58, .12);
  border-color: rgba(200, 230, 58, .65);
  color: #c8e63a;
  transform: translateY(-2px);
}

.ab-kinetic-cta-btn i {
  transition: transform .3s ease;
}

.ab-kinetic-cta-btn:hover i {
  transform: translateX(4px);
}

/* Mobile */
@media (max-width: 768px) {
  .ab-orb5 {
    display: none;
  }

  .ab-kinetic-cta {
    gap: 16px;
    margin-top: 40px;
  }

  .ab-kinetic-cta-tag {
    display: none;
  }
}

/* Why section */
.ab-why-sec {
  padding: 120px 80px;
  background: var(--off-white);
  overflow: hidden;
}

.ab-why-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.ab-why-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.1;
  margin: 14px 0;
}

.ab-why-title em {
  font-style: italic;
  color: var(--teal-lt);
}

.ab-why-header-right {
  max-width: 380px;
}

.ab-why-header-right p {
  font-size: .92rem;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Brick wall grid */
.ab-why-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ab-wb-wide {
  grid-column: span 2;
}

.ab-why-brick {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s, background .3s;
}

.ab-why-brick::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.ab-why-brick:hover::before {
  transform: scaleX(1);
}

.ab-why-brick:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  background: var(--off-white);
}

.ab-wb-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--teal-lt), var(--teal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.ab-why-brick h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.ab-why-brick p {
  font-size: .8rem;
  color: var(--body-text);
  line-height: 1.7;
}

.ab-wb-num {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(13, 74, 86, .06);
  line-height: 1;
  user-select: none;
}

/* Team section */
.ab-team-sec {
  padding: 100px 0 100px 80px;
  background: var(--white);
  overflow: hidden;
}

.ab-team-header {
  max-width: 700px;
  margin-bottom: 56px;
  padding-right: 80px;
}

.ab-team-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.15;
  margin: 14px 0 14px;
}

.ab-team-title em {
  font-style: italic;
  color: var(--teal-lt);
}

.ab-team-header p {
  font-size: .92rem;
  color: var(--body-text);
  line-height: 1.75;
  max-width: 520px;
}

.ab-team-scroll-wrap {
  position: relative;
}

.ab-team-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 16px;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.ab-team-track::-webkit-scrollbar {
  display: none;
}

.ab-tc {
  flex: 0 0 320px;
  scroll-snap-align: start;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--off-white);
  position: relative;
  transition: transform .3s;
}

.ab-tc:hover {
  transform: translateY(-8px);
}

.ab-tc-img {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.ab-tc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.ab-tc:hover .ab-tc-img img {
  transform: scale(1.06);
}

.ab-tc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 26, 34, .85) 0%, transparent 55%);
}

.ab-tc-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--lime);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ab-tc-body {
  padding: 20px 20px 24px;
  background: var(--white);
  position: relative;
}

.ab-tc-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.ab-tc-body p {
  font-size: .8rem;
  color: var(--mid-gray);
  margin-bottom: 12px;
}

.ab-tc-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.ab-tc-tags span {
  font-size: .68rem;
  font-weight: 600;
  background: rgba(13, 74, 86, .1);
  color: var(--teal-lt);
  padding: 3px 10px;
  border-radius: 20px;
}

.ab-tc-num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(13, 74, 86, .07);
  line-height: 1;
}

.ab-team-nav {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding-right: 80px;
  justify-content: flex-end;
}

.ab-tnav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--off-white);
  border: 2px solid var(--border);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: all .3s;
  box-shadow: var(--shadow-sm);
}

.ab-tnav-btn:hover {
  background: var(--lime);
  color: var(--navy);
  border-color: var(--lime);
  box-shadow: var(--shadow-lime);
  transform: scale(1.08);
}

/* Final CTA */
.ab-cta-sec {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.ab-cta-bg {
  position: absolute;
  inset: 0;
}

.ab-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ab-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(7, 26, 34, .88) 0%, rgba(9, 47, 56, .92) 100%);
}

.ab-cta-bigtext {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 22rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200, 230, 58, .05);
  z-index: 1;
  user-select: none;
  letter-spacing: -6px;
  line-height: 1;
}

.ab-cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 80px 24px;
}

.ab-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin: 14px 0 20px;
  letter-spacing: -1.5px;
}

.ab-cta-title em {
  font-style: italic;
  color: var(--lime-lt);
}

.ab-cta-content>p {
  font-size: .95rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 40px;
}

.ab-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.ab-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, .8);
  border: 2px solid rgba(255, 255, 255, .25);
  font-weight: 600;
  font-size: .88rem;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  transition: all .3s;
}

.ab-cta-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .5);
  color: var(--white);
}

.ab-cta-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.ab-cta-proof span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .4);
}

/* ====================================================
   RESPONSIVE
   ==================================================== */

@media (max-width: 1200px) {
  .ab-why-wall {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-wb-wide {
    grid-column: span 1;
  }

  .ab-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dd-gallery-masonry {
    height: 360px;
  }
}

@media (max-width: 1024px) {
  .ab-story-sec {
    padding: 80px 48px;
    gap: 48px;
  }

  .ab-numbers-sec {
    padding: 60px 48px;
  }

  .ab-why-sec {
    padding: 80px 48px;
  }

  .ab-team-sec {
    padding: 80px 0 80px 48px;
  }

  .ab-reviews-sec {
    padding: 80px 48px;
  }

  .ab-orb1 {
    width: 140px;
    height: 140px;
  }

  .ab-orb2 {
    width: 110px;
    height: 110px;
  }

  .ab-orb3 {
    width: 130px;
    height: 130px;
  }

  .ab-orb4 {
    width: 100px;
    height: 100px;
  }

  .dd-gallery-sec {
    padding: 60px 40px 48px;
  }

  .dd-hero-content {
    padding: 40px 60px;
  }

  .dd-breadcrumb {
    left: 40px;
  }

  .bd-hero-content {
    padding: 0 40px 56px;
  }

  .dd-sticky-inner {
    padding: 12px 40px;
  }
}

@media (max-width: 960px) {
  .ab-story-sec {
    flex-direction: column;
  }

  .ab-img-3d-wrap {
    height: 400px;
  }

  .ab-why-header {
    flex-direction: column;
    gap: 24px;
  }

  .ab-num-div {
    display: none;
  }

  .ab-num-item {
    flex: 1 1 45%;
  }

  .ab-reviews-grid {
    grid-template-columns: 1fr;
  }

  .ab-tc {
    flex: 0 0 280px;
  }

  .dd-gallery-masonry {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .dd-gm-col-3 {
    display: none;
  }

  .dmc-section {
    flex-direction: column;
    gap: 12px;
  }

  .dmc-num {
    font-size: 3rem;
  }

  .dd-highlights-grid {
    grid-template-columns: 1fr;
  }

  .dd-inclusions {
    grid-template-columns: 1fr;
  }

  .ba-image-strip {
    grid-template-columns: 1fr;
    height: auto;
  }

  .ba-img-side {
    flex-direction: row;
  }

  .ba-img-thumb {
    height: 150px;
  }

  .ba-exp-showcase {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .ab-hero-content {
    padding: 0 24px;
  }

  .ab-breadcrumb {
    left: 24px;
    top: 100px;
  }

  .ab-story-sec {
    padding: 60px 24px;
  }

  .ab-numbers-sec {
    padding: 52px 24px;
  }

  .ab-why-sec {
    padding: 60px 24px;
  }

  .ab-team-sec {
    padding: 60px 0 60px 24px;
  }

  .ab-reviews-sec {
    padding: 60px 24px;
  }

  .ab-why-wall {
    grid-template-columns: 1fr 1fr;
  }

  .ab-kinetic-row {
    font-size: clamp(3rem, 11vw, 7rem);
  }

  .ab-orb1, .ab-orb3 {
    display: none;
  }

  .ab-orb2 {
    width: 90px;
    height: 90px;
    left: 5%;
  }

  .ab-orb4 {
    width: 80px;
    height: 80px;
  }

  .dd-hero-content {
    padding: 24px 48px;
  }

  .dd-breadcrumb {
    left: 24px;
    top: 100px;
  }

  .dd-hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    letter-spacing: -1px;
  }

  .dd-gallery-sec {
    padding: 48px 20px;
  }

  .dd-gallery-masonry {
    grid-template-columns: 1fr;
    height: auto;
  }

  .dd-gm-col-2 {
    flex-direction: row;
  }

  .dd-gm-tall {
    min-height: 280px;
  }

  .dd-sticky-inner {
    padding: 10px 20px;
  }

  .bd-hero-content {
    padding: 0 24px 48px;
  }

  .bd-hero-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .ba-full-img {
    margin: 28px 0;
    height: 260px;
  }

  .ba-img-pair {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .ab-hero-title {
    letter-spacing: -2px;
  }

  .ab-why-wall {
    grid-template-columns: 1fr;
  }

  .ab-wb-wide {
    grid-column: span 1;
  }

  .ab-title-line {
    letter-spacing: -2px;
  }

  .dd-hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .dd-hstat-div {
    display: none;
  }

  .dd-hstat {
    padding: 0;
  }

  .ab-num-item {
    flex: 1 1 100%;
  }

  .ba-exp-showcase {
    grid-template-columns: 1fr;
  }

  .ab-reviews-grid {
    grid-template-columns: 1fr;
  }

  .ab-team-nav {
    padding-right: 24px;
  }

  .dd-gallery-masonry {
    display: flex;
    flex-direction: column;
  }

  .dd-gm-col {
    flex-direction: row;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   GALLERY PAGE  ·  gallery.php
   Palette: --lime #c8e63a  |  dark navy #0d1117  |  dark-2 #111927
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── VARIABLES (mirror your root) ───────────────────────────────────────── */
:root {
  --glr-lime: #c8e63a;
  --glr-lime-dim: rgba(200, 230, 58, .15);
  --glr-dark: #0d1117;
  --glr-dark2: #111927;
  --glr-dark3: #1a2435;
  --glr-white: #ffffff;
  --glr-muted: rgba(255, 255, 255, .55);
  --glr-radius: 16px;
  --glr-radius-sm: 10px;
  --glr-trans: .3s cubic-bezier(.4, 0, .2, 1);
}

/* ── HERO ───────────────────────────────────────────────────────────────── */
.glr-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--glr-dark);
}

.glr-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 15% 60%, rgba(200, 230, 58, .11) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 85% 25%, rgba(200, 230, 58, .07) 0%, transparent 60%),
    linear-gradient(155deg, #0d1117 0%, #111927 100%);
  z-index: 0;
}

.glr-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200, 230, 58, .07) 1px, transparent 1px);
  background-size: 38px 38px;
  animation: glrDotDrift 18s linear infinite;
}

@keyframes glrDotDrift {
  to {
    transform: translateY(38px);
  }
}

.glr-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 7rem 1.5rem 5rem;
  max-width: 780px;
  margin: 0 auto;
}

.glr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem 1.25rem;
  border-radius: 2rem;
  border: 1px solid rgba(200, 230, 58, .3);
  background: rgba(200, 230, 58, .08);
  color: var(--glr-lime);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.glr-hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--glr-white);
  line-height: 1.1;
  margin-bottom: 1.1rem;
  letter-spacing: -.02em;
}

.glr-hero-title em {
  font-style: normal;
  color: var(--glr-lime);
}

.glr-hero-sub {
  font-size: 1.05rem;
  color: var(--glr-muted);
  max-width: 540px;
  margin: 0 auto 2.2rem;
  line-height: 1.75;
}

.glr-hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 2rem;
  padding: .7rem 2.2rem;
}

.glr-hstat {
  text-align: center;
}

.glr-hstat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--glr-lime);
  line-height: 1.1;
}

.glr-hstat span {
  font-size: .75rem;
  color: var(--glr-muted);
  font-weight: 500;
}

.glr-hstat span i {
  margin-right: .25rem;
}

.glr-hstat-div {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .12);
}

.glr-hero-scroll {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .3);
  font-size: 1.1rem;
  text-decoration: none;
  animation: glrBounce 2.2s ease-in-out infinite;
  z-index: 1;
  transition: color var(--glr-trans);
}

.glr-hero-scroll:hover {
  color: var(--glr-lime);
}

@keyframes glrBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ── SPOTLIGHT SLIDER ───────────────────────────────────────────────────── */
.glr-spotlight-section {
  background: var(--glr-dark);
  padding: 3.5rem 1.5rem 2rem;
}

.glr-spotlight-wrap {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}

.glr-spot-track {
  position: relative;
  aspect-ratio: 16 / 6.5;
  border-radius: var(--glr-radius);
  overflow: hidden;
  background: var(--glr-dark2);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .7);
}

@media (max-width: 768px) {
  .glr-spot-track {
    aspect-ratio: 4 / 3;
  }
}

.glr-spot-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .7s ease, transform .7s ease;
  pointer-events: none;
}

.glr-spot-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.glr-spot-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.glr-spot-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, .85) 0%,
      rgba(0, 0, 0, .25) 50%,
      transparent 100%);
}

.glr-spot-play-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(200, 230, 58, .92);
  color: var(--glr-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  transition: transform var(--glr-trans), box-shadow var(--glr-trans);
  box-shadow: 0 0 0 0 rgba(200, 230, 58, .4);
  animation: glrPulse 2.5s ease-in-out infinite;
  z-index: 5;
}

.glr-spot-play-ring:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

@keyframes glrPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(200, 230, 58, .4);
  }

  50% {
    box-shadow: 0 0 0 18px rgba(200, 230, 58, 0);
  }
}

.glr-spot-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 2.5rem 2rem;
  z-index: 3;
}

.glr-spot-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--glr-lime);
  color: var(--glr-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .28rem .9rem;
  border-radius: 2rem;
  margin-bottom: .8rem;
}

.glr-spot-tag--photo {
  background: rgba(200, 230, 58, .18);
  color: var(--glr-lime);
  border: 1px solid rgba(200, 230, 58, .3);
}

.glr-spot-info h2 {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--glr-white);
  margin-bottom: .4rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}

.glr-spot-info p {
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
}

.glr-spot-dur {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: rgba(255, 255, 255, .6);
  font-size: .8rem;
  margin-top: .5rem;
}

/* Arrows */
.glr-spot-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: rgba(13, 17, 23, .75);
  backdrop-filter: blur(8px);
  color: var(--glr-white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--glr-trans), transform var(--glr-trans);
  z-index: 10;
}

.glr-spot-arrow--prev {
  left: -20px;
}

.glr-spot-arrow--next {
  right: -20px;
}

.glr-spot-arrow:hover {
  background: var(--glr-lime);
  color: var(--glr-dark);
  transform: translateY(-50%) scale(1.08);
}

@media (max-width: 768px) {
  .glr-spot-arrow--prev {
    left: .5rem;
  }

  .glr-spot-arrow--next {
    right: .5rem;
  }
}

/* Thumbnail strip */
.glr-spot-thumbs {
  display: flex;
  gap: .6rem;
  justify-content: center;
  margin-top: 1.1rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: .25rem;
}

.glr-spot-thumbs::-webkit-scrollbar {
  display: none;
}

.glr-spot-thumb {
  flex-shrink: 0;
  width: 68px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--glr-dark3);
  cursor: pointer;
  transition: border-color var(--glr-trans), transform var(--glr-trans), opacity var(--glr-trans);
  opacity: .5;
  position: relative;
  padding: 0;
}

.glr-spot-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.glr-spot-thumb i {
  color: var(--glr-muted);
  font-size: 1.2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.glr-spot-thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .45);
  color: var(--glr-lime);
  font-size: .7rem;
}

.glr-spot-thumb.is-active {
  border-color: var(--glr-lime);
  opacity: 1;
  transform: scale(1.08);
}

.glr-spot-thumb:hover:not(.is-active) {
  border-color: rgba(200, 230, 58, .4);
  opacity: .8;
}

/* Progress bar */
.glr-spot-progress {
  height: 3px;
  background: rgba(255, 255, 255, .08);
  border-radius: 2px;
  margin-top: .8rem;
  overflow: hidden;
}

.glr-spot-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--glr-lime);
  border-radius: 2px;
  transition: width linear;
}

/* ── FILTER BAR ─────────────────────────────────────────────────────────── */
.glr-main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.glr-filter-bar {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 2.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: .5rem;
}

.glr-filter-bar::-webkit-scrollbar {
  display: none;
}

.glr-ftab {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1.4rem;
  border-radius: 2rem;
  border: 1.5px solid rgba(255, 255, 255, .12);
  background: transparent;
  color: var(--glr-muted);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--glr-trans);
}

.glr-ftab-count {
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .5);
  font-size: .68rem;
  font-weight: 700;
  padding: .1rem .5rem;
  border-radius: 1rem;
  min-width: 22px;
  text-align: center;
  transition: all var(--glr-trans);
}

.glr-ftab:hover {
  border-color: var(--glr-lime);
  color: var(--glr-lime);
}

.glr-ftab.is-active {
  background: var(--glr-lime);
  border-color: var(--glr-lime);
  color: var(--glr-dark);
}

.glr-ftab.is-active .glr-ftab-count {
  background: rgba(13, 17, 23, .25);
  color: var(--glr-dark);
}

/* ── MASONRY GRID ───────────────────────────────────────────────────────── */
.glr-grid {
  columns: 4 240px;
  column-gap: 1rem;
}

.glr-card {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--glr-radius);
  overflow: hidden;
  cursor: pointer;
  display: inline-block;
  width: 100%;
  position: relative;
  background: var(--glr-dark2);
  transition: transform var(--glr-trans), box-shadow var(--glr-trans);
}

.glr-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55);
}

.glr-card.glr-hidden {
  display: none;
}

.glr-card-inner {
  position: relative;
  overflow: hidden;
}

.glr-card-media {
  width: 100%;
  height: auto;
  display: block;
  min-height: 150px;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.glr-card:hover .glr-card-media {
  transform: scale(1.07);
}

.glr-card-no-thumb {
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glr-dark3);
  color: rgba(255, 255, 255, .2);
  font-size: 2.5rem;
}

/* Shimmer shine sweep */
.glr-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
      transparent 40%,
      rgba(255, 255, 255, .06) 50%,
      transparent 60%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  animation: glrShine 1.2s ease forwards;
  animation-play-state: paused;
}

.glr-card:hover .glr-card-shine {
  opacity: 1;
  animation-play-state: running;
}

@keyframes glrShine {
  from {
    background-position: 200% center;
  }

  to {
    background-position: -50% center;
  }
}

/* Overlay */
.glr-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, .8) 0%,
      rgba(0, 0, 0, .15) 45%,
      transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: .85rem;
  opacity: 0;
  transition: opacity var(--glr-trans);
}

.glr-card:hover .glr-card-overlay {
  opacity: 1;
}

.glr-card-top {
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  flex-wrap: wrap;
}

.glr-card-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .22rem .7rem;
  border-radius: 2rem;
}

.glr-card-badge--photo {
  background: rgba(200, 230, 58, .18);
  color: var(--glr-lime);
  border: 1px solid rgba(200, 230, 58, .3);
}

.glr-card-badge--video {
  background: rgba(255, 90, 50, .15);
  color: #ff6432;
  border: 1px solid rgba(255, 90, 50, .3);
}

.glr-card-dur {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .68rem;
  color: rgba(255, 255, 255, .7);
  background: rgba(0, 0, 0, .45);
  padding: .2rem .6rem;
  border-radius: 2rem;
}

.glr-card-bottom h4 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--glr-white);
  margin-bottom: .25rem;
  line-height: 1.3;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.glr-card-bottom p {
  font-size: .75rem;
  color: rgba(255, 255, 255, .65);
}

.glr-card-expand {
  position: absolute;
  top: .7rem;
  right: .7rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, .5);
  color: var(--glr-white);
  font-size: .8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--glr-trans), transform var(--glr-trans);
  opacity: 0;
  transform: scale(.7);
}

.glr-card:hover .glr-card-expand {
  opacity: 1;
  transform: scale(1);
}

.glr-card-expand:hover {
  background: var(--glr-lime);
  color: var(--glr-dark);
}

/* Video play button */
.glr-card-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(200, 230, 58, .92);
  color: var(--glr-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  pointer-events: none;
  box-shadow: 0 6px 24px rgba(200, 230, 58, .35);
  transition: transform var(--glr-trans), box-shadow var(--glr-trans);
}

.glr-card:hover .glr-card-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 10px 35px rgba(200, 230, 58, .5);
}

/* Empty state */
.glr-empty-state {
  column-span: all;
  text-align: center;
  padding: 6rem 2rem;
  color: rgba(255, 255, 255, .25);
}

.glr-empty-state i {
  font-size: 4rem;
  color: var(--glr-lime);
  opacity: .3;
  display: block;
  margin-bottom: 1rem;
}

.glr-empty-state h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .3);
  margin-bottom: .4rem;
}

.glr-empty-state p {
  font-size: .9rem;
}

/* Load more */
.glr-loadmore-wrap {
  text-align: center;
  margin-top: 3rem;
}

.glr-loadmore-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 2.6rem;
  border-radius: 3rem;
  border: 1.5px solid var(--glr-lime);
  background: transparent;
  color: var(--glr-lime);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--glr-trans);
}

.glr-loadmore-btn:hover {
  background: var(--glr-lime);
  color: var(--glr-dark);
}

.glr-loadmore-btn i {
  transition: transform .4s ease;
}

.glr-loadmore-btn:hover i {
  transform: rotate(180deg);
}

/* ── LIGHTBOX ───────────────────────────────────────────────────────────── */
.glr-lb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.glr-lb:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
}

.glr-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .94);
  backdrop-filter: blur(8px);
  z-index: 0;
  cursor: pointer;
}

.glr-lb-close {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .08);
  color: var(--glr-white);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--glr-trans), transform var(--glr-trans);
}

.glr-lb-close:hover {
  background: var(--glr-lime);
  color: var(--glr-dark);
  transform: rotate(90deg);
}

.glr-lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .07);
  color: var(--glr-white);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--glr-trans), transform var(--glr-trans);
}

.glr-lb-arrow--prev {
  left: 1.5rem;
}

.glr-lb-arrow--next {
  right: 1.5rem;
}

.glr-lb-arrow:hover {
  background: var(--glr-lime);
  color: var(--glr-dark);
}

@media (max-width: 600px) {
  .glr-lb-arrow--prev {
    left: .4rem;
  }

  .glr-lb-arrow--next {
    right: .4rem;
  }
}

.glr-lb-stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  width: 100%;
}

.glr-lb-media {
  max-width: 88vw;
  max-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .3s ease, transform .3s ease;
}

.glr-lb-media img {
  max-width: 88vw;
  max-height: 68vh;
  object-fit: contain;
  border-radius: var(--glr-radius-sm);
  display: block;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .7);
}

.glr-lb-meta {
  text-align: center;
  margin-top: 1.1rem;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.glr-lb-counter {
  font-size: .72rem;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .1em;
  display: block;
  margin-bottom: .3rem;
}

.glr-lb-meta h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--glr-white);
  margin-bottom: .25rem;
}

.glr-lb-meta p {
  font-size: .82rem;
  color: var(--glr-muted);
}

/* Filmstrip */
.glr-lb-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  gap: .5rem;
  padding: .9rem 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  justify-content: center;
  background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent);
}

.glr-lb-strip::-webkit-scrollbar {
  display: none;
}

.glr-lb-strip-th {
  flex-shrink: 0;
  width: 56px;
  height: 42px;
  border-radius: 7px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: .5;
  transition: all var(--glr-trans);
  background: var(--glr-dark3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.glr-lb-strip-th img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.glr-lb-strip-th i {
  color: var(--glr-muted);
  font-size: 1rem;
}

.glr-lb-strip-th.is-active {
  border-color: var(--glr-lime);
  opacity: 1;
  transform: scale(1.1);
}

.glr-lb-strip-th:hover:not(.is-active) {
  opacity: .8;
  border-color: rgba(200, 230, 58, .35);
}

/* ── VIDEO MODAL ────────────────────────────────────────────────────────── */
.glr-vmодal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.glr-vmодal:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
}

.glr-vmodal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .96);
  cursor: pointer;
}

.glr-vmodal-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  border-radius: var(--glr-radius);
  overflow: hidden;
  background: #000;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .9);
}

.glr-vmodal-close {
  position: absolute;
  top: .8rem;
  right: .8rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, .6);
  color: var(--glr-white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background var(--glr-trans);
}

.glr-vmodal-close:hover {
  background: var(--glr-lime);
  color: var(--glr-dark);
}

.glr-vmodal-player {
  width: 100%;
  max-height: 80vh;
  display: block;
  background: #000;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .glr-grid {
    columns: 3 220px;
  }
}

@media (max-width: 768px) {
  .glr-grid {
    columns: 2 170px;
  }
}

@media (max-width: 420px) {
  .glr-grid {
    columns: 2 140px;
    column-gap: .6rem;
  }

  .glr-hero-stats {
    flex-direction: column;
    gap: .6rem;
    padding: .8rem 1.5rem;
  }

  .glr-hstat-div {
    width: 40px;
    height: 1px;
  }
}

/* ── ENTRY ANIMATIONS ───────────────────────────────────────────────────── */
@keyframes glrFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ====================================================
   LISTING CATEGORIES PAGE — listing-categories.php
   Append this entire block to the bottom of style.css
   ==================================================== */

/* ── HERO ───────────────────────────────────────────── */
.lcat-hero {
  position: relative;
  min-height: 420px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.lcat-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lcat-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.lcat-orb1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13, 74, 86, .55) 0%, transparent 70%);
  top: -120px;
  left: -80px;
  animation: lcatOrb 8s ease-in-out infinite alternate;
}

.lcat-orb2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 230, 58, .12) 0%, transparent 70%);
  bottom: -80px;
  right: -60px;
  animation: lcatOrb 10s ease-in-out infinite alternate-reverse;
}

@keyframes lcatOrb {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(30px, 20px) scale(1.08);
  }
}

.lcat-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 230, 58, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 230, 58, .04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.lcat-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
}

.lcat-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin: 10px 0 16px;
  letter-spacing: -0.02em;
}

.lcat-hero-title em {
  font-style: italic;
  color: var(--lime);
}

.lcat-hero-sub {
  color: rgba(255, 255, 255, .6);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 28px;
}

.lcat-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
}

.lcat-hero-breadcrumb a {
  color: rgba(255, 255, 255, .6);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition);
}

.lcat-hero-breadcrumb a:hover {
  color: var(--lime);
}

.lcat-hero-breadcrumb i.fa-chevron-right {
  font-size: .6rem;
  color: rgba(255, 255, 255, .25);
}

/* Floating decoration icons */
.lcat-float {
  position: absolute;
  font-size: 1.8rem;
  color: rgba(200, 230, 58, .12);
  pointer-events: none;
  z-index: 1;
}

.lf1 {
  top: 18%;
  left: 6%;
  animation: lcatFloat 6s ease-in-out infinite;
}

.lf2 {
  top: 25%;
  right: 8%;
  animation: lcatFloat 7s ease-in-out infinite 1s;
}

.lf3 {
  bottom: 20%;
  left: 12%;
  animation: lcatFloat 5s ease-in-out infinite 0.5s;
}

.lf4 {
  bottom: 28%;
  right: 6%;
  animation: lcatFloat 8s ease-in-out infinite 2s;
}

@keyframes lcatFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(8deg);
  }
}

/* ── INTRO STRIP ────────────────────────────────────── */
.lcat-intro-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 3;
}

.lcat-intro-inner {
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.lcat-intro-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 32px;
}

.lcat-intro-stat i {
  font-size: 1.1rem;
  color: var(--lime-dk);
}

.lcat-intro-stat strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark-text);
}

.lcat-intro-stat span {
  font-size: .78rem;
  color: var(--mid-gray);
  font-weight: 500;
}

.lcat-intro-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── MAIN SECTION ───────────────────────────────────── */
.lcat-section {
  padding: 96px 24px 108px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.lcat-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.lcat-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── CARDS GRID ─────────────────────────────────────── */
.lcat-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}

/* ── SINGLE CARD ────────────────────────────────────── */
.lcat-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 36px 36px;
  box-shadow: var(--shadow-sm);
  transition: transform .38s cubic-bezier(.2, 0, .15, 1),
    box-shadow .38s cubic-bezier(.2, 0, .15, 1),
    border-color .38s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lcat-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* Top accent bar */
.lcat-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.2, 0, .15, 1);
}

.lcat-card:hover .lcat-card-accent {
  transform: scaleX(1);
}

/* Hotel card — teal accent */
.lcat-card--hotel .lcat-card-accent {
  background: var(--teal);
}

/* Vehicle card — gradient accent */
.lcat-card--vehicle .lcat-card-accent {
  background: linear-gradient(90deg, var(--teal), var(--lime));
}

/* Background decorative pattern */
.lcat-card-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
}

.lcat-card:hover .lcat-card-bg {
  opacity: 1;
}

.lcat-bg--mountains {
  background:
    radial-gradient(ellipse at top right, rgba(200, 230, 58, .07) 0%, transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(13, 74, 86, .05) 0%, transparent 60%);
}

.lcat-bg--waves {
  background:
    radial-gradient(ellipse at top right, rgba(13, 74, 86, .1) 0%, transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(200, 230, 58, .05) 0%, transparent 60%);
}

.lcat-bg--roads {
  background:
    radial-gradient(ellipse at top right, rgba(175, 212, 46, .09) 0%, transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(9, 47, 56, .07) 0%, transparent 60%);
}

/* Glow orb */
.lcat-card-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 230, 58, .15) 0%, transparent 70%);
  top: -50px;
  right: -50px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease, transform .4s ease;
}

.lcat-card--hotel .lcat-card-glow {
  background: radial-gradient(circle, rgba(13, 74, 86, .18) 0%, transparent 70%);
}

.lcat-card:hover .lcat-card-glow {
  opacity: 1;
  transform: scale(1.2);
}

/* Number badge */
.lcat-card-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(13, 74, 86, .07);
  line-height: 1;
  transition: color .3s ease;
  user-select: none;
}

.lcat-card:hover .lcat-card-number {
  color: rgba(200, 230, 58, .12);
}

/* Icon */
.lcat-card-icon-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
}

.lcat-card-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--lime) 0%, var(--lime-dk) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(200, 230, 58, .35);
  transition: transform .35s cubic-bezier(.2, 0, .15, 1), box-shadow .35s ease;
  position: relative;
  z-index: 1;
}

.lcat-card--hotel .lcat-card-icon {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-lt) 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(13, 74, 86, .35);
}

.lcat-card--vehicle .lcat-card-icon {
  background: linear-gradient(135deg, var(--teal-dk) 0%, var(--teal) 100%);
  color: var(--lime);
  box-shadow: 0 8px 24px rgba(9, 47, 56, .4);
}

.lcat-card:hover .lcat-card-icon {
  transform: rotate(-6deg) scale(1.1);
  box-shadow: 0 14px 36px rgba(200, 230, 58, .45);
}

.lcat-card--hotel:hover .lcat-card-icon {
  box-shadow: 0 14px 36px rgba(13, 74, 86, .4);
}

.lcat-card--vehicle:hover .lcat-card-icon {
  box-shadow: 0 14px 36px rgba(9, 47, 56, .45);
}

.lcat-card-icon-ring {
  position: absolute;
  inset: -6px;
  border-radius: calc(var(--radius) + 6px);
  border: 2px dashed rgba(200, 230, 58, .3);
  animation: lcatRingSpin 12s linear infinite;
}

.lcat-card--hotel .lcat-card-icon-ring {
  border-color: rgba(13, 74, 86, .25);
}

@keyframes lcatRingSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Card body */
.lcat-card-body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lcat-card-tagline {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime-dk);
  display: block;
  margin-bottom: 8px;
}

.lcat-card--hotel .lcat-card-tagline {
  color: var(--teal);
}

.lcat-card-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--dark-text);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.lcat-card-desc {
  font-size: .9rem;
  color: var(--body-text);
  line-height: 1.72;
  margin-bottom: 22px;
  flex: 1;
}

/* Features list */
.lcat-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.lcat-card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .83rem;
  color: var(--body-text);
  font-weight: 500;
}

.lcat-card-features li i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(200, 230, 58, .18);
  color: var(--lime-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  flex-shrink: 0;
}

.lcat-card--hotel .lcat-card-features li i {
  background: rgba(13, 74, 86, .1);
  color: var(--teal);
}

/* Card footer */
.lcat-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.lcat-card-count {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.lcat-card-count strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark-text);
}

.lcat-card-count span {
  font-size: .72rem;
  color: var(--mid-gray);
  font-weight: 500;
}

.lcat-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  transition: background .28s, transform .2s, gap .2s;
  white-space: nowrap;
}

.lcat-card-btn i {
  font-size: .72rem;
  transition: transform .25s;
}

.lcat-card-btn:hover {
  background: var(--teal);
  transform: translateY(-1px);
  gap: 12px;
}

.lcat-card-btn:hover i {
  transform: translateX(3px);
}

.lcat-card--tour .lcat-card-btn:hover {
  background: var(--lime-dk);
  color: var(--navy);
}

/* Empty state */
.lcat-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--mid-gray);
}

.lcat-empty i {
  font-size: 3.5rem;
  color: var(--lime);
  opacity: .4;
  display: block;
  margin-bottom: 16px;
}

.lcat-empty h3 {
  font-size: 1.3rem;
  color: var(--dark-text);
  margin-bottom: 8px;
}

/* ── TRUST BAND ─────────────────────────────────────── */
.lcat-trust {
  background: linear-gradient(135deg, var(--teal-dk) 0%, var(--navy) 100%);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.lcat-trust::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 230, 58, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 230, 58, .03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.lcat-trust-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lcat-trust-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lcat-trust-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: background .3s, border-color .3s, transform .3s;
}

.lcat-trust-card:hover {
  background: rgba(200, 230, 58, .08);
  border-color: rgba(200, 230, 58, .2);
  transform: translateY(-4px);
}

.lcat-trust-card i {
  font-size: 1.4rem;
  color: var(--lime);
  margin-bottom: 4px;
}

.lcat-trust-card strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.lcat-trust-card span {
  font-size: .75rem;
  color: rgba(255, 255, 255, .45);
  font-weight: 500;
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .lcat-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lcat-cards-grid .lcat-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 860px) {
  .lcat-trust-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lcat-trust-left {
    text-align: center;
  }

  .lcat-trust-left .sec-desc {
    margin: 12px auto 0;
  }

  .lcat-trust-left a {
    margin-top: 24px;
  }
}

@media (max-width: 680px) {
  .lcat-cards-grid {
    grid-template-columns: 1fr;
  }

  .lcat-cards-grid .lcat-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .lcat-intro-inner {
    gap: 4px;
  }

  .lcat-intro-stat {
    padding: 8px 16px;
  }

  .lcat-intro-divider {
    display: none;
  }

  .lcat-hero {
    padding: 100px 20px 60px;
    min-height: 360px;
  }

  .lf1, .lf2, .lf3, .lf4 {
    display: none;
  }
}

@media (max-width: 480px) {
  .lcat-card {
    padding: 32px 24px 28px;
  }

  .lcat-trust-right {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}


/* ====================================================
   HEADER ENHANCEMENT — Updated nav-inner pill design
   Replaces/extends existing .navbar styles
   ==================================================== */

/* Enhanced navbar pill with subtle lime left indicator on active */
.nav-links ul li a.nav-active {
  color: var(--lime);
  background: rgba(200, 230, 58, .1);
  border-radius: 8px;
}

/* Pill badge on active link */
.nav-links ul li a.nav-active::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--lime);
}

/* Add a Services link indicator — new page link highlight */
.nav-links ul li a[href="listing-categories.php"] {
  position: relative;
}

.nav-links ul li a[href="listing-categories.php"]::before {
  content: 'NEW';
  position: absolute;
  top: -2px;
  right: 4px;
  font-size: .48rem;
  font-weight: 800;
  letter-spacing: 1px;
  background: var(--lime);
  color: var(--navy);
  padding: 1px 4px;
  border-radius: 3px;
  line-height: 1.4;
}

/* Improved nav glass pill — subtle inner highlight on top edge */
.nav-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .07), transparent);
  pointer-events: none;
  border-radius: var(--radius-xl);
}

/* Navbar scrolled — tighter */
.navbar.scrolled {
  padding: 6px 24px;
}

/* Call button micro-pulse on hover */
.nav-call-btn:hover i {
  animation: lcatCallPulse .5s ease;
}

@keyframes lcatCallPulse {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-12deg);
  }

  75% {
    transform: rotate(10deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* btn-register glow pulse — subtle */
.btn-register {
  position: relative;
}

.btn-register::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-sm) + 3px);
  background: var(--lime);
  opacity: 0;
  transition: opacity .3s;
  z-index: -1;
  filter: blur(10px);
}

.btn-register:hover::after {
  opacity: .35;
}

/* ====================================================
   NEW HEADER — nh-header.css
   Dribbble / Behance inspired travel header redesign.
   Append this entire block to the bottom of style.css.
   All classes prefixed with "nh-" to avoid collisions.
   ==================================================== */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TOP BAR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.nh-topbar {
  width: 100%;
  height: 40px;
  background: var(--navy);
  border-bottom: 1px solid rgba(200, 230, 58, .08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  position: relative;
  z-index: 998;
  overflow: hidden;
}

/* Subtle lime line at very bottom */
.nh-topbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 230, 58, .25), transparent);
}

/* ── Left contacts ── */
.nh-tb-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nh-tb-contact {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .45);
  font-size: .72rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .22s;
  white-space: nowrap;
}

.nh-tb-contact:hover {
  color: var(--lime);
}

.nh-tb-ic {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: rgba(200, 230, 58, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .62rem;
  color: var(--lime);
  flex-shrink: 0;
}

.nh-tb-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, .1);
  flex-shrink: 0;
}

/* ── Center ticker ── */
.nh-tb-ticker-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  margin: 0 20px;
  min-width: 0;
}

.nh-tb-ticker-label {
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nh-tb-ticker {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.nh-tb-ticker-track {
  display: inline-flex;
  gap: 0;
  white-space: nowrap;
  animation: nhTicker 30s linear infinite;
}

.nh-tick-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .4);
  font-size: .72rem;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, .07);
}

.nh-tick-item i {
  color: var(--lime);
  font-size: .62rem;
}

@keyframes nhTicker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── Right socials + offer ── */
.nh-tb-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nh-tb-social {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: rgba(255, 255, 255, .35);
  font-size: .72rem;
  transition: color .2s, background .2s;
  text-decoration: none;
}

.nh-tb-social:hover {
  color: var(--lime);
  background: rgba(200, 230, 58, .1);
}

.nh-tb-offer {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(200, 230, 58, .1);
  border: 1px solid rgba(200, 230, 58, .2);
  border-radius: 100px;
  padding: 3px 12px 3px 8px;
  color: rgba(255, 255, 255, .55);
  font-size: .7rem;
  text-decoration: none;
  transition: background .22s, color .22s;
  white-space: nowrap;
}

.nh-tb-offer i {
  color: #25d366;
  font-size: .82rem;
}

.nh-tb-offer strong {
  color: var(--lime);
}

.nh-tb-offer:hover {
  background: rgba(200, 230, 58, .18);
  color: var(--white);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVBAR — Split pill layout
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.nh-navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 12px 20px;
  transition: padding .3s ease;
  width: 100%;
  overflow: visible;
}

.nh-navbar.scrolled {
  padding: 6px 20px;
}

/* The shell that holds the three-part layout */
.nh-nav-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

/* ── Pills (shared) ── */
.nh-pill {
  background: rgba(7, 30, 37, .86);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 6px 8px;
  transition: background .3s, box-shadow .3s, border-color .3s;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .05);
}

.nh-pill:hover,
.nh-navbar.scrolled .nh-pill {
  background: rgba(7, 30, 37, .97);
  border-color: rgba(255, 255, 255, .05);
  box-shadow: 0 12px 50px rgba(0, 0, 0, .5), 0 0 0 1px rgba(200, 230, 58, .06), inset 0 1px 0 rgba(255, 255, 255, .05);
}

/* Left pill */
.nh-pill--left {
  flex-shrink: 0;
}

/* Right pill — wider to hold links + actions */
.nh-pill--right {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.nh-pill-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, .07);
  margin-left: 4px;
}

/* ── Nav link lists ── */
.nh-link-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nh-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, .62);
  font-size: .84rem;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 100px;
  transition: color .22s, background .22s;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: .01em;
  position: relative;
}

.nh-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .07);
}

.nh-link--active {
  color: var(--navy) !important;
  background: var(--lime) !important;
  font-weight: 700;
}

.nh-link--active:hover {
  background: var(--lime-dk) !important;
}

/* ── Badge ── */
.nh-badge {
  display: inline-flex;
  align-items: center;
  font-size: .48rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--lime);
  color: var(--navy);
  padding: 2px 5px;
  border-radius: 4px;
  line-height: 1.4;
  margin-left: 1px;
  animation: nhBadgePulse 2.8s ease-in-out infinite;
}

.nh-badge--sm {
  font-size: .45rem;
  padding: 1px 4px;
}

@keyframes nhBadgePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(200, 230, 58, .5);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(200, 230, 58, 0);
  }
}

/* ── Logo island ── */
.nh-logo-island {
  position: relative;
  width: 110px;
  height: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 2;
}

/* The central frosted glass disc */
.nh-logo-img-wrap {
  position: relative;
  z-index: 2;
  background: rgba(7, 30, 37, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: 10px 14px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .4), 0 0 0 1px rgba(200, 230, 58, .08), inset 0 1px 0 rgba(255, 255, 255, .07);
  transition: transform .35s cubic-bezier(.2, 0, .15, 1), box-shadow .35s;
}

.nh-logo-island:hover .nh-logo-img-wrap {
  transform: translateY(-3px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .5), 0 0 0 1px rgba(200, 230, 58, .18), inset 0 1px 0 rgba(255, 255, 255, .1);
}

.nh-logo-img-wrap img {
  width: 82px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Orbiting travel icons */
.nh-logo-orbit {
  position: absolute;
  inset: -14px;
  pointer-events: none;
  z-index: 1;
  animation: nhOrbitSpin 18s linear infinite;
}

.nh-logo-island:hover .nh-logo-orbit {
  animation-duration: 9s;
}

@keyframes nhOrbitSpin {
  to {
    transform: rotate(360deg);
  }
}

.nh-orbit-icon {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(7, 30, 37, .9);
  border: 1px solid rgba(200, 230, 58, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .58rem;
  color: var(--lime);
  box-shadow: 0 3px 12px rgba(0, 0, 0, .3);
}

/* Position them at 12, 4, 8 o'clock */
.nh-oi--1 {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nh-oi--2 {
  bottom: 8%;
  right: -4%;
}

.nh-oi--3 {
  bottom: 8%;
  left: -4%;
}

/* Icons counter-rotate so they stay upright */
.nh-orbit-icon i {
  animation: nhOrbitCounter 18s linear infinite reverse;
}

.nh-logo-island:hover .nh-orbit-icon i {
  animation-duration: 9s;
}

@keyframes nhOrbitCounter {
  to {
    transform: rotate(360deg);
  }
}

/* ── Icon buttons ── */
.nh-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .65);
  font-size: .88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .22s, color .22s, transform .2s, box-shadow .22s;
  text-decoration: none;
  flex-shrink: 0;
}

.nh-icon-btn:hover {
  background: var(--lime);
  color: var(--navy);
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(200, 230, 58, .4);
  border-color: transparent;
}

.nh-icon-btn--call {
  color: var(--lime);
  background: rgba(200, 230, 58, .1);
  border-color: rgba(200, 230, 58, .2);
}

/* ── CTA button ── */
.nh-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: var(--navy);
  font-size: .82rem;
  font-weight: 800;
  padding: 9px 20px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: .01em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: background .22s, transform .2s, box-shadow .22s;
  box-shadow: 0 4px 18px rgba(200, 230, 58, .35);
}

/* Shine sweep */
.nh-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .35), transparent);
  transform: skewX(-20deg);
  transition: left .5s ease;
}

.nh-cta-btn:hover::before {
  left: 130%;
}

.nh-cta-ic {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(7, 30, 37, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  transition: transform .25s;
  flex-shrink: 0;
}

.nh-cta-btn:hover {
  background: var(--lime-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 230, 58, .45);
}

.nh-cta-btn:hover .nh-cta-ic {
  transform: translateX(3px);
}

/* ── Hamburger (mobile only) ── */
.nh-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(7, 30, 37, .88);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 10px 11px;
  cursor: pointer;
  transition: background .22s, border-color .22s;
  flex-shrink: 0;
}

.nh-hamburger:hover {
  background: rgba(7, 30, 37, 1);
  border-color: rgba(200, 230, 58, .25);
}

.nh-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .32s cubic-bezier(.4, 0, .2, 1), opacity .25s, width .25s, background .2s;
  transform-origin: center;
}

.nh-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--lime);
}

.nh-hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nh-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--lime);
}

/* ── Progress bar ── */
.nh-progress {
  position: absolute;
  bottom: 2px;
  left: 20px;
  right: 20px;
  height: 2px;
  pointer-events: none;
  border-radius: 2px;
  overflow: hidden;
}

.nh-progress::after {
  content: '';
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--teal-lt), var(--lime));
  border-radius: 2px;
  width: var(--nh-scroll, 0%);
  transition: width .08s linear;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   OVERLAY
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* REPLACE WITH THIS: */
.nh-overlay {
  display: block;           /* ← changed from none */
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(6px);
  z-index: 9990;
  opacity: 0;
  visibility: hidden;       /* ← added */
  pointer-events: none;     /* ← added */
  transition: opacity .35s ease, visibility .35s ease;
}

.nh-overlay.active {
  opacity: 1;
  visibility: visible;      /* ← added */
  pointer-events: auto;     /* ← added */
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MOBILE DRAWER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.nh-drawer {
  position: fixed;
  top: 0;
  right: -110%;
  width: min(340px, 90vw);
  height: 100dvh;
  background: linear-gradient(180deg, #071e25 0%, #092f38 60%, #071e25 100%);
  z-index: 9995;
  transition: right .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: -30px 0 80px rgba(0, 0, 0, .6);
  padding: 0 0 32px;
}

.nh-drawer.open {
  right: 0;
}

/* Drawer head */
.nh-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  flex-shrink: 0;
}

.nh-drawer-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.nh-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .7);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s, transform .25s;
}

.nh-drawer-close:hover {
  background: var(--lime);
  color: var(--navy);
  border-color: transparent;
  transform: rotate(90deg);
}

.nh-drawer-tagline {
  font-size: .72rem;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .08em;
  padding: 14px 24px 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.nh-drawer-tagline i {
  color: var(--lime);
}

/* Drawer nav */
.nh-drawer-nav {
  flex: 1;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nh-drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, .65);
  font-size: .92rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .22s, color .22s, transform .22s;
  opacity: 0;
  transform: translateX(20px);
  animation: nhDrawerIn .4s ease forwards;
}

@keyframes nhDrawerIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.nh-drawer-link:hover {
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  transform: translateX(4px);
}

.nh-drawer-link--active {
  background: rgba(200, 230, 58, .12) !important;
  color: var(--lime) !important;
  font-weight: 700;
  border-left: 3px solid var(--lime);
  padding-left: 11px;
}

.nh-drawer-li-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  color: var(--lime);
  flex-shrink: 0;
  transition: background .22s;
}

.nh-drawer-link--active .nh-drawer-li-icon {
  background: rgba(200, 230, 58, .15);
}

.nh-drawer-chevron {
  margin-left: auto;
  font-size: .65rem;
  color: rgba(255, 255, 255, .2);
  flex-shrink: 0;
  transition: transform .22s, color .22s;
}

.nh-drawer-link:hover .nh-drawer-chevron {
  transform: translateX(3px);
  color: rgba(255, 255, 255, .4);
}

/* Drawer footer */
.nh-drawer-footer {
  padding: 20px 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  margin-top: 16px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nh-drawer-foot-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .6);
  transition: background .22s, color .22s;
}

.nh-drawer-foot-btn i {
  font-size: .92rem;
}

.nh-drawer-foot-btn--call i {
  color: var(--lime);
}

.nh-drawer-foot-btn--call:hover {
  background: rgba(200, 230, 58, .1);
  color: var(--lime);
}

.nh-drawer-foot-btn--wa i {
  color: #25d366;
}

.nh-drawer-foot-btn--wa {
  border-color: rgba(37, 211, 102, .12);
  background: rgba(37, 211, 102, .05);
}

.nh-drawer-foot-btn--wa:hover {
  background: rgba(37, 211, 102, .12);
  color: #25d366;
}

.nh-drawer-socials {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.nh-drawer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}

.nh-drawer-socials a:hover {
  background: rgba(200, 230, 58, .12);
  color: var(--lime);
  border-color: rgba(200, 230, 58, .25);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SEARCH OVERLAY ENHANCEMENTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.nh-search-eye {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
}

.search-inner h3 em {
  font-style: italic;
  color: var(--lime);
}

.nh-search-cats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.nh-scat {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .6);
  font-size: .82rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background .22s, color .22s, border-color .22s, transform .2s;
}

.nh-scat i {
  font-size: .85rem;
  color: var(--lime);
  transition: transform .22s;
}

.nh-scat:hover {
  background: rgba(200, 230, 58, .12);
  border-color: rgba(200, 230, 58, .28);
  color: var(--white);
  transform: translateY(-2px);
}

.nh-scat:hover i {
  transform: scale(1.2);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Hide topbar sections on small screens */
@media (max-width: 980px) {

  .nh-tb-left,
  .nh-tb-right {
    display: none;
  }

  .nh-tb-ticker-wrap {
    margin: 0;
  }

  .nh-tb-ticker-label {
    display: none;
  }
}

/* Collapse nav links at 1060px */
@media (max-width: 1060px) {

  .nh-pill--left,
  .nh-pill--right nav {
    display: none;
  }

  .nh-pill--left {
    display: none;
  }

  /* Right pill keeps only the action cluster */
  .nh-pill--right {
    padding: 6px 8px;
  }

  .nh-pill-actions {
    border-left: none;
    margin-left: 0;
    padding-left: 0;
  }

  .nh-hamburger {
    display: flex;
  }

  .nh-overlay {
    display: block;
  }
}

/* Full mobile */
@media (max-width: 600px) {
  .nh-navbar {
    padding: 8px 12px;
  }

  .nh-nav-shell {
    gap: 8px;
  }

  .nh-logo-island {
    width: 90px;
    height: 60px;
  }

  .nh-logo-img-wrap {
    padding: 8px 10px;
    border-radius: 16px;
  }

  .nh-logo-img-wrap img {
    width: 70px;
  }

  .nh-orbit-icon {
    width: 22px;
    height: 22px;
    font-size: .5rem;
  }

  .nh-cta-btn {
    font-size: .76rem;
    padding: 8px 14px;
  }

  .nh-progress {
    left: 12px;
    right: 12px;
  }
}

@media (max-width: 420px) {
  .nh-topbar {
    padding: 0 14px;
  }

  .nh-cta-btn span {
    display: none;
  }

  .nh-cta-btn {
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }

  .nh-cta-ic {
    background: transparent;
    width: auto;
    height: auto;
    font-size: .8rem;
  }
}

/* ====================================================
   CITIES PAGE — cities.php additions only
   Hero/trust/empty/reveal-item reused from existing CSS
   ==================================================== */

/* Filter bar */
.city-filter-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 100;
  box-shadow: 0 3px 16px rgba(0, 0, 0, .05);
}

.city-filter-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.city-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--body-text);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all .25s;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.city-tab i {
  font-size: .76rem;
  color: var(--mid-gray);
  transition: color .25s;
}

.city-tab:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-1px);
}

.city-tab:hover i {
  color: var(--teal);
}

.city-tab.active {
  background: var(--teal-dk);
  color: var(--white);
  border-color: var(--teal-dk);
  box-shadow: 0 4px 14px rgba(13, 74, 86, .3);
}

.city-tab.active i {
  color: var(--lime);
}

.city-tab.active .city-tab-count {
  background: rgba(200, 230, 58, .2);
  color: var(--lime);
}

.city-tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 6px;
  border-radius: 100px;
  background: rgba(0, 0, 0, .06);
  font-size: .7rem;
  font-weight: 700;
  transition: all .25s;
}

/* Section */
.city-section {
  padding: 72px 24px;
}

.city-section.hidden {
  display: none;
}

.city-section-inner {
  max-width: 1260px;
  margin: 0 auto;
}

/* Grids */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.city-grid--featured {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

/* Card base */
.city-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px 28px 24px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .35s cubic-bezier(.2, .8, .3, 1), box-shadow .35s, border-color .35s;
  isolation: isolate;
}

.city-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.city-card-glow-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(200, 230, 58, .07) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
  z-index: 0;
}

.city-card:hover .city-card-glow-bg {
  opacity: 1;
}

/* Featured card overrides */
.city-card--featured {
  padding: 36px 32px 28px;
  box-shadow: var(--shadow);
}

.city-card--featured:hover {
  box-shadow: 0 24px 64px rgba(0, 0, 0, .16), 0 0 0 2px var(--lime);
}

/* Gold featured badge */
.city-card-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #f5c842, #e8a020);
  color: #1a0800;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  box-shadow: 0 3px 12px rgba(245, 200, 66, .45);
  z-index: 2;
}

.city-card-badge i {
  font-size: .6rem;
}

/* Icon */
.city-card-icon-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  z-index: 1;
}

.city-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--lime) 0%, var(--lime-dk) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--navy);
  box-shadow: 0 8px 22px rgba(200, 230, 58, .35);
  transition: transform .35s, box-shadow .35s;
  position: relative;
  z-index: 1;
}

.city-card--featured .city-card-icon {
  width: 72px;
  height: 72px;
  font-size: 1.7rem;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-lt) 100%);
  color: var(--lime);
  box-shadow: 0 8px 24px rgba(13, 74, 86, .35);
}

.city-card:hover .city-card-icon {
  transform: rotate(-6deg) scale(1.1);
  box-shadow: 0 14px 36px rgba(200, 230, 58, .45);
}

.city-card--featured:hover .city-card-icon {
  box-shadow: 0 14px 36px rgba(13, 74, 86, .4);
}

.city-card-icon-glow {
  position: absolute;
  inset: -6px;
  border-radius: calc(var(--radius) + 6px);
  border: 2px dashed rgba(200, 230, 58, .28);
  animation: lcatRingSpin 12s linear infinite;
}

.city-card--featured .city-card-icon-glow {
  border-color: rgba(13, 74, 86, .22);
}

/* Body */
.city-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.city-card-tier {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime-dk);
}

.city-card--featured .city-card-tier {
  color: var(--teal);
}

.city-card-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--dark-text);
  line-height: 1.15;
  transition: color .25s;
}

.city-card:hover .city-card-name {
  color: var(--teal);
}

.city-card--featured:hover .city-card-name {
  color: var(--teal-lt);
}

.city-card-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--mid-gray);
  margin-top: 4px;
}

.city-card-count i {
  color: var(--teal-lt);
  font-size: .75rem;
}

.city-card-count strong {
  color: var(--dark-text);
  font-weight: 700;
}

/* Footer — reuses lcat-card-btn */
.city-card-footer {
  padding-top: 18px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .city-filter-inner {
    padding: 12px 20px;
  }

  .city-tab {
    padding: 7px 14px;
    font-size: .78rem;
  }

  .city-section {
    padding: 52px 20px;
  }

  .city-grid, .city-grid--featured {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .city-grid, .city-grid--featured {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   LISTINGS + LISTING DETAIL — listings.css
   Add <link rel="stylesheet" href="assets/listings.css"> in header
   ============================================================ */

/* ── SHARED: Hero base (listings.php) ── */
.ls-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 60px 40px 48px;
  overflow: hidden;
  background: var(--teal-dk);
}
.ls-hero-bg {
  position: absolute;inset:0;
  background: linear-gradient(135deg, var(--teal-dk) 0%, var(--navy) 60%, #0a3040 100%);
  z-index: 0;
}
.ls-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .18;
  pointer-events: none;
}
.ls-orb1 { width:340px;height:340px;background:var(--lime);top:-80px;right:10%; }
.ls-orb2 { width:260px;height:260px;background:var(--teal-lt);bottom:-60px;left:5%; }
.ls-hero-content { position:relative;z-index:1;max-width:1200px;margin:0 auto;width:100%; }

.ls-breadcrumb {
  display:flex;align-items:center;gap:8px;flex-wrap:wrap;
  font-size:.8rem;color:rgba(255,255,255,.55);margin-bottom:16px;
}
.ls-breadcrumb a { color:rgba(255,255,255,.7); transition:.2s; }
.ls-breadcrumb a:hover { color:var(--lime); }
.ls-breadcrumb i { font-size:.65rem; }

.ls-hero-title {
  font-family:var(--font-display);
  font-size:clamp(2rem,4vw,3.2rem);
  font-weight:800;color:#fff;line-height:1.15;margin-bottom:14px;
}
.ls-hero-title em { color:var(--lime);font-style:normal; }
.ls-hero-sub { color:rgba(255,255,255,.65);font-size:1rem;max-width:560px; }

/* ── FILTER BAR ── */
.ls-filter-bar {
  background:#fff;
  border-bottom:1px solid var(--border);
  position:sticky;top:0;z-index:90;
  box-shadow:0 2px 12px rgba(0,0,0,.06);
}
.ls-filter-inner {
  max-width:1200px;margin:0 auto;padding:0 32px;
  display:flex;align-items:center;gap:6px;overflow-x:auto;
  scrollbar-width:none;
}
.ls-filter-inner::-webkit-scrollbar { display:none; }
.ls-tab {
  display:flex;align-items:center;gap:8px;
  padding:14px 18px;white-space:nowrap;
  font-size:.85rem;font-weight:600;color:var(--body-text);
  border-bottom:3px solid transparent;
  text-decoration:none;transition:.2s;flex-shrink:0;
}
.ls-tab:hover { color:var(--teal); }
.ls-tab.active { color:var(--teal);border-bottom-color:var(--lime); }
.ls-tab-count {
  background:var(--light-gray);color:var(--mid-gray);
  font-size:.72rem;font-weight:700;
  padding:2px 7px;border-radius:20px;min-width:22px;text-align:center;
}
.ls-tab.active .ls-tab-count { background:var(--lime);color:var(--teal-dk); }
.ls-tab--tour   { --tab-c:var(--teal); }
.ls-tab--hotel  { --tab-c:#8b4513; }
.ls-tab--vehicle{ --tab-c:#1a5276; }

/* ── LISTINGS SECTION ── */
.ls-section { padding:60px 40px; }
.ls-section-inner { max-width:1200px;margin:0 auto; }

.ls-group { margin-bottom:60px; }
.ls-group-header {
  display:flex;align-items:center;gap:18px;
  margin-bottom:28px;padding-bottom:18px;
  border-bottom:2px solid var(--border);
}
.ls-group-icon {
  width:52px;height:52px;border-radius:14px;
  background:var(--teal);color:var(--lime);
  display:flex;align-items:center;justify-content:center;
  font-size:1.3rem;flex-shrink:0;
}
.ls-group-header h2 {
  font-family:var(--font-display);font-size:1.5rem;
  font-weight:700;color:var(--dark-text);
}
.ls-group-header h2 em { color:var(--teal);font-style:normal; }
.ls-group-header p { color:var(--mid-gray);font-size:.85rem;margin-top:2px; }
.ls-group-view-all {
  margin-left:auto;display:flex;align-items:center;gap:6px;
  font-size:.85rem;font-weight:600;color:var(--teal);
  padding:8px 16px;border:2px solid var(--teal);border-radius:40px;
  transition:.2s;white-space:nowrap;
}
.ls-group-view-all:hover { background:var(--teal);color:#fff; }

/* ── CARDS GRID ── */
.ls-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
@media(max-width:960px){ .ls-grid { grid-template-columns:repeat(2,1fr); } }
@media(max-width:600px){ .ls-grid { grid-template-columns:1fr; } }

.ls-card {
  background:#fff;border-radius:var(--radius-xl);
  overflow:hidden;border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
  transition:transform .3s,box-shadow .3s;display:flex;flex-direction:column;
}
.ls-card:hover { transform:translateY(-6px);box-shadow:var(--shadow); }

.ls-card-img-wrap {
  display:block;height:200px;overflow:hidden;position:relative;
  background:var(--light-gray);
}
.ls-card-img-wrap img {
  width:100%;height:100%;object-fit:cover;
  transition:transform .4s;display:block;
}
.ls-card:hover .ls-card-img-wrap img { transform:scale(1.05); }
.ls-card-img-placeholder {
  width:100%;height:100%;display:flex;align-items:center;justify-content:center;
  font-size:2.5rem;color:var(--mid-gray);
}
.ls-card-cat-badge {
  position:absolute;top:12px;left:12px;
  background:rgba(13,74,86,.85);color:#fff;
  font-size:.72rem;font-weight:700;
  padding:4px 10px;border-radius:20px;
  backdrop-filter:blur(6px);display:flex;align-items:center;gap:6px;
}
.ls-card--hotel  .ls-card-cat-badge { background:rgba(139,69,19,.85); }
.ls-card--vehicle .ls-card-cat-badge { background:rgba(26,82,118,.85); }

.ls-card-body { padding:20px;display:flex;flex-direction:column;flex:1; }
.ls-card-stars { color:#f59e0b;font-size:.75rem;margin-bottom:6px; }
.ls-card-title { font-size:1rem;font-weight:700;color:var(--dark-text);margin-bottom:8px;line-height:1.35; }
.ls-card-title a { color:inherit; }
.ls-card-title a:hover { color:var(--teal); }
.ls-card-overview { font-size:.83rem;color:var(--mid-gray);line-height:1.6;margin-bottom:12px;flex:1; }
.ls-card-location { font-size:.78rem;color:var(--mid-gray);margin-bottom:10px; }
.ls-card-location i { color:var(--teal); }
.ls-card-tags {
  display:flex;flex-wrap:wrap;gap:6px;margin-bottom:12px;
}
.ls-card-tags span {
  background:var(--light-gray);color:var(--body-text);
  font-size:.72rem;font-weight:600;
  padding:4px 10px;border-radius:20px;
  display:flex;align-items:center;gap:4px;
}
.ls-card-tags span i { color:var(--teal);font-size:.65rem; }

.ls-card-footer {
  display:flex;align-items:center;justify-content:space-between;
  padding-top:12px;border-top:1px solid var(--border);margin-top:auto;
}
.ls-card-price { display:flex;align-items:baseline;gap:4px; }
.ls-card-price span { font-size:.72rem;color:var(--mid-gray); }
.ls-card-price strong { font-size:1.05rem;font-weight:800;color:var(--teal); }
.ls-card-price small { font-size:.68rem;color:var(--mid-gray); }
.ls-card-btn {
  background:var(--teal);color:#fff;
  font-size:.78rem;font-weight:700;
  padding:8px 16px;border-radius:40px;
  display:flex;align-items:center;gap:6px;transition:.2s;
}
.ls-card-btn:hover { background:var(--lime);color:var(--teal-dk); }

/* Empty state */
.ls-empty {
  text-align:center;padding:80px 20px;
  display:flex;flex-direction:column;align-items:center;gap:16px;
  grid-column:1/-1;
}
.ls-empty i { font-size:3rem;color:var(--mid-gray); }
.ls-empty h3 { font-size:1.4rem;color:var(--dark-text); }
.ls-empty p { color:var(--mid-gray);max-width:360px; }

/* =============================================================
   LISTING DETAIL — listing-detail.php
   ============================================================= */

/* ── HERO ── */
.ld-hero {
  position:relative;min-height:480px;
  display:flex;align-items:flex-end;
  padding:80px 40px 48px;overflow:hidden;
}
.ld-hero-bg { position:absolute;inset:0;z-index:0; }
.ld-hero-img { width:100%;height:100%;object-fit:cover;display:block; }
.ld-hero-img-fallback {
  width:100%;height:100%;background:linear-gradient(135deg,var(--teal-dk),var(--navy));
  display:flex;align-items:center;justify-content:center;
  font-size:5rem;color:rgba(255,255,255,.15);
}
.ld-hero-overlay {
  position:absolute;inset:0;
  background:linear-gradient(to top, rgba(7,30,37,.95) 0%, rgba(7,30,37,.5) 50%, rgba(7,30,37,.2) 100%);
}
.ld-hero-content { position:relative;z-index:1;max-width:1200px;margin:0 auto;width:100%; }
.ld-breadcrumb {
  display:flex;align-items:center;gap:8px;flex-wrap:wrap;
  font-size:.78rem;color:rgba(255,255,255,.55);margin-bottom:16px;
}
.ld-breadcrumb a { color:rgba(255,255,255,.7); }
.ld-breadcrumb a:hover { color:var(--lime); }
.ld-breadcrumb i { font-size:.6rem; }
.ld-cat-tag {
  display:inline-flex;align-items:center;gap:7px;
  font-size:.78rem;font-weight:700;
  padding:5px 14px;border-radius:20px;margin-bottom:14px;
  background:var(--teal);color:var(--lime);
}
.ld-tag--hotel   { background:#8b4513;color:#ffe8cc; }
.ld-tag--vehicle { background:#1a5276;color:#cde4f5; }
.ld-hero-title {
  font-family:var(--font-display);
  font-size:clamp(1.8rem,3.5vw,2.8rem);
  font-weight:800;color:#fff;line-height:1.2;margin-bottom:16px;
}
.ld-hero-meta {
  display:flex;flex-wrap:wrap;align-items:center;gap:12px;
  font-size:.83rem;color:rgba(255,255,255,.75);
}
.ld-hero-meta i { margin-right:3px; }
.ld-hero-meta .fa-star { color:#f59e0b; }
.ld-hero-price { color:var(--lime);font-weight:700; }
.ld-hero-price strong { font-size:1.1rem; }

/* ── STICKY BAR ── */
.ld-sticky-bar {
  position:fixed;top:0;left:0;right:0;z-index:200;
  background:var(--teal-dk);color:#fff;
  padding:12px 40px;
  display:flex;align-items:center;gap:20px;
  transform:translateY(-100%);transition:transform .3s;
  box-shadow:0 4px 20px rgba(0,0,0,.2);
}
.ld-sticky-bar.visible { transform:translateY(0); }
.ld-sticky-title { flex:1;font-weight:600;font-size:.9rem;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis; }
.ld-sticky-price { font-size:.9rem;color:var(--lime);font-weight:700;white-space:nowrap; }

/* ── LAYOUT ── */
.ld-layout {
  display:grid;
  grid-template-columns:1fr 340px;
  gap:40px;
  max-width:1200px;margin:0 auto;
  padding:48px 40px;
  align-items:start;
}
@media(max-width:960px){ .ld-layout { grid-template-columns:1fr;padding:32px 20px; } }

/* ── SECTIONS ── */
.ld-section { margin-bottom:40px; }
.ld-section-title {
  font-family:var(--font-display);font-size:1.25rem;font-weight:700;
  color:var(--dark-text);margin-bottom:20px;
  display:flex;align-items:center;gap:10px;
  padding-bottom:12px;border-bottom:2px solid var(--border);
}
.ld-section-title i { color:var(--teal);font-size:1rem; }
.ld-prose { font-size:.93rem;color:var(--body-text);line-height:1.8; }
.ld-prose p { margin-bottom:12px; }
.ld-prose ul { padding-left:20px;margin-bottom:12px; }
.ld-prose ul li { margin-bottom:6px; }

/* ── HIGHLIGHTS ── */
.ld-highlights {
  display:grid;grid-template-columns:repeat(2,1fr);gap:10px;list-style:none;
}
@media(max-width:600px){ .ld-highlights { grid-template-columns:1fr; } }
.ld-highlights li {
  display:flex;align-items:flex-start;gap:10px;
  padding:10px 14px;
  background:var(--off-white);border-radius:var(--radius);
  font-size:.85rem;color:var(--body-text);line-height:1.4;
}
.ld-highlights li i { color:var(--teal);margin-top:2px;flex-shrink:0; }

/* ── ITINERARY ── */
.ld-itinerary { display:flex;flex-direction:column;gap:0; }
.ld-day {
  display:grid;grid-template-columns:64px 1fr;gap:0;
  position:relative;padding-bottom:28px;
}
.ld-day:last-child { padding-bottom:0; }
.ld-day:not(:last-child) .ld-day-num::after {
  content:'';position:absolute;left:31px;top:44px;bottom:0;
  width:2px;background:var(--border);
}
.ld-day-num {
  position:relative;
  width:44px;height:44px;border-radius:50%;
  background:var(--teal);color:var(--lime);
  display:flex;align-items:center;justify-content:center;
  font-size:.78rem;font-weight:800;flex-shrink:0;z-index:1;
}
.ld-day-body {
  padding:8px 0 0 20px;
}
.ld-day-body h4 {
  font-weight:700;color:var(--dark-text);margin-bottom:10px;font-size:1rem;
}

/* ── ROOMS ── */
.ld-rooms { display:flex;flex-direction:column;gap:16px; }
.ld-room-card {
  border:1px solid var(--border);border-radius:var(--radius);
  padding:20px;background:#fff;
}
.ld-room-top {
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:12px;gap:12px;
}
.ld-room-top h4 { font-weight:700;color:var(--dark-text);font-size:1rem; }
.ld-room-price { font-size:1rem;font-weight:800;color:var(--teal);white-space:nowrap; }
.ld-room-meta {
  display:flex;flex-wrap:wrap;gap:8px;margin-bottom:10px;
}
.ld-room-meta span {
  font-size:.77rem;color:var(--body-text);
  background:var(--light-gray);padding:3px 10px;border-radius:20px;
  display:flex;align-items:center;gap:5px;
}
.ld-room-meta span i { color:var(--teal);font-size:.65rem; }
.ld-room-amenities { font-size:.8rem;color:var(--mid-gray);margin-bottom:12px; }
.ld-room-book {
  display:inline-flex;align-items:center;gap:6px;
  font-size:.8rem;font-weight:700;color:var(--teal);
  border:2px solid var(--teal);padding:7px 16px;border-radius:40px;
  transition:.2s;
}
.ld-room-book:hover { background:var(--teal);color:#fff; }

/* ── POLICIES ── */
.ld-policies { display:flex;flex-direction:column;gap:20px; }
.ld-policy-block {
  background:var(--off-white);border-radius:var(--radius);
  padding:20px;border-left:4px solid var(--teal);
}
.ld-policy-block h4 {
  font-weight:700;color:var(--dark-text);margin-bottom:10px;
  display:flex;align-items:center;gap:8px;font-size:.95rem;
}
.ld-policy-block h4 i { color:var(--teal); }

/* ── VEHICLE SPECS ── */
.ld-vehicle-specs {
  display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:12px;
}
.ld-spec {
  background:var(--off-white);border-radius:var(--radius);
  padding:16px;display:flex;flex-direction:column;align-items:center;
  gap:6px;text-align:center;border:1px solid var(--border);
}
.ld-spec i { font-size:1.3rem;color:var(--teal); }
.ld-spec strong { font-size:.72rem;color:var(--mid-gray);text-transform:uppercase;letter-spacing:.5px; }
.ld-spec span { font-size:.92rem;font-weight:700;color:var(--dark-text); }

/* ── GALLERY ── */
.ld-gallery {
  display:grid;grid-template-columns:repeat(3,1fr);gap:12px;
}
.ld-gallery-item { border-radius:var(--radius);overflow:hidden;aspect-ratio:4/3; }
.ld-gallery-item img { width:100%;height:100%;object-fit:cover; }

/* ── SIDEBAR ── */
.ld-sidebar { display:flex;flex-direction:column;gap:20px;position:sticky;top:100px; }
.ld-sidebar-card {
  background:#fff;border:1px solid var(--border);
  border-radius:var(--radius-lg);padding:24px;
  box-shadow:var(--shadow-sm);
}
.ld-sidebar-card-title {
  font-weight:700;color:var(--dark-text);font-size:.95rem;
  margin-bottom:16px;display:flex;align-items:center;gap:8px;
  padding-bottom:12px;border-bottom:1px solid var(--border);
}
.ld-sidebar-card-title i { color:var(--teal); }

.ld-book-card { border-top:4px solid var(--lime); }
.ld-book-price {
  display:flex;align-items:baseline;gap:6px;
  margin-bottom:18px;
}
.ld-book-price span { font-size:.78rem;color:var(--mid-gray); }
.ld-book-price strong { font-size:2rem;font-weight:800;color:var(--teal); }
.ld-book-price small { font-size:.75rem;color:var(--mid-gray); }
.ld-wa-btn {
  display:flex;align-items:center;justify-content:center;gap:8px;
  background:#25d366;color:#fff;font-weight:700;font-size:.88rem;
  padding:11px;border-radius:var(--radius);margin-top:10px;
  transition:.2s;
}
.ld-wa-btn:hover { background:#1da851; }
.ld-wa-btn i { font-size:1.1rem; }
.ld-book-perks {
  margin-top:16px;list-style:none;display:flex;flex-direction:column;gap:8px;
}
.ld-book-perks li {
  font-size:.82rem;color:var(--body-text);
  display:flex;align-items:center;gap:8px;
}
.ld-book-perks li i { color:var(--teal);font-size:.75rem; }

.ld-price-tier {
  padding:14px 0;border-bottom:1px solid var(--border);
}
.ld-price-tier:last-child { border-bottom:none; }
.ld-price-tier-top {
  display:flex;justify-content:space-between;align-items:center;margin-bottom:4px;
}
.ld-pt-type { font-weight:700;font-size:.88rem;color:var(--dark-text); }
.ld-pt-price { font-weight:800;font-size:1rem;color:var(--teal); }
.ld-pt-dur { font-size:.75rem;color:var(--mid-gray);display:flex;align-items:center;gap:5px; }
.ld-pt-note { font-size:.72rem;color:var(--mid-gray);margin-top:2px; }

.ld-sidebar-info { list-style:none;display:flex;flex-direction:column;gap:10px; }
.ld-sidebar-info li {
  font-size:.83rem;color:var(--body-text);
  display:flex;align-items:flex-start;gap:8px;line-height:1.4;
}
.ld-sidebar-info li i { color:var(--teal);font-size:.8rem;margin-top:2px;flex-shrink:0; }
.ld-sidebar-info li a { color:var(--teal); }
.ld-sidebar-link {
  display:flex;align-items:center;gap:6px;margin-top:14px;
  font-size:.82rem;font-weight:700;color:var(--teal);
  padding-top:12px;border-top:1px solid var(--border);
}
.ld-sidebar-link:hover { color:var(--lime-dk); }

/* ── RELATED ── */
.ld-related { background:var(--off-white);padding:60px 40px; }
.ld-related-inner { max-width:1200px;margin:0 auto; }
.ld-related .ld-section-title { margin-bottom:28px; }

/* ── RESPONSIVE ── */
@media(max-width:768px){
  .ls-hero,.ls-section,.ld-hero,.ld-related { padding-left:20px;padding-right:20px; }
  .ld-layout { padding:24px 20px; }
  .ld-gallery { grid-template-columns:repeat(2,1fr); }
  .ls-filter-inner { padding:0 16px; }
  .ld-sticky-bar { padding:10px 20px; }
  .ld-sticky-title { font-size:.78rem; }
  .ld-highlights { grid-template-columns:1fr; }
  .ls-group-header { flex-wrap:wrap; }
  .ls-group-view-all { margin-left:0;width:100%; justify-content:center; }
}

.ld-sticky-inner{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}