/* --- LOCAL SELF-HOSTED FONTS --- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


/* --- DESIGN SYSTEM & VARIABLES --- */
:root {
  /* Colors */
  --primary-orange: #ed8b00;
  --accent-yellow: #fef991;
  --secondary-sky: #4195ef;
  --secondary-marine: #003087;

  --bg-orange-gradient: linear-gradient(185deg, #f79c13 0%, #ed8b00 50%, #d87900 100%);
  --bg-dark-marine: #001f5c;

  --text-dark: #121824;
  --text-light: #ffffff;
  --text-muted-dark: #4b5563;
  --text-muted-light: #d1d5db;

  --card-bg-light: #ffffff;
  --card-bg-dark: #00266f;

  --border-light: rgba(0, 48, 135, 0.1);
  --border-dark: rgba(255, 255, 255, 0.1);

  /* Fonts */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --max-width: 1200px;
  --navbar-height: 80px;
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & GLOBAL IMAGE GUARD --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

.prose-content img {
  max-width: 100% !important;
  height: auto !important;
  max-height: 440px !important;
  object-fit: cover !important;
  border-radius: 16px !important;
  margin: 1.5rem 0 !important;
  box-shadow: 0 8px 24px rgba(0, 31, 92, 0.08) !important;
  display: block !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-orange-gradient);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  line-height: 1.6;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* --- LAYOUT UTILITIES --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 6rem 0;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* --- HEADER & NAVIGATION --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  z-index: 1000;
  transition: var(--transition);
}

/* Header Background Rules: Transparent when unscrolled across all pages, White when scrolled */
.header:not(.scrolled) {
  background: transparent;
  box-shadow: none;
}

.header:not(.scrolled) .nav-link {
  color: #ffffff;
}

.header:not(.scrolled) .nav-toggle span {
  background: #ffffff;
}

.header.scrolled {
  background: var(--card-bg-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 70px;
}

.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 48px;
  width: auto;
  transition: var(--transition);
}

.header.scrolled .logo img {
  height: 48px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.drawer-logo-item {
  display: none !important;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-light);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.header.scrolled .nav-link {
  color: var(--secondary-marine);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-yellow);
  transition: var(--transition);
  transform: translateX(-50%);
}

.header.scrolled .nav-link::after {
  background: var(--primary-orange);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.nav-link.active {
  color: var(--accent-yellow) !important;
}

.header.scrolled .nav-link.active {
  color: var(--primary-orange) !important;
}

/* Nav Dropdown Styles */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-toggle {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  min-width: 150px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 0.5rem 0;
  list-style: none;
  z-index: 1002;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  border: 1px solid rgba(0, 48, 135, 0.08);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li {
  width: 100%;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  color: var(--secondary-marine) !important;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
  text-align: left;
}

.nav-dropdown-menu a:hover {
  background: rgba(237, 139, 0, 0.08);
  color: var(--primary-orange) !important;
}

.nav-dropdown-menu a.active {
  background: rgba(0, 48, 135, 0.05);
  color: var(--secondary-marine) !important;
  font-weight: 600;
}

/* Contact Button Nav Link */
.nav-btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-orange);
  color: var(--text-light) !important;
  padding: 0.55rem 1.25rem;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
}

.nav-btn-link:hover {
  background: var(--text-light);
  color: var(--primary-orange) !important;
  transform: translateY(-1px);
}

.header.scrolled .nav-btn-link {
  background: var(--secondary-marine);
  color: var(--text-light) !important;
}

.header.scrolled .nav-btn-link:hover {
  background: var(--primary-orange);
  color: var(--text-light) !important;
}

.nav-btn-link::after {
  display: none !important;
}

/* Mobile Nav Toggle — refined hamburger, always far right */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  width: 38px;
  height: 38px;
  z-index: 1001;
  position: relative;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease, width 0.3s ease;
  transform-origin: center;
}

.nav-toggle span:nth-child(1) {
  width: 24px;
}

.nav-toggle span:nth-child(2) {
  width: 18px;
}

.nav-toggle span:nth-child(3) {
  width: 24px;
}

.header.scrolled .nav-toggle span {
  background: var(--secondary-marine);
}

/* Hamburger → X when active */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  width: 24px;
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  width: 24px;
}

/* Full-page dim backdrop */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-backdrop.active {
  display: block;
  opacity: 1;
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  color: var(--text-light);
  /* Dark warm background while video initializes */
  background: #140e0a;
}

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

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
  z-index: 1;
  /* Smooth fade in once video frames are ready */
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.hero-video.is-ready {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(237, 139, 0, 0.3);
  /* Solid semi-transparent primary orange tint */
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 3.2vw, 1.15rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--accent-yellow);
  font-weight: 600;
  animation: fadeInUp 1s ease;
}

.hero-title {
  max-width: 800px;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-desc {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
  color: var(--text-muted-light);
  font-weight: 300;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: heroBounce 2s ease-in-out infinite;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-scroll-indicator {
    bottom: 4rem;
  }
}

.hero-scroll-indicator svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary-orange);
}

@keyframes heroBounce {

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

  50% {
    transform: translateX(-50%) translateY(9px);
  }
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 30px;
  transition: var(--transition);
  cursor: pointer;
  gap: 0.5rem;
  border: none;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--secondary-marine);
  color: var(--accent-yellow);
  box-shadow: 0 4px 15px rgba(0, 48, 135, 0.2);
}

.btn-primary:hover {
  background: var(--accent-yellow);
  color: var(--secondary-marine);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.btn-outline:hover {
  background: var(--text-light);
  color: var(--primary-orange);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--text-dark);
  color: var(--text-light);
}

.btn-dark:hover {
  background: var(--secondary-marine);
  transform: translateY(-2px);
}

/* --- CARDS & BLOCKS --- */
.section-title {
  text-align: center;
  margin-bottom: 4rem;
  color: var(--text-light);
}

.section-title h2 {
  color: var(--text-light);
  font-weight: 800;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 60px;
  height: 4px;
  background: var(--secondary-marine);
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-title p {
  color: var(--accent-yellow);
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.card {
  background: var(--card-bg-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-img-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #f1f5f9;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

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

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-tag {
  align-self: flex-start;
  background: rgba(237, 139, 0, 0.1);
  color: var(--primary-orange);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
}

.card-title {
  color: var(--secondary-marine);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card-desc {
  color: var(--text-muted-dark);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--secondary-marine);
}

/* --- DESTINATIONS SECTION (HOME) --- */
.destinations {
  background: var(--bg-orange-gradient);
}

/* --- LATEST ADVENTURES (HOME) --- */
.adventures-social {
  background: var(--bg-dark-marine);
  color: var(--text-light);
}

.adventures-social .section-title h2 {
  color: var(--text-light);
}

.adventures-social .section-title h2::after {
  background: var(--primary-orange);
}

.social-embed-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.yt-cards-carousel-container {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  touch-action: pan-x pan-y;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 1.5rem;
  padding: 0.5rem 0.25rem 1.5rem;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

.yt-cards-carousel-container::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

.yt-video-card {
  flex: 0 0 85vw;
  max-width: 440px;
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.yt-video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.15);
}

/* Top Card Header: Profile & Badge */
.yt-card-top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.yt-card-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.yt-profile-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-orange);
  flex-shrink: 0;
}

.yt-profile-meta {
  display: flex;
  flex-direction: column;
}

.yt-profile-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--secondary-marine);
  line-height: 1.2;
}

.yt-profile-sub {
  font-size: 0.72rem;
  color: var(--text-muted-dark);
}

.yt-card-badge-pill {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-orange);
  background: rgba(255, 149, 0, 0.1);
  border: 1px solid rgba(255, 149, 0, 0.25);
  padding: 0.35rem 0.65rem;
  border-radius: 20px;
  white-space: nowrap;
}

/* Middle Video Box */
.yt-custom-player-box {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  background: #000;
  cursor: pointer;
  overflow: hidden;
}

.yt-custom-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.yt-video-card:hover .yt-custom-thumb {
  transform: scale(1.04);
}

.yt-custom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}

.yt-custom-player-box:hover .yt-custom-overlay {
  background: rgba(0, 0, 0, 0.35);
}

.yt-play-btn-lg {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary-orange);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 149, 0, 0.45);
  transition: transform 0.25s ease, background 0.25s ease;
  padding-left: 3px;
}

.yt-custom-player-box:hover .yt-play-btn-lg {
  transform: scale(1.12);
  background: #e0920a;
}

.yt-custom-player-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Bottom Card Content: Title & Stats */
.yt-video-card-body {
  padding: 1.25rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
  background: #ffffff;
}

.yt-card-title {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--secondary-marine);
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yt-card-meta {
  font-size: 0.82rem;
  color: var(--text-muted-dark);
  margin-top: auto;
}

.yt-thumb-date {
  font-size: 0.7rem;
  color: var(--text-muted-light);
}

.fb-placeholder {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
  padding: 2rem;
}

.social-cta-box {
  background: var(--primary-orange);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  color: var(--text-light);
}

.social-cta-box h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.social-list {
  list-style: none;
  margin: 1.5rem 0;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

/* --- GALLERY SECTION (THROUGH MY LENS) --- */
.lens-gallery {
  background: var(--bg-orange-gradient);
  overflow-y: hidden;
}

.gallery-grid {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 1.25rem;
  padding: 0.5rem 0.25rem 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-grid::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

.gallery-item {
  flex: 0 0 78vw;
  max-width: 320px;
  aspect-ratio: 4/5;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-light);
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 48, 135, 0.8);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--text-light);
  transition: var(--transition);
  transform: translateY(10px);
}

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

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

/* --- LIGHTBOX IMAGE VIEWER MODAL --- */
.img-viewer-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
}

.img-viewer-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.img-viewer-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 20, 45, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.img-viewer-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  max-height: 88dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.img-viewer-modal.active .img-viewer-content {
  transform: scale(1);
}

.img-viewer-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 1.8rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.img-viewer-close:hover {
  background: var(--primary-orange);
  transform: scale(1.1);
}

.img-viewer-img {
  max-width: 100%;
  max-height: 72dvh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.img-viewer-caption {
  margin-top: 1rem;
  text-align: center;
  color: #fff;
}

.img-viewer-caption h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  color: #fff;
}

.img-viewer-caption p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* --- BRAND COLLABORATIONS --- */
.brands-section {
  background: linear-gradient(180deg, #fcf2e4 0%, #ffffff 100%);
  padding: 5.5rem 0;
}

.brands-intro {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.brands-intro .section-tagline {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--primary-orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brands-title {
  font-family: var(--font-display);
  color: var(--secondary-marine);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brands-subtitle {
  color: var(--text-muted-dark);
  font-size: 1rem;
  line-height: 1.7;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.25rem;
  align-items: center;
}

.brand-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  padding: 1.2rem 1rem;
  border: 1px solid rgba(0, 48, 135, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.brand-logo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.brand-logo-card img {
  display: block;
  width: 100%;
  max-width: 140px;
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.85;
  transition: var(--transition);
}

.brand-logo-card:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.brand-logo-card--text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--secondary-marine);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-logo-card--text span {
  display: block;
  text-align: center;
}

@media (max-width: 640px) {
  .brands-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-logo-card {
    min-height: 96px;
  }
}

/* --- FEATURED VIDEOS --- */
.featured-videos {
  background: var(--bg-dark-marine);
  color: var(--text-light);
}

.featured-videos .section-title h2::after {
  background: var(--primary-orange);
}

.video-featured-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.video-main {
  background: #000;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid var(--border-dark);
}

.video-main iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.video-thumb-card {
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  padding: 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.video-thumb-card:hover,
.video-thumb-card.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-orange);
}

.video-thumb-img {
  width: 120px;
  aspect-ratio: 16/9;
  border-radius: 4px;
  object-fit: cover;
}

.video-thumb-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-thumb-title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: var(--bg-orange-gradient);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-quote {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--secondary-sky);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonial-info h4 {
  color: var(--secondary-marine);
  font-size: 1rem;
}

.testimonial-info p {
  color: var(--text-muted-dark);
  font-size: 0.85rem;
}

/* --- CONTACT SECTION (HOME SUMMARY) --- */
.contact-section {
  background: var(--bg-dark-marine);
  color: var(--text-light);
}

.contact-section .section-title h2::after {
  background: var(--primary-orange);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-panel h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-info-panel p {
  color: var(--text-muted-light);
  margin-bottom: 2rem;
}

.contact-details {
  list-style: none;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

/* Contact Form */
.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  padding: 3rem;
  border-radius: var(--border-radius);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--accent-yellow);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  color: var(--text-light);
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-orange);
  background: rgba(255, 255, 255, 0.08);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* --- INNER PAGE STYLES --- */
.page-hero {
  position: relative;
  padding: 10rem 0 6rem;
  background: var(--bg-dark-marine);
  color: var(--text-light);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.2rem;
  color: var(--accent-yellow);
  max-width: 600px;
  margin: 0 auto;
}

.white-bg-section {
  background: #ffffff;
  color: var(--text-dark);
}

.white-bg-section .section-title h2 {
  color: var(--secondary-marine);
}

.white-bg-section .section-title h2::after {
  background: var(--primary-orange);
}

.white-bg-section .section-title p {
  color: var(--primary-orange);
}

.explored-regions .section-title h2 {
  color: var(--secondary-marine);
}

.explored-regions .section-title h2::after {
  background: var(--primary-orange);
}

.explored-regions .section-title p {
  color: var(--primary-orange);
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.mission-section {
  background: var(--bg-dark-marine);
  color: var(--text-light);
  padding: 5rem 0;
}

.mission-section .section-title p {
  color: var(--primary-orange);
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* --- FOOTER --- */
.footer {
  background: #000c24;
  color: var(--text-light);
  padding: 5rem 0 2rem;
  margin-top: auto;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 1.5rem;
}

.footer-about p {
  color: var(--text-muted-light);
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-links-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--primary-orange);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-muted-light);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary-orange);
  padding-left: 5px;
}

.footer-newsletter h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--primary-orange);
}

.footer-newsletter p {
  color: var(--text-muted-light);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form .form-control {
  border-radius: 30px;
}

.newsletter-form .btn {
  border-radius: 30px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted-light);
}

/* --- INTERACTIVE TRAVEL LOG & GALLERY --- */
.exploration-gallery .section-title {
  margin-bottom: 0.75rem;
}

.exploration-gallery .section-title h2 {
  color: #ffffff !important;
  margin-bottom: 0;
  line-height: 1.15;
}

.exploration-gallery .section-title h2::after {
  background: #ffffff !important;
}

.exploration-gallery .section-title p {
  color: #ffffff !important;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

.country-filter-container {
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.flag-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .flag-filter-bar {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    touch-action: pan-x;
    padding: 0.6rem 1rem 0.75rem 1rem;
    margin: 0.25rem -1rem 0 -1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .flag-filter-bar::-webkit-scrollbar {
    display: none;
  }

  .flag-btn {
    flex-shrink: 0;
    scroll-snap-align: start;
    white-space: nowrap;
    box-shadow: none;
  }

  .flag-btn.active {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    transform: none;
  }
}

.flag-btn {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  padding: 0.55rem 1.15rem;
  border-radius: 30px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--secondary-marine);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.flag-btn:hover {
  border-color: var(--secondary-marine);
  transform: translateY(-1px);
}

.flag-btn.active {
  background: var(--secondary-marine, #001F5C);
  color: #ffffff !important;
  border-color: var(--secondary-marine, #001F5C);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  font-weight: 800;
}

.filterable-about-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  min-height: 250px;
}

.about-gallery-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition);
}

.about-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.about-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 31, 92, 0.9) 0%, rgba(0, 31, 92, 0.2) 70%, transparent 100%);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

/* Hover effects only on desktop/mouse devices — disabled on mobile/touch */
@media (hover: hover) and (pointer: fine) {
  .about-gallery-card:hover img {
    transform: scale(1.05);
  }

  .about-gallery-card:hover .about-gallery-overlay {
    opacity: 1;
  }
}

.about-gallery-overlay h3,
.about-gallery-overlay h4 {
  color: #ffffff !important;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.about-gallery-overlay p {
  color: #e2e8f0 !important;
  font-size: 0.85rem;
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.about-gallery-country-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #ffffff;
  color: #001f5c;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  z-index: 2;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-travel-swipe-hint {
  display: none;
}

@media (max-width: 768px) {
  .filterable-about-gallery {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 0.5rem 0.5rem 1rem;
    margin-top: 1rem;
    scrollbar-width: none;
  }

  .filterable-about-gallery::-webkit-scrollbar {
    display: none;
  }

  .about-gallery-card {
    flex: 0 0 88%;
    max-width: 380px;
    scroll-snap-align: start;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  }

  .about-gallery-overlay {
    display: none !important;
    opacity: 0 !important;
  }

  .mobile-travel-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.5rem;
  }
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* TRAVEL LOG LIGHTBOX MODAL WITH SMOOTH OPEN & CLOSE TRANSITIONS */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 15, 25, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.26s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.26s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-content-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  max-width: 720px;
  width: 100%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  transform: scale(0.92) translateY(14px);
  opacity: 0;
  transition: transform 0.26s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.26s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-backdrop.active .lightbox-content-card {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.lightbox-img-viewport {
  max-height: 480px;
  overflow: hidden;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-viewport img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  display: block;
}

.lightbox-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close-btn:hover {
  background: var(--primary-orange, #FF6B00);
  transform: scale(1.1);
}

.lightbox-body {
  padding: 1.5rem;
}

.lightbox-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.lightbox-tag {
  background: rgba(237, 139, 0, 0.12);
  color: var(--primary-orange, #FF6B00);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
}

.lightbox-sub {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 600;
}

.lightbox-h3 {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 1.5rem;
  color: var(--secondary-marine, #001F5C);
  margin: 0;
  font-weight: 800;
}

@media (max-width: 600px) {
  .lightbox-content-card {
    border-radius: 20px;
  }
  .lightbox-img-viewport {
    max-height: 360px;
  }
  .lightbox-body {
    padding: 1.2rem;
  }
  .lightbox-h3 {
    font-size: 1.25rem;
  }
}

/* --- MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .social-embed-grid {
    grid-template-columns: 1fr;
  }

  .video-featured-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {

  /* Mobile Hero Description Sizing */
  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 90%;
    margin-bottom: 2rem;
  }

  /* Show hamburger */
  .nav-toggle {
    display: flex;
  }

  /* ── Right-side orange drawer using transform (bulletproof) ── */
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 72vw;
    max-width: 320px;
    height: 100dvh;
    background: var(--primary-orange);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 0 0 3rem;
    z-index: 1000;
    transform: translateX(100%);
    /* hidden off-screen right */
    transition: transform 0.38s cubic-bezier(0.76, 0, 0.24, 1);
    overflow-y: auto;
    list-style: none;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.2);
  }

  .nav-menu.active {
    transform: translateX(0);
    /* slides in from right */
  }

  /* Clean background preview on the left 28% when drawer is open */
  .header.drawer-open {
    background: transparent !important;
    box-shadow: none !important;
  }

  .header.drawer-open .logo {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  /* Top logo inside mobile drawer aligned perfectly with the X toggle */
  .drawer-logo-item {
    width: 100%;
    height: var(--navbar-height);
    min-height: var(--navbar-height);
    flex-shrink: 0;
    display: flex !important;
    justify-content: flex-start;
    align-items: center;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .header.scrolled .drawer-logo-item {
    height: 70px;
    min-height: 70px;
  }

  .nav-menu.active .drawer-logo-item {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.05s;
  }

  .logo img,
  .header.scrolled .logo img {
    height: 48px;
    max-height: 48px;
    width: auto;
  }

  .drawer-logo-item img,
  .header.scrolled .drawer-logo-item img {
    height: 52px;
    width: auto;
    max-width: 190px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
    transition: var(--transition);
  }

  /* Each nav link — minimal, large, white */
  .nav-link {
    display: block;
    width: 100%;
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.75rem 2.2rem;
    text-transform: uppercase;
    border: none;
    background: none;
    opacity: 0;
    transform: translateX(20px);
    transition: color 0.2s ease,
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  /* Reveal links when drawer opens (staggered) */
  .nav-menu.active .nav-link {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-menu.active li:nth-child(1) .nav-link {
    transition-delay: 0.05s;
  }

  .nav-menu.active li:nth-child(2) .nav-link {
    transition-delay: 0.10s;
  }

  .nav-menu.active li:nth-child(3) .nav-link {
    transition-delay: 0.15s;
  }

  .nav-menu.active li:nth-child(4) .nav-link {
    transition-delay: 0.20s;
  }

  .nav-menu.active li:nth-child(5) .nav-link {
    transition-delay: 0.25s;
  }

  .nav-menu.active li:nth-child(6) .nav-link {
    transition-delay: 0.30s;
  }

  .nav-menu.active li:nth-child(7) .nav-link {
    transition-delay: 0.35s;
  }

  .nav-menu.active li:nth-child(8) .nav-link {
    transition-delay: 0.40s;
  }

  .nav-menu.active li:nth-child(9) .nav-link {
    transition-delay: 0.45s;
  }

  .nav-menu.active li:nth-child(10) .nav-link {
    transition-delay: 0.50s;
  }

  .nav-menu.active li:nth-child(11) .nav-link {
    transition-delay: 0.55s;
  }

  .nav-menu.active li:nth-child(12) .nav-link {
    transition-delay: 0.60s;
  }

  .nav-link:hover {
    color: #fff !important;
  }

  /* Active page — Clean Accent Yellow typography */
  .nav-menu .nav-link.active,
  .header.scrolled .nav-menu .nav-link.active {
    color: var(--accent-yellow) !important;
    font-weight: 800;
  }

  .nav-menu .nav-link.active::after,
  .header.scrolled .nav-menu .nav-link.active::after {
    display: none !important;
    content: none !important;
  }

  .destinations .grid {
    display: flex;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 1.25rem;
    /* extra padding gives shadow room to breathe */
    padding: 1rem 1.5rem 1.5rem;
    /* negative margin compensates so section size stays the same */
    margin: -1rem -1.5rem -0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .destinations .grid::-webkit-scrollbar {
    display: none;
  }

  .destinations .grid .card {
    flex: 0 0 82vw;
    max-width: 320px;
    scroll-snap-align: center;
    /* shadow is visible now that the container has padding */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
  }

  /* YouTube 3-Video Mobile Carousel */
  .yt-playlist-cards {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .yt-playlist-cards::-webkit-scrollbar {
    display: none;
  }

  .yt-thumb-card {
    flex: 0 0 78vw;
    max-width: 280px;
    scroll-snap-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* =============================================================
   SOCIAL STREAM HUB
   ============================================================= */
.social-hub-profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--card-bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 28px 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  margin-bottom: 20px;
}

.social-hub-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-hub-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--primary-orange);
}

.social-hub-identity h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: var(--secondary-marine);
}

.social-hub-identity p {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  margin: 0 0 8px 0;
}

.social-hub-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(237, 139, 0, 0.08);
  color: var(--primary-orange);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(237, 139, 0, 0.2);
}

.social-hub-total {
  text-align: right;
  border-left: 2px dashed var(--border-light);
  padding-left: 28px;
  min-width: 140px;
}

.social-hub-total-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--primary-orange);
}

.social-hub-total-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted-dark);
}

.social-meta-header {
  font-size: 0.8rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 16px;
  padding: 0 4px;
}

.social-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.social-platform-card {
  background: var(--card-bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 22px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 170px;
}

.social-platform-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.social-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.social-platform-name {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted-dark);
}

.social-brand-icon {
  width: 22px;
  height: 22px;
  transition: transform 0.2s ease;
}

.social-platform-card:hover .social-brand-icon {
  transform: scale(1.1);
}

.social-counter-val {
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 4px;
}

.social-counter-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted-dark);
}

.social-card-btn {
  margin-top: 16px;
  padding: 8px 14px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--border-light);
  border-radius: 30px;
  background: transparent;
  color: var(--secondary-marine);
  transition: all 0.2s ease;
}

/* Platform brand colors */
.fb-card .social-brand-icon {
  fill: #1877f2;
}

.fb-card .social-counter-val {
  color: #1877f2;
}

.fb-card:hover {
  border-color: rgba(24, 119, 242, 0.3);
}

.fb-card:hover .social-card-btn {
  background: #1877f2;
  color: #fff;
  border-color: #1877f2;
}

.tt-card .social-brand-icon {
  fill: #010101;
}

.tt-card .social-counter-val {
  color: var(--secondary-marine);
}

.tt-card:hover {
  border-color: rgba(1, 1, 1, 0.2);
}

.tt-card:hover .social-card-btn {
  background: #010101;
  color: #fff;
  border-color: #010101;
}

.yt-card .social-brand-icon {
  fill: #ff0000;
}

.yt-card .social-counter-val {
  color: #ff0000;
}

.yt-card:hover {
  border-color: rgba(255, 0, 0, 0.3);
}

.yt-card:hover .social-card-btn {
  background: #ff0000;
  color: #fff;
  border-color: #ff0000;
}

.ig-card .social-brand-icon {
  fill: #e1306c;
}

.ig-card .social-counter-val {
  color: #e1306c;
}

.ig-card:hover {
  border-color: rgba(225, 48, 108, 0.3);
}

.ig-card:hover .social-card-btn {
  background: #e1306c;
  color: #fff;
  border-color: #e1306c;
}

/* =============================================================
   CONTACT & COLLABORATION HUB
   ============================================================= */
.collab-card {
  background: var(--card-bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 36px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  margin-bottom: 24px;
}

.collab-header-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  margin-bottom: 2rem;
  width: 100%;
}

.collab-heading {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary-marine);
  margin: 0 0 6px 0;
  text-align: center;
  width: 100%;
}

.collab-subtext {
  font-size: 1.05rem;
  color: var(--text-muted-dark);
  margin: 0 auto;
  line-height: 1.6;
  text-align: center;
  max-width: 580px;
}

.collab-response-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(237, 139, 0, 0.08);
  color: var(--primary-orange);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(237, 139, 0, 0.25);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.collab-email-card {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.collab-email-card-centered {
  text-align: center;
}

.collab-email-card-centered .collab-email-header {
  justify-content: center;
}

.collab-email-card-centered .collab-email-body {
  justify-content: center;
}

.collab-email-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.collab-email-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  letter-spacing: 0.08em;
}

.collab-email-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.collab-email-address {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.95rem, 3.5vw, 1.15rem);
  color: var(--secondary-marine);
  text-decoration: none;
  word-break: keep-all;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.collab-email-address:hover {
  color: var(--primary-orange);
}

.collab-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary-marine);
  color: #ffffff;
  border: none;
  padding: 0.65rem 1.35rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.collab-copy-btn:hover {
  background: var(--primary-orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(237, 139, 0, 0.3);
}

@media (max-width: 600px) {
  .collab-email-card {
    padding: 1.1rem;
  }

  .collab-email-header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
  }

  .collab-email-body {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    text-align: center;
  }

  .collab-email-address {
    font-size: 0.9rem;
    word-break: break-word;
    white-space: normal;
    text-align: center;
  }

  .collab-copy-btn {
    width: 100%;
    justify-content: center;
    padding: 0.7rem;
  }
}

.collab-trigger-icon {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Expandable accordion */
.collab-expandable {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.25s ease;
}

.collab-card.is-expanded .collab-expandable {
  opacity: 1;
  margin-top: 28px;
}

.collab-card.is-expanded .collab-trigger-icon {
  transform: rotate(180deg);
}

.collab-card.is-expanded .collab-action-btn:last-child {
  background: var(--secondary-marine);
  color: #fff;
  border-color: var(--secondary-marine);
}

.collab-input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 4px;
}

.collab-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.collab-field label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--secondary-marine);
}

.collab-field input,
.collab-field textarea {
  background: rgba(0, 48, 135, 0.01);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.collab-field input:focus,
.collab-field textarea:focus {
  border-color: var(--primary-orange);
  background: #fff;
  box-shadow: 0 4px 12px rgba(237, 139, 0, 0.08);
}

.collab-field input.is-invalid,
.collab-field textarea.is-invalid {
  border-color: #ef4444 !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.1) !important;
}

.collab-error {
  font-size: 0.7rem;
  font-weight: 700;
  color: #ef4444;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: none;
  margin-top: 4px;
}

.collab-field input.is-invalid~.collab-error,
.collab-field textarea.is-invalid~.collab-error {
  display: block;
}

/* Instant Connect inside Card */
.collab-instant-section {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--border-light);
}

.collab-instant-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 16px 2px;
  color: var(--secondary-marine);
}

.collab-instant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.collab-connect-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  background: var(--card-bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 18px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  min-height: 68px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.collab-connect-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.collab-connect-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--secondary-marine);
}

.collab-social-icon {
  width: 26px;
  height: 26px;
  transition: transform 0.2s ease;
}

.collab-connect-card:hover .collab-social-icon {
  transform: scale(1.1) rotate(-3deg);
}

.collab-connect-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  background: transparent;
  color: var(--secondary-marine);
  transition: all 0.2s ease;
}

.wa-connect .collab-social-icon {
  fill: #25d366;
}

.wa-connect:hover {
  border-color: rgba(37, 211, 102, 0.3);
}

.wa-connect:hover .collab-connect-inner {
  color: #25d366;
}

.wa-connect:hover .collab-connect-pill {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.tg-connect .collab-social-icon {
  fill: #229ed9;
}

.tg-connect:hover {
  border-color: rgba(34, 158, 217, 0.3);
}

.tg-connect:hover .collab-connect-inner {
  color: #229ed9;
}

.tg-connect:hover .collab-connect-pill {
  background: #229ed9;
  color: #fff;
  border-color: #229ed9;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.35s ease;
  pointer-events: auto;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.72rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.toast-success-icon {
  background: #22c55e;
}

.toast-info-icon {
  background: #ef4444;
}

.toast-msg {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* Responsive: Social Hub & Collab Hub */
@media (max-width: 900px) {
  .social-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  /* Social Stream Hub Mobile Card: Profile on top, stats clean below */
  .social-hub-profile {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 12px;
    text-align: left;
  }

  .social-hub-meta {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .social-hub-avatar {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .social-hub-identity {
    flex: 1;
  }

  .social-hub-identity h3 {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2px;
  }

  .social-hub-identity p {
    font-size: 0.8rem;
    line-height: 1.2;
    margin-bottom: 6px;
  }

  .social-hub-badge {
    font-size: 0.65rem;
    padding: 3px 10px;
    display: inline-block;
  }

  .social-hub-total {
    border-left: none;
    border-top: 1px dashed var(--border-light);
    padding-left: 0;
    padding-top: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .social-hub-total-num {
    font-size: 1.4rem;
    margin-bottom: 0;
  }

  .social-hub-total-label {
    font-size: 0.68rem;
  }

  /* Compact 2x2 grid for the 4 social platforms */
  .social-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .social-platform-card {
    padding: 14px 12px;
    min-height: 110px;
  }

  .social-card-top {
    margin-bottom: 8px;
  }

  .social-platform-name {
    font-size: 0.7rem;
  }

  .social-brand-icon {
    width: 18px;
    height: 18px;
  }

  .social-counter-val {
    font-size: 1.35rem;
    margin-bottom: 2px;
  }

  .social-counter-lbl {
    font-size: 0.68rem;
  }

  .social-card-btn {
    padding: 6px;
    font-size: 0.68rem;
    margin-top: 8px;
  }

  .collab-input-grid {
    grid-template-columns: 1fr;
  }

  .collab-email-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 16px 14px;
  }

  .collab-email-actions {
    width: 100%;
  }

  .collab-email-actions .collab-action-btn {
    width: 100%;
  }

  .collab-instant-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .collab-connect-card {
    padding: 14px 16px;
    min-height: 56px;
  }

  .collab-connect-inner {
    font-size: 0.95rem;
    gap: 10px;
  }

  .collab-social-icon {
    width: 22px;
    height: 22px;
  }

  .collab-connect-pill {
    padding: 6px 12px;
    font-size: 0.72rem;
  }

  .collab-header-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .social-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .adventure-stats-row .container {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

@media (max-width: 768px) {
  .about-brief .container {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .charity-trek .container {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .charity-trek .container div:last-child {
    order: -1;
  }

  .adventure-stats-row .container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2.5rem !important;
  }
}

/* ==========================================================================
   NEW HOMEPAGE CONTENT SECTIONS STYLE
   ========================================================================== */

/* 1. Active Status Bar */
.active-status-bar {
  background: rgba(237, 139, 0, 0.08);
  border-bottom: 1px solid rgba(237, 139, 0, 0.15);
  padding: 1.25rem 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.status-bar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-orange);
  color: var(--text-light);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ade80;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
    box-shadow: 0 0 12px #4ade80;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}

.status-message {
  font-size: 0.95rem;
  color: var(--secondary-marine);
  flex-grow: 1;
  line-height: 1.5;
}

.status-message strong {
  font-family: var(--font-display);
  color: var(--primary-orange);
}

.status-btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary-orange);
  border: 1px solid var(--primary-orange);
  padding: 0.45rem 1rem;
  border-radius: 20px;
  background: transparent;
  white-space: nowrap;
}

.status-btn:hover {
  background: var(--primary-orange);
  color: var(--text-light);
}

@media (max-width: 768px) {
  .status-bar-container {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }

  .status-badge {
    align-self: center;
  }
}

/* 2. Eco-Tourism & Conservation Section */
.conservation-impact {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
}

.impact-grid-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-tagline {
  color: var(--primary-orange);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.5rem;
}

.impact-title {
  color: var(--secondary-marine);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.impact-intro {
  color: var(--text-muted-dark);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.impact-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.pillar-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.pillar-icon {
  font-size: 1.8rem;
  line-height: 1;
  background: rgba(0, 48, 135, 0.05);
  padding: 0.6rem;
  border-radius: 12px;
  flex-shrink: 0;
}

.pillar-text h3 {
  font-size: 1.15rem;
  color: var(--secondary-marine);
  margin-bottom: 0.35rem;
}

.pillar-text p {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

.impact-image-showcase {
  position: relative;
}

.impact-img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 40px rgba(0, 48, 135, 0.08);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.impact-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--bg-dark-marine);
  color: var(--text-light);
  padding: 1.25rem 1.75rem;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.impact-badge h4 {
  color: var(--accent-yellow);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.impact-badge p {
  font-size: 0.85rem;
  color: var(--text-muted-light);
}

@media (max-width: 768px) {
  .yt-cards-carousel-container {
    gap: 1rem;
    padding: 0.5rem 0.25rem 1.75rem;
  }

  .yt-video-card {
    flex: 0 0 76vw !important;
    max-width: 330px;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14) !important;
  }

  .yt-card-top-header {
    padding: 0.85rem 1rem;
  }

  .yt-profile-avatar {
    width: 34px;
    height: 34px;
  }

  .yt-profile-name {
    font-size: 0.9rem;
  }

  .yt-profile-sub {
    font-size: 0.72rem;
  }

  .yt-card-badge-pill {
    font-size: 0.68rem;
    padding: 0.25rem 0.6rem;
  }

  .yt-custom-player-box {
    aspect-ratio: 16/9;
  }

  .yt-play-btn-lg {
    width: 48px;
    height: 48px;
  }

  .yt-play-btn-lg svg {
    width: 22px;
    height: 22px;
  }

  .yt-video-card-body {
    padding: 1rem 1.1rem 1.15rem;
  }

  .yt-card-title {
    font-size: 0.96rem;
    line-height: 1.4;
    margin-bottom: 0.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .yt-card-meta {
    font-size: 0.78rem;
  }
}

@media (max-width: 992px) {
  .impact-grid-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .impact-image-showcase {
    max-width: 600px;
    margin: 0 auto;
  }
}

/* 3. Adventure Resources & Guides Teaser */
.resources-teaser-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 48, 135, 0.04);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  grid-template-areas:
    "visual content"
    "visual expand";
  column-gap: 4rem;
  row-gap: 1.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.teaser-visual {
  grid-area: visual;
  display: flex;
  justify-content: center;
  align-items: center;
}

.teaser-content {
  grid-area: content;
}

.teaser-expand-wrapper {
  grid-area: expand;
}

.phone-mockup-wrapper {
  background: #090d16;
  padding: 8px;
  border-radius: 36px;
  box-shadow: 0 25px 60px rgba(0, 48, 135, 0.22), 0 10px 25px rgba(0, 0, 0, 0.2);
  width: 220px;
  border: 3px solid #475569;
  position: relative;
  margin: 0 auto;
}

/* OPPO Centered Punch-Hole Front Camera Lens */
.oppo-camera-punchhole {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: #000000;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #1e293b;
  box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.2);
}

.oppo-camera-lens {
  width: 5px;
  height: 5px;
  background: #0f172a;
  border-radius: 50%;
}

/* Smartphone Hardware Side Buttons */
.phone-power-btn {
  position: absolute;
  right: -5px;
  top: 90px;
  width: 3px;
  height: 40px;
  background: #334155;
  border-radius: 0 4px 4px 0;
}

.phone-volume-btn {
  position: absolute;
  left: -5px;
  top: 80px;
  width: 3px;
  height: 30px;
  background: #334155;
  border-radius: 4px 0 0 4px;
  box-shadow: 0 45px 0 #334155;
}

.app-ui-frame {
  background: #f8fafc;
  border-radius: 28px;
  overflow: hidden;
  height: 440px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.app-header-bar {
  background: var(--primary-orange);
  color: #fff;
  padding: 2.2rem 0.85rem 0.65rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-align: center;
}

.app-mini-pill {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
  padding: 0.1rem 0.55rem;
  border-radius: 20px;
}

.app-dest-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #f8fafc;
  white-space: nowrap;
}

.app-body {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex-grow: 1;
}

.app-map-placeholder {
  background: #f1f5f9;
  border-radius: 14px;
  flex-grow: 1;
  position: relative;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  min-height: 140px;
}

.map-top-bar {
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  display: flex;
  justify-content: space-between;
  z-index: 5;
}

.map-badge-offline {
  background: #ffffff;
  color: #0f172a;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.map-contour-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.6;
}

.map-route-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.trail-pin {
  position: absolute;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 4;
}

.pin-label {
  font-size: 0.5rem;
  background: rgba(15, 23, 42, 0.8);
  color: #fff;
  padding: 0 0.25rem;
  border-radius: 4px;
  font-weight: 600;
}

/* Quick Action App Grid */
.app-action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.app-quick-btn {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.4rem 0.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.quick-icon {
  font-size: 0.85rem;
}

.quick-title {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--secondary-marine);
}

.app-map-placeholder {
  background: #e2e8f0;
  border-radius: 12px;
  flex-grow: 1;
  position: relative;
  overflow: hidden;
  border: 1px solid #cbd5e1;
}

.trail-line {
  position: absolute;
  width: 80%;
  height: 60%;
  top: 20%;
  left: 10%;
  border: 3px dashed var(--primary-orange);
  border-radius: 40%;
}

.trail-pin {
  position: absolute;
  font-size: 1.2rem;
  animation: pinBounce 2s infinite ease-in-out;
}

@keyframes pinBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.app-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  background: #ffffff;
  padding: 0.75rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.app-stats span {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted-dark);
}

.app-stats strong {
  font-size: 0.8rem;
  color: var(--secondary-marine);
}

.coming-soon-pill {
  display: inline-block;
  background: rgba(237, 139, 0, 0.1);
  color: var(--primary-orange);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.teaser-content h3 {
  color: var(--secondary-marine);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.teaser-content p {
  color: var(--text-muted-dark);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

/* Teaser Accordion Expand / Collapse (Mobile Only) */
.teaser-expand-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.btn-teaser-toggle {
  display: none;
  /* Hidden on Desktop */
}

.teaser-expandable-body {
  width: 100%;
  max-height: none;
  opacity: 1;
  overflow: visible;
}

.teaser-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0.5rem 0 1.5rem 0;
}

.teaser-features li {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  position: relative;
  line-height: 1.6;
}

.teaser-action-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px dashed var(--border-light);
  padding-top: 1.5rem;
}

.notification-teaser-text {
  font-size: 0.88rem;
  color: var(--text-muted-dark);
  font-weight: 500;
}

/* YouTube Static Skeleton Placeholders */
.yt-skeleton-card {
  pointer-events: none;
}

.yt-skeleton-thumb-box {
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
}

.yt-skeleton-thumb-bg {
  width: 100%;
  height: 100%;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yt-skeleton-play-btn {
  background: rgba(255, 255, 255, 0.15) !important;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yt-skeleton-line {
  background: #e2e8f0;
  border-radius: 6px;
}

@media (max-width: 900px) {
  .resources-teaser-card {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding: 1.75rem 1.25rem;
  }

  .teaser-action-strip {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .resources-teaser-card {
    display: flex;
    flex-direction: column;
  }

  .teaser-content {
    display: flex;
    flex-direction: column;
    order: 1;
  }

  .teaser-visual {
    order: 2;
    margin: 1rem 0 0.5rem;
    width: 100%;
  }

  .teaser-expand-wrapper {
    order: 3;
    align-items: center;
  }

  /* Show toggle button only on mobile */
  .btn-teaser-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(237, 139, 0, 0.08);
    color: var(--primary-orange);
    border: 1px solid rgba(237, 139, 0, 0.25);
    padding: 0.65rem 1.25rem;
    border-radius: 30px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 0.75rem;
  }

  .btn-teaser-toggle:hover {
    background: var(--primary-orange);
    color: #ffffff;
    border-color: var(--primary-orange);
  }

  .teaser-toggle-icon {
    transition: transform 0.3s ease;
  }

  .teaser-expand-wrapper.is-open .teaser-toggle-icon {
    transform: rotate(180deg);
  }

  /* Collapse body by default on mobile until user taps button */
  .teaser-expandable-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), opacity 0.3s ease, margin-top 0.3s ease;
  }

  .teaser-expand-wrapper.is-open .teaser-expandable-body {
    max-height: 800px;
    opacity: 1;
    margin-top: 1rem;
    transition: max-height 0.5s ease-in-out, opacity 0.35s ease;
  }

  .phone-mockup-wrapper {
    width: 215px;
    padding: 8px;
    border-radius: 40px;
  }

  .app-ui-frame {
    height: 425px;
    border-radius: 32px;
  }

  .teaser-content h3 {
    font-size: 1.35rem;
    line-height: 1.3;
    margin-top: 0.5rem;
  }

  .teaser-features {
    gap: 0.85rem;
    margin: 0.5rem 0;
    border-top: 1px dashed var(--border-light);
    padding-top: 1rem;
  }

  .teaser-features li {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .teaser-action-strip {
    padding-top: 1.25rem;
  }
}

/* Partner Brands Grid (Shared across Partners and Homepage) */
.partners-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.partner-brand-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  height: 100px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.partner-brand-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-orange);
  box-shadow: 0 10px 24px rgba(237, 139, 0, 0.1);
}

.partner-logo-img {
  width: 100%;
  height: 100%;
  max-width: 170px;
  max-height: 55px;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.partner-brand-card:hover .partner-logo-img {
  transform: scale(1.06);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--secondary-marine);
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .partners-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .partner-brand-card {
    height: 85px;
    padding: 0.85rem;
  }

  .partner-logo-img {
    max-height: 42px;
  }

  .brand-name {
    font-size: 0.85rem;
  }
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(0, 48, 135, 0.08);
}

.testimonial-stars {
  color: #ffb800;
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.98rem;
  color: var(--text-muted-dark);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

.user-avatar-placeholder {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-dark-marine);
  color: var(--accent-yellow);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--secondary-marine);
}

.user-role {
  font-size: 0.78rem;
  color: var(--text-muted-dark);
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* --- EXPLORE CAMBODIA PAGE MOBILE OVERRIDES --- */
@media (max-width: 768px) {
  body[data-page="explore"] .header:not(.scrolled) {
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  body[data-page="explore"] .header:not(.scrolled) .nav-toggle span {
    background-color: var(--primary-orange, #ed8b00) !important;
  }


  body[data-page="explore"] .explore-video-hero {
    margin-top: var(--navbar-height, 60px);
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #ffffff !important;
    position: relative;
    overflow: hidden;
  }

  body[data-page="explore"] .explore-video-hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #ffffff !important;
  }
}

/* --- EXPLORE CAMBODIA PAGE IMMEDIATE VISIBILITY GUARANTEE --- */
body[data-page="explore"] {
  background: #ffffff !important;
}

body[data-page="explore"] .explore-video-hero {
  background: #ffffff !important;
}

body[data-page="explore"] .explore-intro-text,
body[data-page="explore"] .region-card,
body[data-page="explore"] .region-info,
body[data-page="explore"] .regions-list,
body[data-page="explore"] .explore-intro-text>.container {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* --- UNIVERSAL SCROLL REVEAL ANIMATIONS (Explicit Opt-In Only) --- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(35px) scale(0.94);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered Children Scale-Up Entry */
.reveal-stagger>* {
  opacity: 0;
  transform: translateY(25px) scale(0.95);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed .reveal-stagger>*,
.reveal-stagger.is-revealed>* {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-stagger>*:nth-child(1) {
  transition-delay: 0.06s;
}

.reveal-stagger>*:nth-child(2) {
  transition-delay: 0.14s;
}

.reveal-stagger>*:nth-child(3) {
  transition-delay: 0.22s;
}

.reveal-stagger>*:nth-child(4) {
  transition-delay: 0.30s;
}

.reveal-stagger>*:nth-child(5) {
  transition-delay: 0.38s;
}

.reveal-stagger>*:nth-child(6) {
  transition-delay: 0.46s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* --- PERFORMANCE OPTIMIZATION: OFF-SCREEN RENDER DEFERRAL --- */
@supports (content-visibility: auto) {
  .social-stream-section,
  .partners-preview-section,
  .testimonials-section,
  .collaborate-section,
  .resources-teaser,
  .lens-gallery,
  .conservation-section,
  .eco-tips-section,
  .exploration-gallery {
    content-visibility: auto;
    contain-intrinsic-size: 0 400px;
  }
}