/* ============================================
   EMI TOURS - Premium Travel Agency
   Advanced UI/UX Design System v2
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&family=Tajawal:wght@300;400;500;700;800&display=swap');

:root {
  --primary: #F59E0B;
  --primary-dark: #D97706;
  --primary-light: rgba(245, 158, 11, 0.12);
  --primary-lighter: rgba(245, 158, 11, 0.06);
  --primary-gradient: linear-gradient(135deg, #F59E0B, #FBBF24, #F59E0B);
  --primary-gradient-subtle: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(251,191,36,0.08));
  --secondary: #FACC15;
  --accent: #2563EB;
  --accent-dark: #1D4ED8;
  --accent-gradient: linear-gradient(135deg, #2563EB, #3B82F6);
  --bg: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-section: #F1F5F9;
  --bg-dark: #0F172A;
  --text: #0F172A;
  --text-secondary: #334155;
  --text-light: #64748B;
  --text-muted: #94A3B8;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.1);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.14);
  --shadow-glow: 0 8px 32px rgba(245,158,11,0.25);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', serif;
  --font-arabic: 'Tajawal', system-ui, sans-serif;
  --glass: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-strong: rgba(255, 255, 255, 0.95);
}

[dir="rtl"] {
  --font: var(--font-arabic);
  --font-display: var(--font-arabic);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--primary); color: #fff; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font-family: inherit; font-size: inherit; outline: none; }

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--text-muted); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-light); }

/* ===== SECTION DIVIDERS ===== */
.section-divider {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  fill: var(--bg);
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.8s, visibility 0.8s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo {
  width: 60px;
  height: 60px;
  animation: pulseGlow 1.8s ease-in-out infinite;
}
.preloader-bar {
  width: 140px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.preloader-bar::after {
  content: '';
  position: absolute;
  width: 40%;
  height: 100%;
  background: var(--primary-gradient);
  border-radius: 3px;
  animation: loaderSlide 1.2s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.85; }
}
@keyframes loaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ===== DECORATIVE BACKGROUND ELEMENTS ===== */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,158,11,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.4;
}
.bg-blob-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-gradient);
  top: -100px;
  right: -100px;
  opacity: 0.08;
}
.bg-blob-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-gradient);
  bottom: -80px;
  left: -80px;
  opacity: 0.06;
}
.bg-blob-3 {
  width: 350px;
  height: 350px;
  background: var(--primary);
  top: 50%;
  left: -120px;
  opacity: 0.05;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 2cm;
  display: flex;
  align-items: center;
  padding: 0;
  background: rgba(255,251,233,0.9);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}
.navbar.scrolled {
  background: var(--glass-strong);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  height: 2cm;
  box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  display: flex;
  align-items: center;
  margin-right: auto;
  transition: var(--transition);
}
.navbar-brand-icon {
  width: 90px;
  height: auto;
  display: block;
}


.navbar-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.navbar-links a {
  font-weight: 500;
  font-size: 0.88rem;
  color: rgba(0,0,0,0.85);
  transition: var(--transition);
  position: relative;
  padding: 8px 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar.scrolled .navbar-links a { color: rgba(0,0,0,0.7); }
.navbar-links a:hover {
  background: rgba(0,0,0,0.06);
  color: #000 !important;
}
.navbar.scrolled .navbar-links a:hover {
  background: var(--primary-lighter);
  color: var(--primary) !important;
}
.navbar-links a.active {
  background: rgba(0,0,0,0.08);
  color: #000 !important;
}
.navbar.scrolled .navbar-links a.active {
  background: var(--primary-light);
  color: var(--primary-dark) !important;
}

.lang-switcher {
  position: relative;
  margin-left: 12px;
}
.lang-toggle {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  background: rgba(0,0,0,0.05);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar.scrolled .lang-toggle { background: rgba(0,0,0,0.05); }
.lang-toggle:hover { background: rgba(0,0,0,0.1); }
.navbar.scrolled .lang-toggle:hover { background: rgba(0,0,0,0.1); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: var(--transition);
  z-index: 100;
  min-width: 90px;
}
.lang-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  background: transparent;
  color: var(--text);
  transition: var(--transition);
  white-space: nowrap;
}
.lang-opt:hover { background: var(--bg-light); }
.lang-opt.active {
  background: var(--primary-gradient);
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 1001;
  background: rgba(0,0,0,0.05);
  border: none;
  border-radius: 10px;
  transition: var(--transition);
}
.hamburger:hover { background: rgba(0,0,0,0.1); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: rgba(0,0,0,0.7);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.navbar.scrolled .hamburger span { background: rgba(0,0,0,0.7); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-12px); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }


/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -30px;
  background: #fffbe9;
  transform: scale(1.05);
  will-change: transform;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(253,232,184,0.75) 0%, rgba(255,255,255,0.6) 100%);
  z-index: 1;
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.hero-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  animation: floatParticle 15s infinite linear;
}
.hero-particle:nth-child(1) { left: 10%; top: 20%; animation-duration: 18s; animation-delay: -2s; width: 4px; height: 4px; }
.hero-particle:nth-child(2) { left: 25%; top: 60%; animation-duration: 22s; animation-delay: -5s; width: 8px; height: 8px; }
.hero-particle:nth-child(3) { left: 50%; top: 15%; animation-duration: 16s; animation-delay: -8s; width: 5px; height: 5px; }
.hero-particle:nth-child(4) { left: 70%; top: 70%; animation-duration: 20s; animation-delay: -3s; width: 6px; height: 6px; }
.hero-particle:nth-child(5) { left: 85%; top: 30%; animation-duration: 14s; animation-delay: -10s; width: 4px; height: 4px; }
.hero-particle:nth-child(6) { left: 40%; top: 80%; animation-duration: 24s; animation-delay: -6s; width: 7px; height: 7px; }
.hero-particle:nth-child(7) { left: 15%; top: 45%; animation-duration: 19s; animation-delay: -12s; width: 3px; height: 3px; }
.hero-particle:nth-child(8) { left: 92%; top: 55%; animation-duration: 17s; animation-delay: -1s; width: 5px; height: 5px; }
@keyframes floatParticle {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 1; }
  25% { transform: translateY(-30px) translateX(15px) scale(1.2); opacity: 0.8; }
  50% { transform: translateY(-60px) translateX(-10px) scale(1); opacity: 1; }
  75% { transform: translateY(-30px) translateX(20px) scale(0.8); opacity: 0.6; }
  100% { transform: translateY(0) translateX(0) scale(1); opacity: 1; }
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(0,0,0,0.7);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s forwards 0.2s;
}
.hero-badge i { color: var(--secondary); }
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(0,0,0,0.6);
  max-width: 560px;
  margin: 0 auto 44px;
  font-weight: 400;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards 0.6s;
}

/* Hero Title — Airplane Reveal (Infinite Loop) */
.hero-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.hero-title-text {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 8vw, 7rem);
  line-height: 1.15;
  letter-spacing: 4px;
  color: #6B4226;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  text-align: center;
  animation: titleLoop 8s linear infinite;
}
.hero-location-icon {
  height: 0.85em;
  width: 0.85em;
  vertical-align: baseline;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 1px;
  display: inline-block;
}
.hero-plane-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 3;
  pointer-events: none;
  will-change: transform, opacity;
  animation: airplaneLoop 8s linear infinite;
}
.hero-writing-airplane {
  width: clamp(28px, 3.5vw, 55px);
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 1px 4px rgba(107,66,38,0.25));
}
.hero-trail {
  position: absolute;
  left: -2%;
  bottom: 42%;
  width: 108%;
  height: 20px;
  pointer-events: none;
  z-index: 1;
  animation: trailLoop 8s linear infinite;
}
.hero-trail path {
  stroke-dasharray: 1100;
  animation: trailDrawLoop 8s linear infinite;
}
.hero-particles-wrap,
.hero-particle-dot {
  display: none;
}

@keyframes titleLoop {
  0%   { clip-path: inset(0 100% 0 0); opacity: 1; }
  6%   { clip-path: inset(0 100% 0 0); opacity: 1; }
  44%  { clip-path: inset(0 0% 0 0);   opacity: 1; }
  82%  { clip-path: inset(0 0% 0 0);   opacity: 1; }
  92%  { clip-path: inset(0 0% 0 0);   opacity: 0; }
  100% { clip-path: inset(0 100% 0 0); opacity: 0; }
}
@keyframes airplaneLoop {
  0%   { transform: translateX(calc(var(--tw) * -0.02)) translateY(-50%); opacity: 0; }
  6%   { transform: translateX(calc(var(--tw) * -0.02)) translateY(-50%); opacity: 1; }
  44%  { transform: translateX(calc(var(--tw) * 1.02))  translateY(calc(-50% + 2px)); opacity: 1; }
  50%  { transform: translateX(calc(var(--tw) * 1.12))  translateY(-50%); opacity: 0; }
  100% { transform: translateX(calc(var(--tw) * -0.02)) translateY(-50%); opacity: 0; }
}
@keyframes trailLoop {
  0%   { opacity: 0; }
  4%   { opacity: 0; }
  8%   { opacity: 0.6; }
  44%  { opacity: 0.6; }
  52%  { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes trailDrawLoop {
  0%   { stroke-dashoffset: 1100; }
  6%   { stroke-dashoffset: 1100; }
  44%  { stroke-dashoffset: 0; }
  52%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 1100; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title-text {
    animation: none !important;
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  .hero-plane-wrap { animation: none !important; display: none; }
  .hero-trail { animation: none !important; display: none; }
}


/* ===== HAJJ CAROUSEL SECTION ===== */
.hajj-carousel-section {
  padding: 100px 0 120px;
  background: var(--bg-light);
}
.hajj-carousel {
  position: relative;
  margin-top: 8px;
}
.hajj-carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 8px 0;
}
.hajj-carousel-track {
  display: flex;
  direction: ltr;
  will-change: transform;
}
.hajj-slide {
  flex: 0 0 calc(100% / 3 - 16px);
  margin: 0 8px;
  box-sizing: border-box;
}
.hajj-slide img {
  width: 100%;
  height: 380px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  background: var(--bg);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  cursor: pointer;
  user-select: none;
  -webkit-user-drag: none;
}
.hajj-slide img:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
}
.hajj-slide-cloned {
  pointer-events: none;
}
.hajj-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hajj-arrow:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-50%) scale(1.08);
}
.hajj-arrow:active {
  transform: translateY(-50%) scale(0.95);
}
.hajj-prev {
  left: -8px;
}
.hajj-next {
  right: -8px;
}
[dir="rtl"] .hajj-prev {
  left: auto;
  right: -8px;
}
[dir="rtl"] .hajj-next {
  right: auto;
  left: -8px;
}
[dir="rtl"] .hajj-prev i,
[dir="rtl"] .hajj-next i {
  transform: scaleX(-1);
}
.hajj-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
}
.hajj-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}
.hajj-dot:hover {
  background: var(--text-muted);
}
.hajj-dot.active {
  background: var(--primary);
  width: 32px;
  border-radius: 5px;
}

/* ===== PARTNERS CAROUSEL ===== */
.partners-section.section {
  padding: 60px 0 20px;
  background: #f8f9fc;
  overflow: hidden;
}
.partners-section-compact.section {
  padding-top: 4px;
}
.partners-section .section-header {
  margin-bottom: 40px;
}
.partners-section-compact .section-header {
  margin-bottom: 28px;
}
.partners-section .section-desc {
  font-size: 0.95rem;
  color: var(--text-light);
}
.partners-track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.partners-track-wrap::before,
.partners-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.partners-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, #f8f9fc, transparent);
}
.partners-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, #f8f9fc, transparent);
}
.partners-track {
  width: 100%;
  overflow: hidden;
}
.partners-track-inner {
  display: flex;
  gap: 0;
  width: max-content;
  animation: partnersMarquee 35s linear infinite;
}
.partners-track:hover .partners-track-inner {
  animation-play-state: paused;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  margin: 0 8px;
  min-width: 170px;
  height: 72px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.4s ease;
}
.partner-logo-img {
  width: 100px;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.2);
  transition: filter 0.4s ease;
  display: block;
}
.partner-logo-fallback {
  display: none;
  font-weight: 600;
  font-size: 0.85rem;
  color: #8899aa;
  text-align: center;
  padding: 4px 8px;
}
.partner-logo:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.partner-logo:hover .partner-logo-img {
  filter: grayscale(0) brightness(1);
}

.partners-track-inner-reverse {
  animation: partnersMarqueeReverse 35s linear infinite;
}
.partners-track:hover .partners-track-inner-reverse {
  animation-play-state: paused;
}

@keyframes partnersMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes partnersMarqueeReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 120px 0;
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-lighter);
  color: var(--primary-dark);
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  border: 1px solid rgba(245,158,11,0.15);
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-desc {
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ===== WHY US ===== */
.why-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-light) 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}
.why-card {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary-gradient-subtle);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover::after { opacity: 1; }
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,158,11,0.2);
}
.why-card-icon {
  width: 76px;
  height: 76px;
  background: var(--primary-lighter);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--primary);
  margin: 0 auto 24px;
  transition: var(--transition-bounce);
  position: relative;
}
.why-card-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 26px;
  border: 2px solid rgba(245,158,11,0.1);
  transition: var(--transition);
}
.why-card:hover .why-card-icon {
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: 0 8px 28px rgba(245,158,11,0.3);
  transform: scale(1.08) rotate(-3deg);
}
.why-card:hover .why-card-icon::before { border-color: transparent; transform: scale(0.9); }
.why-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  transition: var(--transition);
}
.why-card:hover h3 { color: var(--primary-dark); }
.why-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== SERVICES ===== */
.services-section {
  background: var(--bg);
  position: relative;
}
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(245,158,11,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}
.service-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px 20px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-bounce);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(245,158,11,0.04) 100%);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover::before { opacity: 1; }
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: 3px 3px 0 0;
  transition: var(--transition);
}
.service-card:hover::after { transform: translateX(-50%) scaleX(1); }
.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow);
  border-color: rgba(245,158,11,0.15);
}
.service-card-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-lighter);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.4rem;
  color: var(--primary);
  transition: var(--transition-bounce);
}
.service-card:hover .service-card-icon {
  background: var(--primary-gradient);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(245,158,11,0.25);
}
.service-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.4;
  transition: var(--transition);
}
.service-card:hover h4 { color: var(--text); }
.service-card .service-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 8px;
}

/* ===== DESTINATIONS ===== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 28px;
}
.dest-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--bg);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid var(--border-light);
  position: relative;
}
.dest-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.dest-card-image {
  position: relative;
  height: 270px;
  overflow: hidden;
}
.dest-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.dest-card:hover .dest-card-image img { transform: scale(1.1); }
.dest-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
}
.dest-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 24px 20px;
  color: #fff;
  z-index: 1;
}
.dest-card-overlay .country {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  opacity: 0.75;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dest-card-overlay .country i { font-size: 0.6rem; }
.dest-card-overlay .city {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.dest-card-body {
  padding: 24px 24px 28px;
  position: relative;
}
.dest-card-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: var(--border);
}
.dest-card-body p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.dest-card-body .highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.dest-card-body .highlights span {
  background: var(--bg-light);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
}
.dest-card-body .best-time {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dest-card-body .best-time i {
  color: var(--accent);
  font-size: 0.75rem;
}
.dest-card-body .btn-discover {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.82rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.dest-card-body .btn-discover:hover {
  background: var(--primary-gradient);
  color: #fff;
  gap: 14px;
  box-shadow: 0 4px 16px rgba(245,158,11,0.3);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-light) 100%);
  position: relative;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 30%, rgba(245,158,11,0.05) 0%, transparent 50%);
}
/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 140px 0;
  text-align: center;
  color: var(--text);
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: #fffbe9;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(253,232,184,0.2) 0%, transparent 100%);
}
.cta .container {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.cta h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  line-height: 1.15;
}
.cta p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.8;
}
.cta .btn-primary {
  background: var(--primary-gradient);
  background-size: 200% 200%;
  color: #fff;
  padding: 18px 48px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(245,158,11,0.35);
  position: relative;
  overflow: hidden;
}
.cta .btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.12) 100%);
}
.cta .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(245,158,11,0.5);
  background-position: 100% 100%;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  height: 55vh;
  min-height: 440px;
  background: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1920') center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.8), rgba(15,23,42,0.3) 60%, rgba(245,158,11,0.1) 100%);
}
.about-hero * { position: relative; z-index: 1; }
.about-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; letter-spacing: -1.5px; }
.about-hero p { font-size: 1.15rem; color: rgba(255,255,255,0.7); margin-top: 12px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-grid .image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-grid .image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,158,11,0.1), transparent);
  z-index: 1;
  opacity: 0;
  transition: var(--transition);
}
.about-grid .image:hover::before { opacity: 1; }
.about-grid .image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.about-grid .image:hover img { transform: scale(1.04); }
.about-content .section-tag { display: inline-flex; margin-bottom: 16px; }
.about-content h2 { font-size: 2rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 20px; }
.about-content p { color: var(--text-light); font-size: 1rem; line-height: 1.8; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.value-item {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-xl);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.value-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,158,11,0.15);
}
.value-item .icon {
  width: 64px;
  height: 64px;
  background: var(--primary-lighter);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition-bounce);
}
.value-item:hover .icon {
  background: var(--primary-gradient);
  color: #fff;
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 6px 24px rgba(245,158,11,0.25);
}
.value-item h4 { font-weight: 700; margin-bottom: 8px; font-size: 1.05rem; }
.value-item p { color: var(--text-light); font-size: 0.88rem; line-height: 1.6; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  text-align: center;
}
.stat-item {
  padding: 44px 28px;
  background: var(--bg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition);
}
.stat-item:hover::before { opacity: 1; }
.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.stat-item .number {
  font-size: 3rem;
  font-weight: 900;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
  line-height: 1;
}
.stat-item .label {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.92rem;
  margin-top: 8px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.team-card {
  text-align: center;
  padding: 40px 28px 32px;
  border-radius: var(--radius-xl);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.team-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 22px;
  border: 4px solid var(--border-light);
  transition: var(--transition);
}
.team-card:hover img {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(245,158,11,0.15);
}
.team-card h4 { font-weight: 700; font-size: 1.05rem; }
.team-card .role { color: var(--text-light); font-size: 0.85rem; margin-top: 4px; }
.team-card .social {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.team-card .social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-light);
  transition: var(--transition);
}
.team-card .social a:hover {
  background: var(--primary-gradient);
  color: #fff;
  transform: translateY(-2px);
}

/* ===== CONTACT ===== */
.contact-section { padding-top: 150px; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contact-info > h2 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.contact-info > p {
  color: var(--text-light);
  margin-bottom: 32px;
}
.contact-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--bg-light);
  transition: var(--transition);
  border: 1px solid transparent;
}
.contact-info-item:hover {
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  border-color: var(--border);
  transform: translateX(4px);
}
.contact-info-item .icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--primary-lighter);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  transition: var(--transition);
}
.contact-info-item:hover .icon {
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: 0 4px 12px rgba(245,158,11,0.2);
}
.contact-info-item h4 { font-weight: 700; margin-bottom: 4px; font-size: 0.92rem; }
.contact-info-item p { color: var(--text-light); font-size: 0.88rem; }

.contact-form-wrap {
  background: var(--bg);
  padding: 48px;
  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}
.contact-form-wrap h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--text-secondary);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
  background: var(--bg);
  color: var(--text);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(245,158,11,0.08);
  background: #fff;
}
.form-group textarea { min-height: 130px; resize: vertical; }
.btn-submit {
  width: 100%;
  padding: 16px 24px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  position: relative;
  overflow: hidden;
}
.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.1) 100%);
}
.btn-submit:hover {
  background: #1DA851;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
}
.btn-submit:active { transform: translateY(-1px); }

.map-container {
  margin-top: 48px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.map-container iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo {
  display: flex;
  align-items: center;
  max-width: 200px;
  margin-bottom: 18px;
}
.footer-brand .logo .icon {
  width: 90px;
  height: auto;
  display: block;
}
.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 320px;
}
.footer h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 24px;
  font-size: 1rem;
  letter-spacing: -0.3px;
  position: relative;
  padding-bottom: 12px;
}
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-gradient);
  border-radius: 2px;
}
.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  padding: 7px 0;
  transition: var(--transition);
  font-size: 0.88rem;
}
.footer-links a:hover { color: var(--primary); transform: translateX(6px); }
.footer-links a i { font-size: 0.6rem; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer-social a {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.4);
}
.footer-social a:hover {
  background: var(--primary-gradient);
  color: #fff;
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(245,158,11,0.3);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.fade-in-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.fade-in-scale.visible { opacity: 1; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .fade-in, .fade-in.visible, .fade-in-left, .fade-in-left.visible,
  .fade-in-right, .fade-in-right.visible, .fade-in-scale, .fade-in-scale.visible {
    opacity: 1; transform: none;
  }
  .preloader { display: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-grid .image img { height: 300px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-title-text { font-size: clamp(2.2rem, 6vw, 5rem); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .hajj-slide { flex: 0 0 calc(100% / 2 - 16px); }
  .hajj-slide img { height: 320px; }
  .hajj-carousel-section { padding: 80px 0; }
}

@media (max-width: 850px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .partners-section.section {
    padding: 40px 0 14px;
  }
  .partners-section-compact.section {
    padding-top: 2px;
  }
  .partners-section .section-header {
    margin-bottom: 28px;
  }
  .partner-logo {
    padding: 12px 18px;
    min-width: 140px;
    height: 56px;
    font-size: 0.78rem;
    margin: 0 5px;
    gap: 10px;
  }
  .partner-logo {
    padding: 12px 18px;
    min-width: 120px;
    height: 56px;
    margin: 0 5px;
  }
  .partner-logo-img {
    width: 80px;
    height: auto;
  }
  .partner-logo-fallback {
    font-size: 0.7rem;
  }
  .partners-track-inner {
    animation-duration: 25s;
  }
  .partners-track-inner-reverse {
    animation-duration: 25s;
  }
  .partners-track-wrap::before,
  .partners-track-wrap::after {
    width: 40px;
  }
  .navbar-links {
    position: fixed;
    top: 0;
    width: 310px;
    height: 100vh;
    background: var(--glass-strong);
    backdrop-filter: blur(32px);
    flex-direction: column;
    padding: 100px 36px 40px;
    gap: 4px;
    transition: var(--transition);
    overflow-y: auto;
    align-items: stretch;
  }
  [dir="ltr"] .navbar-links {
    left: -100%;
    right: auto;
    box-shadow: 24px 0 60px rgba(0,0,0,0.12);
  }
  [dir="ltr"] .navbar-links.open { left: 0; }
  [dir="rtl"] .navbar-links {
    right: -100%;
    left: auto;
    box-shadow: -24px 0 60px rgba(0,0,0,0.12);
  }
  [dir="rtl"] .navbar-links.open { right: 0; }
  .navbar-links a {
    color: rgba(0,0,0,0.85) !important;
    font-size: 1rem;
    padding: 12px 16px;
    width: 100%;
    border-radius: 10px;
  }
  .navbar-links a:hover { background: var(--primary-lighter); }
  .navbar-links a.active { background: var(--primary-light); color: var(--primary-dark) !important; }
  .navbar-links .lang-switcher { margin-top: 20px; align-self: flex-start; margin-left: 0; }
  .lang-dropdown { right: auto; left: 0; }
  .hamburger { display: flex; }
  .section { padding: 80px 0; }
  .section-header { margin-bottom: 40px; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-title-text { font-size: clamp(1.8rem, 7vw, 3.5rem); letter-spacing: 2px; }
  .hero-writing-airplane { width: clamp(22px, 4.5vw, 42px); }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .service-card { padding: 24px 14px; }
  .service-card-icon { width: 46px; height: 46px; font-size: 1.1rem; }
  .service-card h4 { font-size: 0.78rem; }
  .service-card .service-desc { font-size: 0.72rem; }
  .destinations-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
  .dest-card-image { height: 200px; }
  .why-card { padding: 36px 24px; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .cta { padding: 80px 0; }
  .stat-item { padding: 32px 20px; }
  .stat-item .number { font-size: 2.4rem; }
  .map-container iframe { height: 280px; }
  .hajj-slide { flex: 0 0 calc(100% - 16px); }
  .hajj-slide img { height: 300px; }
  .hajj-carousel-section { padding: 60px 0; }
  .hajj-arrow { width: 44px; height: 44px; font-size: 0.95rem; }
  .hero-bg {
    inset: 0;
    transform: none;
  }
  .bg-blob-1,
  .bg-blob-2,
  .bg-blob-3 {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .hero-title-text { font-size: clamp(1.5rem, 8vw, 2.5rem); letter-spacing: 1px; }
  .hero-writing-airplane { width: clamp(18px, 7vw, 34px); }
  .partners-track-wrap::before,
  .partners-track-wrap::after {
    width: 20px;
  }
  .footer {
    padding: 60px 0 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }
  .footer-brand p {
    max-width: 100%;
  }
  .footer-social {
    justify-content: center;
  }
  .footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  [dir="rtl"] .footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer h4 {
    text-align: center;
  }
  .footer-links a {
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hajj-slide { margin: 0 4px; }
  .hajj-slide img { height: 260px; }
  .hajj-carousel-section { padding: 40px 0 60px; }
  .hajj-dots { gap: 6px; margin-top: 28px; }
  .partner-logo {
    padding: 8px 12px;
    min-width: 90px;
    height: 44px;
    margin: 0 3px;
  }
  .partner-logo-img {
    width: 60px;
    height: auto;
  }
  .partners-track-inner {
    animation-duration: 20s;
  }
  .partners-track-inner-reverse {
    animation-duration: 20s;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .service-card {
    padding: 18px 12px;
  }
  .why-card {
    padding: 28px 18px;
  }
  .dest-card-body {
    padding: 18px 16px 22px;
  }
  .dest-card-image {
    height: 180px;
  }
  .stat-item {
    padding: 24px 12px;
  }
  .stat-item .number {
    font-size: 1.8rem;
  }
  .footer {
    padding: 40px 0 0;
  }
  .footer-grid {
    gap: 24px;
    margin-bottom: 24px;
  }
  .footer-brand .logo .icon {
    width: 70px;
  }
  .footer-social a {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
  .footer-links a {
    font-size: 0.8rem;
  }
  .footer-bottom {
    padding: 18px 0;
    font-size: 0.75rem;
  }
}

@media (min-width: auto) {
  .navbar-brand {
    order: 1;
    margin-right: 0;
    margin-left: auto;
  }
}
