/* ============================================================
   DUBAI HOLIDAY — PKG.CSS  v3  (FINAL)
   For: pkg_luxury.html · pkg_honeymoon.html · pkg_adventure.html
         pkg_family.html · pkg_cruise.html
   ============================================================ */

/* ===================================================
   1. CATEGORY HERO
   KEY FIX: padding-top covers trust-bar(41px) +
   navbar-main(76px) + nav-row-pkg(44px) = 161px
   All child elements need z-index > 0
   =================================================== */
.pkg-category-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* padding-top: 170px; */
  /* padding-bottom: 80px; */
  overflow: hidden;
  /* background-image set per-page via inline <style> */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;  
  /* flex-direction: column; */
  padding: 100px 0 56px;
  margin-top: 120px;
}

/* Dark overlay — ensures text is always visible */
.pkg-category-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      160deg,
      rgba(6, 11, 20, 0.90) 0%,
      rgba(13, 11, 8, 0.55) 45%,
      rgba(13, 11, 8, 0.85) 100%
    ),
    radial-gradient(ellipse at 50% 70%, rgba(212,113,42,0.08) 0%, transparent 65%);
}

/* Geometric lines */
.pkg-category-hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%;
  width: 110%; height: 80%;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(55deg,  transparent 47%, rgba(212,113,42,0.05) 48%, rgba(212,113,42,0.05) 50%, transparent 51%),
    linear-gradient(305deg, transparent 47%, rgba(212,113,42,0.04) 48%, rgba(212,113,42,0.04) 50%, transparent 51%);
}

/* The container MUST be above the overlays */
.pkg-category-hero > .container {
  position: relative;
  z-index: 3;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.breadcrumb a {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.55);  /* FIX: was rgba(20,19,20,0.45) = near-black on dark bg */
  text-decoration: none;
  transition: color 0.22s;
}
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep {
  color: var(--gold-dim);
  font-size: 0.7rem;
}
.breadcrumb .current {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ── H1 Heading ── */
.pkg-category-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.04;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.pkg-category-hero h1 em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 200;
  display: block;
}

/* ── Description text ── */
.hero-desc {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 239, 224, 0.75);
  line-height: 1.80;
  max-width: 680px;
  margin: 0 auto 34px;
  letter-spacing: 0.02em;
}

/* ── Meta pills ── */
.pkg-category-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cat-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.85);
  background: rgba(13, 11, 8, 0.72);
  border: 1px solid rgba(201, 168, 76, 0.32);
  padding: 9px 20px;
  border-radius: 40px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.cat-meta-pill svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 768px) {
  .pkg-category-hero {
    min-height: 520px;
    padding-top: 140px;
    padding-bottom: 56px;
  }
  .pkg-category-hero h1 { font-size: clamp(2.8rem, 10vw, 4rem); }
}


/* ===================================================
   2. UTILITY — section-label · divider
   =================================================== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.divider {
  font-size: 0.72rem;
  color: var(--gold-dim);
  letter-spacing: 0.6em;
  margin: 12px 0 44px;
  text-align: center;
}


/* ===================================================
   3. DESTINATION OVERVIEW  (image | text)
   =================================================== */
.dest-overview {
  background: var(--ink2);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.dest-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.dest-overview-img {
  /* background-image set per-page via inline style */
  background-size: cover;
  background-position: center;
  min-height: 380px;
  position: relative;
}
.dest-overview-img::after {
  content: '';
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to right, transparent 50%, var(--ink2) 100%); */
}

.dest-overview-body {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dest-overview-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.8vw, 2.9rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.14;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.dest-overview-body h2 em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 300;
  display: block;
}
.dest-overview-body p {
  font-size: 0.87rem;
  color: #2A1F14;;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 14px;
}

/* Stats row inside overview */
.dest-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 26px;
  margin-top: 10px;
  border-top: 1px solid var(--border-gold);
}
.dest-stat { display: flex; flex-direction: column; gap: 4px; }
.dest-stat .stat-num {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
}
.dest-stat .stat-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-muted);
}

@media (max-width: 900px) {
  .dest-overview-grid { grid-template-columns: 1fr; }
  .dest-overview-img { min-height: 260px; }
  .dest-overview-img::after {
    background: linear-gradient(to bottom, transparent 50%, var(--ink2) 100%);
  }
  .dest-overview-body { padding: 36px 28px; }
}


/* ===================================================
   4. PKG HIGHLIGHTS STRIP  (5 logo + text items)
   =================================================== */
.pkg-highlights-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border-gold);
  border: 1px solid var(--border-gold);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
}

.pkg-hl-item {
  background: var(--ink2);
  padding: 30px 18px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.pkg-hl-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.pkg-hl-item:hover { background: var(--ink3); }
.pkg-hl-item:hover::before { opacity: 1; }

/* Logo square */
.hl-logo {
  width: 54px;
  height: 54px;
  border: 1px solid var(--border-gold2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-glow);
  flex-shrink: 0;
  transition: var(--trans);
}
.pkg-hl-item:hover .hl-logo {
  background: var(--gold-glow-hard);
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(212,113,42,0.25);
}
.hl-logo svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pkg-hl-item h4 {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.2;
}
.pkg-hl-item p {
  font-size: 0.74rem;
  color: #2A1F14;;
  line-height: 1.65;
  font-weight: 300;
}

@media (max-width: 960px)  { .pkg-highlights-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 580px)  { .pkg-highlights-strip { grid-template-columns: repeat(2, 1fr); } }


/* ===================================================
   5. SUB-PACKAGES CARDS GRID
   =================================================== */
.sub-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.sub-pkg-card {
  background: var(--ink3);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--trans);
}
.sub-pkg-card:hover {
  border-color: var(--border-gold2);
  transform: translateY(-7px);
  box-shadow: 0 28px 72px rgba(0,0,0,0.6), var(--shadow-gold);
}

/* Image */
.sub-pkg-img-wrap {
  position: relative;
  overflow: hidden;
  height: 250px;
  flex-shrink: 0;
}
.sub-pkg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
  filter: brightness(0.80);
}
.sub-pkg-card:hover .sub-pkg-img {
  transform: scale(1.07);
  filter: brightness(0.95);
}

/* Badge */
.sub-pkg-img-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  border: 1px solid rgba(212,113,42,0.5);
  color: var(--ink);
}
.sub-pkg-img-badge.green {
  background: linear-gradient(135deg, #14532d, #22c55e);
  border-color: rgba(34,197,94,0.45);
  color: #fff;
}
.sub-pkg-img-badge.teal {
  background: linear-gradient(135deg, #0c4a6e, #22d3ee);
  border-color: rgba(34,211,238,0.45);
  color: #fff;
}

/* Rating */
.sub-pkg-rating {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 0.70rem;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(30,16,5,0.82);
  border: 1px solid var(--border-gold);
  padding: 5px 11px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* Body */
.sub-pkg-body {
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Days label */
.sub-pkg-days {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.sub-pkg-days svg {
  width: 13px; height: 13px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* Package name */
.sub-pkg-name {
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 12px;
}

/* Description */
.sub-pkg-desc {
  font-size: 0.84rem;
  color: #2A1F14;;
  line-height: 1.82;
  font-weight: 300;
  margin-bottom: 20px;
  flex: 1;
}

/* Features checklist */
.sub-pkg-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}
.sub-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--ivory-dim);
  font-weight: 400;
  line-height: 1.55;
}
.sub-feat svg {
  width: 15px; height: 15px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Footer */
.sub-pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--border-gold);
  flex-wrap: wrap;
}
.sub-pkg-price-from {
  font-size: 0.58rem;
  color: var(--ivory-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 4px;
}
.sub-pkg-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
}
.sub-pkg-price small {
  font-size: 0.72rem;
  color: var(--ivory-muted);
  font-weight: 400;
  font-family: var(--font-body);
}
.sub-pkg-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

/* WhatsApp button */
.sub-pkg-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #fff;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: var(--trans);
  white-space: nowrap;
  border: none;
}
.sub-pkg-btn-wa svg { width: 14px; height: 14px; fill: #fff; flex-shrink: 0; }
.sub-pkg-btn-wa:hover {
  background: #18a34a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.38);
}

/* Detail button */
.sub-pkg-btn-detail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--border-gold2);
  color: var(--gold-light);
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--trans);
  white-space: nowrap;
}
.sub-pkg-btn-detail:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  color: var(--gold-bright);
}

@media (max-width: 1060px) {
  .sub-packages { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .sub-packages { grid-template-columns: 1fr; }
  .sub-pkg-img-wrap { height: 220px; }
}


/* ===================================================
   6. ENQUIRY SECTION
   =================================================== */
.pkg-enquiry-section {
  background: var(--ink2);
}
.pkg-enquiry-wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.pkg-enquiry-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 18px;
}
.pkg-enquiry-header h2 em {
  color: var(--gold-light);
  font-style: italic;
}
.pkg-enquiry-header > p {
  font-size: 0.90rem;
  color: var(--ivory-muted);
  line-height: 1.88;
  font-weight: 300;
  max-width: 620px;
  margin: 0 auto 32px;
}
.pkg-enquiry-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.perk-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ivory-dim);
  background: var(--ink3);
  border: 1px solid var(--border-gold);
  padding: 9px 18px;
  border-radius: 40px;
  transition: var(--trans);
}
.perk-pill:hover {
  border-color: var(--border-gold2);
  color: var(--gold-light);
  background: var(--gold-glow);
}
.perk-pill svg {
  width: 14px; height: 14px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}


/* ===================================================
   7. CTA BANNER INNER
   =================================================== */
.cta-banner-inner {
  background: linear-gradient(135deg, var(--ink3) 0%, var(--ink4) 50%, var(--ink3) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 80px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 80px;
}
.cta-banner-inner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(212,113,42,0.10) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(212,113,42,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 18px;
  position: relative;
}
.cta-banner-inner h2 em { color: var(--gold-light); font-style: italic; }
.cta-banner-inner p {
  font-size: 1rem;
  color: var(--ivory-muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.82;
  font-weight: 300;
  position: relative;
}
.cta-banner-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
@media (max-width: 700px) {
  .cta-banner-inner { padding: 52px 28px; }
}

/* ===================================================
   FIX: Animation Fallback
   Agar JS load nahi hua / animate nahi kiya toh
   .fade-up aur .reveal content visible rehna chahiye
   =================================================== */

/* Hero ke andar ke saare elements by default visible */
.pkg-category-hero .container,
.pkg-category-hero .breadcrumb,
.pkg-category-hero h1,
.pkg-category-hero .hero-desc,
.pkg-category-hero .pkg-category-meta,
.pkg-category-hero [class*="fade-up"],
.pkg-category-hero [class*="d1"],
.pkg-category-hero [class*="d2"],
.pkg-category-hero [class*="d3"] {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* Global fallback: agar .animated class add nahi hui JS se */
.fade-up:not(.animated),
.reveal:not(.animated) {
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
}