*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --sky: #1E90D8;
  --sky-light: #38A8F0;
  --sky-pale: #D6EFFF;
  --sky-deep: #0C6BAD;
  --sky-dark: #063F68;
  --white: #FFFFFF;
  --off-white: #F4FAFF;
  --text-dark: #0D2B3E;
  --text-mid: #2E5D7A;
  --text-muted: #5A8FAA;
  --border: #BDE0F7;
  --gold: #D4A435;
  --gold-light: #F0C84A;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  scroll-behavior: smooth;
}
body { background: var(--white); overflow-x: hidden; }

/* PAGE SYSTEM */
.page { display: none; }
.page.active { display: block; }

/* TOP BAR */
.topbar {
  background: var(--sky-dark);
  color: var(--sky-pale);
  font-size: 12px;
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  overflow: hidden;
}
.topbar a { color: var(--sky-pale); text-decoration: none; white-space: nowrap; }
.topbar .tb-left { display: flex; gap: 16px; align-items: center; flex: 1; min-width: 0; overflow: hidden; }
.topbar .tb-right { display: flex; align-items: center; white-space: nowrap; flex-shrink: 0; }
.topbar span { display: flex; align-items: center; gap: 5px; white-space: nowrap; }
@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 16px;
    gap: 4px;
  }
  .topbar .tb-left {
    flex-wrap: wrap;
    gap: 6px 14px;
    width: 100%;
  }
  .topbar .tb-right {
    width: 100%;
    font-size: 11px;
    opacity: 0.8;
  }
  .topbar span { font-size: 11.5px; }
}

/* NAV */
nav {
  background: var(--white);
  border-bottom: 1.5px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  box-shadow: 0 2px 16px rgba(30,144,216,0.08);
}
.logo-wrap { display: flex; align-items: center; gap: 14px; cursor: pointer; }
.logo-icon {
  width: 50px; height: 50px;
  background: var(--sky);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 36px; height: 36px; }
.logo-text .brand { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--sky-deep); }
.logo-text .sub { font-size: 11px; color: var(--text-muted); letter-spacing: 1.5px; text-transform: uppercase; }

.nav-links { display: flex; gap: 2px; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--text-mid);
  font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  transition: all 0.2s; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
}
.nav-links a:hover { background: var(--sky-pale); color: var(--sky-deep); }
.nav-links a.active { color: var(--sky); background: var(--sky-pale); }
.nav-cta { background: var(--sky) !important; color: var(--white) !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--sky-deep) !important; }

/* DROPDOWN */
.nav-item { position: relative; }
.dropdown {
  display: none;
  position: absolute; top: 44px; left: 0;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(30,144,216,0.15);
  min-width: 200px;
  padding: 8px;
  z-index: 300;
}
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: block; padding: 10px 14px !important;
  border-radius: 8px; font-size: 13.5px !important;
}

/* HERO */
.hero {
  background: linear-gradient(145deg, var(--sky-dark) 0%, var(--sky) 60%, var(--sky-light) 100%);
  min-height: 88vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 60px 40px;
}
.hero-bg { position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%); }
.hero-content { max-width: 600px; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; font-size: 12px; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 24px;
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--gold-light); border-radius: 50%; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(42px,5.5vw,72px); font-weight: 700; color: white; line-height: 1.15; margin-bottom: 24px; letter-spacing: -1px; }
.hero h1 em { font-style: normal; color: var(--gold-light); }
.hero-heading { display: grid; }
.hero-heading .htext { grid-area: 1/1; opacity: 0; pointer-events: none; white-space: pre-wrap; }
.hero-heading .htext.active { opacity: 1; pointer-events: auto; }
.hero p { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 480px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { background: white; color: var(--sky-deep); font-size: 15px; font-weight: 600; padding: 14px 32px; border-radius: 10px; text-decoration: none; border: none; cursor: pointer; transition: all 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--sky-pale); transform: translateY(-1px); }
.btn-outline { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.5); font-size: 15px; font-weight: 500; padding: 14px 32px; border-radius: 10px; text-decoration: none; cursor: pointer; transition: all 0.2s; display: inline-block; }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }
.hero-stats { display: flex; gap: 36px; margin-top: 52px; flex-wrap: wrap; }
.stat .num { font-size: 32px; font-weight: 700; font-family: 'Cormorant Garamond', serif; color: white; }
.stat .lbl { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 2px; }

/* SEARCH */
.search-section { background: white; padding: 0 40px; }
.search-card {
  background: white; border-radius: 16px;
  box-shadow: 0 8px 48px rgba(30,144,216,0.14);
  border: 1.5px solid var(--border); padding: 28px 32px;
  max-width: 900px; margin: -48px auto 0; position: relative; z-index: 10;
}
.search-tabs { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.stab { padding: 8px 18px; border-radius: 8px; font-size: 13px; font-weight: 500; cursor: pointer; border: 1.5px solid var(--border); color: var(--text-muted); background: var(--off-white); transition: all 0.2s; }
.stab.active, .stab:hover { background: var(--sky); color: white; border-color: var(--sky); }
.search-row { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 12px; align-items: end; }
.sfield label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 6px; display: block; }
.sfield input, .sfield select { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; color: var(--text-dark); background: var(--off-white); font-family: 'Plus Jakarta Sans', sans-serif; }
.sfield input:focus, .sfield select:focus { outline: none; border-color: var(--sky); }
.search-btn { background: var(--sky); color: white; border: none; border-radius: 8px; cursor: pointer; padding: 12px 28px; font-size: 15px; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif; transition: background 0.2s; white-space: nowrap; }
.search-btn:hover { background: var(--sky-deep); }

/* SECTION COMMONS */
section { padding: 80px 40px; }
.section-label { font-size: 14px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--sky); margin-bottom: 12px; animation: fadeUp 0.6s ease both; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px,4.5vw,52px); font-weight: 700; color: var(--text-dark); line-height: 1.2; margin-bottom: 18px; animation: fadeUp 0.6s ease 0.1s both; }
.section-subtitle { font-size: 28px; color: var(--text-mid); line-height: 1.5; max-width: 850px; animation: fadeUp 0.6s ease 0.2s both; }

/* SERVICES */
.services { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 24px; }
.service-card { background: white; border-radius: 14px; border: 1.5px solid var(--border); padding: 28px 24px; text-align: center; transition: all 0.25s; cursor: pointer; }
.service-card:hover { border-color: var(--sky); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(30,144,216,0.12); }
.service-icon { width: 40px; height: 40px; background: var(--sky-pale); border-radius: 12px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; }
.service-icon svg { width: 20px; height: 20px; }
.service-card h3 { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* DESTINATIONS */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.dest-card { border-radius: 16px; overflow: hidden; position: relative; cursor: pointer; aspect-ratio: 4/3; transition: transform 0.25s, box-shadow 0.25s; }
.dest-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(6,36,62,0.28); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,36,62,0.88) 0%, rgba(6,36,62,0.15) 60%, transparent 100%); }
.dest-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 22px; }
.dest-tag { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 6px; }
.dest-info h3 { color: white; font-size: 20px; font-weight: 700; font-family: 'Cormorant Garamond', serif; margin-bottom: 4px; }
.dest-info p { color: rgba(255,255,255,0.75); font-size: 13px; }
.dest-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 64px; }
.dest-bg-1 { background: linear-gradient(145deg, #063F68 0%, #1E90D8 100%); }
.dest-bg-2 { background: linear-gradient(145deg, #0D3B5E 0%, #2BA3CC 100%); }
.dest-bg-3 { background: linear-gradient(145deg, #04324F 0%, #1B7BAD 100%); }
.dest-bg-4 { background: linear-gradient(145deg, #092745 0%, #1567A0 100%); }
.dest-bg-5 { background: linear-gradient(145deg, #052034 0%, #0F5585 100%); }

/* WHY US */
.why { background: var(--off-white); }
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 48px; }
.why-visual { background: linear-gradient(145deg, var(--sky-dark), var(--sky)); border-radius: 20px; height: 420px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.why-visual-inner { text-align: center; color: white; position: relative; z-index: 2; }
.why-visual .big-num { font-size: 90px; font-weight: 700; font-family: 'Cormorant Garamond', serif; line-height: 1; }
.why-circles { position: absolute; inset: 0; background-image: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08) 0%, transparent 50%), radial-gradient(circle at 70% 70%, rgba(255,255,255,0.06) 0%, transparent 40%); }
.why-points { display: flex; flex-direction: column; gap: 24px; }
.why-point { display: flex; gap: 18px; align-items: flex-start; }
.why-point-icon { width: 46px; height: 46px; flex-shrink: 0; background: var(--sky-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.why-point h4 { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 5px; }
.why-point p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* PACKAGES GRID */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.pkg-card { border-radius: 16px; overflow: hidden; border: 1.5px solid var(--border); background: white; transition: all 0.25s; position: relative; }
.pkg-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(30,144,216,0.13); }
.pkg-card.featured { border-color: var(--sky); }
.pkg-badge { position: absolute; top: 16px; right: 16px; background: var(--sky); color: white; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }
.pkg-img { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 56px; }
.pkg-body { padding: 20px 22px; }
.pkg-label { font-size: 11px; font-weight: 700; color: var(--sky); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.pkg-body h3 { font-size: 18px; font-weight: 700; font-family: 'Cormorant Garamond', serif; color: var(--text-dark); margin-bottom: 10px; }
.pkg-body p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.pkg-meta { display: flex; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.pkg-meta span { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.pkg-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 16px; }
.pkg-price .from { font-size: 11px; color: var(--text-muted); }
.pkg-price .amount { font-size: 22px; font-weight: 700; color: var(--sky-deep); font-family: 'Cormorant Garamond', serif; }
.btn-sm { background: var(--sky); color: white; font-size: 13px; font-weight: 600; padding: 10px 20px; border-radius: 8px; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s; }
.btn-sm:hover { background: var(--sky-deep); }
.btn-whatsapp { background: #25D366; color: white; font-size: 13px; font-weight: 600; padding: 10px 20px; border-radius: 8px; text-decoration: none; border: none; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-whatsapp:hover { background: #1DA851; transform: translateY(-1px); }
.btn-whatsapp svg { width: 18px; height: 18px; flex-shrink: 0; }

/* TESTIMONIALS */
.testi { background: var(--sky-dark); }
.testi .section-label { color: var(--gold-light); }
.testi .section-title { color: white; }
.testi .section-subtitle { color: rgba(255,255,255,0.65); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.testi-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 28px; }
.stars { color: var(--gold-light); font-size: 16px; margin-bottom: 16px; }
.testi-card p { color: rgba(255,255,255,0.85); font-size: 14px; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--sky); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: white; }
.author-name { font-size: 14px; font-weight: 600; color: white; }
.author-loc { font-size: 12px; color: rgba(255,255,255,0.5); }

/* CTA */
.contact-cta { background: white; text-align: center; padding: 80px 40px; }
.cta-box { background: linear-gradient(135deg, var(--sky-deep), var(--sky), var(--sky-light)); border-radius: 24px; padding: 64px 48px; max-width: 780px; margin: 0 auto; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 50%); }
.cta-box h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px,3.5vw,38px); font-weight: 700; color: white; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-box p { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 32px; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-contact { background: white; color: var(--sky-deep); font-size: 15px; font-weight: 700; padding: 14px 32px; border-radius: 10px; text-decoration: none; transition: all 0.2s; display: inline-block; cursor: pointer; }
.cta-contact:hover { background: var(--sky-pale); }
.cta-whatsapp { background: #25D366; color: white; font-size: 15px; font-weight: 700; padding: 14px 32px; border-radius: 10px; text-decoration: none; transition: all 0.2s; display: inline-block; }
.cta-whatsapp:hover { background: #1EBF5A; }

/* PAGE HERO BANNER */
.page-banner {
  background: linear-gradient(145deg, var(--sky-dark), var(--sky));
  padding: 64px 40px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.06) 0%, transparent 50%); }
.page-banner h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px,4vw,52px); color: white; font-weight: 700; position: relative; z-index: 1; margin-bottom: 12px; }
.page-banner p { color: rgba(255,255,255,0.8); font-size: 16px; position: relative; z-index: 1; max-width: 520px; margin: 0 auto; }
.breadcrumb { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.6); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ABOUT PAGE */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 48px; }
.about-img { background: linear-gradient(145deg, var(--sky-dark), var(--sky-light)); border-radius: 20px; height: 460px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.about-img-inner { text-align: center; color: white; }
.about-img-inner .big { font-size: 80px; }
.about-img-inner p { font-size: 15px; opacity: 0.8; margin-top: 8px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 44px; }
.team-card { background: white; border-radius: 16px; border: 1.5px solid var(--border); padding: 32px 24px; text-align: center; transition: all 0.25s; }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(30,144,216,0.1); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--sky-deep), var(--sky-light)); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 32px; color: white; font-weight: 700; }
.team-card h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.team-card .role { font-size: 12px; color: var(--sky); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.team-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.stat-box { background: white; border-radius: 16px; border: 1.5px solid var(--border); padding: 32px 24px; text-align: center; }
.stat-box .num { font-size: 44px; font-weight: 700; font-family: 'Cormorant Garamond', serif; color: var(--sky); }
.stat-box .lbl { font-size: 14px; color: var(--text-muted); margin-top: 6px; }

/* UMRAH PAGE */
.umrah-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 44px; }
.umrah-feature { background: white; border-radius: 14px; border: 1.5px solid var(--border); padding: 28px; display: flex; gap: 18px; align-items: flex-start; transition: all 0.25s; }
.umrah-feature:hover { border-color: var(--sky); box-shadow: 0 8px 24px rgba(30,144,216,0.1); }
.umrah-feature-icon { width: 50px; height: 50px; flex-shrink: 0; background: var(--sky-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.umrah-feature h4 { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.umrah-feature p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }
.pkg-grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 44px; }

/* CONTACT PAGE */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; margin-top: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card { background: white; border-radius: 14px; border: 1.5px solid var(--border); padding: 24px; display: flex; gap: 18px; align-items: flex-start; }
.contact-info-icon { width: 48px; height: 48px; flex-shrink: 0; background: var(--sky-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.contact-info-card h4 { font-size: 13px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.contact-info-card p, .contact-info-card a { font-size: 15px; color: var(--text-dark); text-decoration: none; font-weight: 500; }
.contact-info-card a:hover { color: var(--sky); }
.contact-form-card { background: white; border-radius: 16px; border: 1.5px solid var(--border); padding: 36px; box-shadow: 0 8px 40px rgba(30,144,216,0.08); }
.contact-form-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 700; color: var(--text-dark); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 7px; display: block; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; color: var(--text-dark); font-family: 'Plus Jakarta Sans', sans-serif; background: var(--off-white); transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--sky); background: white; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { background: var(--sky); color: white; border: none; border-radius: 10px; padding: 14px 32px; font-size: 15px; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif; cursor: pointer; width: 100%; transition: background 0.2s; margin-top: 4px; }
.form-submit:hover { background: var(--sky-deep); }
.map-embed { border-radius: 16px; overflow: hidden; border: 1.5px solid var(--border); margin-top: 32px; height: 300px; }
.map-embed .map-icon { font-size: 48px; }
.map-embed p { font-size: 14px; color: var(--text-muted); text-align: center; line-height: 1.6; }

/* VISA PAGE */
.visa-countries { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
.visa-country { background: white; border-radius: 14px; border: 1.5px solid var(--border); padding: 24px 20px; text-align: center; transition: all 0.25s; cursor: pointer; }
.visa-country:hover { border-color: var(--sky); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(30,144,216,0.1); }
.visa-country .flag { display: block; margin-bottom: 10px; border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; background: var(--off-white); }
.visa-country .flag img { width: 100%; height: 100%; object-fit: cover; display: block; }
.visa-country h4 { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 5px; }
.visa-country .time { font-size: 12px; color: var(--sky); font-weight: 600; }
.visa-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.visa-step { background: white; border-radius: 14px; border: 1.5px solid var(--border); padding: 28px 22px; text-align: center; position: relative; }
.visa-step .step-num { width: 40px; height: 40px; background: var(--sky); color: white; border-radius: 50%; font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.visa-step h4 { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.visa-step p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* FOOTER */
footer { background: var(--sky-dark); padding: 60px 40px 32px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .brand-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: white; margin-bottom: 6px; }
.footer-brand .brand-tag { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 260px; }
.footer-brand .license { font-size: 12px; color: var(--gold-light); margin-top: 12px; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; transition: color 0.2s; cursor: pointer; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.social-links { display: flex; gap: 10px; }
.social-link { width: 40px; height: 40px; background: rgba(255,255,255,0.08); border-radius: 10px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); text-decoration: none; transition: all 0.25s; cursor: pointer; }
.social-link svg { width: 20px; height: 20px; fill: currentColor; }
.social-link.fb:hover { background: #1877F2; border-color: #1877F2; color: white; }
.social-link.ig:hover { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: #e1306c; color: white; }
.social-link.tt:hover { background: #010101; border-color: #69C9D0; color: white; }
.social-link.li:hover { background: #0A66C2; border-color: #0A66C2; color: white; }

/* TOAST */
.toast { position: fixed; bottom: 32px; right: 32px; background: var(--sky-dark); color: white; padding: 14px 24px; border-radius: 10px; font-size: 14px; font-weight: 500; z-index: 999; transform: translateY(80px); opacity: 0; transition: all 0.4s; box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.toast.show { transform: translateY(0); opacity: 1; }

/* WHATSAPP FLOAT */
.wa-float { position: fixed; bottom: 32px; left: 32px; background: #25D366; color: white; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 100; transition: all 0.2s; }
.wa-float:hover { transform: scale(1.1); }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border-radius: 8px; background: var(--sky-pale); }
.hamburger span { width: 22px; height: 2px; background: var(--sky-deep); border-radius: 2px; transition: all 0.3s; display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(6,36,62,0.97); z-index: 500; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  backdrop-filter: blur(8px);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: white; font-size: 20px; font-weight: 600; text-decoration: none; padding: 14px 48px; border-radius: 12px; transition: all 0.2s; cursor: pointer; }
.mobile-nav a:hover { background: var(--sky); }
.mobile-nav .close-btn { position: absolute; top: 24px; right: 24px; font-size: 32px; color: white; cursor: pointer; background: none; border: none; }
/* SCROLL ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(40px) scale(0.97); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.fade-up.visible { opacity: 1; transform: translateY(0) scale(1); }
/* LOGO SIZING IN NAV */
.logo-wrap svg { height: 50px; width: auto; border-radius: 8px; }
.logo-wrap img { height: 40px; width: auto; border-radius: 6px; object-fit: contain; }
.logo-wrap .logo-iata img { height: 32px; width: auto; max-width: 90px; object-fit: contain; }
/* FOOTER LOGO */
.footer-logo svg { height: 40px; width: auto; border-radius: 6px; }
/* HERO bigger font */
/* Better section title */
.section-title { font-size: clamp(32px,4.5vw,52px); letter-spacing: -0.5px; }
/* Smooth pkg hover */
.pkg-card, .service-card, .dest-card, .visa-country, .team-card, .testi-card { transition: all 0.3s cubic-bezier(0.4,0,0.2,1); }
/* Better btn */
.btn-primary, .btn-outline, .btn-sm, .search-btn { letter-spacing: 0.3px; }
/* BLOG PAGE */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 44px; }
.blog-card { background: white; border-radius: 16px; border: 1.5px solid var(--border); overflow: hidden; transition: all 0.25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(30,144,216,0.12); }
.blog-card-img { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 48px; background: var(--sky-pale); }
.blog-card-body { padding: 20px 22px; }
.blog-card-body .blog-card-date { font-size: 12px; color: var(--sky); font-weight: 600; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.blog-card-body .blog-card-title { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; line-height: 1.4; }
.blog-card-body .blog-card-excerpt { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card { text-decoration: none; color: inherit; display: block; cursor: pointer; }
.blog-card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 52px; font-weight: 700; color: var(--sky); background: linear-gradient(135deg, var(--sky-pale), #e8f4fd); text-transform: uppercase; }

/* REVIEWS SECTION */
.reviews-section { background: var(--off-white); }
.review-form-card { background: white; border-radius: 16px; border: 1.5px solid var(--border); padding: 32px; max-width: 600px; margin: 0 auto 40px; box-shadow: 0 4px 20px rgba(30,144,216,0.08); }
.review-form-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; text-align: center; }
.review-form-card .form-group { margin-bottom: 14px; }
.review-form-card .form-group label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 6px; display: block; }
.review-form-card .form-group input, .review-form-card .form-group select, .review-form-card .form-group textarea { width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; color: var(--text-dark); font-family: 'Plus Jakarta Sans', sans-serif; background: var(--off-white); }
.review-form-card .form-group input:focus, .review-form-card .form-group select:focus, .review-form-card .form-group textarea:focus { outline: none; border-color: var(--sky); }
.review-form-card .form-group textarea { resize: vertical; min-height: 100px; }
.star-rating { display: flex; gap: 6px; margin: 8px 0; }
.star-rating .star { font-size: 28px; cursor: pointer; color: #ddd; transition: color 0.2s; }
.star-rating .star.active, .star-rating .star:hover { color: var(--gold); }
.reviews-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.review-card { background: white; border-radius: 14px; border: 1.5px solid var(--border); padding: 24px; transition: all 0.25s; }
.review-card:hover { border-color: var(--sky); box-shadow: 0 8px 24px rgba(30,144,216,0.1); }
.review-card .stars { color: var(--gold); font-size: 18px; margin-bottom: 12px; }
.review-card .review-text { font-size: 14px; color: var(--text-dark); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-card .review-author { display: flex; align-items: center; gap: 12px; }
.review-card .review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--sky); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: white; }
.review-card .review-name { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.review-card .review-loc { font-size: 12px; color: var(--text-muted); }
.review-card .review-date { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ANNOUNCEMENT BAR */
.announce-bar { background: var(--sky); color: white; text-align: center; font-size: 13px; font-weight: 500; padding: 9px 20px; letter-spacing: 0.3px; }
.announce-bar a { color: white; font-weight: 700; text-decoration: underline; }
/* BACK TO TOP */
.back-top { position: fixed; bottom: 100px; right: 32px; width: 44px; height: 44px; background: var(--sky); color: white; border: none; border-radius: 50%; font-size: 18px; cursor: pointer; z-index: 99; opacity: 0; transition: all 0.3s; box-shadow: 0 4px 16px rgba(30,144,216,0.3); }
.back-top.show { opacity: 1; }
.back-top:hover { background: var(--sky-deep); transform: translateY(-2px); }
/* BRAND STRIP */
.brand-strip { background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 0; overflow: hidden; min-height: 90px; }
.brand-strip-inner { display: flex; gap: 48px; align-items: center; white-space: nowrap; width: max-content; }
.brand-strip-inner .brand-item { display: flex !important; align-items: center !important; flex-shrink: 0 !important; }
.brand-strip-inner .brand-item img { width: 200px !important; height: 70px !important; border-radius: 8px; background: white; padding: 8px 16px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: transform 0.3s; object-fit: contain !important; object-position: center !important; max-width: 200px !important; max-height: 70px !important; }
.brand-strip-inner .brand-item img:hover { transform: scale(1.12); }
.brand-strip-inner .brand-item.featured img { border: 2px solid var(--sky); box-shadow: 0 2px 12px rgba(30,144,216,0.2); }
.brand-strip-inner .brand-item .al-text { display: flex !important; align-items: center; justify-content: center; min-width: 120px; height: 50px; padding: 0 16px; background: white; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); color: #475569; font-size: 13px; font-weight: 600; white-space: nowrap; }

/* HERO PLANE */
.hero-plane { position: absolute; right: -40px; top: 50%; width: 680px; opacity: 0.06; animation: planeFly 12s ease-in-out infinite; }
@keyframes planeFly {
  0% { transform: translateY(-50%) translateX(0) rotate(0deg) scale(1); opacity: 0.06; }
  20% { transform: translateY(calc(-50% - 30px)) translateX(-20px) rotate(-2deg) scale(1.03); opacity: 0.09; }
  40% { transform: translateY(calc(-50% - 10px)) translateX(-50px) rotate(0deg) scale(1); opacity: 0.07; }
  60% { transform: translateY(calc(-50% + 15px)) translateX(-80px) rotate(2deg) scale(0.97); opacity: 0.08; }
  80% { transform: translateY(calc(-50% + 5px)) translateX(-40px) rotate(1deg) scale(1.01); opacity: 0.05; }
100% { transform: translateY(-50%) translateX(0) rotate(0deg) scale(1); opacity: 0.06; }
}

@media (max-width: 900px) {
  /* NAV */
  .hamburger { display: flex; }
  nav { padding: 0 16px; height: 60px; }
  .nav-links { display: none; }
  .logo-text .brand { font-size: 18px; }
  .logo-text .sub { display: none; }
  .logo-icon { width: 40px; height: 40px; }

  /* TOPBAR */
  .topbar { padding: 5px 16px; font-size: 11px; flex-direction: column; gap: 4px; text-align: center; }
  .topbar .tb-left, .topbar .tb-right { gap: 10px; flex-wrap: wrap; justify-content: center; }

  /* ANNOUNCE BAR */
  .announce-bar { font-size: 11.5px; padding: 7px 16px; }

  /* SECTIONS */
  section { padding: 48px 16px; }
  .page-banner { padding: 40px 16px; }
  .page-banner h1 { font-size: clamp(24px, 7vw, 36px); }

  /* HERO */
  .hero { padding: 52px 16px 48px; min-height: auto; }
  .hero h1 { font-size: clamp(32px, 8vw, 48px); margin-bottom: 16px; }
  .hero p { font-size: 15px; margin-bottom: 24px; }
  .hero-stats { gap: 20px; margin-top: 36px; }
  .stat .num { font-size: 26px; }
  .stat .lbl { font-size: 12px; }
  .hero-btns { gap: 12px; }
  .btn-primary, .btn-outline { font-size: 14px; padding: 12px 22px; }
  .hero-plane { display: none; }

  /* SEARCH */
  .search-card { margin: -20px 16px 0; padding: 20px 16px; }
  .search-row { grid-template-columns: 1fr; gap: 10px; }
  .search-tabs { gap: 6px; }
  .stab { padding: 7px 12px; font-size: 12px; }

  /* SERVICES */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .service-card { padding: 20px 14px; }
  .service-icon { width: 38px; height: 38px; }
  .service-icon svg { width: 20px; height: 20px; }
  .service-card h3 { font-size: 13px; }
  .service-card p { font-size: 12px; }

  /* DESTINATIONS */
  .dest-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .dest-card { aspect-ratio: 4/3 !important; }

  /* WHY US */
  .why-layout { grid-template-columns: 1fr; gap: 32px; }
  .why-visual { height: 200px; border-radius: 14px; }
  .why-visual .big-num { font-size: 60px; }
  .why-points { gap: 18px; }

  /* PACKAGES */
  .packages-grid { grid-template-columns: 1fr; gap: 16px; }
  .pkg-grid-4 { grid-template-columns: 1fr; gap: 16px; }
  .pkg-img { height: 140px; font-size: 44px; }
  .pkg-body { padding: 16px; }
  .pkg-body h3 { font-size: 16px; }
  .pkg-body p { font-size: 13px; }

  /* TESTIMONIALS */
  .testi-grid { grid-template-columns: 1fr; gap: 16px; }
  .testi-card { padding: 22px; }

  /* CTA */
  .cta-box { padding: 44px 24px; }
  .cta-box h2 { font-size: clamp(22px, 5vw, 30px); }
  .cta-box p { font-size: 14px; }
  .cta-btns { flex-direction: column; align-items: center; gap: 10px; }
  .cta-contact, .cta-whatsapp { width: 100%; max-width: 280px; text-align: center; padding: 13px 24px; }

  /* ABOUT */
  .about-story { grid-template-columns: 1fr; gap: 28px; }
  .about-img { min-height: 220px; height: auto; padding: 32px 20px; border-radius: 14px; }
  .about-img-inner .big { font-size: 56px; }
  .about-img-inner p { font-size: 13px; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .team-card { padding: 20px 14px; }
  .team-avatar { width: 60px; height: 60px; font-size: 24px; }
  .team-card h4 { font-size: 14px; }
  .team-card .role { font-size: 11px; }
  .team-card p { font-size: 12px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .stat-box { padding: 22px 14px; }
  .stat-box .num { font-size: 34px; }
  .stat-box .lbl { font-size: 13px; }

  /* UMRAH */
  .umrah-features { grid-template-columns: 1fr; gap: 14px; }
  .umrah-feature { padding: 20px; }

  /* VISA */
  .visa-countries { grid-template-columns: repeat(2, 1fr); }
  .visa-steps { grid-template-columns: repeat(2, 1fr); }

  /* CONTACT */
  .contact-layout { grid-template-columns: 1fr; gap: 28px; }
  .contact-form-card { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  footer { padding: 44px 16px 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .social-links { gap: 10px; }

  /* BRAND STRIP */
  .brand-strip { padding: 8px 16px; min-height: auto; }

  /* WA FLOAT */
  .wa-float { bottom: 20px; left: 20px; width: 48px; height: 48px; font-size: 22px; }

  /* SECTION TITLES */
  .section-title { font-size: clamp(24px, 5vw, 36px); }
  .section-subtitle { font-size: 24px; }
}

@media (max-width: 480px) {
  /* Extra small phones */
  .dest-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .visa-countries { grid-template-columns: 1fr; }
  .visa-steps { grid-template-columns: 1fr; }
  .hero { padding: 44px 14px 40px; }
  .hero-stats { gap: 16px; }
  .stat .num { font-size: 22px; }
  section { padding: 36px 14px; }
  .search-card { margin: -16px 14px 0; }
}

/* ═══════════════════════════════════════
   EXTRA MOBILE FIXES
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  html { overflow-x: hidden; }
  body { overflow-x: hidden; width: 100%; }

  img, svg, iframe, video { max-width: 100%; height: auto; }

  .contact-layout { gap: 24px; }
  .contact-form-card { padding: 20px 16px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .umrah-features { grid-template-columns: 1fr; }
  .umrah-feature { padding: 18px; flex-direction: column; text-align: center; }
  .umrah-feature-icon { margin: 0 auto 10px; }

  .visa-countries { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .visa-country { padding: 16px 12px; }

  .visa-steps { grid-template-columns: 1fr 1fr; gap: 12px; }
  .visa-step { padding: 20px 16px; }

  .dest-grid { gap: 10px; }
  .dest-card { aspect-ratio: 4/3; min-height: 160px; }

  .pkg-grid-4 { grid-template-columns: 1fr; gap: 14px; }
  .packages-grid { grid-template-columns: 1fr; gap: 14px; }
  .pkg-card .pkg-img { height: 160px; }

  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-box { padding: 20px 12px; }
  .stat-box .num { font-size: 30px; }

  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .team-card { padding: 20px 12px; }

  .about-story { grid-template-columns: 1fr; gap: 24px; }
  .about-img { min-height: 200px; height: auto; padding: 28px 16px; border-radius: 14px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .service-card { padding: 18px 12px; }

  .search-card { margin: -16px 12px 0; padding: 18px 14px; }
  .search-row { grid-template-columns: 1fr; gap: 10px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  footer { padding: 36px 16px 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-brand p { max-width: 100%; }

  .cta-box { padding: 36px 20px; border-radius: 16px; }
  .cta-btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-contact, .cta-whatsapp { text-align: center; }

  .hero { padding: 48px 16px 40px; min-height: auto; }
  .hero h1 { font-size: clamp(28px, 7vw, 40px); }
  .hero p { font-size: 14px; }
  .hero-stats { gap: 16px; margin-top: 28px; }
  .stat .num { font-size: 24px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn-primary, .hero-btns .btn-outline { text-align: center; }

  .page-banner { padding: 36px 16px; }
  .page-banner h1 { font-size: clamp(22px, 6vw, 32px); }

  section { padding: 40px 16px; }
  .section-title { font-size: clamp(24px, 5.5vw, 32px); }
  .section-subtitle { font-size: 21px; }

  .topbar { padding: 6px 12px; font-size: 10.5px; }
  .topbar .tb-left { gap: 6px 10px; }
  .topbar span { font-size: 10.5px; gap: 3px; }

  nav { padding: 0 12px; height: 56px; }
  .logo-icon { width: 36px; height: 36px; }
  .logo-icon svg { width: 28px; height: 28px; }
  .logo-text .brand { font-size: 16px; }
  .logo-wrap svg { height: 36px; }

  .announce-bar { font-size: 11px; padding: 6px 12px; line-height: 1.5; }

  .wa-float { bottom: 16px; left: 16px; width: 44px; height: 44px; font-size: 20px; }
  .back-top { bottom: 72px; right: 16px; width: 38px; height: 38px; font-size: 16px; }

  .toast { bottom: 20px; right: 16px; left: 16px; font-size: 13px; padding: 12px 18px; text-align: center; }

  .mobile-nav a { font-size: 18px; padding: 12px 36px; }
  .mobile-nav .close-btn { top: 16px; right: 16px; font-size: 28px; }

  .brand-strip { padding: 8px 0; min-height: auto; }
  .brand-strip-inner { gap: 24px; }
  .brand-strip-inner .brand-item img { width: 160px !important; height: 56px !important; }


  .map-embed { height: 200px; }

  /* Umrah gallery grid on mobile */
  .umrah-gallery { grid-template-columns: 1fr 1fr !important; grid-template-rows: auto !important; }
  .umrah-gallery > div:first-child { grid-row: span 1 !important; }

  .contact-info-card { padding: 14px 16px; flex-direction: row; text-align: left; gap: 14px; }
  .contact-info-icon { margin: 0; width: 40px; height: 40px; font-size: 18px; flex-shrink: 0; }
  .contact-info-card h4 { font-size: 11px; }
  .contact-info-card p, .contact-info-card a { font-size: 13px; }
}

@media (max-width: 480px) {
  .dest-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; gap: 10px; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .visa-countries { grid-template-columns: 1fr 1fr; gap: 8px; }
  .visa-country { padding: 12px 10px; }
  .visa-country .flag { aspect-ratio: 4/3; }
  .visa-country h4 { font-size: 12px; }
  .visa-country .time { font-size: 10px; }
  .visa-steps { grid-template-columns: 1fr; }
  .hero { padding: 36px 12px 32px; }
  .hero-stats { gap: 12px; }
  .stat .num { font-size: 20px; }
  .hero h1 { font-size: clamp(24px, 8vw, 34px); margin-bottom: 10px; }
  .hero p { font-size: 14px; margin-bottom: 24px; }
  section { padding: 32px 12px; }
  .search-card { margin: -12px 10px 0; padding: 14px 12px; }
  .stab { padding: 6px 10px; font-size: 11px; }
  .pkg-card .pkg-img { height: 130px; }
  .dest-card { aspect-ratio: 3/2; min-height: 130px; }
  .section-title { font-size: clamp(22px, 5.5vw, 28px); }
  .umrah-feature { padding: 14px; }
  .umrah-feature-icon { width: 40px; height: 40px; font-size: 18px; }
  .map-embed { height: 160px; }
  .contact-form-card { padding: 16px 12px; }
  .contact-form-card h3 { font-size: 20px; }
  .form-group input, .form-group select, .form-group textarea { padding: 10px 12px; font-size: 13px; }
  .brand-strip-inner .brand-item img { width: 85px !important; height: 32px !important; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 22px; }
  .hero p { font-size: 13px; }
  .stat .num { font-size: 18px; }
  .visa-countries { grid-template-columns: 1fr 1fr; gap: 6px; }
  .topbar { font-size: 9.5px; }
  .topbar span { font-size: 9.5px; }
  .brand-strip-inner .brand-item img { width: 72px !important; height: 28px !important; }
  .services-grid { gap: 8px; }
  .service-card { padding: 14px 10px; }
  .service-icon { width: 36px; height: 36px; }
  .service-icon svg { width: 18px; height: 18px; }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Homepage Popup */
.popup-overlay{position:fixed;inset:0;background:rgba(0,0,0,.75);z-index:10001;display:flex;align-items:center;justify-content:center;padding:16px;animation:popupFadeIn .3s ease}
@keyframes popupFadeIn{from{opacity:0}to{opacity:1}}
.popup-modal{background:#fff;border-radius:16px;max-width:520px;width:100%;max-height:90vh;overflow-y:auto;position:relative;box-shadow:0 24px 64px rgba(0,0,0,.4);animation:popupSlideUp .3s ease}
@keyframes popupSlideUp{from{opacity:0;transform:translateY(30px)scale(.96)}to{opacity:1;transform:translateY(0)scale(1)}}
.popup-close{position:absolute;top:8px;right:12px;background:#fff;border:2px solid rgba(0,0,0,.15);width:34px;height:34px;border-radius:50%;font-size:1.3rem;cursor:pointer;z-index:10;display:flex;align-items:center;justify-content:center;color:#333;line-height:1;box-shadow:0 2px 8px rgba(0,0,0,.15);transition:all .2s}
.popup-close:hover{background:#ef4444;color:#fff;border-color:#ef4444;transform:scale(1.1)}
.popup-img-wrap{width:100%;border-radius:16px 16px 0 0;background:#f0f0f0;display:flex;justify-content:center}
.popup-img-wrap img{max-width:100%;height:auto;display:block}
.popup-text{padding:24px 28px;color:#222;font-size:.95rem;line-height:1.7;font-family:'Inter',sans-serif}
@media(max-width:480px){
  .popup-modal{max-width:100%;border-radius:12px;margin:12px}
  .popup-text{padding:18px 16px;font-size:.88rem}
  .popup-img-wrap img{max-height:50vh}
}

/* Chatbot Widget */
.chatbot-widget{position:fixed;bottom:24px;right:24px;z-index:9999;font-family:'Inter',sans-serif}
.chatbot-toggle{width:56px;height:56px;border-radius:50%;background:var(--sky);color:#fff;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 20px rgba(30,144,216,.45);transition:transform .2s}
.chatbot-toggle:hover{transform:scale(1.08)}
.chatbot-toggle svg{width:24px;height:24px}
.chatbot-panel{position:fixed;bottom:88px;right:24px;width:350px;max-height:500px;background:#1e293b;border-radius:16px;box-shadow:0 8px 40px rgba(0,0,0,.4);border:1px solid rgba(255,255,255,.1);display:none;flex-direction:column;overflow:hidden;animation:chatSlideUp .3s ease}
.chatbot-panel.open{display:flex}
@keyframes chatSlideUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.chatbot-header{background:#0f172a;padding:14px 18px;display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid rgba(255,255,255,.08)}
.chatbot-header span{color:#fff;font-weight:600;font-size:.9rem}
.chatbot-header button{background:none;border:none;color:#94a3b8;font-size:1.2rem;cursor:pointer;padding:0 4px}
.chatbot-header button:hover{color:#fff}
.chatbot-msgs{flex:1;padding:14px;overflow-y:auto;max-height:340px;min-height:200px;display:flex;flex-direction:column;gap:10px}
.chatbot-msgs::-webkit-scrollbar{width:4px}
.chatbot-msgs::-webkit-scrollbar-thumb{background:#475569;border-radius:4px}
.chat-msg{max-width:85%;padding:10px 14px;border-radius:12px;font-size:.82rem;line-height:1.5;word-wrap:break-word}
.chat-msg.user{background:var(--sky);color:#fff;align-self:flex-end;border-bottom-right-radius:4px}
.chat-msg.bot{background:#334155;color:#cbd5e1;align-self:flex-start;border-bottom-left-radius:4px}
.chat-msg.typing{background:transparent;color:#94a3b8;font-style:italic;align-self:flex-start}
.chatbot-input-row{display:flex;padding:10px 14px;gap:8px;border-top:1px solid rgba(255,255,255,.08)}
.chatbot-input-row input{flex:1;padding:10px 13px;border:2px solid #334155;border-radius:8px;background:#0f172a;color:#fff;font-size:.85rem;outline:none;font-family:'Inter',sans-serif}
.chatbot-input-row input:focus{border-color:var(--sky)}
.chatbot-input-row button{background:var(--sky);color:#fff;border:none;padding:10px 18px;border-radius:8px;font-weight:700;cursor:pointer;font-size:.82rem}
.chatbot-input-row button:hover{background:var(--sky-dark)}
@media(max-width:480px){
  .chatbot-panel{width:calc(100vw - 32px);right:16px;bottom:80px;max-height:70vh}
}

/* ═══════════════════════════════════════
   COMPREHENSIVE MOBILE IMPROVEMENTS
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  /* Hide announce bar on mobile */
  .announce-bar { display: none; }

  /* Smaller logos */
  .logo-wrap img { height: 32px !important; }
  .logo-wrap [class*="iata"], .logo-wrap div:last-child img { height: 28px !important; max-width: 80px; }
  /* Prevent horizontal scroll */
  .topbar .tb-left { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .topbar .tb-left::-webkit-scrollbar { display: none; }

  /* Nav improvements */
  nav { height: auto; min-height: 60px; padding: 0 12px; gap: 8px; }
  .nav-links { gap: 0; }
  .nav-links a { padding: 6px 8px; font-size: 12px; white-space: nowrap; }
  .hamburger { display: flex !important; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
  .hamburger span { width: 24px; height: 2.5px; background: var(--text-dark); border-radius: 4px; transition: .3s; }
  .nav-links { display: none; }

  /* Hero mobile */
  .hero { min-height: auto; padding: 40px 16px 32px; }
  .hero h1 { font-size: 26px; line-height: 1.3; }
  .hero p { font-size: 14px; margin-bottom: 20px; }

  /* Section spacing */
  section { padding: 32px 14px; }

  /* Cards */
  .service-card { padding: 16px 12px; }
  .service-icon { width: 38px; height: 38px; }
  .service-icon svg { width: 20px; height: 20px; }
  .service-card h3 { font-size: 15px; }
  .service-card p { font-size: 12.5px; }

  /* Destination cards */
  .dest-card { min-height: 140px; border-radius: 10px; }
  .dest-info { padding: 10px; }
  .dest-info h3 { font-size: 13px; }
  .dest-info p { font-size: 11px; }

  /* Package cards */
  .pkg-card .pkg-img { height: 130px; }
  .pkg-body { padding: 12px; }
  .pkg-body h3 { font-size: 14px; }
  .pkg-body p, .pkg-body .price { font-size: 12px; }
  .pkg-body .pkg-btn { padding: 7px 14px; font-size: 12px; }

  /* Buttons */
  .btn-primary, .btn-outline, .btn-sm { padding: 10px 20px; font-size: 13px; }
  .form-submit { padding: 12px 20px; font-size: 14px; }

  /* Form inputs */
  .form-group input, .form-group select, .form-group textarea { padding: 10px; font-size: 14px; }

  /* Testimonials */
  .testi-card { padding: 18px; }
  .testi-card p { font-size: 13px; }

  /* Tables in admin */
  .admin-table { font-size: 12px; }
  .admin-table td, .admin-table th { padding: 8px 6px; }

  /* Footer */
  .footer-col h4 { font-size: 14px; }
  .footer-col ul li a { font-size: 13px; }

  /* Back to top */
  .back-top { bottom: 16px; right: 12px; width: 36px; height: 36px; font-size: 14px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 22px; }
  .hero p { font-size: 13px; }
  .hero-badge { font-size: 11px; padding: 4px 10px; }

  .section-title { font-size: 20px; }
  .section-subtitle { font-size: 17px; }

  .service-card { padding: 12px 10px; }
  .service-icon { width: 38px; height: 38px; }
  .service-icon svg { width: 20px; height: 20px; }
  .service-card h3 { font-size: 13px; }
  .service-card p { font-size: 11.5px; }

  .dest-card { min-height: 120px; }
  .dest-info h3 { font-size: 12px; }
  .dest-info p { font-size: 10px; }
  .dest-info .dest-tag { font-size: 9px; padding: 2px 6px; }

  .pkg-card .pkg-img { height: 110px; }
  .pkg-body { padding: 10px; }
  .pkg-body h3 { font-size: 13px; }
  .pkg-body p, .pkg-body .price { font-size: 11px; }

  .testi-card { padding: 14px; }
  .testi-card p { font-size: 12px; }
  .stars { font-size: 16px; }

  .cta-box { padding: 28px 16px; }
  .cta-box h2 { font-size: 20px; }
  .cta-box p { font-size: 13px; }

  .why-point { padding: 14px; }
  .why-point h4 { font-size: 14px; }
  .why-point p { font-size: 12px; }

  .about-img { min-height: 160px; height: auto; padding: 24px 14px; border-radius: 10px; }

  section { padding: 24px 12px; }
}

.footer-backlinks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
  margin-top: 12px;
  padding: 10px 16px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
}
.footer-backlinks .bl-label {
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}
.footer-backlinks a {
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-backlinks a:hover {
  color: var(--sky);
  text-decoration: underline;
}

@media (max-width: 360px) {
  .hero h1 { font-size: 19px; }
  .section-title { font-size: 18px; }
  .page-banner h1 { font-size: 18px; }
  .topbar { font-size: 9px; padding: 4px 8px; }
  .topbar span { font-size: 9px; }
  .topbar .tb-left { gap: 4px 6px; }

  .service-card h3 { font-size: 12px; }
  .service-card p { font-size: 10.5px; }

  .search-card { margin: -10px 6px 0; padding: 10px 8px; }
  .stab { padding: 5px 7px; font-size: 10px; }
}
