/* ==========================================================================
   components.css — Best Treks Nepal Reusable Component Styles
   Version: 1.0 | August 2026

   Order: Navbar → Buttons → Cards → Hero → FAQ → Gallery →
          Booking/Contact Forms → Newsletter → Statistics →
          Testimonials → Breadcrumb → Footer → Back-to-top →
          Lightbox → Modal → Search → 404
   ========================================================================== */


/* ==========================================================================
   1. NAVBAR
   ========================================================================== */

/* Top Information Bar */
.top-bar {
  background: var(--color-primary-dark);
  color: var(--color-secondary-light);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  height: var(--top-bar-height);
  display: flex;
  align-items: center;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}

.top-bar__contacts {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.top-bar__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-secondary-light);
  transition: color var(--transition-fast);
}

.top-bar__contacts a:hover {
  color: var(--color-accent-light);
}

.top-bar__contacts svg {
  width: 0.875rem;
  height: 0.875rem;
}

.top-bar__social {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.top-bar__social a {
  display: inline-flex;
  align-items: center;
  color: var(--color-secondary-light);
  transition: color var(--transition-fast);
}

.top-bar__social a:hover {
  color: var(--color-accent-light);
}

.top-bar__social svg {
  width: 1rem;
  height: 1rem;
}

/* Main Navbar */
/* ─── Scroll Progress Bar ─────────────────────────────────────────────────── */
.navbar-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  z-index: calc(var(--z-sticky) + 10);
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ─── Site Header — sticky wrapper (top-bar + navbar stick together) ─────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-sticky);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar {
  position: relative;
  background: var(--color-white);
  border-bottom: 1px solid rgba(127, 179, 176, 0.2);
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition-base),
    background var(--transition-base);
}

/* Scrolled state — applied by navbar.js to .navbar */
.navbar.is-scrolled {
  box-shadow: 0 4px 24px -4px rgba(15, 82, 87, 0.14);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ─── Sticky In-Page Sub-Navigation (Treks & Destinations) ─────────────────── */
.trek-subnav-sticky,
.region-subnav-sticky {
  position: sticky;
  top: calc(var(--top-bar-height) + var(--navbar-height)) !important;
  z-index: calc(var(--z-sticky) - 1);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 82, 87, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.trek-content-section {
  scroll-margin-top: calc(var(--top-bar-height) + var(--navbar-height) + 4rem) !important;
}

.trek-sidebar {
  top: calc(var(--top-bar-height) + var(--navbar-height) + 4rem) !important;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  width: 100%;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.navbar__logo:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.navbar__logo-img {
  height: 2.625rem;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.navbar__logo-text {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.navbar__logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.125rem;
}

/* Desktop Navigation */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.navbar__nav-item {
  position: relative;
}

.navbar__nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Ripple element spawned by JS */
.navbar__nav-link .nav-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(15, 82, 87, 0.18);
  transform: scale(0);
  animation: navRipple 0.55s ease-out forwards;
  pointer-events: none;
}

@keyframes navRipple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Animated underline indicator on active/hover */
.navbar__nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 2px;
  transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1), left 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar__nav-link:hover::after,
.navbar__nav-link.is-active::after {
  width: calc(100% - 1.5rem);
  left: 0.75rem;
}

.navbar__nav-link:hover,
.navbar__nav-link.is-active {
  color: var(--color-primary);
  background: rgba(15, 82, 87, 0.06);
}

.navbar__nav-link.is-active {
  color: var(--color-primary);
  font-weight: var(--weight-semibold);
}

/* Dropdown caret */
.navbar__caret {
  width: 0.75rem;
  height: 0.75rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar__nav-item:hover .navbar__caret,
.navbar__nav-item.is-open .navbar__caret {
  transform: rotate(180deg);
  color: var(--color-primary);
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 0.15rem);
  left: 50%;
  transform: translateX(-50%);
  width: 58rem;
  max-width: 94vw;
  background: var(--color-white);
  border-radius: var(--radius-lg, 0.75rem);
  box-shadow: 0 25px 70px -15px rgba(15, 82, 87, 0.22),
    0 8px 24px -6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(127, 179, 176, 0.25);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%) translateY(-10px) scale(0.97);
  overflow: hidden;
  z-index: 1000;
}

/* Arrow pointer */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 8px;
  background: var(--color-primary);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: 1;
}

/* Hover bridge to prevent gap */
.mega-menu::after {
  content: '';
  position: absolute;
  top: -0.75rem;
  left: 0;
  right: 0;
  height: 0.75rem;
}

.navbar__nav-item:hover .mega-menu,
.navbar__nav-item.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

/* Mega menu layout — header strip + grid */
.mega-menu__header {
  background: linear-gradient(135deg, #0F5257 0%, #0a3a3d 100%);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mega-menu__header-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mega-menu__header-icon {
  font-size: 1rem;
}

.mega-menu__header-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FCEEDF;
}

.mega-menu__header-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: #7FB3B0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.mega-menu__header-link:hover {
  color: #ffffff;
  gap: 0.6rem;
}

.mega-menu__body {
  padding: 1.25rem;
}

.mega-menu__layout {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 1.5rem;
}

.mega-menu__section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted, #64748b);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Staggered item entrance animation */
@keyframes megaItemIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.navbar__nav-item:hover .mega-menu__item,
.navbar__nav-item.is-open .mega-menu__item {
  animation: megaItemIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.navbar__nav-item:hover .mega-menu__item:nth-child(1),
.navbar__nav-item.is-open .mega-menu__item:nth-child(1) {
  animation-delay: 0.04s;
}

.navbar__nav-item:hover .mega-menu__item:nth-child(2),
.navbar__nav-item.is-open .mega-menu__item:nth-child(2) {
  animation-delay: 0.08s;
}

.navbar__nav-item:hover .mega-menu__item:nth-child(3),
.navbar__nav-item.is-open .mega-menu__item:nth-child(3) {
  animation-delay: 0.12s;
}

.navbar__nav-item:hover .mega-menu__item:nth-child(4),
.navbar__nav-item.is-open .mega-menu__item:nth-child(4) {
  animation-delay: 0.16s;
}

.navbar__nav-item:hover .mega-menu__item:nth-child(5),
.navbar__nav-item.is-open .mega-menu__item:nth-child(5) {
  animation-delay: 0.20s;
}

.navbar__nav-item:hover .mega-menu__item:nth-child(6),
.navbar__nav-item.is-open .mega-menu__item:nth-child(6) {
  animation-delay: 0.24s;
}

/* Regions Grid (Left Side) */
.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.mega-menu__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem;
  border-radius: 0.75rem;
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.9);
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
}

.mega-menu__item:hover {
  background: #ffffff;
  border-color: #7FB3B0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(15, 82, 87, 0.12);
}

.mega-menu__item-thumb {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
}

.mega-menu__item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.mega-menu__item:hover .mega-menu__item-thumb img {
  transform: scale(1.15);
}

.mega-menu__item-alt-tag {
  position: absolute;
  bottom: 2px;
  right: 2px;
  background: rgba(15, 82, 87, 0.88);
  color: #ffffff;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 3px;
  backdrop-filter: blur(2px);
}

.mega-menu__item-info {
  flex: 1;
  min-width: 0;
}

.mega-menu__item-title {
  font-weight: 700;
  font-size: 0.85rem;
  color: #0F5257;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}

.mega-menu__item:hover .mega-menu__item-title {
  color: #0d6b72;
}

.mega-menu__item-desc {
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Articles Section (Right Side) */
.mega-menu__articles-section {
  background: #f1f5f9;
  border-radius: 0.75rem;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(203, 213, 225, 0.6);
}

.mega-menu__articles-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mega-menu__article-card {
  background: #ffffff;
  padding: 0.65rem 0.75rem;
  border-radius: 0.5rem;
  border-left: 3px solid #7FB3B0;
  transition: all 0.2s ease;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.mega-menu__article-card:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 12px rgba(15, 82, 87, 0.08);
  border-left-color: #0F5257;
}

.mega-menu__article-tag {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.mega-menu__article-tag--everest {
  color: #d97706;
}

.mega-menu__article-tag--annapurna {
  color: #059669;
}

.mega-menu__article-tag--permits {
  color: #2563eb;
}

.mega-menu__article-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.35;
  margin: 0 0 2px 0;
  transition: color 0.2s ease;
}

.mega-menu__article-card:hover .mega-menu__article-title {
  color: #0F5257;
}

.mega-menu__article-meta {
  font-size: 0.65rem;
  color: #64748b;
  display: block;
}

/* Promo Banner inside Mega Menu */
.mega-menu__promo-banner {
  margin-top: 0.75rem;
  background: linear-gradient(135deg, #0F5257 0%, #164e52 100%);
  padding: 0.65rem 0.85rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
}

.mega-menu__promo-text {
  font-size: 0.72rem;
  font-weight: 600;
  color: #e2e8f0;
}

.mega-menu__promo-btn {
  font-size: 0.7rem;
  font-weight: 700;
  color: #7FB3B0;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.mega-menu__promo-btn:hover {
  color: #ffffff;
}

/* Simple Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 15rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 48px -8px rgba(15, 82, 87, 0.16),
    0 4px 12px -4px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(127, 179, 176, 0.18);
  padding: var(--space-1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px) scale(0.97);
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* Dropdown top arrow */
.dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 1.5rem;
  width: 14px;
  height: 7px;
  background: var(--color-white);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

/* Hover bridge */
.dropdown::after {
  content: '';
  position: absolute;
  top: -0.75rem;
  left: 0;
  right: 0;
  height: 0.75rem;
}

.navbar__nav-item:hover .dropdown,
.navbar__nav-item.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Staggered dropdown items */
@keyframes dropItemIn {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }

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

.navbar__nav-item:hover .dropdown__link,
.navbar__nav-item.is-open .dropdown__link {
  animation: dropItemIn 0.25s ease both;
}

.navbar__nav-item:hover .dropdown__link:nth-child(1),
.navbar__nav-item.is-open .dropdown__link:nth-child(1) {
  animation-delay: 0.03s;
}

.navbar__nav-item:hover .dropdown__link:nth-child(2),
.navbar__nav-item.is-open .dropdown__link:nth-child(2) {
  animation-delay: 0.06s;
}

.navbar__nav-item:hover .dropdown__link:nth-child(3),
.navbar__nav-item.is-open .dropdown__link:nth-child(3) {
  animation-delay: 0.09s;
}

.navbar__nav-item:hover .dropdown__link:nth-child(4),
.navbar__nav-item.is-open .dropdown__link:nth-child(4) {
  animation-delay: 0.12s;
}

.navbar__nav-item:hover .dropdown__link:nth-child(5),
.navbar__nav-item.is-open .dropdown__link:nth-child(5) {
  animation-delay: 0.15s;
}

.navbar__nav-item:hover .dropdown__link:nth-child(6),
.navbar__nav-item.is-open .dropdown__link:nth-child(6) {
  animation-delay: 0.18s;
}

.navbar__nav-item:hover .dropdown__link:nth-child(7),
.navbar__nav-item.is-open .dropdown__link:nth-child(7) {
  animation-delay: 0.21s;
}

.navbar__nav-item:hover .dropdown__link:nth-child(8),
.navbar__nav-item.is-open .dropdown__link:nth-child(8) {
  animation-delay: 0.24s;
}

.dropdown__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text);
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  position: relative;
}

.dropdown__link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 0;
  background: var(--color-primary);
  border-radius: 0 2px 2px 0;
  transition: width 0.2s ease;
}

.dropdown__link::after {
  content: '→';
  font-size: 0.75rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  color: var(--color-primary);
}

.dropdown__link:hover {
  background: rgba(15, 82, 87, 0.05);
  color: var(--color-primary);
  padding-left: 1.25rem;
}

.dropdown__link:hover::before {
  width: 3px;
}

.dropdown__link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Navbar Actions */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  flex-shrink: 0;
}

/* Search button with expand effect */
.navbar__search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-full);
  color: var(--color-text-light);
  transition: color 0.25s ease, background 0.25s ease,
    width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.25s ease;
  overflow: hidden;
}

.navbar__search-btn:hover {
  color: var(--color-primary);
  background: rgba(15, 82, 87, 0.09);
  box-shadow: 0 0 0 4px rgba(15, 82, 87, 0.08);
}

.navbar__search-btn svg {
  width: 1.125rem;
  height: 1.125rem;
  transition: transform 0.2s ease;
}

.navbar__search-btn:hover svg {
  transform: scale(1.15);
}

/* CTA Book button pulse ring */
.navbar__actions .btn--primary {
  position: relative;
  overflow: visible;
}

.navbar__actions .btn--primary::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: transparent;
  border: 2px solid var(--color-primary);
  opacity: 0;
  animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  40% {
    opacity: 0.35;
  }

  70% {
    opacity: 0;
    transform: scale(1.15);
  }

  100% {
    opacity: 0;
    transform: scale(1.15);
  }
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
  cursor: pointer;
}

.navbar__hamburger:hover {
  background: rgba(15, 82, 87, 0.07);
}

.navbar__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base), opacity var(--transition-fast);
  transform-origin: center;
}

/* Hamburger open state */
.navbar__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: rgba(6, 49, 53, 0.58);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Panel */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-modal);
  width: min(25rem, 100vw);
  background: linear-gradient(180deg, #ffffff 0%, #f2f8f7 100%);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: -18px 0 50px rgba(6, 49, 53, 0.22);
  border-left: 1px solid rgba(127, 179, 176, 0.28);
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.25rem;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(127, 179, 176, 0.28);
  position: sticky;
  top: 0;
  z-index: 2;
}

.mobile-menu__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.mobile-menu__logo-img {
  height: 2rem;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  color: var(--color-text-light);
  border: 1px solid rgba(15, 82, 87, 0.14);
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.mobile-menu__close:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: rotate(90deg);
}

.mobile-menu__close svg {
  width: 1.25rem;
  height: 1.25rem;
}

.mobile-menu__nav {
  flex: 1;
  padding: 1rem 1.25rem 1.5rem;
}

/* Staggered slide-in for mobile links */
@keyframes mobileItemIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

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

.mobile-menu.is-open .mobile-menu__link,
.mobile-menu.is-open .mobile-menu__sub-link,
.mobile-menu.is-open .mobile-menu__group-title {
  animation: mobileItemIn 0.35s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.mobile-menu.is-open .mobile-menu__link:nth-child(1),
.mobile-menu.is-open .mobile-menu__group-title:nth-child(1) {
  animation-delay: 0.08s;
}

.mobile-menu.is-open .mobile-menu__link:nth-child(2) {
  animation-delay: 0.12s;
}

.mobile-menu.is-open .mobile-menu__link:nth-child(3) {
  animation-delay: 0.16s;
}

.mobile-menu.is-open .mobile-menu__link:nth-child(4) {
  animation-delay: 0.20s;
}

.mobile-menu.is-open .mobile-menu__link:nth-child(5) {
  animation-delay: 0.24s;
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.25rem;
  padding: 0.75rem 1rem;
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  border-radius: 0.625rem;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  position: relative;
}

.mobile-menu__link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 0;
  background: var(--color-primary);
  border-radius: 0 2px 2px 0;
  transition: width 0.2s ease;
}

.mobile-menu__link:hover,
.mobile-menu__link.is-active {
  background: rgba(15, 82, 87, 0.08);
  color: var(--color-primary);
  padding-left: 1.25rem;
  border-color: rgba(15, 82, 87, 0.1);
}

.mobile-menu__link:hover::before,
.mobile-menu__link.is-active::before {
  width: 3px;
}

.mobile-menu__group-title {
  display: none;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 1.25rem 0.5rem 0.4rem;
  margin-top: 0.75rem;
  border-top: 1px solid rgba(127, 179, 176, 0.28);
}

.mobile-menu__sub-link {
  display: none;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.55rem 1rem 0.55rem 1.25rem;
  font-size: var(--text-sm);
  color: var(--color-text);
  border-radius: 0.5rem;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  gap: 0.4rem;
}

.mobile-menu__sub-link::before {
  content: none;
  color: var(--color-primary);
  font-size: 1rem;
  line-height: 1;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.mobile-menu__sub-link:hover {
  background: rgba(15, 82, 87, 0.08);
  color: var(--color-primary);
  padding-left: 1.5rem;
}

.mobile-menu__sub-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu__footer {
  padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(127, 179, 176, 0.28);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  background: rgba(255, 255, 255, 0.94);
  position: sticky;
  bottom: 0;
  z-index: 2;
  box-shadow: 0 -8px 20px rgba(6, 49, 53, 0.06);
}


/* ==========================================================================
   2. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-fast);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* Primary Button */
.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(242, 166, 90, 0.35);
}

/* Secondary Button (outlined) */
.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* White Button (for dark/hero backgrounds) */
.btn--white {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.btn--white:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

/* White Outlined Button */
.btn--white-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--white-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

/* Accent Button */
.btn--accent {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn--accent:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  box-shadow: 0 4px 16px rgba(242, 166, 90, 0.35);
}

/* Size variants */
.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--text-xs);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: var(--text-md);
}

/* Full width */
.btn--full {
  width: 100%;
}

/* Disabled state */
.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* Loading state */
.btn.is-loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.btn.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.125rem;
  height: 1.125rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--color-white);
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
}


/* ==========================================================================
   3. CARDS
   ========================================================================== */

/* Base Card */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

/* Trek Card */
.trek-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
}

.trek-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-5px);
}

.trek-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.trek-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.trek-card:hover .trek-card__image {
  transform: scale(1.06);
}

.trek-card__badge {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
}

.trek-card__rating {
  position: absolute;
  bottom: var(--space-2);
  right: var(--space-2);
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  padding: 4px 10px;
  color: #ffffff;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  display: flex;
  align-items: center;
  gap: 4px;
}

.trek-card__wishlist {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  width: 2rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: color var(--transition-fast), background var(--transition-fast);
  backdrop-filter: blur(4px);
}

.trek-card__wishlist:hover,
.trek-card__wishlist.is-active {
  color: var(--color-error);
  background: var(--color-white);
}

.trek-card__wishlist svg {
  width: 1rem;
  height: 1rem;
}

.trek-card__body {
  padding: var(--space-3);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.trek-card__region {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-secondary-dark);
}

.trek-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-h5);
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
  line-height: var(--leading-snug);
  margin-bottom: var(--space-1);
}

.trek-card__title a {
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.trek-card__title a:hover {
  color: var(--color-accent-dark);
}

.trek-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-light);
  margin-bottom: var(--space-1);
}

.trek-card__meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.trek-card__meta-item svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.trek-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-2);
  border-top: 1px solid rgba(127, 179, 176, 0.2);
  margin-top: auto;
}

/* Destination Card */
.dest-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: block;
  text-decoration: none;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.15);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.3);
}

.dest-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
}

.dest-card:hover .dest-card__image {
  transform: scale(1.1);
}

.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(15, 23, 42, 0.1) 0%,
      rgba(15, 23, 42, 0.4) 50%,
      rgba(15, 23, 42, 0.88) 100%);
  transition: opacity var(--transition-base);
}

.dest-card:hover .dest-card__overlay {
  background: linear-gradient(180deg,
      rgba(15, 23, 42, 0.15) 0%,
      rgba(15, 23, 42, 0.5) 45%,
      rgba(15, 23, 42, 0.94) 100%);
}

.dest-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  transform: translateY(0.35rem);
  transition: transform var(--transition-base);
}

.dest-card:hover .dest-card__content {
  transform: translateY(0);
}

.dest-card__title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.dest-card__subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.dest-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  opacity: 0.9;
  transform: translateY(0.25rem);
  transition: opacity var(--transition-base), transform var(--transition-base), background var(--transition-fast);
}

.dest-card:hover .dest-card__link {
  opacity: 1;
  transform: translateY(0);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.dest-card__link svg {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform var(--transition-fast);
}

.dest-card:hover .dest-card__link svg {
  transform: translateX(4px);
}

/* Blog Card Redesign (Compact & Sleek) */
.blog-section .container {
  max-width: 1140px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.blog-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px -6px rgba(15, 23, 42, 0.1);
  border-color: rgba(15, 82, 87, 0.25);
}

.blog-card__image-wrap {
  position: relative;
  aspect-ratio: 16 / 8.5;
  overflow: hidden;
  background: #0f172a;
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}

.blog-card:hover .blog-card__image {
  transform: scale(1.06);
}

.blog-card__category-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  z-index: 2;
}

.blog-card__category-badge--teal {
  background: rgba(15, 82, 87, 0.88);
}

.blog-card__category-badge--amber {
  background: rgba(180, 83, 9, 0.88);
}

.blog-card__category-badge--emerald {
  background: rgba(4, 106, 56, 0.88);
}

.blog-card__category-badge--purple {
  background: rgba(109, 40, 217, 0.88);
}

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

@media (max-width: 1200px) {
  .blog-grid--4cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-grid--4cols {
    grid-template-columns: 1fr;
  }
}

.blog-card__read-time {
  position: absolute;
  bottom: 0.65rem;
  right: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2;
}

.blog-card__body {
  padding: 1.15rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 0.5rem;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.025rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.blog-card:hover .blog-card__title {
  color: var(--color-primary);
}

.blog-card__excerpt {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid #f1f5f9;
  margin-top: auto;
}

.blog-card__author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-card__author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #e2e8f0;
}

.blog-card__author-info {
  display: flex;
  flex-direction: column;
}

.blog-card__author-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.blog-card__date {
  font-size: 0.68rem;
  color: #94a3b8;
  font-weight: 500;
}

.blog-card__link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.blog-card:hover .blog-card__link-btn {
  color: var(--color-accent-dark);
  gap: 0.5rem;
}

/* Testimonial Card */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-card);
  position: relative;
}

.testimonial-card__quote-icon {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  font-size: 4rem;
  line-height: 1;
  color: var(--color-background-alt);
  font-family: Georgia, serif;
  user-select: none;
}

.testimonial-card__text {
  font-size: var(--text-md);
  color: var(--color-text-light);
  line-height: var(--leading-loose);
  font-style: italic;
  margin-bottom: var(--space-3);
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.testimonial-card__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--color-secondary-light);
  flex-shrink: 0;
}

.testimonial-card__avatar-placeholder {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  background: var(--color-secondary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-md);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: var(--weight-semibold);
  font-size: var(--text-md);
  color: var(--color-primary);
}

.testimonial-card__origin {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.testimonial-card__trek {
  font-size: var(--text-xs);
  color: var(--color-accent-dark);
  font-weight: var(--weight-medium);
  margin-top: 2px;
}


/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  background: var(--color-primary-dark);
  text-align: center;
  padding-top: var(--space-12);
  padding-bottom: var(--space-4);
}

.hero--short {
  min-height: 55vh;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* CSS gradient hero backgrounds (used when no image is available) */
.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      var(--color-primary-dark) 0%,
      var(--color-primary) 40%,
      rgba(127, 179, 176, 0.8) 100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(5, 25, 25, 0.35) 0%,
      rgba(5, 25, 25, 0.55) 50%,
      rgba(5, 25, 25, 0.82) 100%);
}

/* Ken Burns slow zoom on active slide image */
@keyframes kenBurns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

.hero__slide.is-active .hero__slide-bg {
  animation: kenBurns 8s ease-out forwards;
}


.hero>.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: -100px;
}

.hero__content {
  position: relative;
  z-index: var(--z-raised);
  padding: var(--space-4) 0;
  max-width: 52rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

/* 1. Google / Rating Pill */
.hero__rating-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-full);
  padding: 0.4rem 1.2rem;
  margin: 0 auto var(--space-3);
  color: var(--color-white);
  font-size: var(--text-xs);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero__rating-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__google-icon {
  flex-shrink: 0;
}

.hero__rating-text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.hero__rating-brand {
  font-weight: var(--weight-bold);
  font-size: 0.7rem;
  letter-spacing: 0.5px;
}

.hero__stars-mini {
  color: #fbbf24;
  font-size: 0.65rem;
  letter-spacing: 1px;
}

.hero__rating-divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.3);
}

.hero__rating-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.hero__rating-info span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero__stars-yellow {
  color: #fbbf24;
  font-size: 0.7rem;
  letter-spacing: 2px;
}

/* 2. Green Highlight Box Badge on Title */
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 5.5vw, 3.75rem);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: var(--space-3);
  letter-spacing: var(--tracking-tight);
  text-align: center;
}

.hero__title-badge {
  background: #00b87c;
  color: #ffffff;
  padding: 0.12em 0.5em;
  border-radius: var(--radius-lg);
  display: inline-block;
  box-shadow: 0 4px 20px rgba(0, 184, 124, 0.35);
  margin-bottom: 0.15em;
}

/* 3. Subtitle Link */
.hero__subtitle {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.92);
  line-height: var(--leading-relaxed);
  max-width: 46ch;
  margin: 0 auto var(--space-4);
  font-weight: var(--weight-medium);
  text-align: center;
}

.hero__subtitle-link {
  color: #00e699;
  font-weight: var(--weight-semibold);
  transition: color var(--transition-fast);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.hero__subtitle-link:hover {
  color: #66ffcc;
}

/* 4. Action Row (Play Thumb + Trust Pill) */
.hero__action-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
  width: 100%;
}

.hero__play-thumb {
  position: relative;
  width: 92px;
  height: 52px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: inline-block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.hero__play-thumb:hover {
  transform: scale(1.05);
}

.hero__play-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 26px;
  height: 26px;
  background: #00b87c;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero__trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: #ffffff;
  border-radius: var(--radius-full);
  padding: 5px 6px 5px 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  color: var(--color-text);
  max-width: 100%;
}

.hero__avatars {
  display: flex;
  align-items: center;
}

.hero__avatar {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  border: 2px solid #ffffff;
  object-fit: cover;
  margin-left: -10px;
}

.hero__avatar:first-child {
  margin-left: 0;
}

.hero__trust-text {
  font-size: var(--text-sm);
  color: #334155;
  white-space: nowrap;
}

.hero__trust-btn {
  background: #00b87c !important;
  color: #ffffff !important;
  border-radius: var(--radius-full) !important;
  padding: 0.65rem 1.4rem !important;
  font-weight: var(--weight-semibold) !important;
  font-size: var(--text-sm) !important;
  white-space: nowrap;
  transition: transform var(--transition-fast), background var(--transition-fast) !important;
}

.hero__trust-btn:hover {
  background: #009e6a !important;
  transform: translateY(-1px);
}

/* Hero Search - Trek Finder Widget */
.hero__search-widget {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-xl);
  padding: var(--space-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  width: 100%;
  max-width: 38rem;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.hero__search-widget:focus-within {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero__search-input-group {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1;
  padding-left: var(--space-2);
}

.hero__search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--color-white);
  font-size: var(--text-lg);
  font-weight: var(--weight-medium);
  padding: 0.75rem 0;
}

.hero__search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-weight: var(--weight-regular);
}

.hero__search-submit {
  background: #00b87c;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: var(--weight-semibold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-md);
  transition: background var(--transition-fast);
}

.hero__search-submit:hover {
  background: #009e6a;
}

.hero__search-submit svg {
  transition: transform var(--transition-fast);
}

.hero__search-submit:hover svg {
  transform: translateX(4px);
}

/* 5. Hero Bottom Feature Badges Strip */
.hero__bottom-strip {
  position: relative;
  z-index: var(--z-raised);
  width: 100%;
  margin-top: -10px;
  padding: var(--space-3) 0 var(--space-2);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  overflow: hidden;
  /* Soft fade effect on the left and right edges */
  mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
}

.hero__feature-marquee {
  display: flex;
  overflow: hidden;
  width: 100%;
  user-select: none;
}

.hero__feature-track {
  display: flex;
  gap: 1.5rem;
  padding: 0.25rem 0;
  width: max-content;
  animation: scrollFeatureStrip 38s linear infinite;
}

.hero__feature-track:hover {
  animation-play-state: paused;
}

@keyframes scrollFeatureStrip {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


.hero__feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  padding: 0.55rem 1.1rem;
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.hero__feature-pill:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero__feature-check {
  width: 18px;
  height: 18px;
  background: #00b87c;
  color: #ffffff;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: var(--weight-bold);
  flex-shrink: 0;
}

.hero__feature-info {
  opacity: 0.6;
  font-size: 12px;
  margin-left: 2px;
  cursor: pointer;
}

.hero__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* Slider Controls */
.hero__controls {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background var(--transition-fast), width var(--transition-base);
  border: none;
  padding: 0;
}

.hero__dot.is-active {
  background: var(--color-accent);
  width: 28px;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: var(--z-raised);
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hero__arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.05);
}

.hero__arrow svg {
  width: 1.5rem;
  height: 1.5rem;
}

.hero__arrow--prev {
  left: var(--space-6);
}

.hero__arrow--next {
  right: var(--space-6);
}

/* Hero Stats Glassmorphic */
.hero__stats {
  bottom: var(--space-8);
  right: 0;
  z-index: var(--z-raised);
  display: flex;
  gap: 1px;
}

.hero__stat {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: var(--space-2) var(--space-3);
  text-align: center;
}

.hero__stat:first-child {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.hero__stat:last-child {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  display: block;
}

.hero__stat-label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.7);
}


/* ==========================================================================
   5. WHY CHOOSE US — Feature Grid
   ========================================================================== */

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
  padding: 2.25rem 1.85rem;
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15, 82, 87, 0.09);
  box-shadow: 0 10px 30px -5px rgba(15, 82, 87, 0.05);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-item:hover {
  box-shadow: 0 20px 40px -10px rgba(15, 82, 87, 0.12);
  transform: translateY(-6px);
  border-color: rgba(15, 82, 87, 0.25);
}

.feature-item__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0.5rem;
  transition: transform var(--transition-base);
}

.feature-item:hover .feature-item__icon {
  transform: scale(1.1) rotate(-3deg);
}

/* Icon Color Badges */
.feature-item__icon--teal {
  background: #e6f4f5;
  color: #0F5257;
}

.feature-item__icon--green {
  background: #d1fae5;
  color: #10b981;
}

.feature-item__icon--amber {
  background: #fef3c7;
  color: #d97706;
}

.feature-item__icon--blue {
  background: #dbeafe;
  color: #2563eb;
}

.feature-item__icon--emerald {
  background: #ecfdf5;
  color: #059669;
}

.feature-item__icon--orange {
  background: #ffedd5;
  color: #ea580c;
}

.feature-item__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.feature-item__desc {
  font-size: 0.925rem;
  color: #64748b;
  line-height: 1.6;
  max-width: none;
}


/* ==========================================================================
   6. STATISTICS COUNTER
   ========================================================================== */

.stats-section {
  background: var(--color-primary);
  padding: var(--space-12) 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
  position: relative;
  z-index: 1;
}

@media (min-width: 576px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-1);
  }
}

.stat-item {
  text-align: center;
  padding: var(--space-4) var(--space-3);
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--space-1);
  display: block;
}

.stat-item__suffix {
  color: var(--color-accent-light);
}

.stat-item__label {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: var(--tracking-wide);
}

.stat-item__icon {
  font-size: 2rem;
  margin-bottom: var(--space-1);
  display: block;
  opacity: 0.7;
}


/* ==========================================================================
   7. FAQ ACCORDION
   ========================================================================== */

/* =========================================================
   FAQ SECTION REDESIGN
   ========================================================= */
.faq-section {
  background: #f8fafc;
}

.faq-filter-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.faq-search-box {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.faq-search-box svg {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}

.faq-search-box input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.8rem;
  border-radius: 999px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  font-size: 0.9rem;
  color: #0f172a;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-search-box input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(15, 82, 87, 0.12);
}

.faq-category-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.faq-pill-btn {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-pill-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #f0fdfa;
}

.faq-pill-btn.is-active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

/* Accordion List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(15, 82, 87, 0.3);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

summary.faq-item__trigger::-webkit-details-marker,
summary.faq-item__trigger::marker {
  display: none;
  content: "";
}

summary.faq-item__trigger {
  list-style: none;
}

.faq-item.is-open,
details.faq-item[open] {
  border-color: var(--color-primary);
  box-shadow: 0 8px 24px -4px rgba(15, 82, 87, 0.12);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  cursor: pointer;
  text-align: left;
  background: transparent;
  border: none;
  color: #0f172a;
}

.faq-item__question-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.faq-item__badge {
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.faq-item__badge--teal {
  background: #e6f4f5;
  color: #0f5257;
}

.faq-item__badge--amber {
  background: #fef3c7;
  color: #92400e;
}

.faq-item__badge--emerald {
  background: #d1fae5;
  color: #065f46;
}

.faq-item__badge--blue {
  background: #dbeafe;
  color: #1e40af;
}

.faq-item__question {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.35;
}

.faq-item.is-open .faq-item__question,
details.faq-item[open] .faq-item__question {
  color: var(--color-primary);
}

.faq-item__toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-item.is-open .faq-item__toggle-icon,
details.faq-item[open] .faq-item__toggle-icon {
  transform: rotate(45deg);
  background: var(--color-primary);
  color: #ffffff;
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.is-open .faq-item__body,
details.faq-item[open] .faq-item__body {
  max-height: max-content;
}

.faq-item__content {
  padding: 0 1.35rem 1.25rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
}

.faq-item__answer {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

.faq-item__callout {
  margin-top: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  font-size: 0.82rem;
  color: #0f5257;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.faq-item__callout--green {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #166534;
}

.faq-item__checklist {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #334155;
}

.faq-item__checklist li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* FAQ Support Card */
.faq-support-card {
  max-width: 860px;
  margin: 2.5rem auto 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.faq-support-card__icon {
  font-size: 2.2rem;
  line-height: 1;
  flex-shrink: 0;
}

.faq-support-card__info {
  flex: 1;
}

.faq-support-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.25rem;
}

.faq-support-card__text {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
}

.faq-support-card__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn--whatsapp {
  background: #25d366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn--whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  color: #ffffff;
}

/* Hidden state for filter/search */
.faq-item--hidden {
  display: none !important;
}

/* FAQ Grid & Sidebar Enhancements */
.faq-grid-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.25rem;
  align-items: start;
  margin-top: 2.25rem;
}

@media (max-width: 991px) {
  .faq-grid-layout {
    grid-template-columns: 1fr;
  }
}

.faq-sidebar-card {
  position: sticky;
  top: 110px;
  background: linear-gradient(145deg, #0f5257 0%, #063135 100%);
  color: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 16px 36px rgba(15, 82, 87, 0.22);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-sidebar-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  color: #7fb3b0;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.faq-sidebar-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.6rem;
  line-height: 1.25;
}

.faq-sidebar-card__desc {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.55;
  margin: 0 0 1.5rem;
}

.faq-sidebar-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-sidebar-card__feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.84rem;
  color: #f1f5f9;
}

.faq-sidebar-card__icon-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #7fb3b0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.faq-sidebar-card__cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-sidebar-card__btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  background: #fceedf;
  color: #0f5257;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-sidebar-card__btn-contact:hover {
  background: #ffffff;
  transform: translateY(-2px);
  color: #0f5257;
}

.faq-sidebar-card__btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  background: rgba(37, 211, 102, 0.2);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25d366;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-sidebar-card__btn-wa:hover {
  background: rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
  color: #25d366;
}



.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
  gap: var(--space-2);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  display: block;
}

.gallery-item--tall {
  aspect-ratio: 2 / 3;
}

.gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.gallery-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-item:hover .gallery-item__image {
  transform: scale(1.08);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 82, 87, 0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__zoom-icon {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transform: scale(0.8);
  transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-item__zoom-icon {
  transform: scale(1);
}

.gallery-item__zoom-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}


/* ==========================================================================
   9. LIGHTBOX
   ========================================================================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  z-index: 1;
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: background var(--transition-fast);
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__close svg {
  width: 1.25rem;
  height: 1.25rem;
}

.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox__image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox__caption {
  text-align: center;
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.75);
}

.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: background var(--transition-fast);
}

.lightbox__arrow:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox__arrow svg {
  width: 1.25rem;
  height: 1.25rem;
}

.lightbox__arrow--prev {
  left: calc(-2.75rem - var(--space-2));
}

.lightbox__arrow--next {
  right: calc(-2.75rem - var(--space-2));
}


/* ==========================================================================
   10. BOOKING & CONTACT FORMS
   ========================================================================== */

.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.form-row {
  display: grid;
  gap: var(--space-3);
}

.form-row--2 {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 575px) {
  .form-row--2 {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-label {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
}

.form-label--required::after {
  content: ' *';
  color: var(--color-error);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-white);
  border: 1.5px solid rgba(127, 179, 176, 0.4);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: var(--color-text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(15, 82, 87, 0.12);
}

.form-control::placeholder {
  color: var(--color-text-muted);
}

.form-control.is-error {
  border-color: var(--color-error);
}

.form-control.is-success {
  border-color: var(--color-success);
}

.form-control:disabled {
  background: var(--color-background);
  cursor: not-allowed;
  opacity: 0.7;
}

textarea.form-control {
  resize: vertical;
  min-height: 8rem;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235a5a5a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}

.form-error {
  font-size: var(--text-xs);
  color: var(--color-error);
  font-weight: var(--weight-medium);
  display: none;
}

.form-group.has-error .form-error {
  display: block;
}

.form-help {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* Form Feedback Messages */
.form-message {
  padding: var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.form-message.is-visible {
  display: flex;
}

.form-message--success {
  background: var(--color-success-bg);
  color: var(--color-success);
  border: 1px solid rgba(29, 110, 74, 0.2);
}

.form-message--error {
  background: var(--color-error-bg);
  color: var(--color-error);
  border: 1px solid rgba(185, 28, 28, 0.2);
}

.form-message svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* Booking form wrapper */
.booking-form-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
}

.booking-form-card__header {
  margin-bottom: var(--space-4);
}

.booking-form-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-1);
}

.booking-form-card__subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}


/* ==========================================================================
   11. NEWSLETTER
   ========================================================================== */

.newsletter {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: var(--space-12) 0;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 40rem;
  height: 40rem;
  border-radius: var(--radius-full);
  background: rgba(127, 179, 176, 0.08);
  pointer-events: none;
}

.newsletter__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
}

.newsletter__title {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  max-width: 32rem;
}

.newsletter__subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.75);
  max-width: 36ch;
}

.newsletter__form {
  display: flex;
  gap: var(--space-2);
  width: 100%;
  max-width: 30rem;
}

.newsletter__input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-size: var(--text-md);
  font-family: var(--font-body);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.newsletter__input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.newsletter__note {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 575px) {
  .newsletter__form {
    flex-direction: column;
  }
}


/* ==========================================================================
   12. TESTIMONIAL SLIDER & REFERENCE REDESIGN
   ========================================================================== */

.testimonial-eyebrow-badge {
  background: #d1fae5;
  color: #059669;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.testimonial-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.testimonial-pill-tabs {
  background: #e2e8f0;
  border-radius: 40px;
  padding: 5px;
  display: inline-flex;
  gap: 4px;
  border: 1px solid rgba(15, 82, 87, 0.08);
}

.testimonial-tab-btn {
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 600;
  font-size: 0.875rem;
  color: #475569;
  background: transparent;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-tab-btn.is-active {
  background: #0f2b3c;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 43, 60, 0.2);
}

.platform-subtabs-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 1.25rem 0 1.5rem;
  flex-wrap: wrap;
}

.platform-subtab {
  background: none;
  border: none;
  padding: 6px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.platform-subtab.is-active {
  color: #059669;
  border-bottom-color: #10b981;
}

.verified-summary-banner {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.1rem 1.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  flex-wrap: wrap;
  gap: 1rem;
}

.verified-summary__stars-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.gold-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.verified-summary__score {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}

.verified-summary__count {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.btn--leave-review {
  background: #10b981;
  color: #ffffff;
  border-radius: 30px;
  font-weight: 700;
  padding: 9px 22px;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn--leave-review:hover {
  background: #059669;
  transform: translateY(-1px);
}

/* Rich Color Review Card (Reference Design) */
.review-rich-card {
  border-radius: 20px;
  padding: 2.25rem 1.85rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: calc(25% - 1.2rem);
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-rich-card--brown {
  background: linear-gradient(145deg, #8b3a0f 0%, #6e2c09 100%);
}

.review-rich-card--green {
  background: linear-gradient(145deg, #046a38 0%, #034b27 100%);
}

.review-rich-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.review-rich-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.review-rich-card__rating {
  background: #10b981;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.review-rich-card__date {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.review-rich-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 1.25rem 0 0.5rem;
  color: #ffffff;
  font-family: var(--font-heading);
  line-height: 1.25;
}

.review-rich-card__text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex: 1;
}

.review-rich-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1rem;
  margin-top: auto;
}

.review-rich-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.review-rich-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-rich-card__name {
  font-weight: 700;
  font-size: 0.925rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 4px;
}

.verified-check {
  color: #34d399;
  font-size: 0.85rem;
}

.review-rich-card__role {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}

/* Reviews Auto-Scroll Marquee */
@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.reviews-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right,
      transparent 0%,
      #000 8%,
      #000 92%,
      transparent 100%);
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      #000 8%,
      #000 92%,
      transparent 100%);
}

.reviews-marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scrollReviews 42s linear infinite;
}

.reviews-marquee-wrapper:hover .reviews-marquee-track {
  animation-play-state: paused;
}

/* Override card width for marquee layout */
.reviews-marquee-track .review-rich-card {
  min-width: 340px;
  max-width: 340px;
  flex-shrink: 0;
}

/* =========================================================
   REVIEW TAB PANELS
   ========================================================= */
.review-tab-panel {
  animation: none;
}

/* =========================================================
   VIDEO REVIEWS PANEL
   ========================================================= */
.video-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1.5rem 0 0.5rem;
}

.video-review-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.video-review-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0f172a;
}

.video-review-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.video-review-card:hover .video-review-card__thumb img {
  transform: scale(1.06);
  opacity: 0.7;
}

.video-review-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
  transition: transform 0.2s ease;
  cursor: pointer;
}

.video-review-card:hover .video-review-card__play {
  transform: translate(-50%, -50%) scale(1.12);
}

.video-review-card__duration {
  position: absolute;
  bottom: 8px;
  right: 10px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 6px;
  letter-spacing: 0.03em;
}

.video-review-card__body {
  padding: 1rem 1.15rem 1.1rem;
}

.video-review-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.6rem;
  line-height: 1.3;
}

.video-review-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #64748b;
}

.video-review-card__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #e2e8f0;
  flex-shrink: 0;
}

.video-review-card__stars {
  color: #f59e0b;
  font-size: 0.8rem;
  margin-left: auto;
}

/* =========================================================
   PLATFORM REVIEWS SECTION
   ========================================================= */
.platform-reviews-section {
  margin-top: 0;
  border-top: none;
  padding-top: 0.5rem;
}

/* Platform Score Cards Row */
.platform-scores-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.platform-score-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.platform-score-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.platform-score-card__logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.platform-score-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.platform-score-card__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.platform-score-card__stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.platform-score-card__score {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.platform-score-card__score span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #94a3b8;
}

.platform-score-card__count {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Platform Reviews Marquee */
@keyframes scrollPlatformReviews {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.platform-reviews-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right,
      transparent 0%,
      #000 7%,
      #000 93%,
      transparent 100%);
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      #000 7%,
      #000 93%,
      transparent 100%);
}

.platform-reviews-marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: scrollPlatformReviews 36s linear infinite;
}

.platform-reviews-marquee-wrapper:hover .platform-reviews-marquee-track {
  animation-play-state: paused;
}

/* Platform Review Card */
.platform-review-card {
  min-width: 300px;
  max-width: 300px;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.platform-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.platform-review-card__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.platform-review-card__platform {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex: 1;
}

.platform-review-card__stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.platform-review-card__title {
  font-size: 0.925rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

.platform-review-card__text {
  font-size: 0.83rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.platform-review-card__author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f1f5f9;
  font-size: 0.78rem;
  color: #64748b;
}

.platform-review-card__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #e2e8f0;
  flex-shrink: 0;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: var(--space-4);
  transition: transform var(--transition-slow) ease;
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.testimonials-arrow {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-full);
  background: var(--color-white);
  border: 1.5px solid rgba(127, 179, 176, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast),
    color var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.testimonials-arrow:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.testimonials-arrow svg {
  width: 1.125rem;
  height: 1.125rem;
}

.testimonials-dots {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.testimonials-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(127, 179, 176, 0.4);
  cursor: pointer;
  transition: background var(--transition-fast), width var(--transition-base);
  border: none;
}

.testimonials-dot.is-active {
  background: var(--color-primary);
  width: 20px;
}


/* ==========================================================================
   13. BREADCRUMB
   ========================================================================== */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--text-sm);
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--color-text-muted);
}

.breadcrumb__item:last-child {
  color: var(--color-text-light);
}

.breadcrumb__link {
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.breadcrumb__link:hover {
  color: var(--color-primary);
}

.breadcrumb__separator {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--color-text-muted);
  opacity: 0.5;
}

/* White breadcrumb (for hero sections) */
.breadcrumb--white .breadcrumb__item,
.breadcrumb--white .breadcrumb__link {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb--white .breadcrumb__link:hover {
  color: var(--color-white);
}

.breadcrumb--white .breadcrumb__item:last-child {
  color: var(--color-white);
}


/* ==========================================================================
   14. CTA BANNER
   ========================================================================== */

.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -5%;
  width: 24rem;
  height: 24rem;
  border-radius: var(--radius-full);
  background: rgba(127, 179, 176, 0.12);
  pointer-events: none;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-1);
}

.cta-banner__subtitle {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.8);
}

.cta-banner__actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}


/* ==========================================================================
   15. FOOTER
   ========================================================================== */

.footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: var(--space-12);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-8);
}

@media (min-width: 576px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}


.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: var(--space-3);
  text-decoration: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.footer__logo:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.footer__logo-img {
  height: 2.75rem;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: var(--weight-bold);
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.footer__logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-accent-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.125rem;
}

.footer__desc {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-4);
  max-width: 24ch;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer__social-link {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.footer__social-link:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.footer__social-link svg {
  width: 1rem;
  height: 1rem;
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-accent-light);
  padding-left: 4px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.625rem;
}

.footer__contact-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast);
}

.footer__contact-item a:hover {
  color: var(--color-accent-light);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-3) 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.45);
}

.footer__bottom-links {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.footer__bottom-link {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition-fast);
}

.footer__bottom-link:hover {
  color: rgba(255, 255, 255, 0.75);
}


/* ==========================================================================
   16. BACK TO TOP BUTTON
   ========================================================================== */

.back-to-top {
  position: fixed;
  bottom: var(--space-4);
  right: var(--space-4);
  z-index: var(--z-sticky);
  width: 3rem;
  height: 3rem;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.75rem);
  transition: opacity var(--transition-base),
    visibility var(--transition-base),
    transform var(--transition-base),
    background var(--transition-fast);
}

.back-to-top:hover {
  background: var(--color-accent);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top svg {
  width: 1.25rem;
  height: 1.25rem;
}


/* ==========================================================================
   17. SEARCH MODAL
   ========================================================================== */

.search-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: flex-start;
  padding-top: var(--space-16);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.search-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.search-modal__inner {
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.search-modal__bar {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2) var(--space-3);
  box-shadow: var(--shadow-xl);
}

.search-modal__icon {
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.search-modal__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.search-modal__input {
  flex: 1;
  border: none;
  outline: none;
  font-size: var(--text-lg);
  font-family: var(--font-body);
  color: var(--color-text);
  background: transparent;
}

.search-modal__input::placeholder {
  color: var(--color-text-muted);
}

.search-modal__results {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  margin-top: var(--space-2);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-height: 20rem;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  transition: background var(--transition-fast);
  text-decoration: none;
}

.search-result-item:hover {
  background: var(--color-background);
}

.search-result-item__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.search-result-item__name {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
}

.search-result-item__type {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}


/* ==========================================================================
   18. PAGE HERO (Inner Pages)
   ========================================================================== */

.page-hero {
  position: relative;
  padding: var(--space-16) 0 var(--space-8);
  background: linear-gradient(135deg,
      var(--color-primary-dark) 0%,
      var(--color-primary) 60%,
      rgba(127, 179, 176, 0.9) 100%);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.page-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: overlay;
  opacity: 0.4;
}

.page-hero__content {
  position: relative;
  z-index: var(--z-raised);
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-h1);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.page-hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.85);
  max-width: 55ch;
  margin-bottom: var(--space-3);
}


/* ==========================================================================
   19. 404 PAGE
   ========================================================================== */

.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-8) var(--space-4);
}

.error-page__number {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: var(--weight-bold);
  color: var(--color-secondary-light);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.error-page__title {
  font-size: var(--text-h3);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.error-page__desc {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  margin-bottom: var(--space-6);
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
}


/* ==========================================================================
   20. TRUST BAR (Reference Card Row Layout)
   ========================================================================== */

.trust-bar {
  background: #f8fafc;
  padding: 1.75rem 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  z-index: 10;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.75rem;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.trust-card:hover {
  transform: translateY(-2px);
}

.trust-card__icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.trust-card:hover .trust-card__icon-box {
  transform: scale(1.05);
}

/* Color Variant Boxes matching reference image */
.trust-card__icon-box--yellow {
  background: #fef3c7;
  color: #f59e0b;
}

.trust-card__icon-box--green {
  background: #d1fae5;
  color: #10b981;
}

.trust-card__icon-box--blue {
  background: #dbeafe;
  color: #3b82f6;
}

.trust-card__icon-box--orange {
  background: #ffedd5;
  color: #ea580c;
}

.trust-card__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.trust-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.trust-card__subtitle {
  font-size: 0.8rem;
  font-weight: 500;
  color: #64748b;
  line-height: 1.2;
  margin-top: 3px;
}

/* ==========================================================================
   21. QUICK FACTS (Trek Detail Page)
   ========================================================================== */

.quick-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: var(--space-2);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-card);
}

.quick-fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background: var(--color-background);
  gap: 0.5rem;
}

.quick-fact__icon {
  font-size: 1.75rem;
  color: var(--color-primary);
}

.quick-fact__label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.quick-fact__value {
  font-family: var(--font-heading);
  font-size: var(--text-md);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
}

/* =========================================================
   GALLERY SECTION — BENTO GRID
   ========================================================= */
.gallery-section {
  background: #f8fafc;
}

/* Filter buttons */
.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.gallery-filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  color: #475569;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.gallery-filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #f0fdfa;
}

.gallery-filter-btn.is-active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* Bento Grid */
.gallery-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 0.875rem;
}

/* Cell base */
.gallery-bento__cell {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: #0f172a;
  outline: none;
}

.gallery-bento__cell:focus-visible {
  box-shadow: 0 0 0 3px var(--color-primary), 0 0 0 5px #fff;
}

/* Modifier: hero — spans 2 cols × 2 rows */
.gallery-bento__cell--hero {
  grid-column: span 2;
  grid-row: span 2;
}

/* Modifier: tall — spans 1 col × 2 rows */
.gallery-bento__cell--tall {
  grid-row: span 2;
}

/* Modifier: wide — spans 2 cols × 1 row */
.gallery-bento__cell--wide {
  grid-column: span 2;
}

/* Image */
.gallery-bento__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
  filter: brightness(0.92);
  display: block;
}

.gallery-bento__cell:hover .gallery-bento__img {
  transform: scale(1.07);
  filter: brightness(0.7);
}

/* Overlay */
.gallery-bento__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.18) 45%,
      transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-bento__cell:hover .gallery-bento__overlay,
.gallery-bento__cell:focus-visible .gallery-bento__overlay {
  opacity: 1;
}

/* Caption */
.gallery-bento__caption {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.gallery-bento__location {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.gallery-bento__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.25;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* Zoom icon */
.gallery-bento__zoom {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-bento__cell:hover .gallery-bento__zoom {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Filtered out state */
.gallery-bento__cell--hidden {
  display: none;
}

/* CTA */
.gallery-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.gallery-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.gallery-cta__note {
  font-size: 0.82rem;
  color: #94a3b8;
  margin: 0;
}

/* =========================================================
   GALLERY LIGHTBOX
   ========================================================= */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.gallery-lightbox__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 90vw;
  max-height: 90vh;
  animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.93);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.gallery-lightbox__img {
  max-width: 88vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.gallery-lightbox__caption {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  margin: 0;
  max-width: 540px;
}

.gallery-lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(90deg);
}

/* Testimonials Section White Background */
.testimonials-section {
  background-color: #ffffff !important;
}

/* ==========================================================================
   Specialists Section Redesign (Matching User Reference Image)
   ========================================================================== */
.specialists-team-section {
  background: #ffffff;
  padding-top: 4.5rem;
  padding-bottom: 4rem;
}

.specialist-team-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.specialist-highlight-text {
  color: #00d27a;
}

.specialist-team-subtitle {
  font-size: 0.95rem;
  color: #64748b;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.25rem;
  line-height: 1.6;
}

/* 5-Column Grid */
.specialist-team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}

@media (max-width: 1024px) {
  .specialist-team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .specialist-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* Card Styling */
.team-card {
  position: relative;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  background: #0f172a;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.16);
}

.team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-card__img {
  transform: scale(1.06);
}

.team-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.45) 45%, transparent 100%);
  pointer-events: none;
}

.team-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1rem;
  display: flex;
  align-items: flex-end;
  gap: 0.65rem;
  color: #ffffff;
  z-index: 2;
}

.team-pill-indicator {
  width: 6px;
  height: 28px;
  border-radius: 4px;
  background: #00d27a;
  flex-shrink: 0;
  margin-bottom: 2px;
}

.team-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.team-card__role {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  line-height: 1.3;
}

/* Floating Bottom Support Bar */
.specialist-support-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.specialist-support-bar {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 0.5rem 0.6rem 0.5rem 1.25rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.specialist-support-bar__left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.specialist-support-avatar-wrap {
  position: relative;
  width: 36px;
  height: 36px;
}

.specialist-support-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.specialist-online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00d27a;
  border: 2px solid #ffffff;
}

.specialist-support-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
}

.specialist-support-btn {
  background: #00d27a;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.6rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  display: inline-flex;
  align-items: center;
}

.specialist-support-btn:hover {
  background: #00b86b;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 210, 122, 0.4);
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */
.how-it-works-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
  position: relative;
}

.how-it-works-eyebrow {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: rgba(15, 82, 87, 0.08);
  border: 1px solid rgba(15, 82, 87, 0.15);
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.75rem;
  margin-bottom: 3.5rem;
  position: relative;
}

@media (max-width: 1024px) {
  .how-it-works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .how-it-works-grid {
    grid-template-columns: 1fr;
  }
}

.how-step-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.75rem 1.35rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
}

.how-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(15, 82, 87, 0.1);
  border-color: var(--color-primary);
}

.how-step-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.how-step-number {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary);
  background: rgba(15, 82, 87, 0.08);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 82, 87, 0.15);
}

.how-step-card:hover .how-step-number {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.how-step-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.how-step-title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.how-step-desc {
  font-size: 0.86rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.how-step-tag {
  padding-top: 0.75rem;
  border-top: 1px dashed #e2e8f0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* Bottom CTA Banner */
.how-it-works-cta {
  background: linear-gradient(135deg, #0f5257 0%, #0a3b3f 100%);
  border-radius: 24px;
  padding: 2.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(15, 82, 87, 0.2);
}

@media (max-width: 850px) {
  .how-it-works-cta {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}

.how-cta-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.how-cta-subtitle {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.how-cta-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Founder's Note Section
   ========================================================================== */
.founders-note-section {
  background: #f8fafc;
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

.founders-note-card {
  background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%);
  border: 1px solid rgba(242, 166, 90, 0.3);
  border-radius: 28px;
  padding: 3rem 3.5rem;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3.5rem;
  align-items: center;
  box-shadow: 0 20px 50px rgba(15, 82, 87, 0.06);
  position: relative;
  overflow: hidden;
}

@media (max-width: 992px) {
  .founders-note-card {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.25rem 1.75rem;
  }
}

/* Photo Wrap */
.founders-note__img-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  height: 400px;
  background: #0f172a;
}

@media (max-width: 992px) {
  .founders-note__img-wrap {
    height: 340px;
    max-width: 380px;
    margin: 0 auto;
  }
}

.founders-note__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founders-note__img-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
}

.founders-note__img-badge .badge-icon {
  font-size: 1.5rem;
}

.founders-note__img-badge .badge-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-accent);
}

.founders-note__img-badge .badge-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Content Column */
.founders-note__content-column {
  position: relative;
}

.founders-note__quote-icon {
  position: absolute;
  top: -2.5rem;
  right: 0;
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
  color: rgba(15, 82, 87, 0.06);
  pointer-events: none;
  user-select: none;
}

.founders-note__eyebrow {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: rgba(242, 166, 90, 0.15);
  border: 1px solid rgba(242, 166, 90, 0.35);
  color: #92400e;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.founders-note__title {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.founders-note__body p {
  font-size: 0.96rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.founders-note__body p:last-child {
  margin-bottom: 1.75rem;
}

/* Footer & Signature */
.founders-note__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e2e8f0;
  flex-wrap: wrap;
}

.founders-note__signature {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}

.founders-note__role {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 600;
}

.founders-note__tags {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.founder-tag {
  font-size: 0.76rem;
  font-weight: 600;
  color: #0f5257;
  background: rgba(15, 82, 87, 0.08);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 82, 87, 0.15);
}

/* ==========================================================================
   Certifications & Partnerships Section (Above Footer)
   ========================================================================== */
.cert-partners-section {
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
  padding-top: 5rem;
  padding-bottom: 4.5rem;
  position: relative;
  overflow: hidden;
}

.cert-partners-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 450px;
  height: 350px;
  background-image: radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cert-partners-eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.cert-partners-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.85rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cert-partners-subtitle {
  font-size: 0.95rem;
  color: #64748b;
  text-align: center;
  max-width: 660px;
  margin: 0 auto 3.5rem;
  line-height: 1.6;
}

/* 12-Card Grid (6 cols x 2 rows) */
.cert-partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.75rem;
}

@media (max-width: 1200px) {
  .cert-partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 850px) {
  .cert-partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 580px) {
  .cert-partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
}

/* Individual Card */
.cert-partner-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.65rem 1.15rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  border: 1px solid #e2e8f0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.cert-partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.09);
  border-color: #cbd5e1;
}

.cert-partner-logo {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.cert-partner-name {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.cert-line-indicator {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 0.75rem;
  display: block;
}

.cert-line--green {
  background: #10b981;
}

.cert-line--blue {
  background: #2563eb;
}

.cert-line--orange {
  background: #f97316;
}

.cert-line--red {
  background: #ef4444;
}

.cert-partner-desc {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.45;
  margin: 0;
  flex: 1;
}

/* Bottom Trust Bar (4 pillars) */
.cert-trust-strip {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.25rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .cert-trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
  }
}

@media (max-width: 540px) {
  .cert-trust-strip {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.cert-trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.cert-trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cert-trust-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.cert-trust-sub {
  font-size: 0.76rem;
  color: #64748b;
  line-height: 1.3;
}

/* ==========================================================================
   Destinations Page Styles (Redesigned)
   ========================================================================== */
.destinations-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(9, 39, 42, 0.92) 0%, rgba(15, 82, 87, 0.88) 60%, rgba(10, 59, 63, 0.95) 100%),
              url('/assets/images/destinations/everest.jpg') center/cover no-repeat;
  color: #ffffff;
  padding: 6rem 0 5rem;
  text-align: center;
  overflow: hidden;
}

.destinations-hero__overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 30%, rgba(242, 166, 90, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.destinations-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
  background: rgba(242, 166, 90, 0.12);
  border: 1px solid rgba(242, 166, 90, 0.3);
  padding: 0.35rem 1rem;
  border-radius: 999px;
}

.destinations-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.15rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.destinations-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 780px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

/* Stats Bar */
.dest-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 1.25rem;
}

@media (max-width: 768px) {
  .dest-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.dest-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.dest-stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1.2;
}

.dest-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

.destinations-quick-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.quick-pill {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.quick-pill:hover {
  background: var(--color-accent);
  color: #0f172a;
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

/* Realistic Google Map Explorer Section */
.dest-map-explorer-section {
  background: #091e20;
  color: #ffffff;
  padding: 4.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.dest-map-explorer-section .section-heading__title {
  color: #ffffff;
}

.dest-map-explorer-section .section-heading__subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.dest-map-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1.75rem;
  margin-top: 2.5rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .dest-map-layout {
    grid-template-columns: 1fr;
  }
}

.dest-map-viewport {
  position: relative;
  background: #061517;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.dest-map-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10;
  position: relative;
}

.dest-map-title-tag {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
}

.dest-map-view-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.25rem;
  gap: 0.25rem;
}

.dest-map-toggle-btn {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dest-map-toggle-btn.is-active {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Map Display Area */
.dest-map-container {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.dest-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: contrast(1.05) saturate(1.1);
}

.dest-map-satellite-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Interactive Pins Layer */
.dest-map-pins-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.map-pin-btn {
  position: absolute;
  pointer-events: auto;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10;
}

.map-pin-btn:hover,
.map-pin-btn.is-active {
  transform: translate(-50%, -50%) scale(1.15);
  z-index: 30;
}

.pin-beacon {
  position: relative;
  width: 22px;
  height: 22px;
  background: var(--color-accent);
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 16px var(--color-accent), 0 4px 10px rgba(0, 0, 0, 0.4);
}

.pin-beacon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  opacity: 0.75;
  animation: pinPulse 2s infinite;
}

@keyframes pinPulse {
  0% { transform: scale(0.8); opacity: 0.9; }
  100% { transform: scale(1.8); opacity: 0; }
}

.pin-label-tag {
  background: rgba(15, 23, 42, 0.9);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.22rem 0.6rem;
  border-radius: 6px;
  white-space: nowrap;
  margin-top: 0.35rem;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.map-pin-btn.is-active .pin-beacon {
  background: #10b981;
  box-shadow: 0 0 20px #10b981;
}

.map-pin-btn.is-active .pin-label-tag {
  background: var(--color-primary);
  border-color: #10b981;
}

/* Pin Tooltip Popup */
.map-pin-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 210px;
  background: #ffffff;
  color: #0f172a;
  border-radius: 12px;
  padding: 0.85rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid #e2e8f0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  pointer-events: none;
}

.map-pin-btn:hover .map-pin-tooltip,
.map-pin-btn.is-active .map-pin-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.tooltip-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.tooltip-meta {
  font-size: 0.74rem;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tooltip-jump-btn {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* Map Control Sidebar */
.dest-map-sidebar {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 1.25rem;
  backdrop-filter: blur(12px);
}

.sidebar-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dest-map-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-height: 450px;
  overflow-y: auto;
  padding-right: 0.3rem;
}

.dest-map-list::-webkit-scrollbar {
  width: 4px;
}
.dest-map-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.map-list-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.25s ease;
  color: #ffffff;
  text-align: left;
}

.map-list-item:hover,
.map-list-item.is-active {
  background: var(--color-primary);
  border-color: var(--color-accent);
  transform: translateX(4px);
}

.map-list-item__info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.map-list-item__name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
}

.map-list-item__alt {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.7);
}

.map-list-item__icon {
  font-size: 1.1rem;
}

/* Filter Toolbar */
.destinations-filter-section {
  background: #ffffff;
  padding: 1.25rem 0;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: var(--navbar-height, 72px);
  z-index: 90;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.destinations-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.destinations-filter-pills {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.dest-filter-pill {
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #475569;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.dest-filter-pill.is-active,
.dest-filter-pill:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(15, 82, 87, 0.2);
}

.dest-toolbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.dest-result-count {
  font-size: 0.84rem;
  font-weight: 600;
  color: #64748b;
  white-space: nowrap;
}

.destinations-search-wrap {
  position: relative;
  min-width: 280px;
}

.destinations-search-wrap .search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}

.destinations-search-input {
  width: 100%;
  padding: 0.6rem 1rem 0.6rem 2.6rem;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  font-size: 0.88rem;
  outline: none;
  transition: all 0.25s ease;
  background: #f8fafc;
}

.destinations-search-input:focus {
  border-color: var(--color-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(15, 82, 87, 0.12);
}

/* Destinations Cards Grid */
.destinations-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
  margin-top: 2.5rem;
}

@media (max-width: 992px) {
  .destinations-page-grid {
    grid-template-columns: 1fr;
  }
}

.dest-region-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.dest-region-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15, 82, 87, 0.14);
  border-color: rgba(15, 82, 87, 0.3);
}

.dest-card-highlight {
  animation: cardPulse 1.8s ease-in-out;
}

@keyframes cardPulse {
  0%, 100% { outline: 0px solid transparent; }
  50% { outline: 4px solid var(--color-accent); box-shadow: 0 0 30px rgba(242, 166, 90, 0.5); }
}

.dest-region-card__img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.dest-region-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.dest-region-card:hover .dest-region-card__img {
  transform: scale(1.06);
}

.dest-region-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.badge--amber {
  background: rgba(217, 119, 6, 0.95);
  color: #ffffff;
}

.badge--teal {
  background: rgba(13, 148, 136, 0.95);
  color: #ffffff;
}

.badge--gold {
  background: rgba(180, 83, 9, 0.95);
  color: #ffffff;
}

.badge--indigo {
  background: rgba(67, 56, 202, 0.95);
  color: #ffffff;
}

.badge--emerald {
  background: rgba(16, 185, 129, 0.95);
  color: #ffffff;
}

.dest-region-card__treks-count {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.dest-region-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dest-region-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.65rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dest-region-card__title {
  font-family: var(--font-heading);
  font-size: 1.38rem;
  font-weight: 800;
  color: #0f172a;
}

.dest-region-card__alt {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(15, 82, 87, 0.08);
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}

.dest-region-card__desc {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.dest-region-card__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  background: #f8fafc;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  margin-bottom: 1.25rem;
  border: 1px solid #f1f5f9;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.spec-label {
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
}

.spec-val {
  font-size: 0.84rem;
  font-weight: 700;
  color: #0f172a;
}

.dest-region-card__routes {
  margin-bottom: 1.25rem;
}

.routes-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
  display: block;
}

.routes-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.route-chip-link {
  font-size: 0.76rem;
  font-weight: 600;
  color: #0f5257;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.route-chip-link:hover {
  background: #0f5257;
  color: #ffffff;
  border-color: #0f5257;
}

.dest-region-card__highlights {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.highlight-chip {
  font-size: 0.76rem;
  font-weight: 600;
  color: #0f5257;
  background: rgba(15, 82, 87, 0.06);
  border: 1px solid rgba(15, 82, 87, 0.12);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.dest-region-card__footer {
  margin-top: auto;
  display: flex;
  gap: 0.75rem;
}

.btn-intel {
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #cbd5e1;
  font-weight: 600;
  font-size: 0.86rem;
  padding: 0.65rem 1.1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-intel:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.dest-card-btn {
  flex: 1;
  text-align: center;
  justify-content: center;
}

/* No Results State */
.dest-no-results {
  text-align: center;
  padding: 4rem 1rem;
  background: #ffffff;
  border-radius: 20px;
  border: 1px dashed #cbd5e1;
  margin-top: 2rem;
  grid-column: 1 / -1;
}

.dest-no-results__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.dest-no-results__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.dest-no-results__desc {
  font-size: 0.92rem;
  color: #64748b;
}

/* Quick Intel Modal */
.intel-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.intel-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
}

.intel-modal__dialog {
  position: relative;
  width: 90%;
  max-width: 720px;
  max-height: 85vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 2.25rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s ease;
  z-index: 10;
}

.intel-modal.is-open .intel-modal__dialog {
  transform: translateY(0) scale(1);
}

.intel-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  transition: all 0.2s ease;
}

.intel-modal__close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.intel-modal__header {
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

.intel-modal__eyebrow {
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
  display: block;
}

.intel-modal__title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: #0f172a;
}

.intel-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: #f8fafc;
  border-radius: 14px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  border: 1px solid #e2e8f0;
}

@media (max-width: 600px) {
  .intel-modal__grid {
    grid-template-columns: 1fr;
  }
}

.intel-data-box {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.intel-data-box__label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
}

.intel-data-box__val {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
}

.intel-modal__section {
  margin-bottom: 1.5rem;
}

.intel-modal__sec-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.intel-modal__text {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.65;
}

.intel-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.intel-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #1e293b;
  font-weight: 500;
}

.intel-highlight-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.intel-gear-box {
  background: #fffbe6;
  border: 1px solid #ffe58f;
  border-radius: 12px;
  padding: 1rem;
  font-size: 0.88rem;
  color: #855900;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

/* Seasonal Guide Matrix */
.season-matrix-section {
  background: #f8fafc;
  padding: 5rem 0;
}

.season-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.season-tab-btn {
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #475569;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.season-tab-btn.is-active,
.season-tab-btn:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 6px 18px rgba(15, 82, 87, 0.2);
}

.season-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .season-panel-grid {
    grid-template-columns: 1fr;
  }
}

.season-info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.season-info-card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.season-info-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.season-info-card__desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
}

/* Region Comparison Table */
.table-responsive-wrapper {
  overflow-x: auto;
  margin-top: 2.25rem;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}

.dest-compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.88rem;
}

.dest-compare-table th {
  background: #0f5257;
  color: #ffffff;
  font-weight: 700;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-heading);
}

.dest-compare-table td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
}

.dest-compare-table tr:hover td {
  background: #f8fafc;
}

.diff-badge {
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
}

.diff--easy {
  background: #dcfce7;
  color: #15803d;
}

.diff--mod {
  background: #fef9c3;
  color: #a16207;
}

.diff--hard {
  background: #fee2e2;
  color: #b91c1c;
}

/* =====================================================================
   TREK PACKAGES DROPDOWN (Rich 2-Column Redesign)
   ===================================================================== */
.dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  width: 36rem;
  max-width: 90vw;
  background: var(--color-white);
  border-radius: var(--radius-lg, 0.75rem);
  box-shadow: 0 25px 70px -15px rgba(15, 82, 87, 0.22),
    0 8px 24px -6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(127, 179, 176, 0.25);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(-10px) scale(0.97);
  overflow: hidden;
  z-index: 1000;
}

/* Arrow Pointer for Dropdown */
.dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 2rem;
  width: 16px;
  height: 8px;
  background: #0F5257;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: 1;
}

/* Hover bridge to prevent gap */
.dropdown::after {
  content: '';
  position: absolute;
  top: -0.75rem;
  left: 0;
  right: 0;
  height: 0.75rem;
}

.navbar__nav-item:hover .dropdown,
.navbar__nav-item.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Dropdown Header */
.dropdown__header {
  background: linear-gradient(135deg, #0F5257 0%, #0a3a3d 100%);
  padding: 0.75rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown__header-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FCEEDF;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dropdown__header-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: #7FB3B0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.dropdown__header-link:hover {
  color: #ffffff;
}

/* Dropdown Grid */
.dropdown__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  padding: 0.85rem;
  background: #ffffff;
}

.dropdown__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.5rem;
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.8);
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown__item:hover {
  background: #ffffff;
  border-color: #7FB3B0;
  transform: translateX(3px);
  box-shadow: 0 4px 14px rgba(15, 82, 87, 0.1);
}

.dropdown__item-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.4rem;
  background: linear-gradient(135deg, rgba(15, 82, 87, 0.1), rgba(127, 179, 176, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.dropdown__item:hover .dropdown__item-icon {
  transform: scale(1.1) rotate(-3deg);
}

.dropdown__item-content {
  flex: 1;
  min-width: 0;
}

.dropdown__item-title {
  font-weight: 700;
  font-size: 0.82rem;
  color: #0F5257;
  line-height: 1.3;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}

.dropdown__item:hover .dropdown__item-title {
  color: #0d6b72;
}

.dropdown__item-meta {
  font-size: 0.68rem;
  color: #64748b;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Dropdown Footer Strip */
.dropdown__footer {
  background: #f1f5f9;
  padding: 0.6rem 1.15rem;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #475569;
}

.dropdown__footer-btn {
  font-weight: 700;
  color: #0F5257;
  text-decoration: none;
  transition: color 0.2s ease;
}

.dropdown__footer-btn:hover {
  color: #0d6b72;
}

/* =====================================================================
   GLASSMORPHIC HORIZONTAL COOKIE CONSENT BAR & PREFERENCES
   ===================================================================== */

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(24px) scale(0.98);
  max-width: 1160px;
  width: calc(100vw - 3rem);
  z-index: 99998;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}

.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(24px) scale(0.98);
  pointer-events: none;
}

.cookie-banner__inner {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(15, 82, 87, 0.16);
  border-radius: 18px;
  padding: 0.95rem 1.4rem;
  box-shadow: 0 20px 45px -10px rgba(15, 82, 87, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  position: relative;
  overflow: hidden;
  font-family: var(--font-body, 'Inter', sans-serif);
}

.cookie-banner__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0f5257, #10b981, #f59e0b);
}

/* Horizontal Main Row */
.cookie-banner__main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Content Left */
.cookie-banner__content {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1;
  min-width: 0;
}

.cookie-banner__icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.cookie-banner__text {
  flex: 1;
  min-width: 0;
}

.cookie-banner__title {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.15rem;
  line-height: 1.2;
}

.cookie-banner__desc {
  font-size: 0.8rem;
  color: #475569;
  line-height: 1.35;
  margin: 0;
}

.cookie-banner__link {
  color: #0f5257;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}

.cookie-banner__link:hover {
  color: #0d9488;
}

/* Actions Right */
.cookie-banner__actions-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.cookie-banner__close {
  background: transparent;
  border: none;
  padding: 0.35rem;
  color: #94a3b8;
  cursor: pointer;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  flex-shrink: 0;
}

.cookie-banner__close:hover {
  color: #0f172a;
  background: #f1f5f9;
}

/* Action Buttons */
.btn-cookie {
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.55rem 0.95rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-cookie--primary {
  background: linear-gradient(135deg, #0f5257 0%, #0d9488 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 82, 87, 0.2);
}

.btn-cookie--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15, 82, 87, 0.3);
}

.btn-cookie--secondary {
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #cbd5e1;
}

.btn-cookie--secondary:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.btn-cookie--ghost {
  background: transparent;
  color: #64748b;
  padding: 0.55rem 0.75rem;
}

.btn-cookie--ghost:hover {
  color: #0f5257;
  background: #f0fdfa;
}

/* Preferences Drawer Grid */
.cookie-prefs {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid #e2e8f0;
  animation: fadeInCookiePrefs 0.25s ease;
}

.cookie-prefs[hidden] {
  display: none;
}

.cookie-prefs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

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

.cookie-pref-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
}

.cookie-pref-info {
  display: flex;
  flex-direction: column;
}

.cookie-pref-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
}

.cookie-pref-desc {
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.35;
}

.cookie-pref-badge {
  font-size: 0.65rem;
  font-weight: 800;
  color: #065f46;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* Modern Toggle Switch */
.cookie-toggle-label {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 20px;
  flex-shrink: 0;
  cursor: pointer;
}

.cookie-toggle-input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background-color: #cbd5e1;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.cookie-toggle-input:checked + .cookie-toggle-slider {
  background-color: #0f5257;
}

.cookie-toggle-input:checked + .cookie-toggle-slider::before {
  transform: translateX(14px);
}

/* Responsive Stacking on Mobile/Tablet */
@media (max-width: 900px) {
  .cookie-banner__main-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }
  .cookie-banner__actions-wrap {
    justify-content: space-between;
  }
  .cookie-banner__actions {
    flex: 1;
    display: flex;
  }
  .cookie-banner__actions .btn-cookie {
    flex: 1;
  }
  .cookie-prefs__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cookie-banner {
    width: calc(100vw - 1.5rem);
    bottom: 0.75rem;
  }
  .cookie-banner__inner {
    padding: 0.9rem 1rem;
  }
  .cookie-banner__actions {
    flex-wrap: wrap;
  }
}

/* =====================================================================
   FLOATING WHATSAPP BUTTON & BADGE (BOTTOM LEFT)
   ===================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 99990;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
}

.floating-whatsapp__badge {
  background: #ffffff;
  color: #0f172a;
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0.45rem 0.95rem;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  letter-spacing: -0.01em;
  pointer-events: none;
  animation: floatBadgePulse 3s ease-in-out infinite;
}

.floating-whatsapp__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
  position: relative;
}

.floating-whatsapp:hover .floating-whatsapp__icon-wrap {
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6), 0 2px 8px rgba(0, 0, 0, 0.15);
}

@keyframes floatBadgePulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@media (max-width: 640px) {
  .floating-whatsapp {
    bottom: 1.25rem;
    left: 1.25rem;
  }
  .floating-whatsapp__badge {
    font-size: 0.78rem;
    padding: 0.35rem 0.75rem;
  }
  .floating-whatsapp__icon-wrap {
    width: 50px;
    height: 50px;
  }
  .floating-whatsapp__icon-wrap svg {
    width: 26px;
    height: 26px;
  }
}