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

:root {
  --navy:   #0D1B3E;
  --navy2:  #162244;
  --gold:   #C9A84C;
  --gold2:  #E2C06A;
  --cream:  #F5F0E8;
  --white:  #FFFFFF;
  --gray:   #6B7280;
  --light:  #F8F9FB;
  --text:   #1F2937;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(13,27,62,.10);
  --shadow-lg: 0 12px 48px rgba(13,27,62,.18);
}

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
input, select, textarea, button { font-family: inherit; }

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

.section { padding: 90px 0; }
.dark-section { background: var(--navy); color: var(--white); }

/* ═══════════════════════════════════════ TYPOGRAPHY ═══════════════════════════════════════ */
.eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow.gold { color: var(--gold2); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-header.light h2 { color: var(--white); }
.section-header.light .section-desc { color: rgba(255,255,255,.7); }

h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.dark-section h2 { color: var(--white); }

.section-desc { color: var(--gray); font-size: 1.05rem; }

/* ═══════════════════════════════════════ BUTTONS ═══════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: 50px;
  transition: all .25s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.35); }
.btn-primary.full-width { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.5);
  transition: all .25s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* ═══════════════════════════════════════ NAVBAR ═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
  padding: 0;
}
.navbar.scrolled {
  background: rgba(13,27,62,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}
.logo-saphir {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .04em;
}
.logo-sub {
  font-size: .58rem;
  letter-spacing: .18em;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { transform: scaleX(1); }

.btn-account {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  flex-shrink: 0;
  transition: all .25s;
}
.btn-account:hover { background: rgba(255,255,255,.2); color: var(--white); }
.btn-account.logged { background: rgba(201,168,76,.2); border-color: var(--gold); color: var(--gold); }

.btn-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: .85rem;
  padding: 10px 22px;
  border-radius: 50px;
  flex-shrink: 0;
  transition: all .25s;
}
.btn-nav:hover { background: var(--gold2); transform: translateY(-1px); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* ═══════════════════════════════════════ HERO ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1600');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,62,.88) 0%, rgba(13,27,62,.65) 60%, rgba(13,27,62,.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 2px;
  background: var(--gold);
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 720px;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; }
.stat strong { color: var(--gold); font-size: 1.8rem; font-weight: 700; line-height: 1; }
.stat span { color: rgba(255,255,255,.65); font-size: .82rem; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

/* ═══════════════════════════════════════ SEARCH ═══════════════════════════════════════ */
.search-section {
  background: var(--white);
  padding: 0 24px;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.search-card {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(13,27,62,.08);
}

.search-tabs {
  display: flex;
  border-bottom: 1px solid rgba(13,27,62,.08);
  overflow-x: auto;
}

.tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray);
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.tab:hover { color: var(--navy); }
.tab.active { color: var(--navy); border-bottom-color: var(--gold); font-weight: 600; }

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

.search-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  align-items: end;
}

.search-field { display: flex; flex-direction: column; gap: 6px; }
.search-field label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray);
}
.search-field input, .search-field select {
  height: 48px;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  padding: 0 14px;
  font-size: .93rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}
.search-field input:focus, .search-field select:focus { border-color: var(--gold); }

.btn-search {
  height: 48px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: .93rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all .25s;
}
.btn-search:hover { background: var(--gold); color: var(--navy); }

/* ═══════════════════════════════════════ SERVICES ═══════════════════════════════════════ */
.services-section { background: var(--light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid rgba(13,27,62,.07);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
  background: var(--navy);
  color: var(--white);
}
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,.75); }
.service-card.featured .service-icon { background: rgba(201,168,76,.2); color: var(--gold); }
.service-card.featured .service-link { color: var(--gold); }
.service-card.featured::before { background: var(--gold2); }

.service-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(201,168,76,.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p { color: var(--gray); font-size: .93rem; margin-bottom: 20px; }

.service-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  transition: color .2s;
}
.service-link:hover { color: var(--gold); }

/* ═══════════════════════════════════════ PLATFORMS ═══════════════════════════════════════ */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.platform-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all .3s;
  display: block;
}
.platform-card:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.platform-card.special { border-color: rgba(201,168,76,.4); }

.platform-logo {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
  padding: 12px;
  border-radius: 10px;
}
.platform-logo.booking { color: #003580; background: #fff; }
.platform-logo.expedia { color: #00355f; background: #fff; }
.platform-logo.hotels  { color: #d32f2f; background: #fff; }
.platform-logo.agoda   { color: var(--gold); font-size: 1rem; background: rgba(201,168,76,.1); }

.platform-card p { color: rgba(255,255,255,.7); font-size: .85rem; margin: 12px 0 14px; }

.platform-badge {
  display: inline-block;
  background: rgba(201,168,76,.2);
  color: var(--gold2);
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}
.gold-badge {
  background: var(--gold);
  color: var(--navy);
}

/* ═══════════════════════════════════════ DESTINATIONS ═══════════════════════════════════════ */
.hotel-destinations h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 24px;
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.dest-card {
  height: 240px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,62,.9) 0%, transparent 60%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity .3s;
}
.dest-card:hover .dest-overlay { opacity: 1; }
.dest-overlay h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 4px; }
.dest-overlay p { color: var(--gold); font-size: .85rem; margin-bottom: 12px; }
.dest-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
}
.dest-card::after {
  content: attr(style);
  display: none;
}
.dest-card { background-size: cover; background-position: center; }

/* Add visible text even without hover for dest cards */
.dest-card .dest-overlay {
  opacity: 1;
  background: linear-gradient(to top, rgba(13,27,62,.85) 0%, rgba(13,27,62,.1) 70%);
}

/* ═══════════════════════════════════════ VOLS ═══════════════════════════════════════ */
.vols-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}
.vol-feature {
  background: var(--light);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid rgba(13,27,62,.06);
}
.vol-icon { font-size: 2rem; margin-bottom: 12px; }
.vol-feature h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.vol-feature p { font-size: .85rem; color: var(--gray); }

.promo-vols h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 24px; }

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.promo-card {
  background: var(--white);
  border: 1.5px solid rgba(13,27,62,.1);
  border-radius: var(--radius);
  padding: 24px;
  transition: all .3s;
}
.promo-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }

.promo-route {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--navy);
}
.airport { font-size: 1.4rem; font-weight: 700; font-family: 'Playfair Display', serif; }

.promo-info p { font-size: .88rem; color: var(--text); }
.promo-info .promo-date { color: var(--gray); font-size: .8rem; margin-top: 2px; }

.promo-price {
  margin: 16px 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.promo-price .from { font-size: .8rem; color: var(--gray); }
.promo-price strong { font-size: 1.6rem; color: var(--navy); font-weight: 700; }
.promo-price span { font-size: .8rem; color: var(--gray); }

.btn-promo {
  display: block;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  padding: 10px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  transition: all .25s;
}
.btn-promo:hover { background: var(--gold); color: var(--navy); }

/* ═══════════════════════════════════════ HAJJ ═══════════════════════════════════════ */
.hajj-section {
  background: linear-gradient(135deg, var(--cream) 0%, #EDE8DC 100%);
}
.hajj-section .section-header .eyebrow { color: var(--gold); }
.hajj-section h2 { color: var(--navy); }

.hajj-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.pkg-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s;
  position: relative;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.pkg-badge-top {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  font-size: .8rem;
  font-weight: 700;
  padding: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pkg-header { padding: 28px 28px 20px; border-bottom: 1px solid rgba(13,27,62,.08); }

.pkg-badge {
  display: inline-block;
  background: rgba(13,27,62,.08);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.pkg-header h3 { font-size: 1.35rem; color: var(--navy); margin-bottom: 12px; }

.pkg-price strong { font-size: 1.8rem; color: var(--navy); font-weight: 700; }
.pkg-price span { font-size: .85rem; color: var(--gray); }

.pkg-features {
  list-style: none;
  padding: 20px 28px;
}
.pkg-features li {
  padding: 8px 0;
  font-size: .88rem;
  color: var(--text);
  border-bottom: 1px solid rgba(13,27,62,.05);
}
.pkg-features li:last-child { border-bottom: none; }

.btn-pkg {
  display: block;
  margin: 4px 28px 28px;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .93rem;
  transition: all .25s;
}
.btn-pkg:hover { background: rgba(13,27,62,.85); }
.gold-btn { background: var(--gold); color: var(--navy); }
.gold-btn:hover { background: var(--gold2); }

.featured-pkg { border: 2px solid var(--gold); }

/* ═══════════════════════════════════════ WORLD ═══════════════════════════════════════ */
.world-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 240px;
  gap: 16px;
}
.world-card {
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.world-card.large { grid-column: span 2; grid-row: span 2; }

.world-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,62,.85) 0%, rgba(13,27,62,.15) 60%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background .3s;
}
.world-card:hover .world-overlay {
  background: linear-gradient(to top, rgba(13,27,62,.92) 0%, rgba(13,27,62,.3) 60%);
}

.world-region {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
  width: fit-content;
}
.world-overlay h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 4px; }
.world-overlay p { color: rgba(255,255,255,.75); font-size: .85rem; margin-bottom: 14px; }

.world-btn {
  display: inline-block;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.4);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  transition: all .2s;
  width: fit-content;
}
.world-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ═══════════════════════════════════════ EVENTS ═══════════════════════════════════════ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.event-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: all .3s;
}
.event-card:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.event-date {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.event-icon { font-size: 2.4rem; margin-bottom: 16px; }
.event-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 6px; }
.event-card > p { color: rgba(255,255,255,.6); font-size: .85rem; }
.event-desc { color: rgba(255,255,255,.65); font-size: .88rem; margin: 14px 0 20px; }

.btn-event {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  transition: all .25s;
}
.btn-event:hover { background: var(--gold2); transform: translateY(-2px); }

/* ═══════════════════════════════════════ WHY US ═══════════════════════════════════════ */
.why-section { background: var(--light); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text h2 { text-align: left; }
.why-text p:not(.eyebrow) { color: var(--gray); margin-bottom: 32px; line-height: 1.8; }

.why-points { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.why-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.wp-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-point h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.why-point p { font-size: .85rem; color: var(--gray); }

.visual-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 40px 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
}
.vc-stat {
  padding: 28px 24px;
  text-align: center;
  background: var(--navy2);
}
.vc-stat:nth-child(odd) { background: rgba(255,255,255,.04); }
.vc-stat strong { display: block; font-size: 2rem; color: var(--gold); font-weight: 700; margin-bottom: 6px; }
.vc-stat span { font-size: .82rem; color: rgba(255,255,255,.65); }

/* ═══════════════════════════════════════ CONTACT ═══════════════════════════════════════ */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: .8rem; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: .08em; }
.form-field input, .form-field select, .form-field textarea {
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .93rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
  resize: vertical;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold); }

.contact-info h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 28px; }
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.ci-icon { font-size: 1.3rem; flex-shrink: 0; }
.contact-item strong { display: block; font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: .9rem; color: var(--gray); }
.contact-item a:hover { color: var(--gold); }

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: var(--white);
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 24px;
  transition: all .25s;
}
.whatsapp-btn:hover { background: #1DBE5A; transform: translateY(-2px); }

.map-embed { border-radius: 12px; overflow: hidden; }

.legal-info { margin-top: 8px; font-size: .78rem; color: rgba(107,114,128,.7); }

/* ═══════════════════════════════════════ FOOTER ═══════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.footer-brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.6); max-width: 300px; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all .2s;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }

.footer-links h4 {
  color: var(--white);
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }

.footer-contact h4 { color: var(--white); font-size: .88rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 20px; }
.footer-contact p, .footer-contact a { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.7; display: block; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ═══════════════════════════════════════ LOADING SCREEN ═══════════════════════════════════════ */
.loader-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, transform .6s ease;
}
.loader-screen.hide {
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
}
.loader-screen.gone { display: none; }

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Gem icon */
.loader-gem {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  animation: gemSpin 6s linear infinite;
  filter: drop-shadow(0 0 16px rgba(201,168,76,.5));
}
@keyframes gemSpin {
  0%   { transform: rotate(0deg)   scale(1); }
  25%  { transform: rotate(5deg)   scale(1.05); }
  50%  { transform: rotate(0deg)   scale(1); }
  75%  { transform: rotate(-5deg)  scale(1.05); }
  100% { transform: rotate(0deg)   scale(1); }
}

/* Brand */
.loader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
}
.loader-saphir {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .18em;
  animation: fadeUp .8s ease both;
}
.loader-sub {
  font-size: .7rem;
  letter-spacing: .28em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  animation: fadeUp .8s .2s ease both;
}

/* Tagline */
.loader-tagline {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .1em;
  margin-bottom: 36px;
  font-style: italic;
  animation: fadeUp .8s .4s ease both;
}

/* Progress bar */
.loader-bar-wrap {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 20px;
  animation: fadeUp .6s .5s ease both;
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 2px;
  transition: width .05s linear;
  box-shadow: 0 0 8px rgba(201,168,76,.6);
}

/* Dots */
.loader-dots {
  display: flex;
  gap: 8px;
  animation: fadeUp .6s .6s ease both;
}
.loader-dots span {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: .3;
  animation: dotPulse 1.2s ease-in-out infinite;
}
.loader-dots span:nth-child(2) { animation-delay: .2s; }
.loader-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes dotPulse {
  0%, 100% { opacity: .3; transform: scale(1); }
  50%       { opacity: 1;  transform: scale(1.3); }
}

/* Bottom URL */
.loader-bottom {
  position: absolute;
  bottom: 28px;
  font-size: .72rem;
  letter-spacing: .14em;
  color: rgba(255,255,255,.25);
  text-transform: lowercase;
}

/* Shared fade-up */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Body locked during loading */
body.loading { overflow: hidden; }

/* ═══════════════════════════════════════ POPUP PROMO ═══════════════════════════════════════ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,27,62,.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
.popup-overlay.visible { opacity: 1; pointer-events: all; }

.popup-card {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 40px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: translateY(30px) scale(.96);
  transition: transform .4s;
  box-shadow: 0 24px 80px rgba(13,27,62,.35);
}
.popup-overlay.visible .popup-card { transform: translateY(0) scale(1); }

.popup-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: var(--light);
  border: none;
  border-radius: 50%;
  font-size: .95rem;
  cursor: pointer;
  color: var(--gray);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.popup-close:hover { background: #e5e7eb; }

.popup-badge {
  display: inline-block;
  background: rgba(201,168,76,.15);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.popup-emoji { font-size: 3rem; margin-bottom: 12px; }
.popup-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 14px;
}
.popup-card p { color: var(--gray); font-size: .95rem; line-height: 1.7; margin-bottom: 24px; }
.popup-card strong { color: var(--navy); font-weight: 800; background: rgba(201,168,76,.15); padding: 2px 8px; border-radius: 6px; }

.popup-cta {
  display: block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 24px;
  border-radius: 50px;
  margin-bottom: 12px;
  transition: all .25s;
}
.popup-cta:hover { background: var(--gold2); transform: translateY(-2px); }
.popup-note { font-size: .78rem; color: var(--gray); margin-bottom: 0; }

/* ═══════════════════════════════════════ LANG SWITCHER ═══════════════════════════════════════ */
.lang-switcher {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,.1);
  border-radius: 50px;
  padding: 4px;
}
.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 50px;
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .04em;
}
.lang-btn.active { background: var(--gold); color: var(--navy); }
.lang-btn:hover:not(.active) { color: var(--white); }

/* RTL support */
[dir="rtl"] { font-family: 'Amiri', 'Inter', serif; }
[dir="rtl"] .nav-container { flex-direction: row-reverse; }
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .hero-eyebrow::before { display: none; }
[dir="rtl"] .hero-eyebrow::after { content: ''; display: block; width: 40px; height: 2px; background: var(--gold); }
[dir="rtl"] .section-header { direction: rtl; }
[dir="rtl"] .why-text h2 { text-align: right; }
[dir="rtl"] .why-point { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .ft-feature { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .contact-item { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }

/* ═══════════════════════════════════════ FAST TRACK ═══════════════════════════════════════ */
.fasttrack-section { background: linear-gradient(135deg, var(--navy) 0%, #1a2f5e 100%); color: var(--white); }
.fasttrack-section .eyebrow { color: var(--gold2); }

.fasttrack-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ft-text h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 18px;
}
.ft-text h2 em { font-style: normal; color: var(--gold); }
.ft-text > p { color: rgba(255,255,255,.75); line-height: 1.8; margin-bottom: 32px; }

.ft-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.ft-feature { display: flex; align-items: flex-start; gap: 14px; }
.ft-icon { font-size: 1.5rem; flex-shrink: 0; }
.ft-feature h4 { color: var(--white); font-size: .95rem; margin-bottom: 4px; }
.ft-feature p { color: rgba(255,255,255,.65); font-size: .85rem; }

.ft-prices {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.ft-price-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
  flex: 1;
  min-width: 120px;
}
.ft-price-card.featured-price { border-color: var(--gold); background: rgba(201,168,76,.12); }
.ft-badge {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
}
.ft-price-card.featured-price .ft-badge { color: var(--gold); }
.ft-price-card strong { display: block; font-size: 1.5rem; color: var(--white); font-weight: 700; }
.ft-price-card span { font-size: .75rem; color: rgba(255,255,255,.5); }

.ft-visual { display: flex; align-items: center; justify-content: center; }

.ft-card-visual {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  padding: 40px 36px;
  text-align: center;
  width: 100%;
  max-width: 340px;
}
.ft-badge-big {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  font-size: 1.1rem;
  padding: 8px 24px;
  border-radius: 50px;
  letter-spacing: .2em;
  margin-bottom: 20px;
}
.ft-card-visual h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.ft-card-visual > p { color: rgba(255,255,255,.65); font-size: .88rem; margin-bottom: 28px; }

.ft-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 28px;
}
.ft-step { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.ft-step span {
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
}
.ft-step p { color: rgba(255,255,255,.8); font-size: .75rem; }
.ft-step-line { flex: 1; height: 2px; background: rgba(255,255,255,.2); margin: 0 8px; margin-bottom: 20px; }
.ft-plane { font-size: 2.5rem; }

/* ═══════════════════════════════════════ TESTIMONIALS ═══════════════════════════════════════ */
.testimonials-section { background: var(--light); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(13,27,62,.07);
  transition: all .3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.testi-card.featured-testi {
  background: var(--navy);
  border-color: transparent;
}
.testi-card.featured-testi .testi-stars { color: var(--gold); }
.testi-card.featured-testi .testi-text { color: rgba(255,255,255,.85); }
.testi-card.featured-testi strong { color: var(--white); }
.testi-card.featured-testi span { color: rgba(255,255,255,.5); }

.testi-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text { color: var(--gray); font-size: .9rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }

.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .9rem; color: var(--navy); }
.testi-author span { font-size: .78rem; color: var(--gray); }
.testi-card.featured-testi .testi-avatar { background: rgba(201,168,76,.3); }

/* ═══════════════════════════════════════ WHATSAPP FLOAT ═══════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  z-index: 999;
  transition: all .25s;
  animation: pulse-wa 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.6); animation: none; }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,.8); }
}

/* ═══════════════════════════════════════ CURRENCY CONVERTER ═══════════════════════════════════════ */
.currency-section { background: var(--navy); color: var(--white); }

.currency-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.currency-text h2 { color: var(--white); }
.currency-text > p { color: rgba(255,255,255,.7); margin-bottom: 28px; line-height: 1.8; }

.currency-tips { display: flex; flex-direction: column; gap: 12px; }
.ct-tip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.05);
  border-radius: 10px;
  padding: 12px 16px;
}

.currency-widget {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 32px;
}

.currency-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
}
.currency-live-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.4); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.currency-live-text { color: #22c55e; font-weight: 600; }
.currency-updated { margin-left: auto; font-size: .75rem; color: rgba(255,255,255,.35); }

.currency-field { display: flex; flex-direction: column; gap: 6px; }
.currency-field label { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); }

.currency-input-wrap { position: relative; }
.currency-input-wrap input {
  width: 100%;
  height: 52px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 0 16px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  outline: none;
  transition: border-color .2s;
}
.currency-input-wrap input:focus { border-color: var(--gold); }

.currency-selects {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 10px;
  margin: 14px 0;
}
.currency-selects select {
  width: 100%;
  height: 48px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 0 12px;
  font-size: .88rem;
  color: var(--white);
  outline: none;
  cursor: pointer;
  transition: border-color .2s;
}
.currency-selects select:focus { border-color: var(--gold); }
.currency-selects select option { background: var(--navy); color: var(--white); }

.swap-btn {
  width: 42px; height: 42px;
  background: rgba(201,168,76,.2);
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  flex-shrink: 0;
  margin-bottom: 2px;
}
.swap-btn:hover { background: var(--gold); color: var(--navy); transform: rotate(180deg); }

.currency-result {
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  margin: 4px 0 20px;
  min-height: 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.cr-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  transition: all .3s;
}
.cr-rate { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 6px; }

.quick-rates { margin-bottom: 20px; }
.qr-title { font-size: .75rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.qr-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.qr-item {
  background: rgba(255,255,255,.05);
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
  cursor: pointer;
  transition: background .2s;
}
.qr-item:hover { background: rgba(201,168,76,.15); }
.qr-item .qr-flag { font-size: 1.1rem; display: block; margin-bottom: 2px; }
.qr-item .qr-code { font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.7); display: block; }
.qr-item .qr-val  { font-size: .78rem; color: var(--gold); font-weight: 600; display: block; margin-top: 2px; }

.currency-cta {
  display: block;
  text-align: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  padding: 12px;
  border-radius: 12px;
  font-size: .88rem;
  font-weight: 500;
  transition: all .25s;
}
.currency-cta:hover { background: rgba(255,255,255,.14); color: var(--white); }

/* ═══════════════════════════════════════ BLOG ═══════════════════════════════════════ */
.blog-section { background: var(--light); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(13,27,62,.07);
  transition: all .3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.blog-card.blog-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}
.blog-card.blog-featured .blog-img { height: auto; min-height: 280px; }

.blog-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
}
.blog-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.blog-content { padding: 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-meta {
  display: flex;
  gap: 14px;
  font-size: .75rem;
  color: var(--gray);
  margin-bottom: 12px;
}
.blog-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-card.blog-featured h3 { font-size: 1.2rem; }
.blog-card p { font-size: .87rem; color: var(--gray); line-height: 1.6; flex: 1; margin-bottom: 16px; }

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  transition: gap .2s, color .2s;
  margin-top: auto;
}
.blog-link:hover { color: var(--gold); gap: 10px; }

/* Newsletter */
.blog-newsletter { margin-top: 40px; }
.newsletter-inner {
  background: var(--navy);
  border-radius: 20px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nl-icon { font-size: 2.4rem; flex-shrink: 0; }
.nl-text { flex: 1; }
.nl-text h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 4px; }
.nl-text p  { color: rgba(255,255,255,.65); font-size: .88rem; }
.nl-btn {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: .9rem;
  white-space: nowrap;
  transition: all .25s;
  flex-shrink: 0;
}
.nl-btn:hover { background: var(--gold2); transform: translateY(-2px); }

/* ═══════════════════════════════════════ RESPONSIVE ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .world-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .world-card.large { grid-column: span 2; height: 320px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .fasttrack-inner { grid-template-columns: 1fr; gap: 40px; }
  .ft-visual { display: none; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .currency-inner { grid-template-columns: 1fr; gap: 40px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card.blog-featured { grid-column: span 2; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav-links, .btn-nav { display: none; }
  .nav-burger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    padding: 24px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav-links.open a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: 1rem; }

  .hero-content h1 { font-size: 2.4rem; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }

  .search-section { margin-top: -30px; }
  .search-grid { grid-template-columns: 1fr 1fr; }

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

  .world-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .world-card { height: 200px; }
  .world-card.large { grid-column: span 1; height: 260px; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .hajj-packages { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .visual-card { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .lang-switcher { display: none; }
  .currency-inner { grid-template-columns: 1fr; gap: 40px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.blog-featured { grid-column: span 1; grid-template-columns: 1fr; }
  .blog-card.blog-featured .blog-img { height: 200px; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .qr-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 480px) {
  .hero-content { padding: 100px 20px 60px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { text-align: center; justify-content: center; }
  .search-grid { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════ DEVIS MODAL ══════════════ */
.devis-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6);
  display: flex; align-items: flex-end; justify-content: center;
  z-index: 9000; opacity: 0; visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.devis-overlay.open { opacity: 1; visibility: visible; }
.devis-modal {
  background: #fff; width: 100%; max-width: 680px;
  border-radius: 24px 24px 0 0; padding: 40px 36px 36px;
  transform: translateY(40px); transition: transform .35s cubic-bezier(.4,0,.2,1);
  position: relative; max-height: 92vh; overflow-y: auto;
}
.devis-overlay.open .devis-modal { transform: translateY(0); }
.devis-close {
  position: absolute; top: 16px; right: 20px;
  background: #f0f0f0; border: none; width: 36px; height: 36px;
  border-radius: 50%; font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.devis-close:hover { background: #e0e0e0; }
.devis-header { text-align: center; margin-bottom: 28px; }
.devis-icon { font-size: 40px; margin-bottom: 10px; }
.devis-header h2 { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1.6rem; margin-bottom: 6px; }
.devis-header p { color: #666; font-size: .95rem; }
.devis-form { display: flex; flex-direction: column; gap: 14px; }
.devis-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.devis-field { display: flex; flex-direction: column; gap: 6px; }
.devis-field.full { grid-column: span 2; }
.devis-field label { font-size: .85rem; font-weight: 600; color: var(--navy); }
.devis-field input, .devis-field select, .devis-field textarea {
  border: 1.5px solid #e0e0e0; border-radius: 10px;
  padding: 11px 14px; font-size: .95rem; font-family: inherit;
  transition: border-color .2s; background: #fafafa; color: #1a1a1a;
}
.devis-field input:focus, .devis-field select:focus, .devis-field textarea:focus {
  outline: none; border-color: var(--gold); background: #fff;
}
.devis-field textarea { resize: vertical; min-height: 80px; }
.devis-submit {
  background: var(--gold); color: var(--navy); border: none;
  padding: 15px 28px; border-radius: 12px; font-weight: 700;
  font-size: 1rem; cursor: pointer; display: flex; align-items: center;
  justify-content: center; gap: 10px; transition: background .2s, transform .15s;
  margin-top: 6px; font-family: inherit;
}
.devis-submit:hover { background: #b8962e; transform: translateY(-1px); }
.devis-success { text-align: center; padding: 20px 0; }
.success-icon { font-size: 56px; margin-bottom: 14px; }
.devis-success h3 { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1.5rem; margin-bottom: 10px; }
.devis-success p { color: #555; margin-bottom: 8px; line-height: 1.6; }
.success-note { font-size: .9rem; color: #888; margin-top: 20px !important; }
.success-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff; padding: 13px 28px;
  border-radius: 12px; font-weight: 600; text-decoration: none;
  margin-top: 12px; transition: background .2s;
}
.success-wa:hover { background: #1ebe5d; }
@media (max-width: 600px) {
  .devis-modal { padding: 28px 18px 28px; }
  .devis-row { grid-template-columns: 1fr; }
  .devis-field.full { grid-column: span 1; }
}

/* ══════════════ PAGE HERO (inner pages) ══════════════ */
.page-hero {
  background: linear-gradient(135deg, #0D1B3E 0%, #1a3060 100%);
  padding: 120px 0 60px;
  text-align: center;
  color: #fff;
}
.page-hero .eyebrow { color: #C9A84C; font-size:.85rem; text-transform:uppercase; letter-spacing:2px; margin-bottom:12px; }
.page-hero h1 { font-family:'Playfair Display',serif; font-size:clamp(1.8rem,4vw,3rem); margin-bottom:14px; color:#fff; }
.page-hero p { color: rgba(255,255,255,.8); max-width:560px; margin:0 auto; }
