/**
 * Hajj & Umrah dedicated home — pilgrimage landing (not OTA dashboard chrome).
 */
:root {
  --huh-ink: #0a2e24;
  --huh-green: #146b4a;
  --huh-green-deep: #0c3d2e;
  --huh-gold: #c4a35a;
  --huh-gold-soft: #e8d5a3;
  --huh-stone: #e8eee9;
  --huh-paper: #f7faf8;
  --huh-text: #1a2e28;
  --huh-muted: #5a6f66;
  --huh-font-display: "Playfair Display", Georgia, serif;
  --huh-font-body: "Montserrat", "Segoe UI", sans-serif;
}

.huh-page {
  font-family: var(--huh-font-body);
  color: var(--huh-text);
  background: var(--huh-paper);
}

.huh-page h1,
.huh-page h2,
.huh-page h3 {
  font-family: var(--huh-font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Full-bleed hero */
.huh-hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.huh-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  animation: huh-ken 18s ease-in-out infinite alternate;
}

@keyframes huh-ken {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

.huh-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 46, 36, 0.35) 0%, rgba(10, 46, 36, 0.82) 70%, rgba(10, 46, 36, 0.95) 100%);
}

.huh-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 4.5rem 0 3.5rem;
}

.huh-hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--huh-gold-soft);
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: huh-rise 0.7s ease forwards 0.15s;
}

.huh-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.25rem);
  line-height: 1.05;
  margin: 0 0 0.75rem;
  color: #fff;
  opacity: 0;
  animation: huh-rise 0.75s ease forwards 0.28s;
}

.huh-hero__sub {
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1.75rem;
  opacity: 0;
  animation: huh-rise 0.75s ease forwards 0.4s;
}

.huh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  animation: huh-rise 0.75s ease forwards 0.55s;
}

@keyframes huh-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.huh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.huh-btn:hover { transform: translateY(-1px); text-decoration: none; }

.huh-btn--gold {
  background: var(--huh-gold);
  color: var(--huh-ink);
}

.huh-btn--gold:hover { background: #d4b46a; color: var(--huh-ink); }

.huh-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.huh-btn--ghost:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }

.huh-btn--green {
  background: var(--huh-green);
  color: #fff;
}

.huh-btn--green:hover { background: #178556; color: #fff; }

.huh-wrap {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.huh-section {
  padding: 3.5rem 0;
}

.huh-section__head {
  max-width: 36rem;
  margin-bottom: 2rem;
}

.huh-section__head h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: var(--huh-ink);
  margin: 0 0 0.5rem;
}

.huh-section__head p {
  margin: 0;
  color: var(--huh-muted);
  line-height: 1.55;
}

.huh-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .huh-stats { grid-template-columns: repeat(4, 1fr); }
}

.huh-stat {
  background: #fff;
  border: 1px solid rgba(20, 107, 74, 0.12);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(10, 46, 36, 0.06);
}

.huh-stat strong {
  display: block;
  font-family: var(--huh-font-display);
  font-size: 1.65rem;
  color: var(--huh-green-deep);
}

.huh-stat span {
  font-size: 0.8rem;
  color: var(--huh-muted);
  font-weight: 500;
}

.huh-search-panel {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(20, 107, 74, 0.12);
  padding: 1.25rem;
  box-shadow: 0 12px 40px rgba(10, 46, 36, 0.07);
}

.huh-packages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .huh-packages { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .huh-packages { grid-template-columns: repeat(3, 1fr); }
}

.huh-pkg {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(20, 107, 74, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.huh-pkg:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10, 46, 36, 0.12);
}

.huh-pkg__media {
  aspect-ratio: 16 / 10;
  background: var(--huh-stone) center/cover no-repeat;
}

.huh-pkg__body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.huh-pkg__type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--huh-green);
}

.huh-pkg__body h3 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--huh-ink);
}

.huh-pkg__meta {
  font-size: 0.85rem;
  color: var(--huh-muted);
}

.huh-pkg__price {
  margin-top: auto;
  padding-top: 0.65rem;
  font-weight: 700;
  color: var(--huh-green-deep);
}

.huh-pkg__price span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--huh-muted);
}

.huh-steps {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .huh-steps { grid-template-columns: repeat(4, 1fr); }
}

.huh-step {
  background: linear-gradient(165deg, #fff 0%, var(--huh-stone) 140%);
  border-radius: 14px;
  padding: 1.35rem 1.15rem;
  border: 1px solid rgba(20, 107, 74, 0.1);
}

.huh-step__num {
  font-family: var(--huh-font-display);
  font-size: 1.75rem;
  color: var(--huh-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.huh-step h3 {
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
  color: var(--huh-ink);
}

.huh-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--huh-muted);
  line-height: 1.5;
}

.huh-guides {
  display: grid;
  gap: 1.5rem;
}

.huh-guide {
  display: grid;
  gap: 1.25rem;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(20, 107, 74, 0.12);
}

@media (min-width: 800px) {
  .huh-guide { grid-template-columns: 1.05fr 1.2fr; }
}

.huh-guide__media {
  min-height: 220px;
  background: var(--huh-stone) center/cover no-repeat;
  position: relative;
}

.huh-guide__body {
  padding: 1.35rem 1.35rem 1.5rem;
}

.huh-guide__body h3 {
  font-size: 1.35rem;
  margin: 0 0 0.4rem;
  color: var(--huh-ink);
}

.huh-guide__body > p {
  color: var(--huh-muted);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.huh-guide-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.huh-guide-steps li {
  padding: 0.75rem 0.85rem;
  background: var(--huh-paper);
  border-radius: 10px;
  border-left: 3px solid var(--huh-gold);
}

.huh-guide-steps strong {
  display: block;
  font-size: 0.92rem;
  color: var(--huh-ink);
  margin-bottom: 0.2rem;
}

.huh-guide-steps span {
  font-size: 0.85rem;
  color: var(--huh-muted);
  line-height: 1.45;
}

.huh-guide__video {
  margin-top: 1rem;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}

.huh-guide__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.huh-register {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .huh-register { grid-template-columns: repeat(3, 1fr); }
}

.huh-reg-card {
  background: var(--huh-green-deep);
  color: #fff;
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.huh-reg-card:nth-child(2) { background: var(--huh-ink); }
.huh-reg-card:nth-child(3) { background: #1a4d3c; }

.huh-reg-card i {
  color: var(--huh-gold);
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.huh-reg-card h3 {
  margin: 0;
  font-size: 1.15rem;
  color: #fff;
}

.huh-reg-card p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  flex: 1;
  line-height: 1.45;
}

.huh-why {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .huh-why { grid-template-columns: repeat(2, 1fr); }
}

.huh-why-item {
  display: flex;
  gap: 1rem;
  padding: 1.15rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(20, 107, 74, 0.1);
}

.huh-why-item i {
  color: var(--huh-green);
  font-size: 1.25rem;
  margin-top: 0.2rem;
}

.huh-why-item h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.huh-why-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--huh-muted);
  line-height: 1.45;
}

.huh-cta {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  background: linear-gradient(120deg, var(--huh-ink) 0%, var(--huh-green-deep) 55%, #1a5c44 100%);
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
}

.huh-cta h2 {
  color: #fff;
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.huh-cta p {
  margin: 0 auto 1.5rem;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.85);
}

.huh-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.huh-empty,
.huh-loading {
  text-align: center;
  color: var(--huh-muted);
  padding: 2rem 1rem;
  grid-column: 1 / -1;
}

.huh-section-foot {
  margin-top: 1.5rem;
  text-align: center;
}

/* Dual media sliders (Hajj / Umrah) */
.huh-sliders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (max-width: 800px) {
  .huh-sliders {
    grid-template-columns: 1fr;
  }
}

.huh-slider-box__title {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  color: var(--huh-ink);
}

.huh-slider-box__stage {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: #0a2e24;
  box-shadow: 0 12px 40px rgba(10, 46, 36, 0.12);
}

.huh-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.huh-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.huh-slide img,
.huh-slide iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  display: block;
}

.huh-slide iframe {
  object-fit: unset;
}

.huh-slide__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.huh-slider-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--huh-ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.huh-slider-nav--prev { left: 0.6rem; }
.huh-slider-nav--next { right: 0.6rem; }

.huh-slider-dots {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0.55rem;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
}

.huh-slider-dot {
  width: 0.55rem;
  height: 0.55rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
}

.huh-slider-dot.is-active {
  background: var(--huh-gold);
  transform: scale(1.15);
}

/* Umrah visa rates + form */
.huh-visa-rates {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 900px) {
  .huh-visa-rates {
    grid-template-columns: 1fr;
  }
}

.huh-visa-rate {
  background: #fff;
  border: 1px solid rgba(20, 107, 74, 0.15);
  border-radius: 14px;
  padding: 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.huh-visa-rate.is-picked {
  border-color: var(--huh-green);
  box-shadow: 0 0 0 2px rgba(20, 107, 74, 0.2);
}

.huh-visa-rate h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--huh-ink);
}

.huh-visa-rate__dur {
  margin: 0;
  font-size: 0.85rem;
  color: var(--huh-muted);
}

.huh-visa-rate__price {
  margin: 0.35rem 0;
  font-size: 1.35rem;
  color: var(--huh-green);
}

.huh-visa-rate__note {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  color: var(--huh-muted);
  flex: 1;
}

.huh-gov-disclaimer {
  font-size: 0.88rem;
  color: var(--huh-muted);
  background: rgba(196, 163, 90, 0.12);
  border: 1px solid rgba(196, 163, 90, 0.35);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin: 0 0 1.15rem;
  line-height: 1.45;
}

.huh-gov-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .huh-gov-cards {
    grid-template-columns: 1fr;
  }
}

.huh-gov-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(20, 107, 74, 0.14);
  border-radius: 14px;
  padding: 1.05rem 1.1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.huh-gov-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10, 46, 36, 0.1);
  color: inherit;
}

.huh-gov-card i {
  color: var(--huh-green);
  margin-bottom: 0.45rem;
  font-size: 1.15rem;
}

.huh-gov-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
  color: var(--huh-ink);
}

.huh-gov-card h3 small {
  font-size: 0.7rem;
  opacity: 0.7;
}

.huh-gov-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--huh-muted);
  line-height: 1.4;
}

.huh-gov-help {
  font-size: 0.88rem;
  color: var(--huh-muted);
  margin: 0;
}

.huh-gov-help a {
  color: var(--huh-green);
  font-weight: 600;
}

.huh-visa-apply-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1.1rem 1.25rem;
  border-radius: 16px;
  background: linear-gradient(120deg, #0a2e24 0%, #146b4a 70%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(10, 46, 36, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.huh-visa-apply-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(10, 46, 36, 0.22);
  color: #fff;
}

.huh-visa-apply-cta__icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  color: var(--huh-gold-soft);
  flex-shrink: 0;
}

.huh-visa-apply-cta__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}

.huh-visa-apply-cta__text strong {
  font-size: 1.1rem;
}

.huh-visa-apply-cta__text em {
  font-style: normal;
  font-size: 0.82rem;
  opacity: 0.85;
}

.huh-visa-apply-cta__go {
  font-size: 1.1rem;
  opacity: 0.9;
}

.huh-visa-form {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem 1.35rem;
  border: 1px solid rgba(20, 107, 74, 0.12);
}

.huh-visa-form h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.huh-visa-selected {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--huh-green);
  font-weight: 600;
}

.huh-visa-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
  margin-bottom: 1.15rem;
}

@media (max-width: 640px) {
  .huh-visa-grid {
    grid-template-columns: 1fr;
  }
}

.huh-visa-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--huh-muted);
}

.huh-visa-grid--full {
  grid-column: 1 / -1;
}

.huh-visa-grid input,
.huh-visa-grid textarea {
  font: inherit;
  font-weight: 400;
  color: var(--huh-text);
  border: 1px solid #c5d4cc;
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
}

.huh-visa-msg {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  min-height: 1.25rem;
}

.huh-visa-msg.is-ok { color: var(--huh-green); }
.huh-visa-msg.is-err { color: #b42318; }
