/* ═══════════════════════════════════════════════════
   COLORS TRAVEL & TOURS - MAIN STYLESHEET
   International Standard | Modern Professional
═══════════════════════════════════════════════════ */

/* ─── CSS Variables ─────────────────────────────── */
:root {
  --primary: #1a237e;
  --primary-dark: #0d1557;
  --primary-light: #3b3fa0;
  --accent: #f5a623;
  --accent-dark: #d4880e;
  --teal: #00bcd4;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --text: #2c3e50;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.15);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

/* ─── Reset & Base ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 40px; }

/* ─── Section Header ────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--gray-800);
  margin: 10px 0 16px;
}
.section-header p {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  background: rgba(26, 35, 126, 0.08);
  color: var(--primary-light);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.section-tag.light { background: rgba(255,255,255,0.2); color: white; }
.text-accent { color: var(--accent); }

/* ─── Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  box-shadow: 0 4px 15px rgba(26,35,126,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,35,126,0.45);
}
.btn-outline {
  background: transparent;
  border-color: white;
  color: white;
}
.btn-outline:hover { background: white; color: var(--primary); }
.btn-gold {
  background: linear-gradient(135deg, #c9920a, #f5c842);
  color: white;
  box-shadow: 0 4px 15px rgba(245,166,35,0.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,166,35,0.55); }
.btn-white { background: white; color: var(--primary); font-weight: 700; }
.btn-white:hover { background: var(--accent); color: white; }
.btn-outline-white { border-color: white; color: white; background: transparent; }
.btn-outline-white:hover { background: white; color: var(--primary); }
.btn-whatsapp { background: #25d366; color: white; }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════════ */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar a {
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.top-bar a:hover { color: var(--accent); }
.top-bar i { font-size: 0.78rem; color: var(--accent); }
.social-icons { display: flex; gap: 10px; }
.social-icons a {
  width: 26px;
  height: 26px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  transition: var(--transition);
}
.social-icons a:hover { background: var(--accent); }

/* ═══════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 72px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.03em;
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--gray-600);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  padding: 8px 14px;
  color: var(--gray-800);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  background: rgba(26,35,126,0.08);
  color: var(--primary);
}
.nav-links > li > a.active { font-weight: 700; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--gray-800);
  font-size: 0.87rem;
  border-radius: 8px;
  transition: var(--transition);
}
.dropdown li a i { color: var(--primary-light); width: 16px; }
.dropdown li a:hover { background: var(--gray-50); color: var(--primary); }

/* Admin button */
.nav-admin-btn {
  background: var(--primary) !important;
  color: white !important;
  border-radius: 8px !important;
}
.nav-admin-btn:hover {
  background: var(--primary-dark) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: var(--transition);
}

/* ═══════════════════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  height: 92vh;
  min-height: 580px;
  max-height: 820px;
  overflow: hidden;
}
.slides-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active { opacity: 1; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,21,60,0.72) 0%, rgba(30,40,100,0.45) 100%);
}

.slide-content {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  color: white;
}
.slide-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.slide-content h1 {
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.slide-content h1 .highlight {
  color: var(--accent);
  display: block;
}
.slide-content p {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  opacity: 0.92;
  max-width: 560px;
  margin-bottom: 30px;
  line-height: 1.7;
}
.slide-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Slider Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  z-index: 10;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover { background: var(--accent); border-color: var(--accent); }
.prev { left: 24px; }
.next { right: 24px; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 5px;
}

/* Scroll Down */
.scroll-down {
  position: absolute;
  bottom: 20px;
  right: 32px;
  color: rgba(255,255,255,0.7);
  animation: bounce 2s infinite;
  font-size: 1.1rem;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ═══════════════════════════════════════════════════
   SEARCH SECTION
═══════════════════════════════════════════════ */
.search-section {
  padding: 0;
  position: relative;
  z-index: 100;
  margin-top: -40px;
}
.search-box {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.search-tabs {
  display: flex;
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
}
.stab {
  flex: 1;
  padding: 14px 16px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.stab i { font-size: 0.9rem; }
.stab.active, .stab:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: white;
}
.search-form {
  display: flex;
  align-items: flex-end;
  gap: 0;
  padding: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.search-field {
  flex: 1;
  min-width: 140px;
}
.search-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.search-field label i { margin-right: 4px; color: var(--primary-light); }
.search-field input,
.search-field select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: white;
  transition: var(--transition);
}
.search-field input:focus,
.search-field select:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(59,63,160,0.12);
}
.swap-btn {
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  color: var(--primary);
  font-size: 0.85rem;
  align-self: flex-end;
  margin-bottom: 2px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.swap-btn:hover { background: var(--primary); color: white; transform: rotate(180deg); }
.search-btn {
  padding: 11px 28px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border: none;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  align-self: flex-end;
}
.search-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ═══════════════════════════════════════════════════
   STATS SECTION
═══════════════════════════════════════════════ */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, #283593 50%, #1565c0 100%);
  padding: 60px 0;
  margin-top: 30px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-item {
  text-align: center;
  padding: 30px 20px;
  color: white;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255,255,255,0.2);
}
.stat-icon {
  width: 54px;
  height: 54px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
}
.stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  display: inline;
}
.stat-plus { font-size: 1.5rem; font-weight: 700; display: inline; }
.stat-label {
  font-size: 0.85rem;
  opacity: 0.82;
  margin-top: 6px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════════ */
.services-section {
  padding: 90px 0;
  background: var(--gray-50);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.service-card.featured {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-color: transparent;
}
.service-card.featured::before { display: none; }
.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: white;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.s1 { background: rgba(26,35,126,0.1); color: var(--primary); }
.s2 { background: rgba(0,150,136,0.1); color: #009688; }
.s3 { background: rgba(255,255,255,0.18); color: white; }
.s4 { background: rgba(245,166,35,0.12); color: var(--accent-dark); }
.s5 { background: rgba(33,150,243,0.1); color: #2196f3; }
.s6 { background: rgba(156,39,176,0.1); color: #9c27b0; }
.service-card:hover .service-icon-wrap { transform: scale(1.1) rotate(5deg); }
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gray-800);
}
.service-card.featured h3 { color: white; }
.service-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 18px;
}
.service-card.featured p { color: rgba(255,255,255,0.82); }
.service-features { margin-bottom: 20px; }
.service-features li {
  font-size: 0.83rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.service-card.featured .service-features li { color: rgba(255,255,255,0.82); }
.service-features li .fas.fa-check { color: #22c55e; font-size: 0.72rem; }
.service-card.featured .service-features li .fas.fa-check { color: #a5f3c0; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}
.service-card.featured .service-link { color: rgba(255,255,255,0.9); }
.service-link:hover { gap: 10px; }

/* ═══════════════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════════ */
.why-section {
  padding: 90px 0;
  background: white;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-image { position: relative; }
.why-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}
.why-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid var(--gray-200);
}
.why-badge-float > i {
  font-size: 1.6rem;
  color: var(--accent);
}
.why-badge-float strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-800);
}
.why-badge-float small {
  font-size: 0.78rem;
  color: var(--gray-600);
}
.why-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--gray-800);
  margin: 10px 0 16px;
  line-height: 1.2;
}
.why-content > p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.why-points { display: flex; flex-direction: column; gap: 20px; }
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.wp-icon {
  width: 48px;
  height: 48px;
  background: rgba(26,35,126,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.wp-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
}
.wp-text p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }

/* ═══════════════════════════════════════════════════
   DESTINATIONS
═══════════════════════════════════════════════ */
.destinations-section {
  padding: 90px 0;
  background: var(--gray-50);
}
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 16px;
}
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.dest-card.large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dest-card:hover img { transform: scale(1.08); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: var(--transition);
}
.dest-info { color: white; transform: translateY(10px); transition: var(--transition); }
.dest-card:hover .dest-info { transform: translateY(0); }
.dest-country {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.85;
  margin-bottom: 4px;
}
.dest-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.dest-info p { font-size: 0.82rem; opacity: 0.8; margin-bottom: 10px; }
.dest-btn {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent);
  color: white;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.dest-card:hover .dest-btn { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════
   HAJJ SECTION
═══════════════════════════════════════════════ */
.hajj-section {
  position: relative;
  padding: 80px 0;
  background: url('https://sspark.genspark.ai/cfimages?u1=dgrD1zJZrh2Y3papzfSB1erBcobRzndxz96AdZs%2BU%2BeKNEkBWs5DAP2Fj2rb%2FsNEJ8x2zjRHCpV%2B7XUA1bYbqK%2BuVWJumflwEr%2Fkv8RBIbWVJTSoiIw7NB59UfIVDX8y7ZE5iOWRGc%2F%2BVqLBQRSN&u2=eIwJCSsf0mPP3pE%2B&width=2560') center/cover no-repeat;
}
.hajj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,6,40,0.88) 0%, rgba(80,40,10,0.82) 100%);
}
.hajj-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hajj-content { color: white; }
.hajj-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin: 10px 0 16px;
  line-height: 1.15;
}
.hajj-content h2 span { color: #f5c842; }
.hajj-content > p {
  opacity: 0.88;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.hajj-packages { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.pkg-item {
  display: flex;
  gap: 14px;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 14px 18px;
}
.pkg-item > i { font-size: 1.3rem; color: #f5c842; flex-shrink: 0; }
.pkg-item strong { display: block; font-size: 0.95rem; color: white; }
.pkg-item span { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.hajj-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 400px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* ═══════════════════════════════════════════════════
   VISA SECTION
═══════════════════════════════════════════════ */
.visa-section {
  padding: 90px 0;
  background: white;
}
.visa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.visa-country {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.visa-country:hover {
  transform: translateY(-5px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  background: white;
}
.visa-flag { font-size: 2.5rem; margin-bottom: 10px; }
.visa-country h4 { font-size: 0.92rem; font-weight: 700; color: var(--gray-800); margin-bottom: 4px; }
.visa-country p { font-size: 0.78rem; color: var(--gray-600); margin-bottom: 10px; }
.visa-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: #22c55e;
  font-weight: 600;
  background: rgba(34,197,94,0.1);
  padding: 4px 10px;
  border-radius: 50px;
}

/* ═══════════════════════════════════════════════════
   TEAM
═══════════════════════════════════════════════ */
.team-section {
  padding: 90px 0;
  background: var(--gray-50);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}
.team-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.team-avatar {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 40px;
  text-align: center;
}
.avatar-placeholder {
  width: 90px;
  height: 90px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2.5rem;
  color: white;
}
.team-info { padding: 24px; }
.team-info h3 { font-size: 1.05rem; font-weight: 700; color: var(--gray-800); margin-bottom: 4px; }
.team-info span {
  display: block;
  font-size: 0.82rem;
  color: var(--primary-light);
  font-weight: 600;
  margin-bottom: 12px;
}
.team-info p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 16px; }
.team-social { display: flex; gap: 8px; }
.team-social a {
  width: 32px;
  height: 32px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--gray-600);
  transition: var(--transition);
}
.team-social a:hover { background: var(--primary); color: white; }

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.testimonials-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #0d1557 0%, #1a237e 50%, #283593 100%);
}
.testimonials-section .section-header h2 { color: white; }
.testimonials-section .section-header p { color: rgba(255,255,255,0.7); }
.testimonials-section .section-tag { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.testimonials-slider {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}
.testimonial-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  min-width: calc(33.33% - 16px);
  flex-shrink: 0;
}
.stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  line-height: 1.72;
  margin-bottom: 20px;
  font-style: italic;
}
.client-info { display: flex; align-items: center; gap: 12px; }
.client-avatar {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.client-info strong { display: block; color: white; font-size: 0.9rem; }
.client-info span { font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.tslider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tslider-btn:hover { background: var(--accent); border-color: var(--accent); }
.tprev { left: -10px; }
.tnext { right: -10px; }

/* ═══════════════════════════════════════════════════
   OFFICES
═══════════════════════════════════════════════ */
.offices-section {
  padding: 90px 0;
  background: white;
}
.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.office-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.office-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}
.office-icon {
  width: 60px;
  height: 60px;
  background: rgba(26,35,126,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--primary);
}
.office-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--gray-800); }
.office-address { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }
.office-contacts { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.office-contacts a {
  font-size: 0.83rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: color 0.2s;
}
.office-contacts a:hover { color: var(--primary); }
.office-contacts i { color: var(--primary-light); font-size: 0.8rem; }
.office-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--gray-200);
  color: var(--gray-600);
}
.office-badge.main { background: rgba(26,35,126,0.12); color: var(--primary); }

/* ═══════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: 80px 0;
  background: url('https://sspark.genspark.ai/cfimages?u1=sTtd6ABJcnsu816xryqmwv27KjUIpnnXAkxYXcGtNNSwN0cDoFs7nPric3PN%2FXpK0MOTEKOyYQo1X3AO7hUs6KJlkWQBeRzvjtbgzlfjyFhWMySNoQpPzfaYZzUnhPzQLV8YL6XlD2WBVS4jMWMxuuYKMyU54wqYMbGAlHuCUjGh4vFTSxmnL6RqIlcQg%2B3OAPgimztvBsUuzr2i%2Bhf8cfADVMBlRpf1In1xibxtojB2abhhFAT%2FwAhowL7qXXu1VjpdCCYon7JY378llSgh2R86CUHxMMCIRSB78C%2FTbmeN4FqbBOo2FXzzp6kH90Vr%2BlJEeEng410neHwwrSn%2BkIB4jln2N4lyD%2FCkpqcPALqTyCUPNhNH%2FvsMz%2FxsvqKaq9qFO5giwJIGtVl0g4Ed1JZAToqgltiU1YJr5uIwyVwTOz6dLrl3acHGiOiuchck0mxh45wfmoEeu%2B8g%2FGmJQffz%2F2dagMMoHhIPmtHUdLlsrGtSmiXC0CM3%2BM7IEbPvzGtBmeAr9PyWC1225ui62Aw65%2FuomA3BhHhVxqk4C1SbJy7yyEFleUDOXGkP5gX4SCITYOB1dEFO1%2FQDQXfJA3Pgd8MhjIbKA9uso0phpy44uFZmr60q2t37K7ee9lDysH6tLUKGSg0BxxR%2B%2FeauVBI3c79nOr%2F8kRmbEZ3Z%2BLW4Q13R7fYcPiNlWuGwH%2Bm6MyO%2BT5vwnNQ99F2n6piuh%2F824xVMvoFGu8NUoxTeoi%2FmAG9dTz43vu0hXQ%2BgoPg7jQGe4wJvSphAL2GDDqXQ%3D%3D&u2=nKDCH6uITr%2BpBnGJ') center/cover no-repeat;
  overflow: hidden;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,50,0.88), rgba(26,35,126,0.82));
}
.cta-content {
  position: relative;
  text-align: center;
  color: white;
}
.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 36px;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer { background: #0a0f2e; color: rgba(255,255,255,0.7); }
.footer-top { padding: 60px 0 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.72; margin-top: 16px; margin-bottom: 20px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo-main {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
}
.footer-logo-sub {
  display: block;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: white; }
.footer-links-col h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links-col a i { font-size: 0.65rem; color: var(--accent); }
.footer-links-col a:hover { color: white; padding-left: 4px; }
.footer-contact-col h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item > i {
  color: var(--accent);
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-item strong { display: block; color: white; font-size: 0.85rem; }
.footer-contact-item p, .footer-contact-item a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  padding: 20px 0;
  background: rgba(0,0,0,0.3);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--accent); }

/* ─── Back to Top ───────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  font-size: 1rem;
  transition: var(--transition);
  display: none;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--accent); transform: translateY(-3px); }

/* ═══════════════════════════════════════════════════
   MOBILE NAV OVERLAY
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links > li > a { padding: 8px 10px; font-size: 0.84rem; }
}

@media (max-width: 900px) {
  /* ─── Mobile Navigation ─────────────────────────── */
  .hamburger { display: flex; z-index: 1001; position: relative; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(160deg, rgba(10,15,46,0.98) 0%, rgba(26,35,126,0.98) 100%);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    z-index: 999;
    padding: 100px 24px 40px;
    overflow-y: auto;
    animation: menuSlideIn 0.3s ease forwards;
  }
  @keyframes menuSlideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; max-width: 320px; text-align: center; }
  .nav-links > li > a {
    color: white !important;
    font-size: 1rem;
    padding: 14px 20px;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 2px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
  }
  .nav-links > li > a:hover,
  .nav-links > li > a.active {
    background: rgba(255,255,255,0.12) !important;
    border-color: rgba(255,255,255,0.15);
  }
  .nav-admin-btn {
    margin-top: 12px;
    background: linear-gradient(135deg, #3b3fa0, #5c6bc0) !important;
    border: none !important;
    padding: 14px 32px !important;
  }
  
  /* Mobile Dropdown */
  .dropdown {
    position: static;
    box-shadow: none;
    background: rgba(255,255,255,0.06);
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    margin-top: 6px;
    margin-bottom: 6px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 8px;
  }
  .has-dropdown:hover .dropdown,
  .has-dropdown.active .dropdown {
    max-height: 350px;
    padding: 8px;
  }
  .dropdown li a {
    color: rgba(255,255,255,0.85) !important;
    justify-content: center;
    font-size: 0.9rem;
    padding: 10px 14px;
  }
  .dropdown li a:hover { background: rgba(255,255,255,0.08) !important; }

  /* ─── Hero Slider Mobile Fix ─────────────────────── */
  .hero-slider { height: auto; min-height: 85vh; max-height: none; }
  .slide {
    min-height: 85vh;
  }
  .slide-content {
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
    text-align: left;
  }
  .slide-content h1 {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
    margin-bottom: 12px;
  }
  .slide-content p {
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 100%;
  }
  .slide-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
    margin-bottom: 12px;
  }

  /* Slider buttons - move below content on mobile */
  .slider-btn {
    top: auto;
    bottom: 70px;
    transform: none;
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }
  .prev { left: 20px; }
  .next { right: 20px; }
  
  /* Dots repositioned */
  .slider-dots { bottom: 24px; }
  .scroll-down { display: none; }

  /* ─── Other sections ─────────────────────────────── */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .why-inner { grid-template-columns: 1fr; gap: 36px; }
  .why-image img { height: 320px; }
  .why-badge-float { right: 12px; bottom: -12px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .dest-card.large { grid-column: auto; grid-row: auto; }
  .hajj-inner { grid-template-columns: 1fr; }
  .hajj-image { display: none; }
  .visa-grid { grid-template-columns: repeat(2, 1fr); }
  .offices-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .testimonials-track { gap: 16px; }
  .testimonial-card { min-width: calc(50% - 8px); }
}

@media (max-width: 600px) {
  .top-bar .container { flex-direction: column; gap: 6px; align-items: flex-start; }
  .top-bar-right { display: none; }
  
  /* Hero Slider - Phone specific */
  .hero-slider { min-height: 75vh; }
  .slide { min-height: 75vh; }
  .slide-content {
    top: 45%;
    padding: 0 16px;
  }
  .slide-content h1 {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
    margin-bottom: 10px;
  }
  .slide-content p {
    font-size: 0.85rem;
    margin-bottom: 20px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .slide-actions { flex-direction: column; gap: 10px; }
  .slide-actions .btn {
    width: fit-content;
    padding: 11px 24px;
    font-size: 0.88rem;
  }
  
  /* Slider buttons - smaller on phone */
  .slider-btn {
    width: 38px;
    height: 38px;
    font-size: 0.8rem;
    bottom: 60px;
  }
  .prev { left: 16px; }
  .next { right: 16px; }
  .slider-dots { bottom: 18px; }
  
  /* Search/Enquiry form */
  .search-section { margin-top: -20px; }
  .search-form { flex-direction: column; }
  .search-field { min-width: 100%; }
  .swap-btn { display: none; }
  .search-tabs .stab { font-size: 0.78rem; padding: 12px 10px; }
  
  /* Other sections */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr; }
  .visa-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .testimonial-card { min-width: calc(100% - 8px); }
}

@media (max-width: 400px) {
  .hero-slider { min-height: 70vh; }
  .slide { min-height: 70vh; }
  .slide-content h1 { font-size: 1.4rem; }
  .slide-content p { font-size: 0.82rem; -webkit-line-clamp: 2; }
  .slide-badge { font-size: 0.7rem; padding: 5px 12px; }
  .slider-btn { width: 34px; height: 34px; bottom: 55px; }
  .nav-links { padding: 90px 20px 30px; }
  .nav-links > li > a { font-size: 0.95rem; padding: 12px 16px; }
}

/* ─── AOS Overrides ─────────────────────────────── */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }
