/* ============================================================
   ES HAPPY TOURS — HOME PAGE STYLES
   home.css  |  Syntrix PH © 2026
   ============================================================ */


/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative; z-index: 1;
  min-height: calc(100vh - var(--nav-height));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 60px var(--pad-x) 80px;
}

.hero-logo-wrap {
  margin-bottom: 32px;
  animation: fadeUp 0.85s 0.05s ease both;
}

.hero-logo {
  height: 110px; width: auto;
  max-width: 280px; object-fit: contain;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.1));
}

.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
  animation: fadeUp 0.85s 0.1s ease both;
}

.hero h1 {
  font-size: clamp(3.2rem, 9vw, 6.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--gray-1);
  margin-bottom: 20px;
  animation: fadeUp 0.9s 0.15s ease both;
}

.hero-sub {
  font-size: clamp(0.97rem, 2.2vw, 1.15rem);
  color: var(--gray-3); line-height: 1.7;
  max-width: 480px; margin: 0 auto 36px;
  animation: fadeUp 0.9s 0.22s ease both;
}

.hero-ctas {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeUp 0.9s 0.28s ease both;
}

.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0;
  padding: 20px 36px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  animation: fadeUp 0.9s 0.35s ease both;
}

.hero-stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 28px;
}

.hero-stat strong {
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem; font-weight: 700;
  color: var(--gray-1); line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stat span {
  font-size: 0.72rem; font-weight: 500;
  color: var(--gray-4); margin-top: 4px;
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px; height: 36px;
  background: var(--gray-5);
}

/* Scroll indicator */
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; color: var(--gray-4); font-size: 0.65rem;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  animation: fadeUp 1s 0.5s ease both;
}

.scroll-hint svg { animation: bounce 2s ease-in-out infinite; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}


/* ── SECTION WRAPPER ─────────────────────────────────────── */
.home-section {
  position: relative; z-index: 1;
  padding: 88px var(--pad-x);
}

.home-section .inner { max-width: var(--max-w); margin: 0 auto; }


/* ── DEST STRIP SECTION ──────────────────────────────────── */
.dest-wrapper {
  position: relative; z-index: 1;
  padding: 0 0 80px;
}

.dest-wrapper .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}


/* ── FEATURED PACKAGES ───────────────────────────────────── */
.featured-section {
  position: relative; z-index: 1;
  padding: 88px var(--pad-x);
}

.featured-section .inner { max-width: var(--max-w); margin: 0 auto; }

.section-top {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px; gap: 16px; flex-wrap: wrap;
}

.section-top .section-hd { text-align: left; margin-bottom: 0; }
.section-top .section-hd .eyebrow { justify-content: flex-start; }

.view-all-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.88rem; font-weight: 600; color: var(--yellow-deep);
  white-space: nowrap;
  transition: gap 0.2s;
}
.view-all-link:hover { gap: 10px; }

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pkg-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }

.pkg-card-img {
  position: relative; height: 220px; overflow: hidden;
}
.pkg-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.pkg-card:hover .pkg-card-img img { transform: scale(1.06); }

.pkg-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 12px;
  font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: var(--r-pill);
}
.pkg-badge.featured {
  background: var(--yellow); color: var(--gray-1);
  box-shadow: 0 2px 10px rgba(255,214,10,0.45);
}
.pkg-badge.private-tag {
  background: rgba(28,28,30,0.75); color: #fff;
  backdrop-filter: blur(8px);
}
.pkg-badge.joiner-tag {
  background: rgba(0,120,212,0.85); color: #fff;
  backdrop-filter: blur(8px);
}

.pkg-dest-tag {
  position: absolute; bottom: 14px; right: 14px;
  background: var(--yellow); color: var(--gray-1);
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: var(--r-pill);
}

.pkg-card-body {
  padding: 22px 22px 20px;
  display: flex; flex-direction: column; flex: 1;
}

.pkg-card-body h3 {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 1.25rem; line-height: 1.2;
  color: var(--gray-1); margin-bottom: 10px;
}

.pkg-meta {
  display: flex; align-items: center;
  gap: 14px; margin-bottom: 14px;
}

.pkg-duration {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.8rem; font-weight: 500; color: var(--gray-3);
}

.pkg-inclusions {
  display: flex; gap: 6px; margin-left: auto;
}

.pkg-inc-icon {
  width: 28px; height: 28px;
  background: var(--gray-6); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: var(--gray-3);
}

.pkg-highlights {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 18px; margin-top: auto; padding-top: 8px;
}

.pkg-highlight {
  font-size: 0.72rem; color: var(--gray-3); font-weight: 500;
  display: flex; align-items: center; gap: 4px;
}
.pkg-highlight::before { content: '✓'; color: var(--color-success); font-weight: 700; }

.pkg-footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-5);
  margin-top: auto;
}

.pkg-price { display: flex; flex-direction: column; }

.price-label { font-size: 0.65rem; font-weight: 600; color: var(--gray-4); letter-spacing: 0.08em; text-transform: uppercase; }

.price-amount {
  font-family: 'Poppins', sans-serif; font-size: 1.5rem;
  color: var(--gray-1); line-height: 1; letter-spacing: -0.02em;
}

.price-per { font-size: 0.72rem; color: var(--gray-4); }

.btn-book {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  background: var(--yellow); color: var(--gray-1);
  font-family: inherit;
  font-size: 0.83rem; font-weight: 700;
  border: none; border-radius: var(--r-md);
  box-shadow: var(--sh-yellow);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.btn-book:hover { background: var(--yellow-warm); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,190,0,0.42); }
.btn-book:active { transform: scale(0.97); }


/* ── WHY CHOOSE US ───────────────────────────────────────── */
.why-section {
  position: relative; z-index: 1;
  padding: 88px var(--pad-x);
}
.why-section .inner { max-width: var(--max-w); margin: 0 auto; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--r-xl); padding: 36px 28px;
  box-shadow: var(--sh-sm);
  text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }

.why-icon {
  width: 64px; height: 64px; border-radius: var(--r-lg);
  background: var(--yellow-soft); margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(255,214,10,0.2);
}

.why-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--gray-1); margin-bottom: 10px;
  letter-spacing: 0;
}

.why-card p { font-size: 0.88rem; color: var(--gray-3); line-height: 1.65; }


/* ── GUEST TESTIMONIALS PREVIEW ──────────────────────────── */
.testi-section {
  position: relative; z-index: 1;
  padding: 88px var(--pad-x);
}
.testi-section .inner { max-width: var(--max-w); margin: 0 auto; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.review-card {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.92);
  border-radius: var(--r-xl); padding: 28px;
  box-shadow: var(--sh-sm);
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }

.review-image-card {
  padding: 12px;
  overflow: hidden;
}

.review-image-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: calc(var(--r-xl) - 8px);
  background: linear-gradient(135deg, var(--yellow-soft), #fff);
}

.review-stars {
  font-size: 0.9rem; color: var(--yellow-warm);
  margin-bottom: 14px; letter-spacing: 2px;
}

.review-text {
  font-size: 0.92rem; color: var(--gray-2);
  line-height: 1.7; flex: 1;
  margin-bottom: 20px; font-style: italic;
}

.review-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--gray-5);
}

.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--yellow-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--yellow-deep);
  flex-shrink: 0;
}

.review-info strong {
  display: block; font-size: 0.88rem; font-weight: 700; color: var(--gray-1);
}
.review-info span {
  font-size: 0.75rem; color: var(--gray-4);
}

.testi-cta {
  text-align: center; margin-top: 36px;
}


/* ── HOMEPAGE CTA BANNER ─────────────────────────────────── */
.cta-banner {
  position: relative; z-index: 1;
  padding: 80px var(--pad-x);
}

.cta-banner .inner { max-width: var(--max-w); margin: 0 auto; }

.cta-card {
  background: var(--gray-1);
  border-radius: var(--r-xl);
  padding: 64px var(--pad-x);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.cta-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,214,10,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 75% 30%, rgba(255,190,0,0.08) 0%, transparent 55%);
  pointer-events: none;
}

.cta-card h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white); margin-bottom: 14px; position: relative;
}
.cta-card h2 em { color: var(--yellow); }

.cta-card p {
  font-size: 1.05rem; color: rgba(255,255,255,0.65);
  max-width: 440px; margin: 0 auto 32px;
  line-height: 1.7; position: relative;
}

.cta-buttons {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; position: relative;
}


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

@media (max-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .hero-logo { height: 80px; }
  .hero-stats { padding: 16px 20px; gap: 0; }
  .hero-stat { padding: 0 16px; }
  .hero-stat strong { font-size: 1.5rem; }

  .pkg-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }

  .section-top { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; text-align: center; }
  .hero-stats { flex-direction: column; gap: 16px; padding: 20px; }
  .stat-divider { width: 40px; height: 1px; }
}


/* ── UPDATED HOME EXPERIENCE ──────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  min-height: calc(100vh - var(--nav-height));
  align-items: stretch;
  justify-content: center;
  text-align: left;
  padding: 70px var(--pad-x) 76px;
}

.hero-logo-wrap,
.hero-logo,
.scroll-hint {
  display: none;
}

.hero-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  max-width: 650px;
}

.hero .eyebrow {
  justify-content: flex-start;
}

.hero h1 {
  max-width: 680px;
  font-size: 4.9rem;
  line-height: 0.98;
  letter-spacing: 0;
  margin-bottom: 22px;
}

.hero-sub {
  max-width: 560px;
  margin: 0 0 26px;
  font-size: 1.05rem;
}

.hero-search {
  max-width: 610px;
  margin: 0 0 24px;
  animation: fadeUp 0.9s 0.25s ease both;
}

.hero-search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 7px 7px 7px 18px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.96);
  border-radius: 20px;
  box-shadow: 0 14px 44px rgba(28,28,30,0.09), 0 1px 0 rgba(255,255,255,0.9) inset;
  color: var(--gray-4);
}

.hero-search-box input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--gray-1);
  font: inherit;
  font-size: 0.98rem;
}

.hero-search-box input::placeholder {
  color: var(--gray-4);
}

.hero-search-box button {
  border: 0;
  border-radius: 15px;
  min-height: 44px;
  padding: 0 19px;
  background: var(--yellow);
  color: var(--gray-1);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: var(--sh-yellow);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.hero-search-box button:hover {
  background: var(--yellow-warm);
  transform: translateY(-1px);
  box-shadow: 0 9px 26px rgba(255,190,0,0.38);
}

.hero-search-help {
  margin: 10px 2px 0;
  color: var(--gray-4);
  font-size: 0.78rem;
  line-height: 1.5;
}

.hero-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.hero-suggestion {
  border: 1px solid rgba(229,229,234,0.9);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.64);
  color: var(--gray-2);
  padding: 7px 12px;
  font-size: 0.76rem;
  font-weight: 700;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.hero-suggestion:hover {
  background: var(--yellow-soft);
  border-color: rgba(255,190,0,0.45);
  transform: translateY(-1px);
}

.hero-search-status {
  margin-top: 12px;
  color: var(--gray-2);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-clear-search {
  margin-top: 10px;
  border: 1px solid var(--gray-5);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.72);
  color: var(--gray-2);
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-clear-search:hover {
  background: var(--yellow-soft);
  border-color: rgba(255,190,0,0.42);
}

.hero-ctas {
  justify-content: flex-start;
  margin-bottom: 30px;
}

.hero-stats {
  justify-content: flex-start;
  width: fit-content;
  border-radius: 24px;
}

.hero-visual {
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-image-card {
  position: relative;
  min-height: 590px;
  border-radius: 36px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(28,28,30,0.18);
  isolation: isolate;
}

.hero-image-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,28,30,0.03), rgba(28,28,30,0.42));
  z-index: 1;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

.hero-card-glass,
.hero-mini-card {
  position: absolute;
  z-index: 2;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.82);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  box-shadow: 0 14px 34px rgba(28,28,30,0.14);
}

.hero-card-glass {
  left: 22px;
  right: 22px;
  bottom: 22px;
  border-radius: 24px;
  padding: 20px;
}

.hero-card-kicker,
.hero-mini-card span {
  display: block;
  color: var(--gray-4);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.hero-card-glass strong {
  display: block;
  color: var(--gray-1);
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-card-glass p {
  color: var(--gray-3);
  font-size: 0.86rem;
  margin-top: 6px;
}

.hero-mini-card {
  border-radius: 18px;
  padding: 14px 16px;
}

.hero-mini-card strong {
  color: var(--gray-1);
  font-size: 0.88rem;
}

.hero-mini-card-top {
  top: 28px;
  left: 24px;
}

.hero-mini-card-bottom {
  right: 24px;
  top: 112px;
}

.dest-wrapper {
  padding: 12px 0 72px;
}

.dest-strip {
  overflow: hidden;
  width: 100%;
}

.dest-track {
  width: max-content;
  gap: 0;
  animation-duration: 42s;
  will-change: transform;
}

.dest-wrapper .dest-marquee-group {
  gap: 18px;
  padding-right: 18px;
}

.dest-card {
  flex-basis: 236px;
  height: 300px;
  border-radius: 26px;
  box-shadow: 0 12px 32px rgba(28,28,30,0.12);
}

.dest-info {
  padding: 72px 18px 18px;
  background: linear-gradient(transparent, rgba(28,28,30,0.8));
}

.dest-name {
  font-size: 0.96rem;
}

.dest-price {
  font-size: 0.82rem;
}

.pkg-card-match {
  outline: 3px solid var(--yellow-warm);
  outline-offset: 5px;
  box-shadow: 0 18px 48px rgba(255,190,0,0.28), var(--sh-lg);
}

.pkg-card.is-hidden {
  display: none;
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-visual {
    max-width: 640px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 46px;
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-search-box {
    min-height: auto;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 12px;
  }

  .hero-search-box svg {
    margin: 12px 0 0 4px;
  }

  .hero-search-box input {
    min-height: 42px;
  }

  .hero-search-box button {
    width: 100%;
  }

  .hero-stats {
    width: 100%;
    justify-content: center;
  }

  .hero-image-card,
  .hero-image-card img {
    min-height: 430px;
  }

  .dest-card {
    flex-basis: 190px;
    height: 250px;
  }

}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-ctas {
    align-items: stretch;
  }

  .hero-image-card,
  .hero-image-card img {
    min-height: 370px;
  }

  .hero-mini-card {
    display: none;
  }
}
