/* ═══════════════════════════════════════════════════
   M&K Adventure — Cinematic Scrollytelling
   Color System: 60-30-10
   60% Warm Cream  |  30% Deep Teal  |  10% Gold
   ═══════════════════════════════════════════════════ */

:root {
  /* ── 60% Base: Warm Cream ── */
  --cream: #F2E9DD;
  --cream-light: #FAF6F0;
  --cream-dark: #E5D4BF;
  --cream-strong: #D8C2A2;

  /* ── 30% Support: Deep Teal ── */
  --teal: #12343B;
  --teal-light: #1D515D;
  --teal-dark: #0B2329;
  --teal-muted: #93C6CC;

  /* ── 10% Accent: Gold ── */
  --gold: #C8962E;
  --gold-hover: #B07E22;
  --gold-glow: rgba(200, 150, 46, 0.35);
  --gold-soft: rgba(200, 150, 46, 0.12);

  /* ── Neutrals ── */
  --ink: #0C1F24;
  --ink-light: rgba(12, 31, 36, 0.7);
  --paper: #FCFAF7;
  --white: #FFFFFF;
  --divider: rgba(12, 31, 36, 0.08);

  /* ── System ── */
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --shadow-soft: 0 8px 32px rgba(12, 31, 36, 0.08);
  --shadow-mid: 0 16px 48px rgba(12, 31, 36, 0.12);
  --shadow-deep: 0 24px 64px rgba(12, 31, 36, 0.18);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════ RESET ═══════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-optical-sizing: auto;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select { font: inherit; }

.container {
  width: min(1240px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.icon-sm { width: 18px; height: 18px; }
.icon-xs { width: 14px; height: 14px; }

/* ═══════════════════ GRAIN OVERLAY ═══════════════════ */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.06;
  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");
  background-size: 200px 200px;
}

/* ═══════════════════ BUTTONS ═══════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--lg { padding: 1rem 2rem; font-size: 0.95rem; }

.btn--primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 24px var(--gold-glow);
}
.btn--primary:hover {
  background: var(--gold-hover);
  box-shadow: 0 12px 32px var(--gold-glow);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--white {
  background: var(--white);
  color: var(--teal);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.btn--white:hover { box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2); }

/* ═══════════════════ HEADER ═══════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 4px 24px rgba(12, 31, 36, 0.06);
  padding: 0.6rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 10;
}

.brand-logo {
  height: 52px;
  width: auto;
  border-radius: 4px;
  object-fit: contain;
}

.brand-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  transition: var(--transition);
}

.site-header.scrolled .brand-name { color: var(--ink); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.site-header.scrolled .nav-link {
  color: var(--ink-light);
}

.site-header.scrolled .nav-link:hover {
  color: var(--ink);
  background: var(--divider);
}

.nav-link--cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
}

.nav-link--cta:hover {
  background: var(--gold-hover) !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: var(--transition);
}

.site-header.scrolled .lang-toggle {
  color: var(--ink);
  border-color: var(--divider);
}

.lang-toggle__active { opacity: 1; font-weight: 800; }
.lang-toggle__divider { opacity: 0.4; }
.lang-toggle__inactive { opacity: 0.4; }

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
}

.site-header.scrolled .header-phone { color: var(--ink); }

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: var(--radius-sm);
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.site-header.scrolled .menu-toggle span { background: var(--ink); }

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: visible;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center 40%,
    rgba(18, 52, 59, 0.55) 0%,
    rgba(18, 52, 59, 0.45) 40%,
    rgba(18, 52, 59, 0.7) 100%
  );
}

.hero-content {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: min(960px, calc(100% - 2.5rem));
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: heroFadeIn 0.8s ease-out 0.1s both;
}

.hero-title {
  font-size: clamp(3.2rem, 10vw, 7rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 2rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.hero-title__line {
  display: block;
  animation: heroReveal 1s ease-out forwards;
  opacity: 0;
  transform: translateY(40px);
}

.hero-title__line:nth-child(2) {
  animation-delay: 0.3s;
}

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

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title__line--accent {
  color: var(--gold);
  font-style: italic;
}

/* Decorative divider */
.hero-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 2rem;
  animation: heroFadeIn 0.8s ease-out 0.65s both;
}

/* Service tags */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  animation: heroFadeIn 0.8s ease-out 0.75s both;
}

.hero-tag {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition);
}

.hero-tag:hover {
  background: rgba(200, 150, 46, 0.2);
  border-color: rgba(200, 150, 46, 0.4);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  animation: heroFadeIn 0.8s ease-out 0.9s both;
}

.btn--xl {
  padding: 1.1rem 2.8rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 999px;
  gap: 0.6rem;
  box-shadow: 0 8px 30px var(--gold-glow);
}

.btn--xl:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--gold-glow);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator__line {
  width: 2px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.scroll-indicator__line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ═══════════════════ BOOKING WIDGET (glassmorphic, straddles hero) ═══════════════════ */
.booking-float {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  transform: translateY(50%);
  opacity: 0;
  visibility: hidden;
}

.booking-float.is-visible {
  opacity: 1;
  visibility: visible;
}

.booking-card {
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 1.25rem;
  box-shadow:
    0 25px 60px rgba(12, 31, 36, 0.12),
    0 8px 20px rgba(12, 31, 36, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.booking-tabs {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(12, 31, 36, 0.08);
}

.booking-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.1rem 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink-light);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  position: relative;
}

.booking-tab:hover {
  color: var(--ink);
  background: rgba(200, 150, 46, 0.06);
}

.booking-tab.active {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.5);
  border-bottom-color: var(--gold);
}

.booking-form {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}

.booking-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1rem;
}

.booking-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-light);
  margin-bottom: 0.5rem;
}

.booking-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.booking-icon {
  position: absolute;
  left: 0.85rem;
  width: 16px;
  height: 16px;
  color: var(--gold);
  pointer-events: none;
  z-index: 1;
}

.booking-field input,
.booking-field select {
  width: 100%;
  padding: 0.85rem 0.85rem 0.85rem 2.6rem;
  border: 1px solid rgba(12, 31, 36, 0.1);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
  color: var(--ink);
  transition: var(--transition);
  appearance: none;
}

.booking-field input::placeholder { color: var(--ink-light); }

.booking-field input:focus,
.booking-field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
  background: rgba(255, 255, 255, 0.8);
}

.booking-field select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%230C1F24' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
  color: var(--ink);
}

.booking-field option {
  background: var(--white);
  color: var(--ink);
}

.booking-submit {
  align-self: flex-end;
  padding: 0.95rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0.75rem;
  gap: 0.5rem;
  box-shadow: 0 6px 20px var(--gold-glow);
  transition: var(--transition);
}

.booking-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--gold-glow);
}

/* ═══════════════════ STATS ═══════════════════ */
.stats {
  background: var(--teal);
  padding: 3.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.stat-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
}

.stat-suffix {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  display: block;
  color: var(--teal-muted);
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 0.25rem;
  letter-spacing: 0.02em;
}

/* ═══════════════════ SECTION HEADERS ═══════════════════ */
section {
  padding: 5.5rem 0;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header--center { text-align: center; }
.section-header--center .section-title { margin-left: auto; margin-right: auto; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-header--light .section-eyebrow { color: var(--teal-muted); }

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  max-width: 16ch;
  color: var(--ink);
}

.section-header--light .section-title { color: var(--white); }

/* ═══════════════════ TRAVEL CAROUSEL ═══════════════════ */
.travel {
  background: var(--cream-light);
  padding-top: 12rem;
}

.travel-swiper {
  padding-bottom: 3.5rem;
}

.travel-card {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
  transition: var(--transition);
}

.travel-card:hover { transform: translateY(-8px); }
.travel-card:hover .travel-card__img { transform: scale(1.08); }

.travel-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.travel-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 31, 36, 0.85) 0%, rgba(12, 31, 36, 0.1) 50%, transparent 100%);
  z-index: 1;
}

.travel-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: var(--gold);
  color: var(--white);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.travel-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.5rem;
}

.travel-card__cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.travel-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.travel-card__price {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* Swiper nav */
.travel-swiper .swiper-button-prev,
.travel-swiper .swiper-button-next {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.travel-swiper .swiper-button-prev:hover,
.travel-swiper .swiper-button-next:hover {
  background: var(--gold);
  box-shadow: 0 8px 24px var(--gold-glow);
}

.travel-swiper .swiper-button-prev::after,
.travel-swiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: 900;
  color: var(--ink);
  transition: var(--transition);
}

.travel-swiper .swiper-button-prev:hover::after,
.travel-swiper .swiper-button-next:hover::after { color: var(--white); }

.travel-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--cream-dark);
  opacity: 1;
}

.travel-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 28px;
  border-radius: 999px;
}

/* ═══════════════════ CUBA ═══════════════════ */
.cuba {
  background: var(--cream);
}

.cuba-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
  align-items: stretch;
}

.cuba-featured {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 480px;
}

.cuba-featured__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cuba-featured:hover .cuba-featured__img { transform: scale(1.05); }

.cuba-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 31, 36, 0.9) 0%, rgba(12, 31, 36, 0.3) 60%, transparent 100%);
  z-index: 1;
}

.cuba-featured__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 2rem;
}

.cuba-featured__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}

.cuba-featured__content h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 0.6rem;
}

.cuba-featured__content p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.2rem;
  max-width: 42ch;
  line-height: 1.6;
}

.cuba-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.cuba-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--divider);
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.cuba-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-mid);
  border-color: rgba(200, 150, 46, 0.25);
}

.cuba-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  border-radius: var(--radius-sm);
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.cuba-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.cuba-card p {
  font-size: 0.88rem;
  color: var(--ink-light);
  line-height: 1.5;
}

/* ═══════════════════ SERVICES ═══════════════════ */
.services {
  background: var(--paper);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem 1.75rem 1.75rem;
  border: 1px solid var(--divider);
  box-shadow: 0 2px 8px rgba(12, 31, 36, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(12, 31, 36, 0.12), 0 8px 16px rgba(12, 31, 36, 0.06);
  border-color: rgba(200, 150, 46, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__number {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--cream-dark);
  line-height: 1;
  transition: all 0.4s ease;
  user-select: none;
}

.service-card:hover .service-card__number {
  color: var(--gold-soft);
  transform: scale(1.1);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  border-radius: 0.75rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-card__icon {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 20px var(--gold-glow);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--teal);
}

.service-card p {
  color: var(--ink-light);
  font-size: 0.88rem;
  line-height: 1.65;
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gold);
  margin-top: 1.25rem;
  transition: all 0.3s ease;
}

.service-card__link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.service-card:hover .service-card__link {
  color: var(--teal);
  gap: 0.6rem;
}

.service-card:hover .service-card__link::after {
  transform: translateX(4px);
}

/* ═══════════════════ WHY US ═══════════════════ */
.why-us {
  position: relative;
  background: var(--teal);
  color: var(--paper);
  overflow: hidden;
}

.why-us__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 80%, rgba(200, 150, 46, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

.section-eyebrow--gold {
  color: var(--gold) !important;
}

.why-us__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

/* Left statement */
.why-us__statement { }

.why-us__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 2.5rem;
}

.why-us__cta {
  margin-top: 2.5rem;
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border: none;
}

.btn--gold:hover {
  background: var(--gold-hover);
  box-shadow: 0 8px 24px var(--gold-glow);
}

/* Right feature rows */
.why-us__features {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 0.75rem;
  cursor: default;
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-row:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(8px);
}

.feature-row__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
  min-width: 2rem;
  transition: all 0.4s ease;
}

.feature-row:hover .feature-row__num {
  color: var(--gold);
}

.feature-row__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 150, 46, 0.1);
  border: 1px solid rgba(200, 150, 46, 0.15);
  border-radius: 0.75rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.feature-row:hover .feature-row__icon {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(200, 150, 46, 0.3);
  transform: scale(1.05);
}

.feature-row__text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.feature-row:hover .feature-row__text h3 {
  color: var(--gold);
}

.feature-row__text p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  transition: color 0.3s ease;
}

.feature-row:hover .feature-row__text p {
  color: rgba(255, 255, 255, 0.8);
}

/* ═══════════════════ PARTNERS MARQUEE ═══════════════════ */
.partners {
  background: var(--paper);
  overflow: hidden;
}

.marquee {
  width: 100%;
  overflow: hidden;
  margin-top: 1rem;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee__track:hover { animation-play-state: paused; }

.marquee__content {
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: 2rem 2.5rem;
}

.marquee__content img {
  height: 80px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(60%);
  transition: all 0.4s ease;
}

.marquee__content img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.12);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════ TESTIMONIALS ═══════════════════ */
.testimonials {
  background: var(--cream);
}

.testimonials-swiper {
  padding-bottom: 3rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--divider);
  box-shadow: var(--shadow-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--divider);
  padding-top: 1rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.92rem;
}

.testimonial-card__author span {
  font-size: 0.78rem;
  color: var(--ink-light);
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--cream-dark);
  opacity: 1;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 28px;
  border-radius: 999px;
}

/* ═══════════════════ BLOG ═══════════════════ */
.blog {
  background: var(--cream-light);
}

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

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--divider);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

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

.blog-card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-card__cat {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-card__body {
  padding: 1.35rem;
}

.blog-card__body time {
  font-size: 0.78rem;
  color: var(--ink-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-card__body h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0 0.4rem;
  line-height: 1.3;
}

.blog-card__body p {
  font-size: 0.88rem;
  color: var(--ink-light);
  line-height: 1.5;
}

/* ═══════════════════ CTA SECTION ═══════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--teal), var(--teal-light), #1A4A55);
  color: var(--white);
  padding: 6rem 0;
}

.cta-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.8rem;
}

.cta-content p {
  font-size: 1.1rem;
  opacity: 0.92;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.cta-actions .btn--outline-light {
  border-color: rgba(255, 255, 255, 0.45);
}

/* ═══════════════════ FOOTER ═══════════════════ */
.site-footer {
  background: var(--teal-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1fr;
  gap: 2rem;
}

.brand--footer .brand-name { color: var(--white); }

.footer-col--brand p {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 32ch;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  padding: 0.3rem 0;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--white); transform: translateX(4px); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2.5rem;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.82rem;
}

/* ═══════════════════ WHATSAPP FLOAT ═══════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 60px;
  height: 60px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(18, 52, 59, 0.4);
  transition: var(--transition);
  animation: whatsappPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(18, 52, 59, 0.55);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(18, 52, 59, 0.4); }
  50% { box-shadow: 0 6px 20px rgba(18, 52, 59, 0.4), 0 0 0 12px rgba(18, 52, 59, 0.15); }
}

/* ═══════════════════ PALETTE SELECTOR WIDGET ═══════════════════ */
.palette-widget {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 91;
}

.palette-toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.palette-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.palette-widget.open .palette-toggle {
  background: var(--gold);
  transform: rotate(30deg) scale(1.05);
}

.palette-panel {
  position: absolute;
  bottom: calc(100% + 0.75rem);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 20px 60px rgba(12, 31, 36, 0.2), 0 4px 12px rgba(12, 31, 36, 0.08);
  border: 1px solid var(--divider);
  min-width: 210px;
  max-height: 420px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transform-origin: bottom left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.palette-widget.open .palette-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.palette-panel__title {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-light);
  margin-bottom: 0.85rem;
}

.palette-options {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.palette-swatch {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.65rem;
  border-radius: var(--radius-xs);
  transition: var(--transition);
  background: transparent;
}

.palette-swatch:hover {
  background: var(--cream-light);
}

.palette-swatch.active {
  background: var(--cream);
  box-shadow: inset 0 0 0 2px var(--gold);
}

.palette-swatch__colors {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
}

.palette-swatch__colors span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.palette-swatch__name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }


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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cuba-grid {
    grid-template-columns: 1fr;
  }

  .cuba-featured { min-height: 360px; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-item:not(:last-child)::after { display: none; }
}

/* Mobile nav footer (hidden on desktop) */
.mobile-nav-footer { display: none; }
.mobile-nav-links { display: contents; }

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  /* Force header to stay opaque when menu is open */
  .site-header.menu-open {
    background: var(--teal-dark) !important;
    backdrop-filter: none !important;
  }

  .site-header.menu-open .lang-toggle {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.25);
  }

  .site-header.menu-open .menu-toggle span {
    background: var(--white);
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--teal-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
    overflow-y: auto;
  }

  .main-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 20% 80%, rgba(200, 150, 46, 0.08) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
    pointer-events: none;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    position: relative;
    z-index: 1;
    padding: 6rem 2rem 2rem;
  }

  .main-nav .nav-link {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-xs);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
  }

  .main-nav.open .nav-link {
    opacity: 1;
    transform: translateY(0);
  }

  /* Stagger delay via nth-child */
  .main-nav.open .nav-link:nth-child(1) { transition-delay: 0.08s; }
  .main-nav.open .nav-link:nth-child(2) { transition-delay: 0.14s; }
  .main-nav.open .nav-link:nth-child(3) { transition-delay: 0.20s; }
  .main-nav.open .nav-link:nth-child(4) { transition-delay: 0.26s; }
  .main-nav.open .nav-link:nth-child(5) { transition-delay: 0.32s; }
  .main-nav.open .nav-link:nth-child(6) { transition-delay: 0.38s; }

  .main-nav .nav-link:hover,
  .main-nav .nav-link:active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
  }

  .main-nav .nav-link--cta {
    margin-top: 0.75rem;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.85rem 2.5rem;
    background: var(--gold) !important;
    color: var(--white) !important;
    box-shadow: 0 8px 24px var(--gold-glow);
  }

  .main-nav .nav-link--cta:hover {
    background: var(--gold-hover) !important;
  }

  /* Mobile nav footer */
  .mobile-nav-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 2rem 2rem 3rem;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease 0.4s;
  }

  .main-nav.open .mobile-nav-footer {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold);
    padding: 0.6rem 1.2rem;
    border: 1.5px solid rgba(200, 150, 46, 0.3);
    border-radius: 999px;
    transition: var(--transition);
  }

  .mobile-nav-phone:hover {
    background: rgba(200, 150, 46, 0.1);
    border-color: var(--gold);
  }

  .mobile-nav-social {
    display: flex;
    gap: 0.75rem;
  }

  .mobile-nav-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
  }

  .mobile-nav-social a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
  }

  .header-phone { display: none; }

  .hero { padding: 0; }
  .hero-title { font-size: clamp(2.4rem, 9vw, 4rem); }
  .hero-subtitle { font-size: 1rem; }

  .booking-float {
    transform: translateY(50%);
  }

  .travel { padding-top: 16rem; }

  .booking-form { padding: 1.25rem 1.25rem; gap: 1rem; }

  .booking-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .booking-submit { width: 100%; justify-content: center; }

  .booking-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }


  .services-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }


  .cuba-services {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-col--brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-col--brand p { text-align: center; }
  .footer-social { justify-content: center; }
  .footer-col a { justify-content: center; }
  .footer-col a:hover { transform: none; }

  section { padding: 4rem 0; }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .travel-swiper .swiper-button-prev,
  .travel-swiper .swiper-button-next {
    width: 28px;
    height: 28px;
  }

  .travel-swiper .swiper-button-prev::after,
  .travel-swiper .swiper-button-next::after {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .hero { padding: 0; min-height: 100vh; }

  .booking-float {
    transform: translateY(40%);
  }

  .travel { padding-top: 14rem; }

  .booking-form { padding: 1rem; gap: 0.75rem; }

  .booking-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .booking-field label { font-size: 0.62rem; margin-bottom: 0.3rem; }

  .booking-field input,
  .booking-field select {
    padding: 0.7rem 0.7rem 0.7rem 2.2rem;
    font-size: 0.85rem;
  }

  .booking-tabs {
    flex-wrap: wrap;
  }

  .booking-tab {
    flex: 1 0 45%;
    padding: 0.65rem 0.5rem;
    font-size: 0.78rem;
  }

  .booking-submit {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }


  .travel-card { height: 340px; }

  .travel-swiper .swiper-button-prev,
  .travel-swiper .swiper-button-next {
    width: 24px;
    height: 24px;
  }

  .travel-swiper .swiper-button-prev::after,
  .travel-swiper .swiper-button-next::after {
    font-size: 8px;
  }
}

/* ═══════════════════ FLATPICKR CUSTOM ═══════════════════ */
.flatpickr-calendar {
  border-radius: var(--radius-sm) !important;
  box-shadow: var(--shadow-deep) !important;
  border: 1px solid var(--divider) !important;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}

.flatpickr-day:hover {
  background: var(--gold-soft) !important;
}

.flatpickr-months .flatpickr-month {
  background: var(--teal) !important;
  color: var(--white) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: var(--teal) !important;
  color: var(--white) !important;
}

.flatpickr-weekday {
  color: var(--teal) !important;
  font-weight: 700 !important;
}

span.flatpickr-weekday {
  background: transparent !important;
}
