/* ===================== Design tokens ===================== */
:root {
  --brand-dark: #0e4b3d;
  --brand-darker: #082e25;
  --brand-accent: #c9a227;
  --brand-accent-light: #e9c767;
  --brand-cream: #faf7ef;
  --brand-text: #1f2a27;
  --brand-muted: #6b7b76;
  --radius-lg: 18px;
  --radius-md: 12px;
}

* { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--brand-text);
  background: #fff;
}

h1, h2, h3, h4, h5, .display-heading {
  font-weight: 800;
  letter-spacing: -0.02em;
}

a { text-decoration: none; }

.section { padding: 4.5rem 0; }
.section-sm { padding: 2.5rem 0; }
.bg-cream { background: var(--brand-cream); }
.bg-brand-dark { background: var(--brand-dark); }
.text-brand { color: var(--brand-dark); }
.text-accent { color: var(--brand-accent); }

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-accent);
  background: rgba(201, 162, 39, .12);
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

/* ===================== Buttons ===================== */
.btn-brand {
  background: var(--brand-dark);
  color: #fff;
  border-radius: 50px;
  padding: .7rem 1.6rem;
  font-weight: 600;
  border: 2px solid var(--brand-dark);
  transition: all .2s ease;
}
.btn-brand:hover { background: var(--brand-darker); border-color: var(--brand-darker); color: #fff; }

.btn-brand-accent {
  background: var(--brand-accent);
  color: var(--brand-darker);
  border-radius: 50px;
  padding: .65rem 1.5rem;
  font-weight: 700;
  border: 2px solid var(--brand-accent);
  transition: all .2s ease;
}
.btn-brand-accent:hover { background: var(--brand-accent-light); border-color: var(--brand-accent-light); color: var(--brand-darker); }

.btn-outline-brand {
  border: 2px solid var(--brand-dark);
  color: var(--brand-dark);
  border-radius: 50px;
  padding: .65rem 1.5rem;
  font-weight: 600;
  background: transparent;
}
.btn-outline-brand:hover { background: var(--brand-dark); color: #fff; }

/* ===================== Navbar ===================== */
.site-navbar {
  background: #fff;
  padding: 1rem 0;
  transition: box-shadow .2s ease;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.site-navbar.scrolled { box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.navbar-brand {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--brand-dark) !important;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.brand-icon {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-dark);
  color: var(--brand-accent-light);
  border-radius: 10px;
  font-size: 1.05rem;
}
.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--brand-text);
  padding: .5rem 1rem !important;
  position: relative;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover { color: var(--brand-dark); }
.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  left: 1rem; right: 1rem; bottom: .1rem;
  height: 2px;
  background: var(--brand-accent);
  border-radius: 2px;
}

/* ===================== Hero ===================== */
.hero {
  background: linear-gradient(180deg, var(--brand-cream) 0%, #fff 100%);
  padding: 4rem 0 3rem;
  overflow: hidden;
  position: relative;
}
.hero-title { font-size: clamp(2.1rem, 4.5vw, 3.4rem); line-height: 1.1; }
.hero-title .accent { color: var(--brand-accent); }
.hero-subtitle { color: var(--brand-muted); font-size: 1.1rem; max-width: 560px; }
.hero-art { width: 100%; max-width: 480px; margin: 0 auto; display: block; }

.stat-strip {
  background: var(--brand-dark);
  border-radius: var(--radius-lg);
  color: #fff;
  padding: 2rem;
}
.stat-strip .stat-num { font-size: 2rem; font-weight: 800; color: var(--brand-accent-light); }
.stat-strip .stat-label { font-size: .85rem; color: rgba(255,255,255,.75); }

/* ===================== Search / filter bar ===================== */
.search-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(14,75,61,.12);
  padding: 1.75rem;
  margin-top: -3.5rem;
  position: relative;
  z-index: 5;
}

/* ===================== Cards ===================== */
.pkg-card {
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
  height: 100%;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(14,75,61,.12); }
.pkg-card .pkg-img {
  height: 190px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-darker));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}
.pkg-card .pkg-img img { width: 100%; height: 100%; object-fit: cover; }
.pkg-card .pkg-badge {
  position: absolute; top: .75rem; left: .75rem;
  background: rgba(255,255,255,.92);
  color: var(--brand-dark);
  font-size: .72rem; font-weight: 700;
  padding: .3rem .7rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.pkg-card .pkg-body { padding: 1.25rem; }
.pkg-card .pkg-price { color: var(--brand-dark); font-weight: 800; font-size: 1.25rem; }
.pkg-card .pkg-meta { color: var(--brand-muted); font-size: .85rem; }

.feature-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  height: 100%;
}
.feature-card .feature-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(201,162,39,.12);
  color: var(--brand-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.schedule-row {
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  background: #fff;
}

/* ===================== Gallery ===================== */
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery-item:hover img { transform: scale(1.08); }

#lightbox {
  position: fixed; inset: 0; background: rgba(8,20,17,.92);
  display: none; align-items: center; justify-content: center;
  z-index: 2000; padding: 2rem;
}
#lightbox.show { display: flex; }
#lightbox img { max-width: 100%; max-height: 90vh; border-radius: 8px; }
#lightbox .lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: #fff; font-size: 2rem; cursor: pointer; background: none; border: none;
}

/* ===================== CTA banner ===================== */
.cta-banner {
  background: radial-gradient(circle at top right, var(--brand-darker), var(--brand-dark));
  border-radius: var(--radius-lg);
  color: #fff;
  padding: 3rem;
}

/* ===================== Footer ===================== */
.site-footer { background: var(--brand-darker); color: #fff; padding: 4rem 0 0; }
.footer-heading { color: var(--brand-accent-light); font-weight: 700; margin-bottom: 1rem; font-size: .95rem; }
.footer-links li { margin-bottom: .55rem; color: rgba(255,255,255,.7); font-size: .92rem; }
.footer-links a { color: rgba(255,255,255,.7); }
.footer-links a:hover { color: var(--brand-accent-light); }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.social-icon:hover { background: var(--brand-accent); color: var(--brand-darker); }

.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  z-index: 1500;
}
.whatsapp-float:hover { color: #fff; transform: scale(1.06); }

/* ===================== Forms ===================== */
.form-control, .form-select {
  border-radius: var(--radius-md);
  padding: .65rem .9rem;
  border-color: rgba(0,0,0,.12);
}
.form-control:focus, .form-select:focus {
  border-color: var(--brand-dark);
  box-shadow: 0 0 0 .2rem rgba(14,75,61,.12);
}
.form-label { font-weight: 600; font-size: .9rem; }

.booking-summary-card {
  background: var(--brand-cream);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: 100px;
}

.pilgrim-block {
  border: 1px dashed rgba(14,75,61,.3);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  background: #fcfcfa;
}

.step-indicator { display: flex; align-items: center; gap: .5rem; margin-bottom: 2rem; }
.step-indicator .step {
  display: flex; align-items: center; gap: .5rem;
  color: var(--brand-muted); font-weight: 600; font-size: .9rem;
}
.step-indicator .step.active { color: var(--brand-dark); }
.step-indicator .step .num {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(0,0,0,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
}
.step-indicator .step.active .num { background: var(--brand-dark); color: #fff; }
.step-indicator .divider { width: 40px; height: 2px; background: rgba(0,0,0,.1); }

.booking-code-box {
  border: 2px dashed var(--brand-accent);
  border-radius: var(--radius-md);
  background: rgba(201,162,39,.08);
  padding: 1.25rem;
  text-align: center;
}
.booking-code-box .code { font-size: 1.6rem; font-weight: 800; letter-spacing: .06em; color: var(--brand-dark); }

@media (max-width: 767px) {
  .section { padding: 3rem 0; }
  .search-card { margin-top: 1.5rem; }
}
