:root {
  --navy: #303091;
  --navy-light: #3841B5;
  --primary: #F25900;
  --primary-light: #ff8d57;
  --orange: var(--primary);
  --orange-light: var(--primary-light);
  --gold: var(--primary);
  --gold-light: var(--primary-light);
  --white: #ffffff;
  --surface: #ffffff;
  --off-white: #ffffff;
  --text-dark: #1f2937;
  --text-muted: #787e8a;
  --border: #e5e7eb;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}

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

html { scroll-behavior: smooth; }

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

/* ── NAVBAR ── */
nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--navy);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}

.logo-text {
  line-height: 1.1;
}
.logo-text strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}
.logo-text span {
  font-size: 10px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color .2s;
  position: relative;
}

.nav-links a.active,
.nav-links a:hover { color: var(--gold); }

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.hamburger span {
  width: 25px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: .3s;
}

/* ── HERO ── */
.simple-header {
  background: rgba(255,255,255,0.96);
  padding: 18px 5%;
  border-bottom: 1px solid rgba(46,49,146,0.1);
  box-shadow: 0 10px 26px rgba(15,23,42,0.06);
}

.simple-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.simple-brand {
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.brand-logo--footer {
  width: 72px;
  height: 72px;
}

.brand-copy--simple strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
}

.brand-copy--simple span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #f15a24;
}

.header-tag {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(46,49,146,0.08);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.simple-footer {
  background: linear-gradient(180deg, #0b1530 0%, #08111f 100%);
  padding: 34px 5% 22px;
  color: white;
  position: relative;
  overflow: hidden;
}

.simple-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.simple-brand--footer .brand-copy--simple strong {
  color: white;
  font-size: 18px;
}

.simple-brand--footer .brand-copy--simple span {
  color: rgba(255,255,255,0.72);
}

.simple-footer-text {
  margin: 0;
  max-width: 520px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  line-height: 1.7;
}

.simple-footer-note {
  max-width: 1100px;
  margin: 18px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 12px;
}

.hero {
  background: var(--surface);
  position: relative;
  overflow: hidden;
  padding: 80px 5% 60px;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1591604129939-f1efa4d9f7fa?w=1600&q=80') center/cover no-repeat;
  opacity: 0.25;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.95) 40%, rgba(0,0,0,0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  animation: fadeUp .8s ease both;
}

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

.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: white;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero h1 span {
  color: var(--gold);
  display: block;
}

.hero p.subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 24px rgba(241,90,36,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(241,90,36,0.5); }

.btn-outline {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(241,90,36,0.12); border-color: var(--primary); color: var(--primary); }

/* ── FEATURE BAR ── */
.feature-bar {
  background: var(--navy-light);
  padding: 18px 5%;
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 3px solid var(--gold);
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  flex: 1;
  min-width: 160px;
  max-width: 240px;
}
.feature-item:last-child { border-right: none; }

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

.feature-text strong {
  display: block;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}
.feature-text span {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  margin: 0 auto;
  border-radius: 3px;
}

/* ── PACKAGES ── */
.packages-section {
  padding: 80px 5%;
  background: var(--off-white);
}

.packages-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.packages-filter {
  max-width: 1100px;
  margin: 0 auto 28px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88));
  border: 1px solid rgba(46,49,146,0.1);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(46,49,146,0.08);
  position: relative;
  overflow: hidden;
}

.packages-filter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0,0,0,0.06), transparent 35%);
  pointer-events: none;
}

.packages-filter-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.packages-filter-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.packages-filter-title strong {
  font-size: 14px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.packages-filter-title span {
  font-size: 12px;
  color: var(--text-muted);
}

.packages-filter-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.filter-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-field label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--navy);
}

.filter-control {
  width: 100%;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(46,49,146,0.16);
  background: white;
  color: var(--navy);
  padding: 0 14px;
  font-size: 14px;
  font-family: 'Nunito', sans-serif;
  outline: none;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.filter-control::placeholder {
  color: rgba(46,49,146,0.35);
}

.filter-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.12);
}

.filter-actions {
  display: flex;
  gap: 10px;
}

.filter-btn {
  height: 48px;
  border: none;
  border-radius: 14px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}

.filter-btn:hover {
  transform: translateY(-1px);
}

.filter-btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  box-shadow: 0 8px 20px rgba(241,90,36,0.22);
}

.filter-btn--ghost {
  background: rgba(46,49,146,0.08);
  color: var(--navy);
}

.packages-filter-count {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}

.packages-no-results {
  display: none;
  max-width: 1100px;
  margin: 18px auto 0;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(46,49,146,0.06);
  color: var(--navy);
  font-weight: 800;
  text-align: center;
}

.header-download-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  padding: 16px;
}

.header-download-modal.open {
  display: flex;
}

.header-download-card {
  width: 100%;
  max-width: 460px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.header-download-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.header-download-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
}

.header-download-head button {
  border: 0;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
}

.header-download-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.header-download-body label {
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header-download-empty {
  margin: 0;
  color: var(--text-muted);
}

.download-report-canvas {
  position: absolute;
  left: -99999px;
  top: 0;
  width: 1300px;
  background: #ffffff;
  padding: 18px;
}

.download-report-inner {
  background: #ffffff;
}

.download-report-header {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

.download-report-title {
  margin: 12px 0 6px;
  font-family: 'Playfair Display', serif;
  color: var(--navy);
}

.download-report-meta {
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.download-report-canvas .pkg-badge-image--kaaba,
.download-report-canvas .pkg-badge-image--madina {
  background-image: linear-gradient(to bottom, rgba(48, 48, 145, 0.85), rgba(48, 48, 145, 0.35));
}

.download-report-empty {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  font-weight: 700;
}

.package-card.is-hidden {
  display: none;
}

.package-card {
  background: white;
  border: 2px solid rgba(245, 158, 11, 0.5);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 180px 1fr auto;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.pkg-badge {
  background: #f4f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.pkg-badge-card {
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  border: 0;
  box-shadow: none;
  position: relative;
}
.pkg-badge-overlay {
  position: absolute;
  top: 12px;
  left: 10px;
  right: 10px;
  z-index: 2;
  text-align: center;
}
.pkg-badge .pkg-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: #fff;
}
.pkg-badge .pkg-num {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}
.pkg-badge .pkg-code {
  margin: 8px auto 0;
  display: block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: fit-content;
}
.pkg-badge .pkg-days {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #222;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: none;
}
.pkg-badge-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.pkg-badge-image--kaaba {
  background-image:
    linear-gradient(to bottom, rgba(48, 48, 145, 0.85) 0%, rgba(48, 48, 145, 0.5) 35%, rgba(48, 48, 145, 0.12) 100%),
    url('https://images.unsplash.com/photo-1564769625905-50e93615e769?auto=format&fit=crop&w=700&q=80');
}
.pkg-badge-image--madina {
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.42) 35%, rgba(0, 0, 0, 0.08) 100%),
    url('https://images.unsplash.com/photo-1591604466107-ec97de577aff?auto=format&fit=crop&w=700&q=80');
}

.pkg-badge .pkg-separator {
  margin: 14px 0 8px;
  border: none;
  height: 2px;
  background: rgba(255,255,255,0.2);
  width: 100%;
}

.pkg-badge .pkg-include-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}

.pkg-badge .pkg-includes {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  gap: 8px;
}

.pkg-badge .pkg-includes .include-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  color: white;
  border: 1px solid rgba(255,255,255,0.24);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.pkg-badge .pkg-includes .include-item i {
  color: #000000;
  font-size: 14px;
}

.pkg-body .pkg-include-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--navy);
  margin: 20px auto 0;
  text-align: center;
}

.pkg-body .pkg-includes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  align-items: center;
  padding: 14px;
  margin-top: 10px;
  border-radius: 18px;
  background: rgba(46,49,146,0.05);
  border: 1px solid rgba(46,49,146,0.12);
  width: auto;
  max-width: 100%;
}

.pkg-body .pkg-includes .include-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: white;
  color: var(--navy);
  border: 1px solid rgba(46,49,146,0.16);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.pkg-body .pkg-includes .include-item i {
  color: var(--primary);
  font-size: 14px;
}

.pkg-body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  place-items: center;
}

.pkg-hotels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.hotel-info h4 {
  font-size: 12px;
  color: black;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: black;
  margin: 0 0 4px 0;
}

.hotel-info {
  position: relative;
  padding-left: 68px;
}

.hotel-info .hotel-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}
.hotel-info .hotel-name .hotel-icon-custom {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  margin-right: 0;
  object-fit: contain;
}

.hotel-info .hotel-alt {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin: 2px 0;
  line-height: 1.2;
}

.hotel-info .hotel-alt--similar {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hotel-info .hotel-alt--alternate {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
}

.hotel-info .hotel-alt .alt-prefix {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hotel-info .hotel-alt .alt-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
}

.hotel-info .hotel-loc {
  font-size: 12px;
  color: black;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}
.hotel-info .hotel-loc i { color: var(--primary); font-size: 10px; }

.flight-info {
  background: var(--off-white);
  border-radius: 12px;
  padding: 26px 8px 0px 8px;
}

.gift-info {
  padding: 12px 14px;
  border-radius: 0;
  background: transparent;
  border: 0;
}
.package-card--bottom-gift .gift-info {
  grid-column: 1 / -1;
  width: 100%;
  border-top: 1px solid #ececec;
}

.gift-info--none {
  text-align: center;
}
.gift-info--none .include-item,
.gift-info--none .gift-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  margin: 4px;
  border-radius: 999px;
  background: white;
  color: var(--navy);
  border: 1px solid var(--primary-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}
.gift-info--none .include-item i {
  color: var(--primary);
  font-size: 14px;
}
.gift-info--none .gift-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.gift-info--none .gift-row + .gift-row {
  margin-top: 6px;
}
.gift-info--none .gift-item {
  border: 1px solid rgba(46,49,146,0.16);
  color: var(--navy);
}

.gift-info--none .gift-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(46,49,146,0.08);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gift-info .gift-header {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
}

.gift-info .gift-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.gift-info .gift-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--navy);
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.flight-header {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin:12px 0px 6px 0px;
  text-align: center;
}
.flight-header i { color: var(--navy); }

.flight-route {
  font-size: 14px;
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 4px;
  text-align: center;
}
.flight-route .arrow { color: var(--orange); }

.flights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: white;
  border-radius: 8px;
  padding: 0px 12px;
  border-left: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
}

.flight-item {
  place-items: center;
  padding: 8px;
}

.flights-grid .flight-item:not(:last-child) {
  border-right: 1px solid #e8e8ef;
}

.flight-item .fnum {
  font-size: 16px;
  font-weight: 900;
  color: var(--navy);
}
.flight-item .fdate {
  font-size: 12px;
  color: black;
  font-weight: 700;
  margin-top: 2px;
}

.pkg-prices {
  padding: 20px 18px;
  background: white;
  border-left: 1px solid #ececec;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
  min-width: 200px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 12px;
  background: white;
  border: 1px solid #e8e8ef;
  box-shadow: 0 2px 8px rgba(46,49,146,0.08);
  gap: 14px;
  width: 100%;
  max-width: 280px;
}

.price-type {
  font-size: 12px;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.price-amount {
  font-size: 17px;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

.pkg-prices .price-row.popular {
  background: linear-gradient(90deg, var(--navy), var(--navy-light));
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(56,65,181,0.18);
}
.pkg-prices .price-row.popular .price-type { color: rgba(255,255,255,0.95); }
.pkg-prices .price-row.popular .price-amount { color: #fff; font-size: 18px; font-weight: 900; }

/* ── WHY CHOOSE US ── */
.why-section {
  padding: 80px 5%;
  background: white;
}

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

.why-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: 20px;
  background: var(--off-white);
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s, background .3s;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  background: white;
}

.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
  color: var(--gold);
  transition: transform .3s;
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(-5deg); }

.why-card h3 {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.why-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── INQUIRY / BOOKING ── */
.booking-section {
  padding: 80px 5%;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(232,160,32,0.06);
}

.booking-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(232,93,4,0.06);
}

.booking-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.booking-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-control {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 14px 18px;
  color: white;
  font-size: 14px;
  font-family: 'Nunito', sans-serif;
  outline: none;
  transition: border-color .2s, background .2s;
  appearance: none;
}
.form-control::placeholder { color: rgba(255,255,255,0.35); }
.form-control:focus { border-color: var(--primary); background: rgba(255,255,255,0.1); }
.form-control option { background: var(--surface); }

.btn-send {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform .2s, box-shadow .2s;
  font-family: 'Nunito', sans-serif;
  margin-top: 8px;
}
.btn-send:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(241,90,36,0.4); }

.contact-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.need-help {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px;
}

.need-help h3 {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 22px;
  margin-bottom: 6px;
}
.need-help p {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  margin-bottom: 20px;
}

.phone-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  text-decoration: none;
  transition: color .2s;
}
.phone-item:hover { color: var(--gold-light); }
.phone-item i {
  width: 36px;
  height: 36px;
  background: rgba(241,90,36,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
  background: var(--surface);
  padding: 60px 5% 30px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  line-height: 1.7;
  margin-top: 16px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  text-decoration: none;
  transition: all .2s;
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: white; }

.footer-col h4 {
  color: white;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-contact-item i {
  color: var(--orange);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  text-align: center;
  color: rgba(255,255,255,0.25);
  font-size: 12px;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0; right: 0;
  background: var(--navy-light);
  padding: 20px;
  z-index: 998;
  flex-direction: column;
  gap: 12px;
  border-bottom: 3px solid var(--gold);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform .3s, opacity .3s;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  display: flex;
}
.mobile-menu a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .booking-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .simple-header { padding: 14px 4%; }
  .simple-header-inner { flex-direction: column; align-items: flex-start; }
  .simple-brand { align-items: center; }
  .header-tag { align-self: flex-start; }
  .simple-footer { padding: 28px 4% 20px; }
  .simple-footer-inner { flex-direction: column; align-items: flex-start; }
  .brand-logo { width: 72px; height: 72px; }
  .brand-logo--footer { width: 64px; height: 64px; }
  .simple-footer-text { max-width: 100%; }

  nav { padding: 0 4%; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 60px 4% 50px; min-height: auto; }

  .feature-bar { gap: 0; }
  .feature-item { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 12px 16px; }
  .feature-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }

  .packages-section { padding: 50px 4%; }
  .packages-filter-grid { grid-template-columns: 1fr 1fr; }
  .packages-filter-head { align-items: flex-start; }
  .filter-actions { width: 100%; }
  .filter-btn { flex: 1; }

  .package-card {
    grid-template-columns: 1fr;
  }

  .pkg-badge {
    padding: 12px;
  }
  .pkg-badge .pkg-num { font-size: 44px; }
  .pkg-badge-image { height: 100%; }

  .pkg-body { padding: 16px; }
  .pkg-hotels { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pkg-includes { gap: 8px; }
  .flights-grid { grid-template-columns: 1fr 1fr; }
  .flights-grid .flight-item:not(:last-child) { border-right: 1px solid #e8e8ef; }

  .pkg-prices {
    border-left: none;
    border-top: 1px solid var(--border);
    flex-direction: row;
    flex-wrap: wrap;
    padding: 16px;
    gap: 8px;
  }
  .price-row { flex: 1; min-width: calc(50% - 4px); }

  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .booking-section { padding: 50px 4%; }
  .booking-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 30px; }

}

@media (max-width: 480px) {
  .packages-filter-grid { grid-template-columns: 1fr; }
  .pkg-hotels { grid-template-columns: 1fr; }
  .flights-grid { grid-template-columns: 1fr; }
  .flights-grid .flight-item:not(:last-child) { border-right: none; border-bottom: 1px solid #e8e8ef; }
  .why-grid { grid-template-columns: 1fr; }
  .feature-item { min-width: 100%; border-right: none !important; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .price-row { min-width: 100%; }
}
