/* ============================================
   EXPLORICA TRAVELS — Core Stylesheet
   iOS 26 Liquid Glass / Black Finish
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap");

/* ── CSS Variables ── */
:root {
  --black: #080810;
  --black-soft: #0f0f1a;
  --black-mid: #13131f;
  --glass-fill: rgba(255, 255, 255, 0.045);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-hover: rgba(255, 255, 255, 0.075);
  --glass-shine: rgba(255, 255, 255, 0.15);
  --glow-gold: rgba(201, 169, 110, 0.35);
  --glow-teal: rgba(0, 212, 170, 0.25);
  --gold: #c9a96e;
  --gold-light: #e8cfa0;
  --teal: #00d4aa;
  --teal-dim: #009e80;
  --white: #f4f4f8;
  --white-dim: #a8a8be;
  --white-faint: #5a5a72;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", sans-serif;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --blur: blur(22px) saturate(160%);
  --blur-heavy: blur(40px) saturate(180%);
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.18s ease;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: rgba(201, 169, 110, 0.4);
  border-radius: 10px;
}

/* ── Selection ── */
::selection {
  background: rgba(201, 169, 110, 0.3);
  color: var(--white);
}

/* ============================================
      UTILITY CLASSES
      ============================================ */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 100px 0;
}

.section--sm {
  padding: 60px 0;
}
.section--lg {
  padding: 140px 0;
}

/* Glass morphism card */
.glass {
  background: var(--glass-fill);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}

.glass--hover {
  --hover-lift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  isolation: isolate;
  transform: translateY(var(--hover-lift)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.glass--hover::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.16), transparent 42%);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.glass--hover:hover {
  background: var(--glass-hover);
  border-color: rgba(201, 169, 110, 0.25);
  --hover-lift: -4px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.5),
    0 0 40px var(--glow-gold);
}

.glass--hover:hover::after {
  opacity: 1;
}

/* Tag / badge */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 30px;
  padding: 6px 14px;
}

/* Heading styles */
.heading-xl {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
}

.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.heading-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
}

.heading-sm {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 400;
  line-height: 1.3;
}

.italic {
  font-style: italic;
}
.gold {
  color: var(--gold);
}
.teal {
  color: var(--teal);
}
.dim {
  color: var(--white-dim);
}

/* ============================================
      BUTTONS
      ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 14px 30px;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::before {
  opacity: 1;
}

/* Primary gold button */
.btn--primary {
  background: linear-gradient(135deg, var(--gold), #a87c3e);
  color: var(--black);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}
.btn--primary::before {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.btn--primary:hover {
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.5);
  transform: translateY(-2px);
}

/* Ghost / outline button */
.btn--ghost {
  background: var(--glass-fill);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  color: var(--white);
}
.btn--ghost::before {
  background: var(--glass-hover);
}
.btn--ghost:hover {
  border-color: rgba(201, 169, 110, 0.4);
  transform: translateY(-2px);
}

/* Teal accent button */
.btn--teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-dim));
  color: var(--black);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0, 212, 170, 0.25);
}
.btn--teal:hover {
  box-shadow: 0 8px 32px rgba(0, 212, 170, 0.45);
  transform: translateY(-2px);
}

.btn--lg {
  font-size: 15px;
  padding: 17px 38px;
}
.btn--sm {
  font-size: 13px;
  padding: 10px 22px;
}

/* Arrow icon */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  transition: transform var(--transition);
}
.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* ============================================
      NAVBAR
      ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition:
    background var(--transition),
    backdrop-filter var(--transition),
    box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(8, 8, 16, 0.72);
  backdrop-filter: var(--blur-heavy);
  -webkit-backdrop-filter: var(--blur-heavy);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.navbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.navbar__logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.3);
  flex-shrink: 0;
}

.navbar__logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar__logo-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--white);
}

.navbar__logo-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav links */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  font-size: 14px;
  font-weight: 400;
  color: var(--white-dim);
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 18px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
  position: relative;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--white);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(201, 169, 110, 0.16) 55%, rgba(0, 212, 170, 0.12));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 14px 28px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.02);
  transform: translateY(-1px);
}

.navbar__link.active::after {
  display: none;
}

/* Nav CTA */
.navbar__cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar__contact-link {
  font-size: 13px;
  color: var(--white-dim);
  transition: color var(--transition-fast);
}
.navbar__contact-link:hover {
  color: var(--teal);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.navbar__mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(8, 8, 16, 0.96);
  backdrop-filter: var(--blur-heavy);
  -webkit-backdrop-filter: var(--blur-heavy);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 16px 24px;
  transform: translateY(-130%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 999;
}

.navbar__mobile-menu.open {
  transform: translateY(0);
}

.navbar__mobile-link {
  font-size: 16px;
  color: var(--white-dim);
  padding: 14px 16px;
  border-radius: 10px;
  display: block;
  transition:
    color var(--transition-fast),
    background var(--transition-fast);
}
.navbar__mobile-link:hover,
.navbar__mobile-link.active {
  color: var(--white);
  background: var(--glass-fill);
}

/* ============================================
      HERO SECTION
      ============================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Animated background orbs */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 0%,
      rgba(201, 169, 110, 0.08) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 60% 40% at 80% 80%,
      rgba(0, 212, 170, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 50% at 20% 60%,
      rgba(100, 80, 200, 0.05) 0%,
      transparent 60%
    );
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orb-float 12s ease-in-out infinite;
}

.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(201, 169, 110, 0.15),
    transparent 70%
  );
  top: -200px;
  left: -100px;
  animation-duration: 14s;
}

.hero__orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.1), transparent 70%);
  bottom: -150px;
  right: -100px;
  animation-duration: 10s;
  animation-delay: -4s;
}

.hero__orb--3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(120, 100, 220, 0.08),
    transparent 70%
  );
  top: 50%;
  right: 20%;
  animation-duration: 16s;
  animation-delay: -8s;
}

@keyframes orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -40px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 30px) scale(0.95);
  }
}

/* Noise texture overlay */
.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 920px;
  margin: 0 auto;
}

.hero__eyebrow {
  margin-bottom: 28px;
  animation: fade-up 0.8s ease forwards;
  opacity: 0;
  animation-delay: 0.2s;
}

.hero__title {
  margin-bottom: 24px;
  animation: fade-up 0.8s ease forwards;
  opacity: 0;
  animation-delay: 0.4s;
}

.hero__title .line {
  display: block;
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--white-dim);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.7;
  animation: fade-up 0.8s ease forwards;
  opacity: 0;
  animation-delay: 0.6s;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fade-up 0.8s ease forwards;
  opacity: 0;
  animation-delay: 0.8s;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fade-up 0.8s ease 1.2s forwards;
  opacity: 0;
}

.hero__scroll-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-faint);
  font-weight: 500;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--white-faint), transparent);
  animation: scroll-pulse 2s ease infinite;
}

@keyframes scroll-pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.8;
    transform: scaleY(1.1);
  }
}

/* Stats bar */
.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 0 24px;
  display: flex;
  justify-content: center;
}

.hero__stats-bar {
  max-width: 900px;
  width: 100%;
  background: rgba(15, 15, 26, 0.8);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-bottom: none;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px 32px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  padding: 0 16px;
  position: relative;
}

.hero__stat + .hero__stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--glass-border);
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero__stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-faint);
}

/* ============================================
      SECTION HEADER
      ============================================ */

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-header__tag {
  margin-bottom: 18px;
}
.section-header__title {
  margin-bottom: 18px;
}
.section-header__desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--white-dim);
  font-weight: 300;
}

/* ============================================
      DESTINATIONS GRID
      ============================================ */

.destinations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.destination-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}

.destination-card--featured {
  grid-row: span 2;
  aspect-ratio: unset;
}

.destination-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.75) saturate(0.9);
}

.destination-card:hover .destination-card__img {
  transform: scale(1.06);
}

/* Gradient overlay */
.destination-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 100%
  );
  z-index: 1;
  transition: background var(--transition);
}

.destination-card:hover .destination-card__overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.destination-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
}

.destination-card__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.destination-card__tag::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 1px;
  background: var(--teal);
}

.destination-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 8px;
}

.destination-card__meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.destination-card__price {
  color: var(--gold);
  font-weight: 500;
}

.destination-card__cta {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
}

.destination-card:hover .destination-card__cta {
  opacity: 1;
  transform: scale(1);
}

.destination-card__cta svg {
  width: 16px;
  height: 16px;
  color: white;
}

/* ============================================
      FEATURE SECTION
      ============================================ */

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 36px 32px;
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition:
    background var(--transition),
    border-color var(--transition);
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.feature-card:hover .feature-card__icon {
  background: rgba(201, 169, 110, 0.18);
  border-color: rgba(201, 169, 110, 0.4);
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--white);
}

.feature-card__desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--white-dim);
  font-weight: 300;
}

/* ============================================
      TOUR PACKAGES
      ============================================ */

.tours__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tour-row {
  display: grid;
  grid-template-columns: 320px 1fr auto;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  background: var(--glass-fill);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.tour-row:hover {
  border-color: rgba(201, 169, 110, 0.25);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 30px var(--glow-gold);
  transform: translateY(-3px);
}

.tour-row__img-wrap {
  position: relative;
  overflow: hidden;
}

.tour-row__img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.85);
  transition:
    transform 0.7s ease,
    filter 0.7s ease;
}

.tour-row:hover .tour-row__img {
  transform: scale(1.06);
  filter: brightness(0.9) saturate(1);
}

.tour-row__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.tour-row__badge--popular {
  background: rgba(201, 169, 110, 0.85);
  color: var(--black);
}

.tour-row__badge--new {
  background: rgba(0, 212, 170, 0.85);
  color: var(--black);
}

.tour-row__info {
  padding: 30px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  border-left: 1px solid var(--glass-border);
  border-right: 1px solid var(--glass-border);
}

.tour-row__category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
}

.tour-row__title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
}

.tour-row__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--white-dim);
  font-weight: 300;
  max-width: 480px;
}

.tour-row__details {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.tour-row__detail {
  font-size: 13px;
  color: var(--white-faint);
  display: flex;
  align-items: center;
  gap: 6px;
}

.tour-row__detail svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

.tour-row__pricing {
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  min-width: 180px;
}

.tour-row__from {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-faint);
  font-weight: 500;
}

.tour-row__price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.tour-row__price sup {
  font-size: 1rem;
  vertical-align: top;
  margin-top: 6px;
  color: var(--gold);
}

.tour-row__per {
  font-size: 11px;
  color: var(--white-faint);
  margin-top: -10px;
}

/* ============================================
      TESTIMONIALS
      ============================================ */

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  padding: 36px 30px;
}

.testimonial-card__quote {
  font-size: 48px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.6;
  font-family: var(--font-display);
  margin-bottom: 16px;
}

.testimonial-card__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--white-dim);
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 300;
  margin-bottom: 28px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #6a4010);
  border: 2px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--black);
  font-weight: 500;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}

.testimonial-card__trip {
  font-size: 12px;
  color: var(--teal);
  margin-top: 2px;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-left: auto;
}

.star {
  color: var(--gold);
  font-size: 14px;
}

/* ============================================
      CONTACT / CTA SECTION
      ============================================ */

.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 0;
}

.cta-section__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(201, 169, 110, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-section__title {
  margin-bottom: 20px;
}

.cta-section__desc {
  font-size: 17px;
  color: var(--white-dim);
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-section__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================
      CONTACT FORM
      ============================================ */

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact__info-title {
  margin-bottom: 12px;
}

.contact__info-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--white-dim);
  font-weight: 300;
}

.contact__items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__item-icon {
  width: 42px;
  height: 42px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__item-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.contact__item-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-faint);
  margin-bottom: 4px;
}

.contact__item-value {
  font-size: 15px;
  color: var(--white);
  line-height: 1.5;
}

/* Form */
.contact__form {
  padding: 44px 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-faint);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition:
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--white-faint);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(201, 169, 110, 0.5);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235a5a72' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-select option {
  background: var(--black-mid);
  color: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

/* ============================================
      PAGE HEADER
      ============================================ */

.page-header {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-header__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(201, 169, 110, 0.07) 0%,
    transparent 70%
  );
}

.page-header__tag {
  margin-bottom: 18px;
}
.page-header__title {
  margin-bottom: 18px;
}
.page-header__desc {
  font-size: 17px;
  color: var(--white-dim);
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
      ABOUT PAGE
      ============================================ */

.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-intro__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-intro__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.8);
}

.about-intro__img-badge {
  position: absolute;
  bottom: 28px;
  left: 40px;
  right: 28px;
  padding: 20px 24px;
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  background: rgba(8, 8, 16, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-intro__img-badge-icon {
  font-size: 2rem;
}

.about-intro__img-badge-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
}

.about-intro__img-badge-text span {
  font-size: 12px;
  color: var(--white-dim);
}

.about-intro__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-intro__tag {
  margin-bottom: 0;
}
.about-intro__title {
  margin: 0;
}

.about-intro__text {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--white-dim);
  font-weight: 300;
}

.about-intro__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-intro__value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--white-dim);
}

.about-intro__value::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Team */
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.team-card {
  position: relative;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  group: team-card;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.6),
    0 0 60px var(--glow-gold);
}

.team-card__image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.team-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.7s ease;
  filter: brightness(0.75) contrast(1.1);
}

.team-card:hover .team-card__image {
  transform: scale(1.08);
  filter: brightness(0.9) contrast(1.15);
}

.team-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 8, 16, 0) 0%,
    rgba(8, 8, 16, 0.3) 40%,
    rgba(8, 8, 16, 0.7) 75%,
    rgba(8, 8, 16, 0.95) 100%
  );
  transition: background var(--transition);
  z-index: 1;
}

.team-card:hover .team-card__overlay {
  background: linear-gradient(
    135deg,
    rgba(8, 8, 16, 0) 0%,
    rgba(8, 8, 16, 0.2) 40%,
    rgba(8, 8, 16, 0.75) 75%,
    rgba(8, 8, 16, 0.98) 100%
  );
}

.team-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 24px 24px;
  z-index: 2;
  padding-bottom: 0;
}

.team-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
  transform: translateY(12px);
  transition: transform var(--transition) 0.1s;
}

.team-card:hover .team-card__name {
  transform: translateY(0);
}

.team-card__role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.9;
  transform: translateY(12px);
  transition: transform var(--transition) 0.1s;
}

.team-card:hover .team-card__role {
  transform: translateY(0);
}

.team-card__bio {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  margin-bottom: 16px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height var(--transition) 0.15s,
    opacity var(--transition) 0.15s;
}

.team-card:hover .team-card__bio {
  max-height: 100px;
  opacity: 1;
}

.team-card__socials {
  display: flex;
  gap: 12px;
  justify-content: center;
  transform: translateY(20px);
  opacity: 0;
  transition:
    transform var(--transition) 0.2s,
    opacity var(--transition) 0.2s;
  padding-bottom: 20px;
}

.team-card:hover .team-card__socials {
  transform: translateY(0);
  opacity: 1;
}

.team-card__social {
  width: 40px;
  height: 40px;
  background: rgba(201, 169, 110, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.team-card__social:hover {
  background: rgba(201, 169, 110, 0.35);
  border-color: rgba(201, 169, 110, 0.6);
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
}

.team-card__social svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.team-card__social:hover svg {
  transform: rotate(-25deg) scale(1.15);
}

/* ============================================
      DIVIDER
      ============================================ */

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--glass-border),
    transparent
  );
  margin: 0;
}

/* ============================================
      FOOTER
      ============================================ */

.footer {
  background: var(--black-soft);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer__logo-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
}

.footer__tagline {
  font-size: 14px;
  line-height: 1.7;
  color: var(--white-dim);
  font-weight: 300;
  max-width: 280px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__social {
  width: 38px;
  height: 38px;
  background: var(--glass-fill);
  border: 1px solid var(--glass-border);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  color: var(--white-dim);
  transition: color var(--transition-fast);
}

.footer__social:hover {
  background: rgba(201, 169, 110, 0.1);
  border-color: rgba(201, 169, 110, 0.3);
}

.footer__social:hover svg {
  color: var(--gold);
}

.footer__col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 14px;
  color: var(--white-dim);
  font-weight: 300;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--gold);
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 13px;
  color: var(--white-faint);
  font-weight: 300;
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal-link {
  font-size: 13px;
  color: var(--white-faint);
  font-weight: 300;
  transition: color var(--transition-fast);
}

.footer__legal-link:hover {
  color: var(--white-dim);
}

/* ============================================
      ANIMATIONS
      ============================================ */

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
      RESPONSIVE
      ============================================ */

@media (max-width: 1100px) {
  .destinations__grid {
    grid-template-columns: 1fr 1fr;
  }
  .destination-card--featured {
    grid-row: span 1;
  }
  .features__grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
  }
  .footer__grid > .footer__brand {
    grid-column: 1 / -1;
  }
  .tour-row {
    grid-template-columns: 260px 1fr auto;
  }
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-card {
    height: 400px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 80px 0;
  }
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-intro__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__stat:nth-child(3)::before {
    display: none;
  }
  .tour-row {
    grid-template-columns: 1fr;
  }
  .tour-row__img-wrap {
    min-height: 200px;
  }
  .tour-row__info {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--glass-border);
  }
  .tour-row__pricing {
    border-top: 1px solid var(--glass-border);
    padding: 24px 32px;
    flex-direction: row;
    gap: 24px;
  }
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-card {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .navbar__links {
    display: none;
  }
  .navbar__cta .btn {
    display: none;
  }
  .navbar__hamburger {
    display: flex;
  }
  .navbar__mobile-menu {
    display: flex;
  }
  .destinations__grid {
    grid-template-columns: 1fr;
  }
  .features__grid {
    grid-template-columns: 1fr;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
  .hero__stats-bar {
    display: none;
  }
  .contact__form {
    padding: 28px 20px;
  }
  .team__grid {
    grid-template-columns: 1fr;
  }
  .team-card {
    height: 360px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .team__grid {
    grid-template-columns: 1fr;
  }
  .team-card {
    height: 320px;
  }
  .team-card__name {
    font-size: 1.4rem;
  }
  .team-card__role {
    font-size: 11px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================
      2026 LIQUID GLASS UPGRADE
      ============================================ */

:root {
  --surface-deep: #05060d;
  --surface-mid: rgba(255, 255, 255, 0.05);
  --surface-top: rgba(255, 255, 255, 0.1);
  --surface-border-strong: rgba(255, 255, 255, 0.16);
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.24);
  --shadow-deep: 0 32px 90px rgba(0, 0, 0, 0.36);
  --section-space: clamp(5rem, 8vw, 8.5rem);
  --container-space: clamp(18px, 3vw, 32px);
  --page-top-space: clamp(8rem, 12vw, 11rem);
}

html {
  background: var(--surface-deep);
}

body {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 14% 12%, rgba(0, 212, 170, 0.12), transparent 28%),
    radial-gradient(circle at 84% 10%, rgba(201, 169, 110, 0.18), transparent 32%),
    radial-gradient(circle at 50% 118%, rgba(113, 139, 255, 0.08), transparent 40%),
    linear-gradient(180deg, #05060d 0%, #070910 42%, #05060d 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -2;
  filter: blur(24px);
  opacity: 0.9;
}

body::before {
  top: -180px;
  left: -120px;
  width: min(46vw, 560px);
  height: min(46vw, 560px);
  background: radial-gradient(circle, rgba(0, 212, 170, 0.18) 0%, rgba(0, 212, 170, 0.04) 36%, transparent 72%);
  animation: liquid-ambient-drift 18s ease-in-out infinite;
}

body::after {
  top: 18vh;
  right: -160px;
  width: min(44vw, 520px);
  height: min(44vw, 520px);
  background: radial-gradient(circle, rgba(201, 169, 110, 0.2) 0%, rgba(201, 169, 110, 0.05) 34%, transparent 72%);
  animation: liquid-ambient-drift 22s ease-in-out infinite reverse;
}

main {
  position: relative;
  isolation: isolate;
}

main::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.45;
  background: radial-gradient(circle at var(--cursor-x, 50%) var(--cursor-y, 50%), rgba(255, 255, 255, 0.09), transparent 28%);
  transition: opacity var(--transition);
}

main::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 140px 140px;
  mask-image: radial-gradient(circle at center, black 22%, transparent 82%);
}

body.reduce-motion main::before,
body.reduce-motion main::after {
  opacity: 0.18;
}

body:not(.pointer-fine) main::before {
  opacity: 0.18;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0 50%;
  z-index: 1400;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 212, 170, 0.98), rgba(201, 169, 110, 0.95), rgba(255, 255, 255, 0.75));
  box-shadow: 0 0 24px rgba(201, 169, 110, 0.4);
}

.container {
  max-width: 1280px;
  padding: 0 var(--container-space);
}

.container--wide {
  max-width: 1440px;
  padding: 0 var(--container-space);
}

.section {
  padding: var(--section-space) 0;
  position: relative;
}

.section--sm {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.section--lg {
  padding: clamp(6rem, 10vw, 9rem) 0;
}

.glass,
.contact__info,
.contact__form,
.feature-card,
.testimonial-card,
.tour-row,
.tours-overview__lead,
.tours-overview__panel,
.tours-toolbar,
.tours-empty {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    var(--shadow-soft);
}

.glass,
.contact__info,
.contact__form,
.feature-card,
.testimonial-card,
.tour-row,
.destination-card,
.dest-item,
.contact__item,
.tours-overview__lead,
.tours-overview__panel,
.tours-toolbar,
.tours-empty,
.tour-card {
  position: relative;
  overflow: hidden;
}

.glass::before,
.contact__info::before,
.contact__form::before,
.feature-card::before,
.testimonial-card::before,
.tour-row::before,
.tours-overview__lead::before,
.tours-overview__panel::before,
.tours-toolbar::before,
.tours-empty::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 34%);
  opacity: 0.75;
}

.glass > *,
.contact__info > *,
.contact__form > *,
.feature-card > *,
.testimonial-card > *,
.tour-row > *,
.destination-card > *,
.dest-item > *,
.contact__item > *,
.tours-overview__lead > *,
.tours-overview__panel > *,
.tours-toolbar > *,
.tours-empty > *,
.tour-card > * {
  position: relative;
  z-index: 1;
}

.destination-card,
.dest-item,
.tour-card,
.contact__item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
}

.destination-card::before,
.dest-item::before,
.contact__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 24%);
  opacity: 0.7;
  z-index: 0;
}

.glass--hover,
.tour-card,
.destination-card,
.dest-item,
.contact__item {
  --hover-lift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --pointer-x: 50%;
  --pointer-y: 50%;
  transform: translate3d(0, var(--hover-lift), 0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
}

.glass--hover:hover,
.tour-card:hover,
.destination-card:hover,
.dest-item:hover,
.contact__item:hover {
  --hover-lift: -10px;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 30px 82px rgba(0, 0, 0, 0.38),
    0 0 42px rgba(201, 169, 110, 0.14);
}

.destination-card__cta {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.24);
}

.btn,
.filter-btn,
.tour-card__book {
  position: relative;
  isolation: isolate;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.btn::after,
.filter-btn::after,
.tour-card__book::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-120%);
  background: linear-gradient(115deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.24) 38%, rgba(255, 255, 255, 0) 62%);
  transition:
    opacity var(--transition),
    transform 0.8s ease;
}

.btn:hover::after,
.filter-btn:hover::after,
.tour-card__book:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.btn > *,
.filter-btn > *,
.tour-card__book > * {
  position: relative;
  z-index: 1;
}

.btn--primary {
  background: linear-gradient(135deg, rgba(232, 207, 160, 0.96), rgba(201, 169, 110, 0.98), rgba(146, 111, 57, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 18px 42px rgba(201, 169, 110, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.btn--ghost {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.navbar {
  padding: clamp(12px, 1.8vw, 20px) 0;
}

.navbar.scrolled {
  background: transparent;
  border-bottom: none;
  box-shadow: none;
}

.navbar__inner {
  max-width: 1280px;
  width: min(1280px, calc(100% - (2 * var(--container-space))));
  padding: 14px var(--container-space);
  gap: clamp(12px, 1.8vw, 20px);
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

.navbar.scrolled .navbar__inner {
  background: linear-gradient(180deg, rgba(12, 13, 23, 0.82), rgba(255, 255, 255, 0.04));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 60px rgba(0, 0, 0, 0.28);
}

.navbar__logo,
.navbar__logo-text {
  min-width: 0;
}

.navbar__links {
  flex: 1 1 420px;
  min-width: 0;
  max-width: 100%;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 10px;
}

.navbar__links > li {
  flex: 0 0 auto;
  min-width: 0;
  max-width: 100%;
  scroll-snap-align: start;
}

.navbar__link {
  flex: 0 0 auto;
  max-width: 100%;
  padding: 10px 15px;
  border-radius: 999px;
  white-space: nowrap;
}

.navbar__link:hover,
.navbar__link.active {
  background: rgba(255, 255, 255, 0.09);
}

.navbar__cta {
  flex: 0 1 auto;
  margin-left: auto;
  max-width: 100%;
}

.navbar__cta .btn {
  max-width: 100%;
  white-space: nowrap;
}

.navbar__links::-webkit-scrollbar {
  display: none;
}

.navbar__contact-link {
  max-width: 28ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.navbar__hamburger {
  border-radius: 14px;
}

.navbar__mobile-menu {
  top: clamp(78px, 12vw, 96px);
  left: var(--container-space);
  right: var(--container-space);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-deep);
  padding: 16px;
}

.navbar__mobile-link {
  padding: 15px 16px;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  background: rgba(5, 6, 13, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: opacity var(--transition);
}

body.menu-open .mobile-menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  padding: clamp(140px, 16vw, 188px) 0 clamp(86px, 10vw, 124px);
}

.hero__content {
  max-width: min(920px, calc(100% - 2rem));
  padding: clamp(28px, 4vw, 46px);
  border-radius: min(38px, 7vw);
  background: linear-gradient(180deg, rgba(10, 12, 20, 0.62), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 72px rgba(0, 0, 0, 0.32);
}

.hero__content::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 36%);
  opacity: 0.7;
}

.hero__content > * {
  position: relative;
  z-index: 1;
}

.hero__subtitle {
  max-width: 620px;
}

.hero__actions {
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__stats-bar {
  background: linear-gradient(180deg, rgba(10, 12, 20, 0.88), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.section-header {
  margin-bottom: clamp(40px, 7vw, 68px);
}

.page-header {
  padding: var(--page-top-space) 0 clamp(4rem, 7vw, 6rem);
}

.page-header__bg {
  background:
    radial-gradient(circle at 16% 18%, rgba(0, 212, 170, 0.14) 0%, transparent 22%),
    radial-gradient(circle at 82% 4%, rgba(201, 169, 110, 0.18) 0%, transparent 28%),
    radial-gradient(circle at 50% 58%, rgba(255, 255, 255, 0.06) 0%, transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 78%);
  animation: liquid-header-glow 18s ease-in-out infinite alternate;
}

.page-header__desc {
  max-width: 620px;
  font-size: clamp(15px, 2vw, 18px);
}

.contact__grid {
  gap: clamp(24px, 4vw, 38px);
  align-items: start;
}

.contact__info,
.contact__form {
  padding: clamp(24px, 4vw, 34px);
  border-radius: clamp(24px, 4vw, 32px);
}

.contact__items {
  display: grid;
  gap: 14px;
}

.contact__item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border-radius: 20px;
  padding: 18px 18px;
}

.form-row {
  gap: 18px;
}

.form-input,
.form-select,
.form-textarea {
  min-height: 54px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.form-textarea {
  min-height: 148px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(201, 169, 110, 0.55);
  box-shadow:
    0 0 0 4px rgba(201, 169, 110, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(6, 7, 13, 0.94), rgba(4, 5, 11, 0.99));
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 212, 170, 0.08), transparent 30%),
    radial-gradient(circle at 82% 100%, rgba(201, 169, 110, 0.1), transparent 34%);
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer__bottom {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.reveal,
.reveal-auto {
  opacity: 0;
  transform: translate3d(0, 40px, 0) scale(0.985);
  filter: blur(10px);
  transition:
    opacity 0.8s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s ease;
  transition-delay: calc(var(--reveal-order, 0) * 70ms + var(--reveal-delay, 0ms));
}

.reveal.visible,
.reveal-auto.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.reveal-delay-1 {
  --reveal-delay: 100ms;
}

.reveal-delay-2 {
  --reveal-delay: 180ms;
}

.reveal-delay-3 {
  --reveal-delay: 260ms;
}

.reveal-delay-4 {
  --reveal-delay: 340ms;
}

.reveal-delay-5 {
  --reveal-delay: 420ms;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-auto,
  .reveal-auto.visible {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 1100px) {
  .navbar__contact-link {
    display: none;
  }

  .navbar__inner {
    flex-wrap: wrap;
  }

  .navbar__links {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    padding-top: 4px;
  }

  .navbar__cta {
    margin-left: auto;
  }

  .hero__content {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero__scroll {
    display: none;
  }

  .hero__stats {
    position: static;
    padding: 0 var(--container-space);
    margin-top: 28px;
  }

  .hero__stats-bar {
    border-radius: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 18px;
  }

  .hero__stat {
    align-items: flex-start;
    text-align: left;
    border-radius: 18px;
    padding: 14px 12px;
    background: rgba(255, 255, 255, 0.03);
  }

  .hero__stat + .hero__stat::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar__inner {
    padding: 12px 16px;
    border-radius: 24px;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__mobile-menu {
    top: 82px;
  }

  .hero {
    padding-top: 124px;
    padding-bottom: 44px;
  }

  .hero__stats {
    display: flex;
  }

  .hero__stats-bar {
    display: grid;
  }

  .hero__content,
  .section-header,
  .page-header {
    text-align: left;
  }

  .hero__subtitle,
  .page-header__desc {
    margin-left: 0;
    margin-right: 0;
  }

  .hero__actions {
    justify-content: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .footer {
    padding: 64px 0 28px;
  }
}

@media (max-width: 560px) {
  main::after {
    display: none;
  }

  body::before {
    width: 72vw;
    height: 72vw;
  }

  body::after {
    width: 66vw;
    height: 66vw;
  }

  .hero__content,
  .contact__info,
  .contact__form {
    border-radius: 24px;
  }

  .hero__stats-bar {
    grid-template-columns: 1fr;
  }

  .btn,
  .filter-btn {
    width: 100%;
  }

  .feature-card,
  .testimonial-card,
  .contact__item {
    border-radius: 20px;
  }
}

@media (max-width: 420px) {
  .heading-xl {
    font-size: clamp(2.5rem, 14vw, 4.2rem);
  }

  .hero__content {
    padding: 22px 18px;
  }

  .hero__subtitle,
  .page-header__desc {
    font-size: 15px;
  }

  .hero__stats-bar {
    padding: 14px;
  }
}

@keyframes liquid-ambient-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(32px, -28px, 0) scale(1.08);
  }
}

@keyframes liquid-header-glow {
  0% {
    opacity: 0.82;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.04);
  }
}

:root {
  --vh: 1vh;
  --app-height: 100vh;
  --hero-shift: 0px;
  --hero-orb-shift: 0px;
  --hero-glow-rotate: 0deg;
}

.btn,
.filter-btn,
.tour-card__book,
.navbar__mobile-link,
.navbar__hamburger,
.destination-card,
.tour-card,
.dest-item,
.contact__item,
.tour-stat,
.feature-card,
.testimonial-card,
.team-card {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.hero {
  min-height: max(100svh, var(--app-height));
}

.hero__bg {
  transform: translate3d(0, calc(var(--hero-orb-shift) * 0.35), 0) rotate(var(--hero-glow-rotate));
  transition: transform 0.45s ease-out;
}

.hero__content,
.page-header__bg {
  transition: transform 0.45s ease-out;
}

.hero__content {
  transform: translate3d(0, var(--hero-shift), 0);
}

.btn.is-pressed,
.filter-btn.is-pressed,
.tour-card__book.is-pressed,
.navbar__hamburger.is-pressed {
  transform: translate3d(0, 2px, 0) scale(0.985);
}

.destination-card.is-pressed,
.tour-card.is-pressed,
.dest-item.is-pressed,
.contact__item.is-pressed,
.tour-stat.is-pressed,
.feature-card.is-pressed,
.testimonial-card.is-pressed,
.team-card.is-pressed {
  --hover-lift: -6px;
  transform: translate3d(0, var(--hover-lift), 0) scale(0.985);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(201, 169, 110, 0.16);
}

.btn.is-pressed::after,
.filter-btn.is-pressed::after,
.tour-card__book.is-pressed::after,
.destination-card.is-pressed::before,
.tour-card.is-pressed::before,
.dest-item.is-pressed::before,
.contact__item.is-pressed::before,
.tour-stat.is-pressed::before,
.feature-card.is-pressed::before,
.testimonial-card.is-pressed::before,
.team-card.is-pressed::before {
  opacity: 1;
}

.btn.is-pressed::after,
.filter-btn.is-pressed::after,
.tour-card__book.is-pressed::after {
  transform: translateX(0);
}

body.pointer-coarse .hero__eyebrow,
body.pointer-coarse .hero__title,
body.pointer-coarse .hero__subtitle,
body.pointer-coarse .hero__actions {
  animation-duration: 0.9s;
}

body.pointer-coarse .destination-card__cta {
  opacity: 1;
  transform: translateY(0);
}

body.pointer-coarse .navbar__mobile-menu {
  max-height: min(72vh, calc(var(--app-height) - 110px));
  overflow-y: auto;
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: clip;
  }

  body {
    padding-bottom: max(0px, env(safe-area-inset-bottom));
  }

  .container,
  .container--wide {
    padding-left: clamp(16px, 5vw, 22px);
    padding-right: clamp(16px, 5vw, 22px);
  }

  .section {
    padding: clamp(72px, 14vw, 92px) 0;
  }

  .section--sm {
    padding: clamp(48px, 10vw, 64px) 0;
  }

  .section--lg {
    padding: clamp(86px, 16vw, 112px) 0;
  }

  .navbar {
    padding-top: max(10px, env(safe-area-inset-top));
  }

  .navbar__inner {
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
  }

  .navbar__links {
    display: flex;
    order: 3;
    width: 100%;
    gap: 8px;
    padding: 8px;
    max-width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 14px 28px rgba(0, 0, 0, 0.18);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 8px;
  }

  .navbar__links::-webkit-scrollbar {
    display: none;
  }

  .navbar__links > li {
    flex: 0 0 auto;
    min-width: 0;
    max-width: 100%;
  }

  .navbar__link {
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 10px 20px rgba(0, 0, 0, 0.16);
    white-space: nowrap;
  }

  .navbar__link:hover,
  .navbar__link.active {
    border-color: rgba(201, 169, 110, 0.24);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(201, 169, 110, 0.22) 55%, rgba(0, 212, 170, 0.16));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 16px 32px rgba(0, 0, 0, 0.22),
      0 0 0 1px rgba(255, 255, 255, 0.03);
  }

  .navbar__hamburger,
  .navbar__mobile-menu,
  .mobile-menu-backdrop {
    display: none !important;
  }

  .hero {
    padding-top: calc(max(156px, env(safe-area-inset-top) + 142px));
    padding-bottom: 28px;
    align-items: flex-start;
  }

  .page-header {
    padding-top: calc(max(9.8rem, env(safe-area-inset-top) + 8.2rem));
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
    padding: 22px 18px;
    border-radius: 24px;
  }

  .hero__title .line {
    line-height: 0.96;
  }

  .hero__subtitle {
    max-width: 100%;
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero__actions {
    gap: 12px;
  }

  .hero__actions .btn,
  .tours-overview__actions .btn,
  .navbar__cta .btn {
    min-height: 52px;
  }

  .hero__stats {
    padding-left: 0;
    padding-right: 0;
  }

  .hero__stats-bar {
    gap: 12px;
  }

  .destinations__grid,
  .contact__grid,
  .footer__grid,
  .footer__bottom,
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__grid,
  .footer__bottom {
    gap: 22px;
  }

  .contact__info,
  .contact__form,
  .feature-card,
  .testimonial-card,
  .tour-row {
    padding: 20px;
  }

  .destination-card,
  .tour-card,
  .dest-item {
    border-radius: 22px;
  }
}

@media (max-width: 560px) {
  .navbar__links {
    gap: 6px;
    padding: 7px;
  }

  .navbar__link {
    min-height: 42px;
    padding: 9px 11px;
    font-size: 11.5px;
  }

  .heading-lg {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .heading-md {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .tag {
    letter-spacing: 2px;
  }

  .hero__eyebrow .tag {
    width: 100%;
    justify-content: center;
    padding-inline: 12px;
  }

  .hero__stats-bar {
    padding: 14px;
  }

  .hero__stat {
    padding: 14px;
  }

  .destination-card,
  .tour-card,
  .team-card {
    aspect-ratio: 4 / 5;
  }

  .page-header {
    padding-top: calc(max(9rem, env(safe-area-inset-top) + 7.4rem));
  }
}

@media (max-width: 420px) {
  .navbar__inner {
    padding: 10px 11px;
    border-radius: 20px;
    gap: 10px;
  }

  .navbar__links {
    gap: 5px;
    padding: 6px;
  }

  .navbar__link {
    min-height: 40px;
    padding: 8px 9px;
    font-size: 10.5px;
  }

  .navbar__logo {
    gap: 8px;
  }

  .navbar__logo-mark {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .navbar__logo-name {
    font-size: 16px;
  }

  .navbar__logo-sub {
    font-size: 9px;
    letter-spacing: 2.4px;
  }

  .hero__content {
    padding: 20px 16px;
  }

  .hero__subtitle,
  .section-header__desc,
  .page-header__desc {
    font-size: 14.5px;
  }

  .hero__stats-bar,
  .contact__info,
  .contact__form {
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg,
  .hero__content,
  .page-header__bg,
  .btn.is-pressed,
  .filter-btn.is-pressed,
  .tour-card__book.is-pressed,
  .navbar__hamburger.is-pressed,
  .destination-card.is-pressed,
  .tour-card.is-pressed,
  .dest-item.is-pressed,
  .contact__item.is-pressed,
  .tour-stat.is-pressed,
  .feature-card.is-pressed,
  .testimonial-card.is-pressed,
  .team-card.is-pressed {
    transform: none;
  }
}
