/* ═══════════════════════════════════════════
   LIVING TRAVEL — Design System
   Bilingual CR ↔ MX Travel Agency
═══════════════════════════════════════════ */

/* ─────── Reset & Base ─────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* ── Living Travel MX — brand colors: México Inédito ── */
  --primary: #BED62F;        /* Lime Green from logo */
  --primary-dark: #6D4C9C;   /* Purple from logo */
  --primary-light: #00ADEF;  /* Cyan from logo */
  --accent: #BED62F;         /* Lime highlight */
  --navy: #2B388F;           /* Navy blue from logo */
  --gold: #A8E063;
  --bg: #060D18;
  --bg2: #081422;
  --surface: rgba(190, 214, 47, 0.09);
  --glass-border: rgba(190, 214, 47, 0.22);
  --text: #E6F4FF;
  --text-muted: #7BA8C8;
  --gradient-hero: linear-gradient(135deg, rgba(43, 56, 143, 0.9) 0%, rgba(109, 76, 156, 0.4) 50%, rgba(190, 214, 47, 0.1) 100%);

  /* ── Living Viajes CR — brand colors: turquoise #00B4D8 + purple #6B3FA0 ── */
  --cr-primary: #00B4D8;
  --cr-dark: #007A9E;
  --cr-accent: #A8E063;
  --cr-purple: #6B3FA0;
  --cr-gold: #F9844A;

  /* Typography */
  --font-sans: 'Outfit', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-py: clamp(5rem, 8vw, 9rem);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-glow: 0 0 40px rgba(0, 159, 227, 0.28);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ─ CR Mode overrides — Living Viajes CR palette ─ */
.mode-cr {
  --primary: var(--cr-primary);
  --primary-dark: var(--cr-dark);
  --accent: var(--cr-purple);
  /* purple accent from logo */
  --gold: var(--cr-gold);
  --surface: rgba(0, 180, 216, 0.09);
  --glass-border: rgba(0, 180, 216, 0.22);
  --gradient-hero: linear-gradient(135deg, rgba(0, 122, 158, 0.88) 0%, rgba(107, 63, 160, 0.2) 100%);
  --shadow-glow: 0 0 40px rgba(0, 180, 216, 0.28);
  --text-muted: #7BA8BD;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ─────── Utility ─────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.hidden {
  display: none !important;
}

.glass-card {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
}

/* ─────── Section Headers ─────── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}

.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 2px;
  background: var(--primary);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--primary);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.section-header .section-title {
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

/* ─────── Scroll Animations ─────── */
.reveal,
.reveal-right,
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-right {
  transform: translateX(40px);
}

.fade-in {
  transform: none;
}

.reveal.visible,
.reveal-right.visible,
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ─────── Buttons ─────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #060D18; /* Dark text on lime/purple gradient */
  box-shadow: 0 4px 20px rgba(190, 214, 47, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(190, 214, 47, 0.6);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ─────── NAVBAR ─────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: transparent;
  transition: background 0.35s ease, backdrop-filter 0.35s, box-shadow 0.35s;
}

.navbar.scrolled {
  background: rgba(5, 14, 26, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-logo {
  flex-shrink: 0;
}

/* Both logos: same fixed height, constrained width, white on dark navbar */
.logo-img {
  height: 38px;
  width: 140px;
  /* same bounding box for both brands */
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  /* renders white on dark bg */
  opacity: 0.92;
  transition: opacity 0.2s;
}

.logo-img:hover {
  opacity: 1;
}

/* Country Toggle */
.country-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  padding: 0.3rem;
  margin: 0 auto;
}

.toggle-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.toggle-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 12px rgba(0, 180, 216, 0.4);
}

.toggle-btn:hover:not(.active) {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.toggle-btn .flag {
  font-size: 1.1rem;
}

.toggle-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 0.2rem;
}

/* Currency Toggle */
.currency-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-left: 0.5rem;
}

.curr-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.2rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.curr-btn.active {
  background: var(--primary);
  color: #000;
}

.curr-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  flex-shrink: 0;
}

.nav-links a {
  padding: 0.45rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-full);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.nav-links .nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 0.45rem 1.2rem;
}

.nav-links .nav-cta:hover {
  background: var(--primary-dark);
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}

.lang-btn {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.2rem 0.3rem;
  transition: color 0.2s;
}

.lang-btn.active {
  color: var(--primary);
}

.lang-btn:hover {
  color: #fff;
}

.lang-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.7rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(5, 14, 26, 0.97);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu a {
  display: block;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
}

.mobile-cta {
  display: inline-block;
  margin-top: 0.75rem;
  background: var(--primary) !important;
  border-radius: var(--radius-full) !important;
  text-align: center;
}

/* ─────── HERO ─────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

.hero-img.active {
  opacity: 1;
}

@keyframes slowZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  background: linear-gradient(to bottom,
      rgba(5, 14, 26, 0.5) 0%,
      rgba(5, 14, 26, 0.3) 40%,
      rgba(5, 14, 26, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  padding: calc(80px + 2rem) clamp(1rem, 4vw, 2.5rem) 6rem;
  text-align: center;
}

.eyebrow-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(0, 180, 216, 0.2);
  border: 1px solid rgba(0, 180, 216, 0.35);
  color: var(--accent);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  max-width: 480px;
  margin: 0 auto;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 13px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    top: 6px;
    opacity: 1;
  }

  80% {
    top: 18px;
    opacity: 0;
  }
}

/* ─────── ABOUT ─────── */
.about {
  padding: var(--section-py) 0;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.about-text strong {
  color: var(--text);
}

.about-brands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.brand-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--glass-border);
}

/* Brand card logos in 'About' section — show in color, override navbar filter */
.brand-card img {
  height: 32px;
  width: 120px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
  filter: none;
  /* show real brand colors */
}

.brand-card.brand-cr img {
  filter: none;
}

.brand-card div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-card strong {
  font-size: 0.9rem;
  color: var(--primary);
}

.brand-card span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* About Image Stack */
.about-img-stack {
  position: relative;
  height: 450px;
}

.about-img {
  position: absolute;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.about-img-1 {
  width: 75%;
  height: 70%;
  top: 0;
  left: 0;
}

.about-img-2 {
  width: 60%;
  height: 55%;
  bottom: 0;
  right: 0;
  border: 3px solid var(--bg2);
}

.about-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  box-shadow: var(--shadow-glow);
}

.badge-icon {
  font-size: 1.4rem;
}

/* ─────── SELECTOR ─────── */
.selector {
  padding: var(--section-py) 0;
  background: var(--bg);
}

.selector-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.selector-card {
  flex: 1;
  min-width: 280px;
  max-width: 420px;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  text-align: center;
}

.selector-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: var(--primary);
}

.selector-img-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

/* Selector card logos — show full color, same bounding box for both brands */
.selector-logo {
  height: 52px;
  width: 180px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  filter: none;
  /* override navbar invert — show real colors here */
}

.selector-logo.dark {
  filter: none;
  /* let the color PNG render naturally */
}

.selector-flag {
  position: absolute;
  top: -8px;
  right: -16px;
  font-size: 1.5rem;
}

.selector-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.selector-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.selector-arrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.selector-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.divider-circle {
  width: 52px;
  height: 52px;
  background: var(--surface);
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

/* ─────── DESTINATIONS ─────── */
.destinations {
  padding: var(--section-py) 0;
  background: var(--bg2);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.dest-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.dest-card-wide {
  grid-column: span 2;
}

.dest-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.dest-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dest-card:hover .dest-img-wrap img {
  transform: scale(1.08);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 14, 26, 0.6), transparent);
  display: flex;
  align-items: flex-start;
  padding: 0.75rem;
}

.dest-tag {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.dest-info {
  padding: 1.25rem 1.5rem;
}

.dest-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.dest-info p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.dest-link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--primary);
}

.dest-link:hover {
  text-decoration: underline;
}

.dest-prices {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.price-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  background: rgba(0, 159, 227, 0.13);
  border: 1px solid rgba(0, 159, 227, 0.3);
  border-radius: var(--radius-full);
  color: var(--primary);
  letter-spacing: 0.02em;
}

/* ─────── HOTELS ─────── */
.hotels {
  padding: var(--section-py) 0;
  background: var(--bg);
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hotel-card {
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.hotel-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.hotel-img-wrap {
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.hotel-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.hotel-card:hover .hotel-img-wrap img {
  transform: scale(1.08);
}

.hotel-info {
  padding: 1.25rem 1.5rem;
}

.hotel-stars {
  color: #FFD700;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.hotel-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.hotel-info p {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.hotel-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hotel-tags span {
  font-size: 0.72rem;
  padding: 0.25rem 0.6rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ─────── TESTIMONIALS ─────── */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.testimonials::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
}

.stars {
  color: #FFD700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.quote {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ─────── CONTACT ─────── */
.contact {
  padding: var(--section-py) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 100% 50%, rgba(0, 180, 216, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-info .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.contact-info>p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--glass-border);
  transition: transform 0.2s, border-color 0.2s;
}

.contact-channel:hover {
  transform: translateX(4px);
  border-color: var(--primary);
}

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-icon.whatsapp {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
}

.channel-icon.email {
  background: rgba(0, 180, 216, 0.15);
  color: var(--primary);
}

.channel-icon.website {
  background: rgba(244, 162, 97, 0.15);
  color: var(--gold);
}

.contact-channel div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-channel strong {
  font-size: 0.88rem;
}

.contact-channel span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Contact Form */
.contact-form {
  padding: 2rem;
}

.contact-form h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 0.95rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group select option {
  background: var(--bg2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.12);
}

.form-group textarea {
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-success {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(0, 245, 212, 0.1);
  border: 1px solid rgba(0, 245, 212, 0.25);
  border-radius: var(--radius);
  text-align: center;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

.form-success p {
  font-size: 0.88rem;
  color: var(--accent);
}

/* ─────── FOOTER ─────── */
.footer {
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 38px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a,
.footer-col span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-langs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-langs button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-langs button:hover {
  color: var(--text);
}

.footer-langs span {
  color: rgba(255, 255, 255, 0.2);
}

/* ─────── Responsive ─────── */
@media (max-width: 1024px) {
  .dest-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dest-card-wide {
    grid-column: span 2;
  }

  .hotels-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .country-toggle .label {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    order: -1;
  }

  .about-img-stack {
    height: 300px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .dest-grid {
    grid-template-columns: 1fr;
  }

  .dest-card-wide {
    grid-column: span 1;
  }

  .hotels-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .selector-cards {
    flex-direction: column;
  }

  .selector-divider {
    transform: rotate(90deg);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .toggle-btn .label {
    display: none;
  }

  .hero-stats {
    gap: 1rem;
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.4rem;
  }
}

/* ─────── FLIGHTS ─────── */
.flights {
  padding: var(--section-py) 0;
  background: var(--bg);
}

.flights-banner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.flights-img {
  position: relative;
  min-height: 400px;
}

.flights-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flights-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 0%, var(--bg) 100%);
}

.flights-content {
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flights-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.flights-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.f-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.f-icon {
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.f-feature span:last-child {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .flights-banner {
    grid-template-columns: 1fr;
  }
  .flights-overlay {
    background: linear-gradient(to bottom, transparent 0%, var(--bg) 100%);
  }
  .flights-img {
    min-height: 300px;
  }
}

/* Form flight fields */
#flight-fields {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#flight-fields:not(.hidden) {
  display: grid;
  animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
#flight-fields:not(.hidden) {
  display: grid;
  animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}


@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─────── ITINERARY SECTION ─────── */
.timeline-item {
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 2rem;
  border-left: 2px solid var(--glass-border);
}

.timeline-dot {
  position: absolute;
  left: -9px;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--bg);
  border: 2px solid var(--primary);
  border-radius: 50%;
}

.timeline-item.active .timeline-dot {
  background: var(--primary);
  box-shadow: 0 0 15px var(--primary);
}

.timeline-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ─────── FEATURED HOTEL ─────── */
.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.featured-img-wrap {
  position: relative;
}

.featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--primary);
  color: #000;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.75rem;
}

.featured-content {
  padding: clamp(2rem, 5vw, 4rem);
}

.room-grid-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.mini-room {
  background: rgba(255,255,255,0.03);
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
}

.mini-room strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.mini-room span {
  display: block;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.mini-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: underline;
}

.featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

.f-loc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 991px) {
  .featured-card {
    grid-template-columns: 1fr;
  }
  .featured-img-wrap {
    height: 300px;
  }
}
 / *   C a t e g o r y   F i l t e r s   S t y l i n g   * / 
 . c a t e g o r y - f i l t e r - w r a p   { 
         s c r o l l b a r - w i d t h :   n o n e ; 
         - m s - o v e r f l o w - s t y l e :   n o n e ; 
 } 
 . c a t e g o r y - f i l t e r - w r a p : : - w e b k i t - s c r o l l b a r   { 
         d i s p l a y :   n o n e ; 
 } 
 . c a t - b t n   { 
         p a d d i n g :   0 . 6 r e m   1 . 5 r e m ; 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ; 
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ; 
         b o r d e r - r a d i u s :   5 0 p x ; 
         c o l o r :   v a r ( - - t e x t - m u t e d ) ; 
         c u r s o r :   p o i n t e r ; 
         w h i t e - s p a c e :   n o w r a p ; 
         t r a n s i t i o n :   a l l   0 . 3 s   c u b i c - b e z i e r ( 0 . 4 ,   0 ,   0 . 2 ,   1 ) ; 
         f o n t - f a m i l y :   i n h e r i t ; 
         f o n t - s i z e :   0 . 9 r e m ; 
         f o n t - w e i g h t :   5 0 0 ; 
 } 
 . c a t - b t n : h o v e r   { 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ; 
         c o l o r :   # f f f ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y ) ; 
 } 
 . c a t - b t n . a c t i v e   { 
         b a c k g r o u n d :   v a r ( - - p r i m a r y ) ; 
         b o r d e r - c o l o r :   t r a n s p a r e n t ; 
         c o l o r :   v a r ( - - b g ) ; 
         f o n t - w e i g h t :   7 0 0 ; 
         b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 1 9 0 ,   2 1 4 ,   4 7 ,   0 . 3 ) ; 
 } 
  
 
 / *   I t i n e r a r y   L i s t   S t y l e s   * / 
 . i t i n e r a r y - t i t l e s - l i s t   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   1 r e m ; 
         m a r g i n - b o t t o m :   3 r e m ; 
         m a x - w i d t h :   8 0 0 p x ; 
         m a r g i n - l e f t :   a u t o ; 
         m a r g i n - r i g h t :   a u t o ; 
 } 
 . i t i n e r a r y - t i t l e - c a r d   { 
         p a d d i n g :   1 . 5 r e m   2 r e m ; 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 3 ) ; 
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ; 
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s ) ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 4 s   c u b i c - b e z i e r ( 0 . 1 7 5 ,   0 . 8 8 5 ,   0 . 3 2 ,   1 . 2 7 5 ) ; 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         a l i g n - i t e m s :   c e n t e r ; 
         p o s i t i o n :   r e l a t i v e ; 
         o v e r f l o w :   h i d d e n ; 
 } 
 . i t i n e r a r y - t i t l e - c a r d : : b e f o r e   { 
         c o n t e n t :   ' ' ; 
         p o s i t i o n :   a b s o l u t e ; 
         l e f t :   0 ; 
         t o p :   0 ; 
         h e i g h t :   1 0 0 % ; 
         w i d t h :   6 p x ; 
         b a c k g r o u n d :   v a r ( - - p r i m a r y ) ; 
         t r a n s f o r m :   t r a n s l a t e X ( - 1 0 0 % ) ; 
         t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ; 
 } 
 . i t i n e r a r y - t i t l e - c a r d : h o v e r   { 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 7 ) ; 
         t r a n s f o r m :   s c a l e ( 1 . 0 2 ) ; 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y ) ; 
 } 
 . i t i n e r a r y - t i t l e - c a r d . a c t i v e   { 
         b a c k g r o u n d :   r g b a ( 1 9 0 ,   2 1 4 ,   4 7 ,   0 . 1 ) ; 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y ) ; 
         b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 0 , 0 , 0 , 0 . 3 ) ; 
 } 
 . i t i n e r a r y - t i t l e - c a r d . a c t i v e : : b e f o r e   { 
         t r a n s f o r m :   t r a n s l a t e X ( 0 ) ; 
 } 
 . i t i n e r a r y - t i t l e - c a r d   h 3   { 
         m a r g i n :   0 ; 
         f o n t - s i z e :   1 . 2 r e m ; 
         f o n t - w e i g h t :   6 0 0 ; 
         c o l o r :   v a r ( - - t e x t - m u t e d ) ; 
         t r a n s i t i o n :   c o l o r   0 . 3 s   e a s e ; 
 } 
 . i t i n e r a r y - t i t l e - c a r d . a c t i v e   h 3   { 
         c o l o r :   # f f f ; 
 } 
 . i t i n e r a r y - t i t l e - c a r d   . a r r o w - i c o n   { 
         f o n t - s i z e :   1 . 2 r e m ; 
         c o l o r :   v a r ( - - p r i m a r y ) ; 
         t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ; 
 } 
 . i t i n e r a r y - t i t l e - c a r d . a c t i v e   . a r r o w - i c o n   { 
         t r a n s f o r m :   r o t a t e ( 9 0 d e g ) ; 
 } 
  
 