/* ═══════════════════════════════════════════════════
   Package Details Page — package-detail.css
   ═══════════════════════════════════════════════════ */

/* ── Container ───────────────────────────────────── */
.pd-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Section heading pattern ─────────────────────── */
.pd-sec-head {
  text-align: center;
  margin-bottom: 48px;
}
.pd-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
  margin: 8px 0 0;
  letter-spacing: 0.3px;
}

/* ── HERO ────────────────────────────────────────── */
.pd-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
  background: #0a0a12;
}
.pd-hero-media {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.pd-hero-img,
.pd-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.pd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,18,0.92) 0%, rgba(8,8,18,0.45) 50%, rgba(8,8,18,0.25) 100%);
  pointer-events: none;
}
.pd-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

/* breadcrumb */
.pd-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.pd-breadcrumb a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.pd-breadcrumb a:hover { color: #d4af37; }
.pd-breadcrumb span:not(:first-child):not(:last-child) { opacity: 0.35; }

.pd-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0 0 12px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.pd-hero-sub {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  margin: 0 0 6px;
  letter-spacing: 0.5px;
}
.pd-hero-validity {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(212,175,55,0.85);
  margin: 0 0 22px;
}

/* chips */
.pd-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.pd-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 50px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.3px;
}

/* scroll hint */
.pd-hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.pd-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: pd-scroll-pulse 1.8s ease-in-out infinite;
}
@keyframes pd-scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.9; transform: scaleY(1.2); }
}

/* ── OVERVIEW ────────────────────────────────────── */
.pd-overview {
  padding: 100px 0;
  background: linear-gradient(180deg, #0a0a14 0%, #0f0f1e 100%);
}
.pd-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pd-overview-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.pd-overview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pd-overview-img-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.10), transparent 70%);
  pointer-events: none;
}
.pd-overview-content { color: #fff; }
.pd-overview-content .section-label { margin-bottom: 12px; display: block; }
.pd-overview-desc {
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  margin: 18px 0 28px;
}

/* highlight list */
.pd-hl-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pd-hl-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.80);
  font-weight: 500;
}
.pd-hl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4af37;
  flex-shrink: 0;
}

/* enquire button */
.pd-enquire-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  background: linear-gradient(135deg, #d4af37, #a8842c);
  color: #0a0a12;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(212,175,55,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pd-enquire-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(212,175,55,0.40);
}

/* ── STAY PLAN ───────────────────────────────────── */
.pd-stay {
  padding: 80px 0;
  background: #0f0f1e;
}
.pd-stay-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 32px 40px;
}
.pd-stay-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
}
.pd-stay-nights {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 700;
  color: #d4af37;
  line-height: 1;
}
.pd-stay-city {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.pd-stay-arrow {
  color: rgba(255,255,255,0.20);
  flex-shrink: 0;
}

/* ── HOTELS ──────────────────────────────────────── */
.pd-hotels {
  padding: 80px 0;
  background: linear-gradient(180deg, #0f0f1e 0%, #0a0a14 100%);
}
.pd-hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.pd-hotel-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 28px 28px;
  transition: border-color 0.3s, background 0.3s;
}
.pd-hotel-card:hover {
  border-color: rgba(212,175,55,0.35);
  background: rgba(255,255,255,0.07);
}
.pd-hotel-dest {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 10px;
}
.pd-hotel-name {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.pd-hotel-room {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* ── ACTIVITIES ──────────────────────────────────── */
.pd-activities {
  padding: 80px 0;
  background: #0a0a14;
}
.pd-act-group {
  margin-bottom: 36px;
}
.pd-act-dest-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 16px;
  padding-left: 4px;
  border-left: 3px solid #d4af37;
  padding-left: 12px;
}
.pd-act-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pd-act-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 14px 18px;
}
.pd-act-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 24px;
  border-radius: 6px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  flex-shrink: 0;
}
.pd-act-badge--pvt {
  background: rgba(212,175,55,0.20);
  color: #d4af37;
  border: 1px solid rgba(212,175,55,0.35);
}
.pd-act-badge--sic {
  background: rgba(99,179,237,0.18);
  color: #63b3ed;
  border: 1px solid rgba(99,179,237,0.30);
}
.pd-act-text {
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  padding-top: 3px;
}

/* ── INCLUSIONS / EXCLUSIONS ─────────────────────── */
.pd-ie {
  padding: 80px 0;
  background: #0f0f1e;
}
.pd-ie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.pd-ie-col {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 36px 36px;
}
.pd-ie-col--inc { border-top: 3px solid rgba(74,222,128,0.6); }
.pd-ie-col--exc { border-top: 3px solid rgba(248,113,113,0.6); }
.pd-ie-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.pd-ie-col--inc .pd-ie-head svg { color: #4ade80; }
.pd-ie-col--exc .pd-ie-head svg { color: #f87171; }
.pd-ie-head h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.pd-ie-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pd-ie-list li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.pd-ie-col--inc .pd-ie-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
  font-size: 12px;
}
.pd-ie-col--exc .pd-ie-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #f87171;
  font-weight: 700;
  font-size: 12px;
}

/* ── TERMS ───────────────────────────────────────── */
.pd-terms {
  padding: 80px 0;
  background: #0a0a14;
}
.pd-terms-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pd-term-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.pd-term-item.is-open {
  border-color: rgba(212,175,55,0.30);
}
.pd-term-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.90);
  font-size: 14.5px;
  font-weight: 600;
  text-align: left;
  gap: 16px;
}
.pd-term-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: rgba(255,255,255,0.45);
}
.pd-term-item.is-open .pd-term-icon {
  transform: rotate(180deg);
  color: #d4af37;
}
.pd-term-body {
  padding: 0 24px 20px;
}
.pd-term-body p {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* ── CTA BAR ─────────────────────────────────────── */
.pd-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f0f1e 0%, #141428 100%);
}
.pd-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 20px;
  padding: 48px 56px;
  flex-wrap: wrap;
}
.pd-cta-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.pd-cta-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.60);
  margin: 0;
}
.pd-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  background: linear-gradient(135deg, #d4af37, #a8842c);
  color: #0a0a12;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(212,175,55,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pd-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(212,175,55,0.42);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .pd-overview-grid { grid-template-columns: 1fr; gap: 36px; }
  .pd-ie-grid { grid-template-columns: 1fr; }
  .pd-cta-inner { flex-direction: column; text-align: center; padding: 40px 32px; }
  .pd-stay-strip { padding: 24px 20px; }
  .pd-stay-node { padding: 0 16px; }
}
@media (max-width: 640px) {
  .pd-container { padding: 0 20px; }
  .pd-hero { padding-bottom: 48px; }
  .pd-hero-content { padding: 0 20px; }
  .pd-overview, .pd-stay, .pd-hotels, .pd-activities, .pd-ie, .pd-terms, .pd-cta { padding: 60px 0; }
  .pd-ie-col { padding: 24px 20px; }
  .pd-cta-inner { padding: 32px 24px; }
  .pd-hotels-grid { grid-template-columns: 1fr; }
  .pd-stay-strip { flex-direction: column; gap: 16px; }
  .pd-stay-arrow { transform: rotate(90deg); }
}
