/* ===========================
   Hajj.css — Hajj & Umrah Page
   =========================== */

.logo a { display:flex; align-items:center; gap:12px; text-decoration:none; }
.logo a img { height:42px; width:42px; object-fit:cover; }
.logo a span { font-family:'Playfair Display',Georgia,serif; font-size:20px; font-weight:700; }

/* ---- PAGE HERO ---- */
.page-hero {
  padding: 130px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hajj-hero {
  background: linear-gradient(135deg, #1a0e00 0%, #3d1f00 50%, #c9a22715 100%);
}
.hajj-hero::before {
  content: '☪';
  position: absolute;
  right: 5%; top: 10%;
  font-size: 240px;
  opacity: 0.05;
  pointer-events: none;
  color: #c9a227;
}
.hajj-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%; height: 60px;
  background: #f5f7fa;
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-badge {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: #f6d860;
  background: rgba(198,162,39,0.12);
  border: 1px solid rgba(198,162,39,0.35);
  padding: 8px 20px; border-radius: 30px; margin-bottom: 22px;
}
.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 5vw, 56px); font-weight: 900;
  color: white; line-height: 1.15; margin-bottom: 14px;
}
.page-hero h1 em { font-style: italic; color: #f6d860; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 16px; max-width: 520px; margin: 0 auto 40px; }

.hero-stats { display:flex; justify-content:center; gap:40px; flex-wrap:wrap; }
.h-stat { display:flex; flex-direction:column; align-items:center; gap:4px; }
.h-stat span { font-family:'Playfair Display',serif; font-size:28px; font-weight:900; color:#f6d860; }
.h-stat small { font-size:12px; color:rgba(255,255,255,0.5); letter-spacing:1px; text-transform:uppercase; }

/* ---- TAB BAR ---- */
.tab-bar {
  background: #1a0e00;
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 14px 20px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid rgba(198,162,39,0.3);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 14px; font-weight: 500;
  cursor: pointer; transition: 0.25s ease;
  font-family: inherit;
}
.tab-btn:hover, .tab-btn.active {
  background: #c9a227;
  border-color: #c9a227;
  color: #1a0e00;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(201,162,39,0.35);
}

/* ---- FILTER BAR ---- */
.filter-bar {
  background: white; padding: 16px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: sticky; top: 72px; z-index: 100;
}
.filter-left { display:flex; align-items:center; gap:10px; }
.filter-label { font-size:13px; font-weight:600; color:#6b7280; text-transform:uppercase; letter-spacing:1px; }
.sort-select {
  padding: 10px 16px; border: 1.5px solid #e5e7eb; border-radius: 10px;
  font-size: 13px; color: #374151; background: white;
  outline: none; cursor: pointer; font-family: inherit; transition: 0.25s;
}
.sort-select:focus { border-color: #c9a227; box-shadow: 0 0 0 3px rgba(201,162,39,0.1); }
.results-count { font-size:13px; color:#9ca3af; white-space:nowrap; }

/* ---- GRID ---- */
main { flex:1; }
.container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px; padding: 20px 40px 80px;
  max-width: 1380px; margin: 0 auto;
}
.container .pkg-card { min-width:unset; width:100%; }

/* Hajj card top border */
.pkg-card.hajj-card { border-top: 3px solid #c9a227; }

/* Gold price badge */
.pkg-price.gold { background: linear-gradient(135deg, #c9a227, #a07b0e); }

/* Gold button */
.view-btn.gold {
  background: linear-gradient(135deg, #c9a227, #a07b0e);
}
.view-btn.gold:hover {
  background: linear-gradient(135deg, #b8911e, #8a650a);
  box-shadow: 0 6px 16px rgba(201,162,39,0.35);
}

/* Hajj/Umrah type badge on image */
.hajj-badge {
  position: absolute; bottom: 12px; right: 12px;
  background: linear-gradient(135deg, #c9a227, #a07b0e);
  color: white; font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 20px;
}
.hajj-badge.umrah {
  background: linear-gradient(135deg, #1a56db, #1140a6);
}

/* Includes chips */
.hajj-includes {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px;
}
.hajj-includes span {
  font-size: 11px; font-weight: 500;
  background: #fef9ee; color: #92650a;
  border: 1px solid #fde68a;
  padding: 3px 10px; border-radius: 20px;
}

/* Staggered fade-in */
.container .pkg-card { opacity:0; transform:translateY(28px); animation:cardFadeIn 0.5s ease forwards; }
.container .pkg-card:nth-child(1){animation-delay:0.05s}
.container .pkg-card:nth-child(2){animation-delay:0.10s}
.container .pkg-card:nth-child(3){animation-delay:0.15s}
.container .pkg-card:nth-child(4){animation-delay:0.20s}
.container .pkg-card:nth-child(5){animation-delay:0.25s}
.container .pkg-card:nth-child(6){animation-delay:0.30s}
.container .pkg-card:nth-child(7){animation-delay:0.35s}
.container .pkg-card:nth-child(8){animation-delay:0.40s}
.container .pkg-card:nth-child(9){animation-delay:0.45s}
@keyframes cardFadeIn { to { opacity:1; transform:translateY(0); } }

/* ---- JOURNEY STEPS ---- */
.journey-steps {
  background: linear-gradient(135deg, #1a0e00 0%, #3d1f00 100%);
  padding: 80px 40px;
}
.steps-inner { max-width:1200px; margin:0 auto; }
.steps-heading { text-align:center; margin-bottom:56px; }
.section-tag-gold { display:inline-block; font-size:12px; font-weight:600; letter-spacing:3px; text-transform:uppercase; color:#c9a227; margin-bottom:14px; }
.steps-heading h2 { font-family:'Playfair Display',serif; font-size:clamp(26px,3.5vw,42px); font-weight:700; color:white; line-height:1.2; margin-bottom:12px; }
.steps-heading h2 em { font-style:italic; color:#c9a227; }
.steps-heading p { font-size:14px; color:rgba(255,255,255,0.5); max-width:500px; margin:0 auto; }

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.step-item {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 24px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: 16px;
  transition: 0.3s;
}
.step-item:hover {
  background: rgba(201,162,39,0.1);
  border-color: rgba(201,162,39,0.35);
  transform: translateY(-6px);
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px; font-weight: 900;
  color: #c9a227; opacity: 0.6;
  margin-bottom: 12px; line-height: 1;
}
.step-item h4 { font-size:15px; font-weight:700; color:white; margin-bottom:8px; }
.step-item p { font-size:13px; color:rgba(255,255,255,0.45); line-height:1.7; }
.step-connector {
  flex-shrink: 0;
  font-size: 24px;
  color: rgba(201,162,39,0.4);
  padding: 0 12px;
  margin-top: 48px;
}

/* ---- RESPONSIVE ---- */
@media (max-width:1024px) {
  .steps-grid { flex-wrap:wrap; gap:16px; }
  .step-connector { display:none; }
  .step-item { max-width:calc(50% - 8px); }
}
@media (max-width:768px) {
  .container { padding:30px 20px; gap:20px; }
  .filter-bar { padding:16px 20px; top:64px; }
  .page-hero { padding:110px 20px 60px; }
  .hero-stats { gap:24px; }
  .journey-steps { padding:50px 20px; }
  .tab-bar { padding:10px; gap:6px; }
  .tab-btn { padding:8px 16px; font-size:13px; }
}
@media (max-width:480px) {
  .container { grid-template-columns:1fr; }
  .step-item { max-width:100%; }
}
