/* =================== ROOT & RESET =================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:      #C9A84C;
  --gold-light:#E8C87A;
  --gold-dark: #A07830;
  --green:     #1B5E38;
  --green-mid: #2E8B57;
  --green-light:#3DAA6E;
  --dark:      #0D1A12;
  --dark-mid:  #152419;
  --dark-card: #1A2E20;
  --white:     #FFFFFF;
  --off-white: #F5F0E8;
  --text-muted:#9BB5A4;
  --border:    rgba(201,168,76,0.25);
  --radius:    16px;
  --shadow:    0 8px 32px rgba(0,0,0,0.4);
  --transition:0.35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Tajawal', sans-serif;
  background: var(--dark);
  color: var(--white);
  direction: rtl;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =================== NAVBAR =================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13, 26, 18, 0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  font-size: 2rem;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(201,168,76,0.5);
}
.logo-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main { font-size: 1.05rem; font-weight: 800; color: var(--white); }
.logo-sub  { font-size: 0.72rem; color: var(--gold); font-weight: 500; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
}
.nav-links.open {
  display: flex;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); background: rgba(201,168,76,0.08); }

.btn-book {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark) !important;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
  white-space: nowrap;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
  position: relative;
}

/* التحويل إلى علامة X عند الفتح */
#hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
#hamburger.open span:nth-child(2) {
  opacity: 0;
}
#hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


@media (max-width: 991px) {
  .hamburger {
    display: flex;
    order: 3;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -110%;
    width: 100%; /* ملء الشاشة بالعرض */
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 30px;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    width: 100%;
    text-align: center;
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links a:last-child {
    border-bottom: none;
  }
  .btn-book {
    order: 2;
    margin-right: auto;
  }
  .logo {
    order: 1;
  }
}

@media (max-width: 480px) {
  .logo-text {
    display: none;
  }
  .btn-book {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

/* =================== HERO =================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.5);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,26,18,1) 0%,
    rgba(13,26,18,0.5) 40%,
    rgba(13,26,18,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  animation: fadeInDown 1s ease both;
}
.hero-title {
  font-family: 'Amiri', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  animation: fadeInUp 1s 0.2s ease both;
}
.hero-subtitle {
  display: block;
  font-family: 'Tajawal', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  color: var(--gold-light);
  margin-top: 8px;
}
.hero-desc {
  margin: 24px auto;
  max-width: 640px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  animation: fadeInUp 1s 0.4s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s 0.6s ease both;
}
.btn-primary {
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 6px 30px rgba(201,168,76,0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.6);
}
.btn-outline {
  padding: 14px 36px;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 56px;
  animation: fadeInUp 1s 0.8s ease both;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(201,168,76,0.3);
}
.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 2;
  animation: bounce 2s infinite;
}
.scroll-arrow {
  width: 28px;
  height: 28px;
  border-right: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  transform: rotate(45deg);
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}

/* =================== TICKER =================== */
.ticker-bar {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 12px 0;
  overflow: hidden;
}
.ticker-content {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  color: var(--dark);
  font-weight: 700;
  font-size: 0.9rem;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =================== SECTIONS =================== */
section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.section-title {
  font-family: 'Amiri', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =================== SERVICES =================== */
.services { background: var(--dark-mid); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--gold); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.8rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--gold-light); margin-bottom: 10px; }
.service-card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* =================== PACKAGES =================== */
.packages { background: var(--dark); }
.pkg-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.pkg-tab {
  padding: 12px 36px;
  border: none;
  border-radius: 50px;
  background: transparent;
  color: var(--text-muted);
  font-family: 'Tajawal', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.pkg-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.packages-grid.hidden { display: none; }
.package-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
}
.package-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.package-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(201,168,76,0.2);
  transform: scale(1.03);
}
.package-card.featured:hover { transform: scale(1.03) translateY(-10px); }
.pkg-header {
  padding: 32px 28px 28px;
  text-align: center;
  position: relative;
}
.pkg-silver  { background: linear-gradient(135deg, #2a3a2e, #1a2a1e); }
.pkg-gold    { background: linear-gradient(135deg, #3a2f0e, #C9A84C22); }
.pkg-platinum{ background: linear-gradient(135deg, #1e2a3a, #0e1a2a); }
.pkg-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--dark);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}
.pkg-icon { font-size: 2.8rem; margin-bottom: 12px; }
.pkg-header h3 { font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.pkg-duration {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--gold-light);
}
.pkg-body { padding: 28px; }
.pkg-price {
  text-align: center;
  margin-bottom: 24px;
}
.price-currency { font-size: 1rem; color: var(--gold); font-weight: 700; vertical-align: super; }
.price-amount { font-size: 2.6rem; font-weight: 900; color: var(--white); margin: 0 4px; }
.price-per { font-size: 0.85rem; color: var(--text-muted); }
.pkg-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pkg-features li { font-size: 0.92rem; color: rgba(255,255,255,0.8); }
.btn-pkg {
  display: block;
  text-align: center;
  padding: 14px;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}
.btn-pkg:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-pkg-featured {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
}
.btn-pkg-featured:hover {
  background: var(--gold-light);
  color: var(--dark);
}

.packages-grid.hajj-two-col {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.accommodation-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
}
.accommodation-notice.shared {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
}
.accommodation-notice.private {
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
}
.hajj-comparison {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 32px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.comparison-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}
.comparison-item span { font-size: 1.4rem; }
.shared-item  { color: rgba(255,255,255,0.7); }
.private-item { color: var(--gold-light); }
.comparison-vs {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--gold);
  padding: 8px 20px;
  border: 2px solid var(--border);
  border-radius: 50px;
}

/* =================== WHY US =================== */
.why-us { background: var(--dark-mid); }
.why-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.why-image img { width: 100%; height: 480px; object-fit: cover; border-radius: 24px; }
.why-img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 16px;
  padding: 16px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.badge-num { display: block; font-size: 2rem; font-weight: 900; color: var(--dark); line-height: 1; }
.badge-text { font-size: 0.8rem; color: var(--dark); font-weight: 600; }
.why-content h2 {
  font-family: 'Amiri', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin: 12px 0 20px;
  line-height: 1.3;
}
.president-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 14px;
  padding: 16px 20px;
  margin: 16px 0 24px;
}
.president-icon { font-size: 2.2rem; }
.president-info { display: flex; flex-direction: column; }
.president-label { font-size: 0.78rem; color: var(--text-muted); }
.president-name  { font-size: 1.2rem; font-weight: 800; color: var(--gold-light); }
.president-title { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }
.footer-president { color: var(--gold); font-weight: 700; font-size: 0.95rem; margin-top: 8px; }
.why-desc { color: var(--text-muted); line-height: 1.8; margin-bottom: 36px; font-size: 1rem; }
.why-points { display: flex; flex-direction: column; gap: 24px; }
.why-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.why-point-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-point h4 { color: var(--gold-light); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.why-point p  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* =================== GALLERY =================== */
.gallery { background: var(--dark); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item.large { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item.large img { height: 380px; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-weight: 600; font-size: 0.95rem; }

/* =================== TESTIMONIALS =================== */
.testimonials { background: var(--dark-mid); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--gold); transform: translateY(-6px); }
.quote-icon {
  font-size: 5rem;
  color: rgba(201,168,76,0.2);
  font-family: Georgia, serif;
  line-height: 0.5;
  margin-bottom: 20px;
}
.testimonial-text {
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.95rem; color: var(--white); }
.testimonial-author span  { font-size: 0.8rem; color: var(--text-muted); }
.stars { margin-right: auto; color: var(--gold); font-size: 1rem; letter-spacing: 2px; }

/* =================== CONTACT =================== */
.contact { background: var(--dark); }
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Amiri', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin: 12px 0 16px;
}
.contact-info > p { color: var(--text-muted); line-height: 1.8; margin-bottom: 36px; font-size: 1rem; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  transition: var(--transition);
}
.contact-item:hover { border-color: var(--gold); }
.contact-icon { font-size: 1.6rem; }
.contact-item strong { display: block; color: var(--gold-light); font-size: 0.85rem; margin-bottom: 2px; }
.contact-item span   { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  color: var(--text-muted);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }

/* =================== CONTACT FORM =================== */
.contact-form-wrap {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
}
.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  text-align: center;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: 0.9rem; font-weight: 600; color: var(--gold-light); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--white);
  font-family: 'Tajawal', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  direction: rtl;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group select option { background: var(--dark-card); color: var(--white); }
.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border: none;
  border-radius: 50px;
  font-family: 'Tajawal', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 24px rgba(201,168,76,0.3);
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.5);
}
.form-success {
  margin-top: 16px;
  background: rgba(46,139,87,0.15);
  border: 1px solid rgba(46,139,87,0.4);
  color: #4ade80;
  padding: 14px 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
}
.hidden { display: none !important; }

/* =================== FOOTER =================== */
.footer {
  background: var(--dark-mid);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p { color: var(--text-muted); line-height: 1.8; font-size: 0.9rem; margin-top: 16px; }
.footer-links h4,
.footer-newsletter h4 {
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-right: 4px; }
.footer-newsletter p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Tajawal', sans-serif;
  font-size: 0.9rem;
  outline: none;
}
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border: none;
  border-radius: 10px;
  font-family: 'Tajawal', sans-serif;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}
.newsletter-form button:hover { transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.88rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--text-muted); font-size: 0.88rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* =================== ANIMATIONS =================== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .why-container { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .contact-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
}
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .hamburger { display: flex; }
  .btn-book  { display: none; }
  .hero-stats { gap: 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card.featured { transform: none; }
  .packages-grid.hajj-two-col { grid-template-columns: 1fr; }
  .hajj-comparison { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 60px; height: 1px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
  .ticker-content { gap: 40px; }
}

/* =================== UMRAH SCHEDULE =================== */
.umrah-schedule {
  margin-top: 60px;
  padding: 40px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  animation: fadeInUp 1s 0.2s ease both;
}
.schedule-header {
  text-align: center;
  margin-bottom: 36px;
}
.schedule-title {
  font-family: 'Amiri', serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 10px;
}
.schedule-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.months-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.month-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}
.month-card:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
  transform: translateY(-5px);
}
.month-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.month-status {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.month-card.featured {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.4);
}
.month-card.featured .month-name {
  color: var(--white);
}
.month-card.special {
  background: linear-gradient(135deg, var(--green), #1a2e20);
  border-color: var(--green-light);
}
.month-card.special .month-name {
  color: var(--white);
}
.month-card.disabled {
  opacity: 0.5;
  filter: grayscale(1);
  cursor: not-allowed;
  border-style: dashed;
}
.month-card.disabled .month-status {
  color: #ef4444;
}
.schedule-footer {
  margin-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 15px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
}

@media (max-width: 768px) {
  .months-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
  .umrah-schedule {
    padding: 24px;
  }
}

/* ===== Expandable Gallery ===== */
.hidden-gallery-item {
  display: none;
}
.hidden-gallery-item.show {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

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

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
}
.whatsapp-tooltip {
  position: absolute;
  right: 80px;
  background: white;
  color: #333;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
  .whatsapp-tooltip {
    display: none;
  }
}
