/* ============================================================
   RV TOURS — PACKAGES PAGE
   Page-specific styles. Global utilities (navbar, footer,
   .lux-container, .section-header) inherit from style.css.
   All classes prefixed with  pk-  to avoid collisions.
   ============================================================ */

/* ============================================================
   PACKAGES HERO — Destination Deck Switcher
   ============================================================ */

/* ── Shell ── */
.pk-hero {
  position: relative;
  min-height: 100vh;
  background: #04091f;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* BG gradient */
.pk-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 100% 90% at 65% 55%, rgba(8,22,78,0.80) 0%, transparent 65%),
    radial-gradient(ellipse 60% 70% at 10% 80%, rgba(212,175,55,0.06) 0%, transparent 60%),
    linear-gradient(160deg, #04091f 0%, #060d2a 55%, #04091c 100%);
}

/* Dot grid texture */
.pk-hero-dots {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 38px 38px;
}

/* Glow orbs */
.pk-glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(120px); z-index: 0; }
.pk-glow--1 { width: 680px; height: 680px; background: rgba(74,169,255,0.09); top: -180px; right: -40px; }
.pk-glow--2 { width: 480px; height: 480px; background: rgba(212,175,55,0.06); bottom: -90px; left: -30px; }

/* Corner deco SVGs */
.pk-hero-deco {
  position: absolute; z-index: 0; pointer-events: none;
  width: 160px; height: 160px;
}
.pk-hero-deco--tr { top: 0; right: 0; }
.pk-hero-deco--bl { bottom: 0; left: 0; }

/* ── Content grid ── */
.pk-hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 90px;
  position: relative; z-index: 2;
}

/* ── LEFT ── */
.pk-hero-left {
  display: flex; flex-direction: column;
}

/* Eyebrow */
.pk-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.57rem; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase; color:rgba(74,169,255,0.75);
  margin-bottom: 22px;
}
.pk-ew-diamond {
  width: 6px; height: 6px;
  background: rgba(74,169,255,0.75); transform: rotate(45deg); flex-shrink: 0;
}

/* Hero title */
.pk-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 5.2vw, 84px);
  font-weight: 700; line-height: 1.05;
  color: #ffffff; letter-spacing: -1.5px;
  margin-bottom: 28px;
}
.pk-hero-title em {
  font-style: italic;
  background: linear-gradient(125deg,rgba(74,169,255,0.75));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Destination tabs */
.pk-dest-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 20px;
}
.pk-dest-tab {
  padding: 9px 18px; border-radius: 100px; cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.45);
  transition: all 0.25s ease;
}
.pk-dest-tab:hover {
  border-color: rgba(212,175,55,0.35);
  color: rgba(255,255,255,0.78);
  background: rgba(212,175,55,0.05);
}
.pk-dest-tab.active {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.55);
  color: #ffffff;
}

/* Dynamic destination info box */
.pk-dest-info-wrap {
  background: rgba(255,255,255,0.038);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 20px 22px;
  margin-bottom: 28px;
}
.pk-dest-name-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 7px;
}
.pk-dest-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 700; color: #fff; line-height: 1;
}
.pk-dest-badge {
  padding: 3px 11px; border-radius: 100px; flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.4px;
}
.pk-dest-meta-row {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px; color: rgba(255,255,255,0.42);
  margin-bottom: 10px;
}
.pk-dest-meta-row strong { color: #ffffff; font-weight: 700; }
.pk-dest-sep { opacity: 0.30; }
.pk-dest-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; line-height: 1.68;
  color: rgba(255,255,255,0.42); margin: 0;
}

/* CTAs */
.pk-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.pk-cta-gold {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 36px;
  background: linear-gradient(135deg, rgba(74,169,255,0.75));
  border-radius: 100px; color: #1a0800;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.4px;
  box-shadow: 0 8px 32px rgba(212,137,14,0.40);
  transition: transform 0.30s ease, box-shadow 0.30s ease;
  position: relative; overflow: hidden;
}
.pk-cta-gold::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.30), transparent);
  transition: left 0.55s ease;
}
.pk-cta-gold:hover::after { left: 100%; }
.pk-cta-gold:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 50px rgba(212,137,14,0.55); }

.pk-cta-glass {
  display: inline-flex; align-items: center;
  padding: 14px 36px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 100px; color: rgba(255,255,255,0.78);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 600;
  transition: all 0.30s ease;
}
.pk-cta-glass:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.50);
  color: #ffffff; transform: translateY(-2px);
}

/* Stats row */
.pk-hero-stats {
  display: flex; align-items: center; gap: 22px;
}
.pk-stat { text-align: left; }
.pk-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 700; color: #fff; line-height: 1;
}
.pk-stat-plus { color: rgba(255,255,255,0.65); }
.pk-stat > span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.32);
  margin-top: 4px;
}
.pk-stat-line { width: 1px; height: 34px; background: rgba(255,255,255,0.10); flex-shrink: 0; }

/* ── RIGHT: Card Deck ── */
.pk-deck-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}

.pk-card-deck {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 540px;
  margin: 0 auto;
}

.pk-deck-card {
  position: absolute; inset: 0;
  border-radius: 26px; overflow: hidden; cursor: pointer;
  box-shadow:
    0 40px 90px rgba(0,0,0,0.55),
    0 10px 30px rgba(0,0,0,0.30);
  will-change: transform, opacity;
  transform-origin: bottom left;
}
.pk-deck-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.80s cubic-bezier(0.25,0.46,0.45,0.94);
}
.pk-deck-card:first-of-type img:hover { transform: scale(1.04); }
.pk-deck-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,9,31,0.88) 0%, rgba(4,9,31,0.25) 45%, transparent 100%);
}
.pk-deck-card-footer {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 22px 20px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.pk-deck-card-footer > span:first-child {
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px; font-weight: 700; letter-spacing: 1px;
  color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.55);
}
.pk-deck-tag {
  padding: 4px 12px; border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 0.4px;
  white-space: nowrap;
}

/* Deck progress dots */
.pk-deck-dots { display: flex; gap: 8px; }
.pk-deck-dot {
  width: 22px; height: 3px; border-radius: 100px;
  background: rgba(255,255,255,0.18); border: none; cursor: pointer;
  transition: all 0.30s ease; padding: 0;
}
.pk-deck-dot.active { background: #D4AF37; width: 38px; }

/* Click hint text */
.pk-deck-hint {
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.22);
  margin: 0;
}

/* ── Scroll hint ── */
.pk-scroll-hint {
  position: absolute; bottom: 26px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 3; opacity: 0.40;
}
.pk-scroll-hint span {
  font-size: 9px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: white;
}
.pk-scroll-line {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: pkScrollLine 2.2s ease-in-out infinite;
}
@keyframes pkScrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .pk-hero-inner { grid-template-columns: 1fr; gap: 48px; padding-top: 120px; padding-bottom: 60px; }
  .pk-card-deck { height: 420px; max-width: 360px; }
  .pk-hero-left { max-width: 580px; }
}
@media (max-width: 640px) {
  .pk-hero-title { font-size: 50px; }
  .pk-card-deck { height: 320px; }
  .pk-hero-ctas { flex-direction: column; }
  .pk-cta-gold, .pk-cta-glass { justify-content: center; }
}

/* ============================================================
   FILTER BAR
   ============================================================ */
.pk-filter-section {
  position: sticky;
  top: 80px;
  z-index: 100;
  padding: 0 0 0;
  pointer-events: none;
}

.pk-filter-wrap {
  pointer-events: auto;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid rgba(11,94,215,0.12);
  border-radius: 20px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow:
    0 8px 40px rgba(11,94,215,0.10),
    0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.35s ease, background 0.35s ease;
}

.pk-filter-section.is-stuck .pk-filter-wrap {
  box-shadow:
    0 16px 60px rgba(11,94,215,0.15),
    0 4px 18px rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.96);
}

.pk-filter-group {
  display: flex; flex-direction: column; gap: 4px; flex: 1;
  min-width: 0;
}
.pk-filter-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #8BACC8;
  padding-left: 14px;
}
.pk-filter-select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 8px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px; font-weight: 600; color: #10253F;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238BACC8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.pk-filter-divider {
  width: 1px; height: 40px;
  background: rgba(11,94,215,0.12);
  flex-shrink: 0;
}

.pk-filter-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 28px;
  background: linear-gradient(135deg, #4AA9FF 0%, #0B5ED7 100%);
  border-radius: 100px; color: white;
  font-size: 13.5px; font-weight: 700; letter-spacing: 0.3px;
  border: none; cursor: pointer;
  box-shadow: 0 6px 24px rgba(11,94,215,0.36);
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap; flex-shrink: 0;
}
.pk-filter-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 36px rgba(74,169,255,0.48);
}

/* ============================================================
   FEATURED PACKAGES
   ============================================================ */
.pk-featured {
  padding: 110px 0 90px;
  background: #F8FBFF;
  position: relative;
}
.pk-featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, #DCE5F0, transparent);
}

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

.pk-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #DCE5F0;
  box-shadow: 0 4px 22px rgba(11,94,215,0.07), 0 1px 6px rgba(0,0,0,0.04);
  transition: transform 0.42s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.42s cubic-bezier(0.25,0.46,0.45,0.94);
  display: flex; flex-direction: column;
}
.pk-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 80px rgba(11,94,215,0.15), 0 8px 24px rgba(0,0,0,0.07);
}

/* Card image */
.pk-card-img-wrap {
  position: relative; height: 240px; overflow: hidden;
}
.pk-card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.pk-card:hover .pk-card-img-wrap img { transform: scale(1.08); }

/* Image hover reveal */
.pk-card-img-overlay {
  position: absolute; inset: 0;
  background: rgba(11,94,215,0.68);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.pk-card-img-overlay span {
  color: white; font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.55);
  border-radius: 100px; padding: 9px 22px;
}
.pk-card:hover .pk-card-img-overlay { opacity: 1; }

/* Badge tag */
.pk-card-tag {
  position: absolute; top: 16px; left: 16px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: white;
}
.pk-card-tag--blue   { background: rgba(11,94,215,0.90); }
.pk-card-tag--gold   { background: rgba(212,137,14,0.92); }
.pk-card-tag--green  { background: rgba(16,185,129,0.90); }
.pk-card-tag--purple { background: rgba(124,58,237,0.90); }

/* Region flag */
.pk-card-region {
  position: absolute; top: 16px; right: 16px;
  padding: 5px 12px;
  background: rgba(255,255,255,0.14); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.24); border-radius: 100px;
  font-size: 10.5px; font-weight: 600; color: white; letter-spacing: 0.4px;
}

/* Card body */
.pk-card-body {
  padding: 22px 22px 0;
  flex: 1; display: flex; flex-direction: column;
}

.pk-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.pk-card-duration {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: #8BACC8; font-weight: 500;
}
.pk-card-rating { display: flex; align-items: center; gap: 4px; }
.pk-card-stars  { color: #F59E0B; font-size: 11.5px; letter-spacing: 1px; }
.pk-card-rcount { font-size: 11px; color: #8BACC8; }

.pk-card-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px; font-weight: 700;
  color: #10253F; letter-spacing: -0.2px; margin-bottom: 8px;
}
.pk-card-desc {
  font-size: 13px; color: #8BACC8; line-height: 1.65; margin-bottom: 0;
  flex: 1;
}

/* Card footer */
.pk-card-footer {
  padding: 16px 22px 24px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid #F0F5FF; margin-top: 14px;
}
.pk-card-price { font-size: 12.5px; color: #8BACC8; }
.pk-card-price strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px; font-weight: 800;
  color: #0B5ED7; letter-spacing: -0.4px; line-height: 1;
}

.pk-card-btn {
  display: inline-flex; align-items: center; gap: 0;
  padding: 10px 22px;
  background: #0B5ED7; border-radius: 100px;
  color: white; font-size: 13px; font-weight: 700;
  box-shadow: 0 4px 16px rgba(11,94,215,0.30);
  transition: all 0.32s cubic-bezier(0.34,1.56,0.64,1);
  position: relative; overflow: hidden;
}
.pk-card-btn::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.5s ease;
}
.pk-card-btn:hover::before { left: 100%; }
.pk-card-btn:hover {
  background: #08418F;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,94,215,0.40);
}

/* ============================================================
   POPULAR DESTINATIONS
   ============================================================ */
.pk-destinations {
  padding: 110px 0;
  background: white;
}

/* Bento-style grid */
.pk-dest-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 300px 280px;
  gap: 20px;
}

.pk-dest-card {
  position: relative; border-radius: 24px; overflow: hidden;
  cursor: pointer;
  background: #0a1830;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.pk-dest-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 36px 90px rgba(0,0,0,0.22);
}

/* Large card spans 2 rows */
.pk-dest-card--large { grid-row: span 2; }

.pk-dest-card-img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 1.0s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.pk-dest-card:hover .pk-dest-card-img { transform: scale(1.12); }

.pk-dest-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,12,42,0.96) 0%, rgba(4,12,42,0.28) 50%, transparent 75%);
  transition: background 0.45s ease;
}
.pk-dest-card:hover .pk-dest-card-overlay {
  background: linear-gradient(to top, rgba(4,12,42,0.98) 0%, rgba(4,12,42,0.40) 55%, rgba(11,94,215,0.10) 100%);
}

/* Region badge */
.pk-dest-region {
  position: absolute; top: 18px; right: 18px; z-index: 3;
  padding: 5px 14px;
  background: rgba(255,255,255,0.13); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.22); border-radius: 100px;
  color: white; font-size: 10.5px; font-weight: 600; letter-spacing: 0.4px;
}

.pk-dest-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 26px 22px; z-index: 2;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
}

.pk-dest-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px; font-weight: 800; color: white;
  letter-spacing: -0.3px; margin-bottom: 4px;
}
.pk-dest-card--large .pk-dest-info h3 { font-size: 30px; }

.pk-dest-info p  { font-size: 12px; color: rgba(255,255,255,0.58); margin-bottom: 8px; }
.pk-dest-price   { font-size: 12.5px; color: rgba(255,255,255,0.68); }
.pk-dest-price strong { color: white; font-size: 16px; font-weight: 700; }

.pk-dest-arrow {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.28);
  display: flex; align-items: center; justify-content: center; color: white;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.pk-dest-card:hover .pk-dest-arrow {
  background: #0B5ED7; border-color: #0B5ED7;
  transform: scale(1.15) rotate(-8deg);
  box-shadow: 0 6px 20px rgba(11,94,215,0.50);
}

/* Hidden reveal content — slides up on hover */
.pk-dest-reveal {
  position: absolute; left: 22px; right: 22px;
  bottom: 80px; z-index: 3;
  display: flex; gap: 12px; flex-wrap: wrap;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}
.pk-dest-card:hover .pk-dest-reveal { opacity: 1; transform: translateY(0); }

.pk-dest-pill {
  padding: 5px 13px;
  background: rgba(255,255,255,0.13); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.20); border-radius: 100px;
  font-size: 10.5px; color: rgba(255,255,255,0.85); font-weight: 600;
}

/* ============================================================
   WHY CHOOSE OUR PACKAGES
   ============================================================ */
.pk-why {
  padding: 120px 0;
  background: linear-gradient(160deg, #EEF7FF 0%, #F8FBFF 55%, #E6F3FF 100%);
  position: relative; overflow: hidden;
}
.pk-why::before {
  content: '';
  position: absolute; top: -140px; right: -140px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(11,94,215,0.07) 0%, transparent 65%);
  pointer-events: none;
}

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

.pk-why-card {
  background: white;
  border-radius: 24px; padding: 36px 30px;
  border: 1px solid rgba(200,222,255,0.55);
  box-shadow: 0 4px 22px rgba(11,94,215,0.07);
  transition: transform 0.42s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.42s cubic-bezier(0.25,0.46,0.45,0.94),
              border-color 0.42s ease;
  position: relative; overflow: hidden;
}
.pk-why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #4AA9FF, #0B5ED7);
  opacity: 0; transition: opacity 0.35s ease;
}
.pk-why-card::after {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(74,169,255,0.10) 0%, transparent 65%);
  opacity: 0; transition: opacity 0.42s ease; pointer-events: none;
}
.pk-why-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 72px rgba(11,94,215,0.14);
  border-color: rgba(11,94,215,0.18);
}
.pk-why-card:hover::before { opacity: 1; }
.pk-why-card:hover::after  { opacity: 1; }

.pk-why-icon {
  width: 60px; height: 60px; border-radius: 18px;
  background: linear-gradient(135deg, #EAF4FF, #D6ECFF);
  color: #0B5ED7;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(11,94,215,0.12);
  transition: all 0.38s cubic-bezier(0.34,1.56,0.64,1);
}
.pk-why-card:hover .pk-why-icon {
  background: linear-gradient(135deg, #0B5ED7, #1A6FE8);
  color: white;
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 8px 28px rgba(11,94,215,0.34);
}

.pk-why-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px; font-weight: 700;
  color: #10253F; margin-bottom: 12px; letter-spacing: -0.2px;
}
.pk-why-card p { font-size: 14px; color: #5A7A9A; line-height: 1.72; }

/* ============================================================
   BOOKING TIMELINE
   ============================================================ */
.pk-timeline {
  padding: 120px 0 110px;
  background: #0B1230;
  position: relative; overflow: hidden;
}

.pk-timeline::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 25%,  rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 70%,  rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 12%,  rgba(255,255,255,0.30) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 58%,  rgba(255,255,255,0.22) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 32%,  rgba(255,255,255,0.28) 0%, transparent 100%),
    radial-gradient(1px 1px at 46% 88%,  rgba(255,255,255,0.20) 0%, transparent 100%);
  pointer-events: none;
}

/* Grid of 5 steps */
.pk-tl-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding-top: 0;
}

/* Connector line */
.pk-tl-line {
  position: absolute;
  top: 35px; /* center of node */
  left: calc(100% / 10);
  right: calc(100% / 10);
  height: 2px;
  background: rgba(255,255,255,0.08);
  z-index: 0; overflow: hidden;
}
.pk-tl-line-fill {
  height: 100%;
  background: linear-gradient(90deg, #4AA9FF, #6EC1FF);
  width: 0%;
  transition: width 1.8s cubic-bezier(0.25,0.46,0.45,0.94);
  border-radius: 2px;
}
.pk-tl-line-fill.active { width: 100%; }

/* Step */
.pk-tl-step {
  display: flex; flex-direction: column; align-items: center;
  position: relative; z-index: 1; padding: 0 10px;
}

/* Node */
.pk-tl-node {
  position: relative;
  width: 70px; height: 70px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 30px;
}
.pk-tl-node-ring {
  position: absolute; inset: -8px; border-radius: 50%;
  border: 2px dashed rgba(74,169,255,0.22);
  animation: pkNodeRing 5s linear infinite;
}
@keyframes pkNodeRing {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.pk-tl-node-inner {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  box-shadow: 0 4px 20px rgba(0,0,0,0.24);
  transition: all 0.45s cubic-bezier(0.34,1.56,0.64,1);
  position: relative; z-index: 2;
}
.pk-tl-step.is-active .pk-tl-node-inner,
.pk-tl-step:hover .pk-tl-node-inner {
  background: linear-gradient(135deg, #4AA9FF, #0B5ED7);
  color: white; border-color: transparent;
  box-shadow: 0 8px 32px rgba(11,94,215,0.50),
              0 0 0 6px rgba(74,169,255,0.12);
  transform: scale(1.10);
}

/* Step card */
.pk-tl-card {
  text-align: center;
  padding: 26px 18px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  width: 100%;
  transition: background 0.38s ease, border-color 0.38s ease, transform 0.38s ease;
  position: relative; overflow: hidden;
}
.pk-tl-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #4AA9FF, #6EC1FF);
  opacity: 0; transition: opacity 0.35s ease;
}
.pk-tl-step:hover .pk-tl-card {
  background: rgba(255,255,255,0.07);
  border-color: rgba(74,169,255,0.22);
  transform: translateY(-6px);
}
.pk-tl-step:hover .pk-tl-card::before { opacity: 1; }

.pk-tl-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 34px; font-weight: 800;
  color: rgba(255,255,255,0.06);
  letter-spacing: -1px; line-height: 1; margin-bottom: 6px;
}
.pk-tl-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14.5px; font-weight: 700;
  color: rgba(255,255,255,0.88); margin-bottom: 8px;
}
.pk-tl-card p {
  font-size: 12.5px; color: rgba(255,255,255,0.42); line-height: 1.65;
}

/* ============================================================
   TRAVEL PACKAGE CATEGORIES
   ============================================================ */
.pk-categories {
  padding: 120px 0;
  background: white;
}

.pk-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pk-cat-card {
  position: relative; border-radius: 24px; overflow: hidden;
  height: 280px; cursor: pointer;
  box-shadow: 0 8px 30px rgba(0,0,0,0.10);
  transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
}
.pk-cat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.pk-cat-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.pk-cat-card:hover .pk-cat-bg { transform: scale(1.10); }

.pk-cat-overlay {
  position: absolute; inset: 0;
  transition: background 0.45s ease;
}
.pk-cat-overlay--blue   { background: linear-gradient(160deg, rgba(11,94,215,0.82) 0%, rgba(4,12,42,0.75) 100%); }
.pk-cat-overlay--teal   { background: linear-gradient(160deg, rgba(6,120,130,0.82) 0%, rgba(4,12,42,0.75) 100%); }
.pk-cat-overlay--gold   { background: linear-gradient(160deg, rgba(180,110,10,0.82) 0%, rgba(4,12,42,0.75) 100%); }
.pk-cat-overlay--purple { background: linear-gradient(160deg, rgba(100,50,200,0.82) 0%, rgba(4,12,42,0.75) 100%); }
.pk-cat-overlay--green  { background: linear-gradient(160deg, rgba(16,130,80,0.82) 0%, rgba(4,12,42,0.75) 100%); }
.pk-cat-overlay--rose   { background: linear-gradient(160deg, rgba(160,40,80,0.82) 0%, rgba(4,12,42,0.75) 100%); }

.pk-cat-body {
  position: absolute; inset: 0; padding: 28px 26px;
  display: flex; flex-direction: column; justify-content: flex-end;
  z-index: 2;
}

.pk-cat-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: rgba(255,255,255,0.14); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.22);
  color: white;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: all 0.38s cubic-bezier(0.34,1.56,0.64,1);
}
.pk-cat-card:hover .pk-cat-icon {
  background: rgba(255,255,255,0.22);
  transform: scale(1.10) rotate(-5deg);
}

.pk-cat-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px; font-weight: 800; color: white;
  margin-bottom: 6px; letter-spacing: -0.2px;
}
.pk-cat-count {
  font-size: 11.5px; color: rgba(255,255,255,0.60);
  letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
  margin-bottom: 14px;
}

.pk-cat-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; color: white; letter-spacing: 0.8px;
  text-transform: uppercase;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.pk-cat-card:hover .pk-cat-link { opacity: 1; transform: translateY(0); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.pk-testi {
  padding: 120px 0;
  background: linear-gradient(160deg, #EEF7FF 0%, #F8FBFF 55%, #E6F3FF 100%);
  position: relative; overflow: hidden;
}

.pk-testi-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.pk-testi-slider { position: relative; }

.pk-testi-track { position: relative; min-height: 210px; }

.pk-testi-slide {
  position: absolute; inset: 0;
  opacity: 0; pointer-events: none;
  display: flex; align-items: center;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  transform: translateY(12px);
}
.pk-testi-slide.is-active {
  position: relative; opacity: 1; pointer-events: auto;
  transform: translateY(0);
}

.pk-testi-card {
  width: 100%; background: white;
  border-radius: 24px; padding: 36px 40px;
  border: 1px solid rgba(200,222,255,0.55);
  box-shadow: 0 8px 40px rgba(11,94,215,0.09);
  position: relative; overflow: hidden;
}
.pk-testi-card::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 130px; height: 130px;
  background: radial-gradient(circle at 100% 0%, rgba(11,94,215,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.pk-testi-quote {
  position: absolute; top: 16px; right: 32px;
  font-size: 80px; line-height: 1;
  color: #D6ECFF; font-weight: 700;
  user-select: none; pointer-events: none; opacity: 0.6;
  font-family: 'Playfair Display', serif;
}

.pk-testi-top {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 18px;
}
.pk-testi-stars { color: #F59E0B; font-size: 16px; letter-spacing: 2px; }

.pk-testi-card p {
  font-size: 15px; color: #3a5a7a;
  line-height: 1.72; font-style: italic; margin-bottom: 24px;
}

.pk-testi-author { display: flex; align-items: center; gap: 14px; }
.pk-testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, #EAF4FF, #C8E0FF);
  color: #0B5ED7; border: 2px solid rgba(11,94,215,0.14);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.pk-testi-author-info strong {
  display: block; font-size: 14px; font-weight: 700; color: #10253F;
  font-family: 'Montserrat', sans-serif; margin-bottom: 2px;
}
.pk-testi-author-info span { font-size: 12px; color: #7a9ab8; }

/* Nav dots */
.pk-testi-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 9px; margin-top: 28px;
}
.pk-testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(11,94,215,0.18); border: none; cursor: pointer;
  transition: all 0.38s cubic-bezier(0.34,1.56,0.64,1); padding: 0;
}
.pk-testi-dot.active {
  width: 32px; border-radius: 4px;
  background: #0B5ED7;
  box-shadow: 0 2px 8px rgba(11,94,215,0.30);
}

/* ============================================================
   LUXURY CTA
   ============================================================ */
.pk-cta {
  position: relative; min-height: 560px;
  display: flex; align-items: center; overflow: hidden;
}

.pk-cta-bg {
  position: absolute; inset: -80px 0;
  background: url('../images/Hero-2.png') center / cover no-repeat;
  will-change: transform;
}

.pk-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(125deg, rgba(2,8,36,0.94) 0%, rgba(4,22,75,0.88) 45%, rgba(8,50,140,0.70) 100%);
}

.pk-cta-inner {
  position: relative; z-index: 2;
  text-align: center; width: 100%; max-width: 740px; margin: 0 auto;
}

.pk-cta-label {
  display: inline-block;
  color: #6EC1FF; font-size: 11px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase; margin-bottom: 26px;
}

.pk-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; font-weight: 700;
  color: white; line-height: 1.08; letter-spacing: -0.5px;
  margin-bottom: 22px;
  text-shadow: 0 10px 50px rgba(0,0,0,0.28);
}
.pk-cta-title em {
  font-style: italic;
  background: linear-gradient(125deg, #e0f2fe 0%, #93c5fd 38%, #bfdbfe 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pk-cta-sub {
  font-size: 16px; color: rgba(255,255,255,0.64);
  line-height: 1.80; margin-bottom: 44px;
  max-width: 500px; margin-left: auto; margin-right: auto;
}

.pk-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 20px 56px;
  background: linear-gradient(135deg, #f0c040 0%, #d4890e 50%, #e8a820 100%);
  border-radius: 100px; color: #1a0800;
  font-size: 16px; font-weight: 700; letter-spacing: 0.4px;
  box-shadow: 0 8px 36px rgba(212,137,14,0.48);
  transition: all 0.38s cubic-bezier(0.34,1.56,0.64,1);
  position: relative; overflow: hidden;
}
.pk-cta-btn::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.38), transparent);
  transition: left 0.6s ease;
}
.pk-cta-btn:hover::before { left: 100%; }
.pk-cta-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 22px 58px rgba(212,137,14,0.56);
}

/* ============================================================
   INQUIRY NOW BUTTON — Featured Package Cards
   ============================================================ */

/* Card footer: single button centered */
.pk-card-footer--single {
  justify-content: center;
}

/* View Package button — mirror/glass style */
.pk-inq-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  background: linear-gradient(135deg, rgba(11,94,215,0.88) 0%, rgba(6,60,150,0.92) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 100px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 18px rgba(11,94,215,0.30),
              inset 0 1px 0 rgba(255,255,255,0.30),
              inset 0 -1px 0 rgba(0,0,0,0.15);
  transition: all 0.32s cubic-bezier(0.34,1.56,0.64,1);
  position: relative; overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  outline: none;
}
/* Shine sweep */
.pk-inq-btn::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transition: left 0.52s ease;
  pointer-events: none;
}
/* Top gloss line */
.pk-inq-btn::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.18), transparent);
  border-radius: 100px 100px 0 0;
  pointer-events: none;
}
.pk-inq-btn:hover::before { left: 100%; }
.pk-inq-btn:hover {
  background: linear-gradient(135deg, rgba(74,169,255,0.92) 0%, rgba(11,94,215,0.95) 100%);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 28px rgba(11,94,215,0.40),
              inset 0 1px 0 rgba(255,255,255,0.40),
              inset 0 -1px 0 rgba(0,0,0,0.12);
}

/* ============================================================
   INQUIRY NOW BUTTON — Destination Cards
   ============================================================ */
.pk-dest-inq-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 16px;
  background: rgba(74,169,255,0.15);
  border: 1px solid rgba(74,169,255,0.40);
  border-radius: 100px;
  color: rgba(255,255,255,0.90);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.28s ease;
  white-space: nowrap;
  margin-top: 6px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pk-dest-inq-btn:hover {
  background: #0B5ED7;
  border-color: #0B5ED7;
  color: white;
  transform: translateX(3px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1440px) {
  .pk-hero-title { font-size: 68px; }
  .pk-cta-title  { font-size: 56px; }
}

@media (max-width: 1200px) {
  .pk-hero-title { font-size: 58px; }
  .pk-hero-stats-card { width: 240px; }
  .pk-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .pk-dest-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .pk-dest-card--large { grid-row: auto; }
  .pk-why-grid { grid-template-columns: repeat(2, 1fr); }
  .pk-tl-track { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .pk-tl-line  { display: none; }
  .pk-cat-grid { grid-template-columns: repeat(3, 1fr); }
  .pk-cta-title { font-size: 48px; }
}

@media (max-width: 1024px) {
  .pk-hero-inner { flex-direction: column; align-items: flex-start; gap: 40px; }
  .pk-hero-stats-card { width: 100%; display: grid; grid-template-columns: repeat(3,1fr); }
  .pk-hero-stat { border-bottom: none; border-right: 1px solid rgba(255,255,255,0.08); }
  .pk-hero-stat:last-child { border-right: none; }
  .pk-hero-title { font-size: 52px; }
  .pk-filter-wrap { flex-wrap: wrap; gap: 12px; }
  .pk-filter-divider { display: none; }
  .pk-filter-group { flex: 1 1 45%; }
  .pk-filter-btn { width: 100%; justify-content: center; }
  .pk-dest-grid { grid-template-columns: 1fr; }
  .pk-dest-card--large .pk-dest-card-img { height: 360px; }
  .pk-why-grid { grid-template-columns: repeat(2, 1fr); }
  .pk-tl-track { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .pk-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .pk-testi-card { padding: 28px 28px; }
}

@media (max-width: 768px) {
  .pk-hero-title  { font-size: 40px; letter-spacing: -0.5px; }
  .pk-hero-desc   { font-size: 15px; }
  .pk-hero-stats-card { grid-template-columns: 1fr 1fr; }
  .pk-hero-stat:last-child { border-right: none; }
  .pk-cards-grid  { grid-template-columns: 1fr; }
  .pk-dest-grid   { grid-template-columns: 1fr; }
  .pk-why-grid    { grid-template-columns: 1fr; }
  .pk-tl-track    { grid-template-columns: 1fr; gap: 16px; }
  .pk-tl-step     { flex-direction: row; align-items: flex-start; gap: 18px; padding: 0; }
  .pk-tl-node     { margin-bottom: 0; flex-shrink: 0; }
  .pk-tl-card     { text-align: left; }
  .pk-cat-grid    { grid-template-columns: 1fr 1fr; }
  .pk-cta-title   { font-size: 38px; }
  .pk-scroll-hint { display: none; }
  .pk-filter-wrap { padding: 16px 18px; }
  .pk-filter-group { flex: 1 1 100%; }
  .pk-testi-card  { padding: 24px 22px; }
}

@media (max-width: 480px) {
  .pk-hero-title  { font-size: 30px; }
  .pk-hero-stats-card { grid-template-columns: 1fr; }
  .pk-hero-stat   { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .pk-hero-stat:last-child { border-bottom: none; }
  .pk-cat-grid    { grid-template-columns: 1fr; }
  .pk-cta-title   { font-size: 30px; }
  .pk-cta-btn     { padding: 16px 36px; font-size: 14px; }
}


/* ============================================================
   EXTENDED RESPONSIVE — Packages Page
   All breakpoints: 1920 → 1440 → 1366 → 1200 → 1024 → 768 → 480 → 360 → 320
   Desktop visuals are UNCHANGED.
   ============================================================ */

/* ── 1920px+ Ultra-wide ── */
@media (min-width: 1920px) {
  .pk-hero-inner { max-width: 1520px; }
  .pk-hero-title { font-size: 96px; }
  .pk-card-deck  { max-width: 480px; height: 600px; }
  .pk-cards-grid { grid-template-columns: repeat(4, 1fr); }
  .pk-why-grid   { grid-template-columns: repeat(3, 1fr); }
}

/* ── 1440px ── */
@media (max-width: 1440px) {
  .pk-hero-title { font-size: 68px; }
  .pk-cta-title  { font-size: 56px; }
  .pk-dest-grid  {
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 300px 280px;
  }
}

/* ── 1366px ── */
@media (max-width: 1366px) {
  .pk-hero-title { font-size: 60px; }
  .pk-card-deck  { max-width: 380px; height: 500px; }
  .pk-cards-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .pk-dest-grid  {
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 280px 260px;
  }
}

/* ── 1200px ── */
@media (max-width: 1200px) {
  .pk-hero-title  { font-size: 58px; }
  .pk-cards-grid  { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .pk-dest-grid   {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }
  .pk-dest-card--large { grid-row: auto; }
  .pk-dest-card   { min-height: 240px; }
  .pk-why-grid    { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .pk-tl-track    { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .pk-tl-line     { display: none; }
  .pk-cta-title   { font-size: 48px; }
}

/* ── 1024px — Tablet landscape ── */
@media (max-width: 1024px) {
  /* Hero — single column */
  .pk-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 120px;
    padding-bottom: 64px;
  }
  .pk-hero-left  { max-width: 620px; }
  .pk-hero-title { font-size: 54px; }
  .pk-card-deck  { height: 440px; max-width: 380px; }

  /* Prevent card deck overflow */
  .pk-deck-wrap  { width: 100%; }

  /* Destinations */
  .pk-dest-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 14px;
  }
  .pk-dest-card--large { grid-row: auto; grid-column: span 2; min-height: 280px; }
  .pk-dest-card { min-height: 230px; }

  /* Why grid */
  .pk-why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Timeline */
  .pk-tl-track { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .pk-tl-line  { display: none; }

  /* CTA */
  .pk-cta-title { font-size: 44px; }
  .pk-cta-sub   { font-size: 15px; max-width: 440px; }
}

/* ── 900px — Between tablet and mobile ── */
@media (max-width: 900px) {
  .pk-hero-title { font-size: 48px; }
  .pk-dest-card--large { grid-column: span 1; }
  .pk-dest-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}

/* ── 768px — Tablet portrait / large mobile ── */
@media (max-width: 768px) {
  body, html { overflow-x: hidden; }

  /* Hero */
  .pk-hero-inner { padding-top: 110px; padding-bottom: 52px; gap: 40px; }
  .pk-hero-title { font-size: 42px; letter-spacing: -0.5px; }
  .pk-card-deck  { height: 360px; max-width: 340px; }
  .pk-dest-tabs  { gap: 7px; }
  .pk-dest-tab   { padding: 8px 14px; font-size: 11px; }
  .pk-hero-ctas  { flex-direction: column; gap: 11px; }
  .pk-cta-gold, .pk-cta-glass { justify-content: center; width: 100%; }
  .pk-hero-stats { gap: 16px; }

  /* Featured packages — single column */
  .pk-cards-grid { grid-template-columns: 1fr; gap: 18px; }
  .pk-card-img-wrap { height: 220px; }

  /* Destinations — single column */
  .pk-dest-grid  { grid-template-columns: 1fr; gap: 14px; }
  .pk-dest-card--large { grid-column: span 1; min-height: 260px; }
  .pk-dest-card  { min-height: 230px; }

  /* Why grid — single column */
  .pk-why-grid   { grid-template-columns: 1fr; gap: 16px; }
  .pk-why-card   { padding: 28px 24px; }

  /* Timeline — vertical */
  .pk-tl-track   { grid-template-columns: 1fr; gap: 16px; }
  .pk-tl-step    { flex-direction: row; align-items: flex-start; gap: 16px; padding: 0; }
  .pk-tl-node    { margin-bottom: 0; flex-shrink: 0; width: 60px; height: 60px; }
  .pk-tl-node-inner { width: 60px; height: 60px; }
  .pk-tl-card    { text-align: left; }

  /* CTA */
  .pk-cta-title  { font-size: 36px; }
  .pk-cta-sub    { font-size: 14px; max-width: 100%; }
  .pk-cta-btn    { padding: 17px 42px; font-size: 14px; }

  /* Scroll hint */
  .pk-scroll-hint { display: none; }

  /* Inquiry button in cards */
  .pk-inq-btn { width: 100%; justify-content: center; }
  .pk-card-footer--single { padding: 14px 20px 20px; }
}

/* ── 640px — Standard mobile ── */
@media (max-width: 640px) {
  .pk-hero-inner { padding-top: 100px; }
  .pk-hero-title { font-size: 36px; }
  .pk-card-deck  { height: 320px; max-width: 300px; }

  .pk-dest-info h3 { font-size: 20px; }
  .pk-dest-card--large .pk-dest-info h3 { font-size: 24px; }

  .pk-why { padding: 80px 0; }
  .pk-why-card { padding: 24px 20px; }

  .pk-timeline { padding: 80px 0 70px; }
  .pk-tl-node, .pk-tl-node-inner { width: 54px; height: 54px; }

  .pk-cta-title { font-size: 32px; }
}

/* ── 480px — Small mobile ── */
@media (max-width: 480px) {
  .pk-hero-inner { padding-top: 96px; padding-bottom: 44px; gap: 32px; }
  .pk-hero-title { font-size: 30px; letter-spacing: -0.3px; }
  .pk-hero-eyebrow { font-size: 0.52rem; letter-spacing: 0.18em; }
  .pk-card-deck  { height: 280px; max-width: 100%; }

  /* Destination tabs wrap */
  .pk-dest-tabs  { gap: 6px; }
  .pk-dest-tab   { padding: 7px 12px; font-size: 10.5px; }

  /* Info wrap */
  .pk-dest-info-wrap { padding: 16px 18px; border-radius: 14px; }
  .pk-dest-name  { font-size: 1.25rem; }
  .pk-dest-meta-row { font-size: 11.5px; }
  .pk-dest-desc  { font-size: 12px; }

  /* CTAs */
  .pk-cta-gold, .pk-cta-glass { padding: 13px 28px; font-size: 12.5px; }

  /* Stats */
  .pk-hero-stats { flex-wrap: wrap; gap: 10px; }
  .pk-stat-line  { display: none; }
  .pk-stat strong { font-size: 1.45rem; }

  /* Featured cards */
  .pk-featured   { padding: 72px 0 60px; }
  .pk-cards-grid { gap: 14px; }
  .pk-card       { border-radius: 18px; }
  .pk-card-img-wrap { height: 200px; }
  .pk-card-body  { padding: 18px 18px 0; }
  .pk-card-body h3 { font-size: 15.5px; }
  .pk-card-desc  { font-size: 12.5px; }
  .pk-card-footer--single { padding: 12px 18px 18px; }

  /* Destinations */
  .pk-destinations { padding: 72px 0; }
  .pk-dest-card  { min-height: 210px; border-radius: 18px; }
  .pk-dest-body  { padding: 18px 16px; }
  .pk-dest-info h3 { font-size: 18px; }
  .pk-dest-inq-btn { font-size: 10.5px; padding: 5px 13px; }

  /* Why */
  .pk-why        { padding: 72px 0; }
  .pk-why-icon   { width: 50px; height: 50px; border-radius: 14px; }
  .pk-why-card h3 { font-size: 15px; }
  .pk-why-card p  { font-size: 13px; }

  /* Timeline */
  .pk-timeline   { padding: 72px 0 64px; }
  .pk-tl-card    { padding: 18px 14px; }
  .pk-tl-card h3 { font-size: 13.5px; }
  .pk-tl-card p  { font-size: 12px; }
  .pk-tl-node, .pk-tl-node-inner { width: 50px; height: 50px; }

  /* CTA */
  .pk-cta        { min-height: 480px; }
  .pk-cta-title  { font-size: 28px; }
  .pk-cta-sub    { font-size: 13.5px; }
  .pk-cta-btn    { padding: 15px 32px; font-size: 13px; }
}

/* ── 360px — Very small mobile ── */
@media (max-width: 360px) {
  .pk-hero-inner { padding-top: 88px; padding-bottom: 36px; }
  .pk-hero-title { font-size: 26px; }
  .pk-card-deck  { height: 240px; }
  .pk-dest-tab   { padding: 6px 10px; font-size: 10px; }
  .pk-dest-name  { font-size: 1.1rem; }
  .pk-cta-gold, .pk-cta-glass { padding: 12px 24px; font-size: 12px; }
  .pk-card-img-wrap { height: 180px; }
  .pk-card-body h3 { font-size: 14.5px; }
  .pk-why-card   { padding: 20px 16px; }
  .pk-cta-title  { font-size: 24px; }
  .pk-cta-btn    { padding: 14px 28px; font-size: 12.5px; }
  .pk-dest-info h3 { font-size: 16px; }
}

/* ── 320px — Minimum supported size ── */
@media (max-width: 320px) {
  .pk-hero-title  { font-size: 24px; }
  .pk-hero-eyebrow { display: none; }
  .pk-dest-tabs   { gap: 5px; }
  .pk-dest-tab    { padding: 6px 9px; font-size: 9.5px; }
  .pk-card-deck   { height: 220px; }
  .pk-card-img-wrap { height: 165px; }
  .pk-cta-title   { font-size: 22px; }
  .pk-cta-btn     { width: 100%; justify-content: center; }
}

/* ── Global overflow guard ── */
.pk-hero, .pk-featured, .pk-destinations, .pk-why, .pk-timeline, .pk-cta {
  max-width: 100%;
  overflow-x: hidden;
}

/* Ensure images never stretch */
.pk-card-img-wrap img,
.pk-dest-card-img,
.pk-deck-card img,
.pk-cat-bg {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}

/* ── Category Tabs ─────────────────────────────────── */
.pk-cat-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.pk-cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  border: 1.5px solid #c5d5e8;
  background: #fff;
  color: #5a7a9a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.pk-cat-tab:hover {
  background: #e8f4fd;
  border-color: #38bdf8;
  color: #0ea5e9;
}
.pk-cat-tab.active {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  border-color: #0ea5e9;
  color: #fff;
  box-shadow: 0 6px 22px rgba(14,165,233,0.30);
}
.pk-cat-tab svg {
  flex-shrink: 0;
  opacity: 0.75;
}
.pk-cat-tab.active svg { opacity: 1; }
.pk-cat-tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  border-radius: 11px;
  padding: 0 6px;
  background: rgba(0,0,0,0.08);
  font-size: 11px;
  font-weight: 700;
  color: inherit;
}
.pk-cat-tab.active .pk-cat-tab-count {
  background: rgba(255,255,255,0.25);
  color: #fff;
}
.pk-tab-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #8a9ab0;
  font-size: 15px;
  padding: 40px 0;
}

@media (max-width: 600px) {
  .pk-cat-tab { padding: 10px 18px; font-size: 13px; }
}
