/* ============ RESET ============ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color:#ffffff ;
  color: #14171a;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

/* ============ HEADER / NAV ============ */
header {
  background-color: #0d3b2e;
  padding: 16px 40px;
  position: sticky;
  top: 0;
  z-index: 200;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: bold;
  text-decoration: none;
}

.logo img {
  height: 120px;
  width: 120px;
  object-fit: contain;
  border-radius: 50%;
  background-color: #ffffff;
  padding: 3px;
  flex-shrink: 0;
}

nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.92rem;
  white-space: nowrap;
}

nav a:hover { color: #c9a15e; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger span {
  width: 24px;
  height: 2px;
  background-color: #ffffff;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  background-color: #c9a15e;
  color: #ffffff;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  border: 2px solid #c9a15e;
  font-size: 0.9rem;
  cursor: pointer;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.btn:hover::after { left: 125%; }

.btn-outline {
  background-color: transparent;
  color: #0d3b2e;
  border: 2px solid #0d3b2e;
}

.btn-outline:hover { background-color: #0d3b2e; color: #ffffff; }

.btn-whatsapp {
  background-color: #25D366;
  border-color: #25D366;
  color: #ffffff;
}

.btn-whatsapp:hover { background-color: #1DA851; border-color: #1DA851; }

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  text-align: center;
  padding: 190px 20px 150px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
 
  z-index: 0;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero h1, .hero p, .hero .btn-row, .hero .btn {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2rem, 4.4vw, 2.9rem);
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.55);
  animation: heroFadeIn 1.1s ease forwards;
  opacity: 0;
  max-width: 720px;
}

.hero p {
  max-width: 540px;
  margin: 0 auto 34px auto;
  color: #f5f5f5;
  font-size: 1.05rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  animation: heroFadeIn 1.1s ease forwards;
  animation-delay: 0.25s;
  opacity: 0;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.accred-float {
  position: absolute;
  bottom: 26px;
  right: 26px;
  z-index: 2;
  background-color: #ffffff;
  color: #0d3b2e;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.accred-icon {
  background-color: #c9a15e;
  color: #ffffff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ============ SIGNATURE: GOLD ARCH DIVIDER ============ */
.arch-divider {
  display: flex;
  justify-content: center;
  padding: 0;
  background-color: #ffffff;
}

.arch-divider svg { width: 46px; height: 30px; }

/* ============ SECTION SHELL ============ */
section { padding: 80px 40px; }

.section-title {
  text-align: center;
  color: #0d3b2e;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 44px;
  position: relative;
  padding-bottom: 18px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: #c9a15e;
  transition: width 0.8s ease 0.2s;
}

.reveal.visible .section-title::after { width: 60px; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ SERVICES (ACCUEIL) ============ */
.services { text-align: center; background-color: #faf9f6; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  display: block;
  background-color: #ffffff;
  border: 1px solid #e8e6de;
  border-radius: 8px;
  padding: 36px 22px;
  text-decoration: none;
  color: #14171a;
  transition: 0.3s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

.service-card:hover {
  border-color: #c9a15e;
  box-shadow: 0 12px 26px rgba(13,59,46,0.14);
  transform: translateY(-6px);
}

.service-card h3 { color: #0d3b2e; margin-bottom: 10px; font-size: 1.1rem; }
.service-card p { font-size: 0.88rem; color: #555; line-height: 1.5; }

/* ============ INFO / PRICE BOX (HAJJ 2027 STYLE) ============ */
.info-box-wrap { text-align: center; }

.info-box {
  max-width: 440px;
  margin: 0 auto;
  background-color: #0d3b2e;
  color: #ffffff;
  padding: 36px;
  border-radius: 8px;
  border: 1px solid #c9a15e;
  text-align: center;
}

.info-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #c9a15e;
  margin-bottom: 10px;
}

.info-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  margin-bottom: 8px;
}

.info-deadline { font-size: 0.88rem; color: #e0e0e0; margin-bottom: 16px; }

.info-badge {
  display: inline-block;
  font-size: 0.78rem;
  border: 1px solid #c9a15e;
  color: #c9a15e;
  padding: 6px 14px;
  border-radius: 20px;
}

/* ============ CHECKLIST ============ */
.included { background-color: #faf9f6; }

.checklist {
  list-style: none;
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}

.checklist li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid #eae7dd;
  font-size: 0.97rem;
  transition: background-color 0.3s ease, padding-left 0.3s ease;
}

.checklist li:hover { background-color: #f4efe0; padding-left: 42px; }

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 6px;
  color: #c9a15e;
  font-weight: bold;
  font-size: 1.05rem;
}

/* ============ BOOKING ============ */
.booking { background-color: #faf9f6; text-align: center; }

.booking-box {
  max-width: 460px;
  margin: 0 auto;
  padding: 38px;
  border-radius: 8px;
  background-color: #ffffff;
  border-left: 4px solid #c9a15e;
}

.booking-box.unavailable { border-left: 4px solid #a3a39a; opacity: 0.9; }

.booking-status { font-weight: 600; margin-bottom: 10px; font-size: 1.02rem; }
.booking-box.available .booking-status { color: #0d3b2e; }
.booking-box.unavailable .booking-status { color: #7d7d74; }
.booking-box p:not(.booking-status) { color: #555; margin-bottom: 22px; font-size: 0.92rem; }

/* ============ TABS (OUMRAH) ============ */
.tabs-section { text-align: center; }

.tabs { display: flex; justify-content: center; gap: 14px; margin-bottom: 40px; flex-wrap: wrap; }

.tab-btn {
  background: none;
  border: 2px solid #0d3b2e;
  color: #0d3b2e;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  font-size: 0.9rem;
}

.tab-btn.active, .tab-btn:hover { background-color: #0d3b2e; color: #ffffff; }

.tab-content { display: none; }
.tab-content.active { display: block; }

.tab-date { text-align: center; color: #c9a15e; font-weight: 600; margin-bottom: 22px; }

/* ============ WHY GRID ============ */
.why { background-color: #ffffff; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 26px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-card {
  background-color: #faf9f6;
  padding: 32px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 30px rgba(13,59,46,0.15);
  border-color: #c9a15e;
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: inline-block;
  transition: transform 0.4s ease;
}

.why-card:hover .why-icon { transform: translateY(-6px) rotate(-8deg); }
.why-card h3 { color: #0d3b2e; font-size: 1.03rem; margin-bottom: 10px; }
.why-card p { font-size: 0.86rem; color: #555; line-height: 1.5; }

/* ============ CTA FINAL ============ */
.cta-final { text-align: center; background-color: #0d3b2e; }
.cta-final .section-title { color: #ffffff; }
.cta-final .section-title::after { background-color: #c9a15e; }
.cta-final p { color: #d8d8d0; max-width: 460px; margin: 0 auto 30px auto; }

/* ============ BOUTIQUE CATEGORY CARDS ============ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
  max-width: 1100px;
  margin: 0 auto;
}

.shop-card {
  background-color: #ffffff;
  border: 1px solid #e8e6de;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-card:hover { transform: translateY(-6px); box-shadow: 0 14px 26px rgba(13,59,46,0.12); }

.shop-card-img {
  height: 160px;
  background-color: #0d3b2e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a15e;
  font-size: 2rem;
}

.shop-card-body { padding: 22px; }
.shop-card h3 { color: #0d3b2e; font-size: 1.02rem; margin-bottom: 8px; }
.shop-card p { font-size: 0.86rem; color: #555; }

.shop-soon {
  text-align: center;
  max-width: 480px;
  margin: 40px auto 0;
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
}

/* ============ FOOTER ============ */
footer {
  background-color: #0d3b2e;
  color: #ffffff;
  text-align: center;
  padding: 44px 20px 30px;
}

footer p { margin-bottom: 8px; font-size: 0.9rem; }
footer .copyright { margin-top: 15px; color: #b9b9ae; font-size: 0.8rem; }

/* ============ RESPONSIVE ============ */
@media (max-width: 820px) {
  header { padding: 14px 20px; }

  nav ul {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(80vw, 300px);
    background-color: #0d3b2e;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 36px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 9999;
  }

  nav ul.open { transform: translateX(0); }

  nav ul li a {
    font-size: 1.05rem;
    display: block;
    padding: 6px 0;
  }

  .burger { display: flex; z-index: 10000; }

  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .burger span {
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.4);
    z-index: 250;
    pointer-events: none;
  }

  section { padding: 55px 22px; }

  .hero { padding: 130px 20px 90px; min-height: 400px; }
  .hero h1 { font-size: 1.7rem; }
  .hero p { font-size: 0.95rem; }

  .accred-float { right: 14px; bottom: 14px; font-size: 0.68rem; padding: 8px 14px; }

  .btn-row { flex-direction: column; align-items: center; gap: 12px; }
  .btn-row .btn { width: 100%; max-width: 280px; text-align: center; }

  .why-grid, .services-grid, .shop-grid { grid-template-columns: 1fr; }

  .hajj-banner-details { flex-direction: column; gap: 18px; }
  .hb-sep { display: none; }
  .brand-group {
    flex: 1;
    min-width: 0;
    gap: 8px !important;
  }

  .logo {
    font-size: 0.95rem;
    gap: 8px;
    min-width: 0;
  }

  .logo span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .logo img {
    height: 34px;
    width: 34px;
  }

  .iata-badge {
    display: none;
  }
}
.hajj-banner {
  padding: 0 20px;
  margin: 0 auto;
  max-width: 1100px;
}

.hajj-banner-inner {
  background: linear-gradient(155deg, #0d3b2e 0%, #06231a 100%);
  border: 1px solid #c9a15e;
  border-radius: 10px;
  padding: 56px 30px;
  text-align: center;
  color: #ffffff;
}

.hajj-banner-tag {
  display: inline-block;
  border: 1px solid #c9a15e;
  color: #c9a15e;
  font-size: 0.78rem;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hajj-banner-inner h2 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: #ffffff;
  margin-bottom: 8px;
}

.hajj-banner-sub {
  color: #c9a15e;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  margin-bottom: 36px;
}

.hajj-banner-details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hb-sep {
  width: 1px;
  height: 40px;
  background-color: rgba(201,161,94,0.4);
}

.hb-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #b9b9ae;
  margin-bottom: 6px;
}

.hb-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #ffffff;
}

.btn-big {
  font-size: 1rem;
  padding: 17px 44px;
  animation: pulseGlow 2.4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}
.program-banner {
  max-width: 480px;
  margin: 0 auto;
  background: linear-gradient(155deg, #0d3b2e 0%, #06231a 100%);
  border-radius: 10px;
  padding: 40px 28px;
  text-align: center;
  color: #ffffff;
}

.program-banner h3 {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.program-tag {
  display: inline-block;
  font-size: 0.75rem;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.program-sub {
  color: #d8d8d0;
  font-size: 0.88rem;
  margin-bottom: 26px;
}

.status-unavailable {
  border: 1px solid #7d7d74;
}

.status-unavailable .program-tag {
  border: 1px solid #a3a39a;
  color: #cfcfc7;
}

.status-soon {
  border: 1px solid #c9a15e;
}

.status-soon .program-tag {
  border: 1px solid #c9a15e;
  color: #c9a15e;
  background-color: rgba(201,161,94,0.1);
}

.btn-outline-gold {
  background: transparent;
  border: 2px solid #a3a39a;
  color: #ffffff;
}

.btn-outline-gold:hover {
  background-color: #a3a39a;
  color: #0d3b2e;
}
.program-banner-wrap {
  padding: 0 20px;
  margin: 0 auto;
  max-width: 700px;
}

.status-active {
  border: 1px solid #c9a15e;
}

.status-active .program-tag {
  border: 1px solid #25D366;
  color: #25D366;
  background-color: rgba(37,211,102,0.1);
}
.hero-veiled::before {
  background-color: rgba(13, 59, 46, 0.4);
}
.shop-card-img-photo {
  background-color: #faf8f3;
  padding: 10px;
}

.shop-card-img-photo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.mini-gallery {
  max-width: 1100px;
  margin: 70px auto 0;
}

.mini-gallery-title {
  text-align: center;
  color: #0d3b2e;
  font-size: 1.4rem;
  margin-bottom: 34px;
}

.mini-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 22px;
}

.mini-product {
  background-color: #ffffff;
  border: 1px solid #e8e6de;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mini-product:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 22px rgba(13,59,46,0.1);
}

.mini-product img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  background-color: #faf8f3;
}

.mini-product h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0d3b2e;
  margin: 12px 10px 4px;
}

.mini-product p {
  font-size: 0.78rem;
  color: #777;
  margin: 0 10px 14px;
}
.hero-bg-contain {
  background-size:99% 99%;
 ;
}
.iata-badge {
  height: 40px;
  width: 40px;
  object-fit: contain;
  flex-shrink: 0;
}
.legal-line {
  font-size: 0.72rem;
  color: #9a9a8f;
  margin-top: 4px;
  margin-bottom: 12px;
}