/* ============================================================
   Vista Travel Consultancy Ltd - Main stylesheet
   Palette derived from the Vista logo:
   navy globe, royal blue lettering, aqua meridians, lime pixels
   ============================================================ */

:root {
  --navy: #0B3558;
  --royal: #07559B;
  --aqua: #51C7DF;
  --green: #8BD51B;
  --light: #F5FAFD;
  --white: #FFFFFF;
  --ink: #12283A;
  --muted: #5D7182;
  --line: #DCE9F2;
  --wa: #25D366;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 10px 30px rgba(11, 53, 88, 0.10);
  --shadow-sm: 0 4px 14px rgba(11, 53, 88, 0.08);
  --font-display: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --container: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[hidden] { display: none !important; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--royal); }
a:hover { color: var(--navy); }
ul { padding-left: 1.2rem; }
address { font-style: normal; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.22;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-alt { background: var(--light); }

/* Eyebrow labels styled like a boarding pass field label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--royal);
  border-left: 3px solid var(--green);
  padding-left: 10px;
  margin-bottom: 12px;
}
.eyebrow-light { color: var(--aqua); }

.lead { font-size: 1.1rem; color: var(--muted); max-width: 62ch; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: var(--white);
  padding: 10px 18px; z-index: 300; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--aqua); outline-offset: 2px; border-radius: 4px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-primary { background: var(--royal); color: var(--white); }
.btn-primary:hover { background: var(--navy); color: var(--white); }
.btn-secondary { background: var(--white); color: var(--royal); border-color: var(--royal); }
.btn-secondary:hover { background: var(--royal); color: var(--white); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-light:hover { color: var(--royal); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.btn-whatsapp { background: var(--wa); color: #063; color: #0B3D22; }
.btn-whatsapp:hover { background: #1fbe5a; color: #0B3D22; }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--royal); }
.btn-sm { padding: 9px 18px; font-size: 0.86rem; }
.btn-lg { padding: 15px 34px; font-size: 1.02rem; }

/* ---------- Top bar ---------- */
.top-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
}
.top-bar-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap; padding-top: 7px; padding-bottom: 7px;
}
.top-bar-contacts, .top-bar-right { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.top-link { color: var(--white); text-decoration: none; }
.top-link:hover { color: var(--aqua); }
.top-flag {
  display: inline-block; background: var(--royal); border-radius: 4px;
  font-size: 0.68rem; font-weight: 700; padding: 1px 5px; letter-spacing: 0.05em;
}
.top-offices { color: var(--aqua); }
.top-whatsapp {
  background: var(--wa); color: #0B3D22; font-weight: 700;
  padding: 3px 12px; border-radius: 999px; text-decoration: none;
}
.top-whatsapp:hover { background: #1fbe5a; color: #0B3D22; }

/* ---------- Header and navigation ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 200;
  transition: box-shadow 0.2s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand-logo { width: 92px; height: 92px; object-fit: contain; padding: 6px 0; }

.main-nav { display: flex; align-items: center; gap: 22px; }
.nav-list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-list > li { position: relative; }
.nav-list > li > a, .nav-drop-btn {
  display: block; padding: 10px 12px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
  color: var(--ink); text-decoration: none;
  background: none; border: 0; cursor: pointer; border-radius: 8px;
}
.nav-list > li > a:hover, .nav-drop-btn:hover { color: var(--royal); background: var(--light); }
.caret {
  display: inline-block; width: 7px; height: 7px; margin-left: 5px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px); transition: transform 0.15s ease;
}
.has-dropdown[data-open="true"] .caret { transform: rotate(225deg) translateY(-2px); }

.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); list-style: none; margin: 6px 0 0; padding: 8px;
  display: none; z-index: 210;
}
.has-dropdown[data-open="true"] .dropdown { display: block; }
.dropdown a {
  display: block; padding: 10px 14px; border-radius: 7px;
  color: var(--ink); text-decoration: none; font-size: 0.92rem; font-weight: 500;
}
.dropdown a:hover { background: var(--light); color: var(--royal); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 10px; cursor: pointer;
}
.nav-toggle-bar { width: 26px; height: 3px; background: var(--navy); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 62%, #0d6bb8 100%);
  color: var(--white);
  overflow: hidden;
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 92px 20px 108px;
  max-width: var(--container); margin: 0 auto;
}
.hero h1 { color: var(--white); max-width: 18ch; margin-bottom: 0.5em; }
.hero .hero-sub { max-width: 66ch; font-size: 1.06rem; color: #DDEEFA; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-trust {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: var(--aqua);
}
.hero-trust::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 4px rgba(139, 213, 27, 0.25);
}
/* Signature flight path motif, echoing the aircraft loop in the logo */
.hero-flightpath {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.5;
}
.hero-flightpath svg { width: 100%; height: 100%; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--navy), var(--royal));
  color: var(--white);
  padding: 58px 0 50px;
  position: relative; overflow: hidden;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: #DDEEFA; max-width: 70ch; margin: 0; }
.page-hero .eyebrow { color: var(--aqua); border-left-color: var(--green); }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { background: var(--light); border-bottom: 1px solid var(--line); }
.breadcrumbs ol {
  list-style: none; display: flex; flex-wrap: wrap; gap: 6px;
  margin: 0 auto; padding: 10px 20px; max-width: var(--container);
  font-size: 0.84rem;
}
.breadcrumbs li + li::before { content: "/"; margin-right: 6px; color: var(--muted); }
.breadcrumbs a { color: var(--royal); text-decoration: none; }
.breadcrumbs li[aria-current] { color: var(--muted); }

/* ---------- Counters (passport stamp cards) ---------- */
.counters-section { background: var(--navy); color: var(--white); }
.counters-heading { color: var(--white); }
.counters-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 30px;
}
.counter-card {
  border: 2px dashed rgba(81, 199, 223, 0.55);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  transform: rotate(-0.4deg);
}
.counter-card:nth-child(even) { transform: rotate(0.4deg); }
.counter-value {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: var(--green);
  font-variant-numeric: tabular-nums;
}
.counter-label { display: block; margin-top: 6px; font-size: 0.86rem; color: #CFE6F5; }
.counters-note { margin-top: 22px; font-size: 0.8rem; color: #9FC2DB; text-align: center; }

/* ---------- Service cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 34px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex; flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--aqua); }
.service-icon {
  width: 52px; height: 52px; border-radius: 13px;
  background: linear-gradient(135deg, var(--royal), var(--aqua));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--white);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 0.93rem; flex: 1; }
.service-card-actions { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.link-arrow {
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  color: var(--royal); text-decoration: none;
}
.link-arrow::after { content: " \2192"; }
.link-arrow:hover { color: var(--navy); }

/* ---------- Feature list (why choose) ---------- */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 28px; margin-top: 28px; }
.feature-item {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 14px 16px;
}
.feature-item::before {
  content: "\2713"; flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--green); color: var(--navy);
  font-weight: 800; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}

/* ---------- Split sections ---------- */
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  position: relative;
  background: linear-gradient(150deg, var(--royal), var(--aqua) 80%);
  box-shadow: var(--shadow);
}
.split-media.media-green { background: linear-gradient(150deg, var(--navy), #0d6bb8 60%, var(--green) 140%); }
.split-media.media-gold { background: linear-gradient(160deg, #0B3558, #14486f 55%, #C9A24B 160%); }
.split-media .media-caption {
  position: absolute; left: 18px; bottom: 16px; right: 18px;
  color: var(--white); font-size: 0.85rem; opacity: 0.92;
  font-family: var(--font-display); font-weight: 600;
}
.split-media .media-motif { position: absolute; inset: 0; opacity: 0.35; }

/* ---------- Destination chips ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.chip {
  background: var(--light); border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 16px;
  font-size: 0.88rem; font-weight: 600; color: var(--navy);
  font-family: var(--font-display);
}

/* ---------- Process steps ---------- */
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 34px; }
.process-step {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 18px; position: relative;
}
.process-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy); color: var(--green);
  font-family: var(--font-display); font-weight: 800;
  margin-bottom: 12px;
}
.process-step h3 { font-size: 1rem; }
.process-step p { font-size: 0.88rem; color: var(--muted); margin: 0; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 26px; max-width: 860px; }
.faq-item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 16px 20px;
  font-family: var(--font-display); font-weight: 700; color: var(--navy);
  list-style: none; position: relative; padding-right: 46px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 18px; top: 50%;
  transform: translateY(-50%); font-size: 1.3rem; color: var(--royal);
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item[open] summary { border-bottom: 1px solid var(--line); background: var(--light); }
.faq-answer { padding: 14px 20px; color: var(--muted); }
.faq-answer p { margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--royal), var(--navy));
  color: var(--white); padding: 56px 0;
}
.cta-band h2 { color: var(--white); margin-bottom: 6px; }
.cta-band p { color: #CFE6F5; margin: 0; }
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 26px; flex-wrap: wrap;
}
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- CEO block ---------- */
.ceo-block { display: grid; grid-template-columns: 340px 1fr; gap: 44px; align-items: center; }
.ceo-photo-frame {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
  position: relative;
}
.ceo-photo-frame::after {
  content: ""; position: absolute; inset: 14px;
  border-radius: 8px; pointer-events: none;
  background: linear-gradient(180deg, transparent 70%, rgba(11,53,88,0.18));
}
.ceo-photo-frame img {
  border-radius: 8px; width: 100%;
  background: linear-gradient(180deg, #EAF4FB, #F5FAFD);
}
.ceo-name { font-family: var(--font-display); font-weight: 800; color: var(--navy); font-size: 1.1rem; margin: 14px 0 0; text-align: center; }
.ceo-role { color: var(--muted); font-size: 0.86rem; text-align: center; margin: 2px 0 4px; }

/* ---------- Quote / message card ---------- */
.message-card {
  background: var(--light); border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 22px 26px; margin: 24px 0;
  color: var(--ink); font-size: 1.02rem;
}
.message-card cite { display: block; margin-top: 10px; font-style: normal; color: var(--muted); font-size: 0.88rem; }

/* ---------- Mini disclaimer ---------- */
.mini-disclaimer { padding-top: 30px; padding-bottom: 30px; }
.mini-disclaimer p {
  font-size: 0.84rem; color: var(--muted);
  border: 1px solid var(--line); background: var(--light);
  border-radius: var(--radius-sm); padding: 14px 18px; margin: 0;
}

/* ---------- Forms ---------- */
.enquiry-form, .contact-form {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 20px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field-wide { grid-column: 1 / -1; margin-top: 14px; }
.form-field label { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.req { color: #C0392B; }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"],
input[type="date"], select, textarea {
  font: inherit; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 11px 13px; background: var(--white); width: 100%;
}
input:focus, select:focus, textarea:focus { border-color: var(--royal); outline: 2px solid rgba(7, 85, 155, 0.18); }
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: #C0392B; }
.field-error { color: #C0392B; font-size: 0.82rem; }
.cond-fields {
  border: 1px dashed var(--aqua); border-radius: var(--radius-sm);
  margin: 20px 0 0; padding: 18px;
  background: var(--light);
}
.cond-fields legend {
  font-family: var(--font-display); font-weight: 700; color: var(--royal);
  padding: 0 8px; font-size: 0.95rem;
}
.form-consent { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.check-label { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; }
.check-label input { margin-top: 4px; }
.form-note { font-size: 0.8rem; color: var(--muted); margin: 14px 0 18px; }
.form-status { display: none; border-radius: var(--radius-sm); padding: 13px 16px; margin-bottom: 18px; font-size: 0.92rem; }
.form-status.is-error { display: block; background: #FBEDEB; color: #922B21; border: 1px solid #EDBBB4; }
.form-status.is-success { display: block; background: #EDF8DC; color: #33691E; border: 1px solid #C5E1A5; }
.hp-field { position: absolute; left: -9999px; height: 0; overflow: hidden; margin: 0; }

/* ---------- Popup ---------- */
.popup-overlay {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(11, 53, 88, 0.62);
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
}
.popup-card {
  background: var(--white); border-radius: var(--radius);
  max-width: 760px; width: 100%; max-height: 90vh;
  overflow-y: auto; position: relative;
  box-shadow: 0 26px 70px rgba(4, 22, 38, 0.4);
}
.popup-close {
  position: sticky; top: 10px; margin-left: calc(100% - 54px);
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--light); border: 1px solid var(--line);
  font-size: 1.5rem; line-height: 1; cursor: pointer; color: var(--navy);
  z-index: 5;
}
.popup-close:hover { background: var(--navy); color: var(--white); }
.popup-head { text-align: center; padding: 0 30px 8px; }
.popup-head img { margin: 0 auto 8px; width: 74px; height: 74px; object-fit: contain; }
.popup-head h2 { margin-bottom: 4px; }
.popup-head p { color: var(--muted); margin-top: 0; }
.popup-body { padding: 0 26px 28px; }
.popup-body .enquiry-form { border: 0; box-shadow: none; padding: 10px 0 0; }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 350; }
.wa-float-btn {
  display: flex; align-items: center; gap: 9px;
  background: var(--wa); color: #0B3D22;
  border: 0; border-radius: 999px;
  padding: 13px 20px; cursor: pointer;
  font-family: var(--font-display); font-weight: 800; font-size: 0.95rem;
  box-shadow: 0 8px 24px rgba(18, 100, 60, 0.4);
}
.wa-float-btn:hover { background: #1fbe5a; }
.wa-menu {
  position: absolute; right: 0; bottom: 62px;
  background: var(--white); border-radius: var(--radius-sm);
  border: 1px solid var(--line); box-shadow: var(--shadow);
  width: 250px; padding: 14px;
}
.wa-menu-title { margin: 0 0 10px; font-family: var(--font-display); font-weight: 800; color: var(--navy); font-size: 0.95rem; }
.wa-menu-item {
  display: block; padding: 10px 12px; border-radius: 8px;
  text-decoration: none; color: var(--navy); font-weight: 700; font-size: 0.9rem;
  border: 1px solid var(--line); margin-bottom: 8px;
}
.wa-menu-item span { color: var(--muted); font-weight: 500; font-size: 0.82rem; }
.wa-menu-item:hover { border-color: var(--wa); background: #F2FCF5; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 380;
  display: flex; justify-content: center;
}
.cookie-inner {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 18px 22px; max-width: 720px; width: 100%;
  font-size: 0.88rem;
}
.cookie-inner p { margin: 0 0 12px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-manage-panel { margin-top: 14px; border-top: 1px solid var(--line); padding-top: 14px; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.cookie-option { display: flex; gap: 9px; align-items: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #C9DDEC; font-size: 0.9rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 0.8fr 0.9fr 1.1fr;
  gap: 40px; padding-top: 60px; padding-bottom: 40px;
}
.footer-logo { background: var(--white); border-radius: 12px; padding: 10px; width: 110px; height: 110px; object-fit: contain; margin-bottom: 16px; }
.footer-heading {
  font-family: var(--font-display); font-size: 0.92rem; font-weight: 800;
  color: var(--white); text-transform: uppercase; letter-spacing: 0.1em;
  margin: 0 0 14px;
}
.footer-col + .footer-col .footer-heading { margin-top: 0; }
.footer-col h2 + address, .footer-col address { margin-bottom: 10px; line-height: 1.55; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: #C9DDEC; text-decoration: none; }
.footer-col a:hover { color: var(--aqua); }
.footer-col .footer-heading:nth-of-type(2) { margin-top: 22px; }
.social-links { list-style: none; display: flex; gap: 12px; padding: 0; margin: 14px 0 0; flex-wrap: wrap; }
.social-links a {
  color: var(--aqua); border: 1px solid rgba(81,199,223,0.4);
  padding: 5px 13px; border-radius: 999px; text-decoration: none; font-size: 0.82rem;
}
.social-links a:hover { background: rgba(81,199,223,0.14); }
.footer-disclaimer { border-top: 1px solid rgba(255,255,255,0.12); padding: 20px 0; }
.footer-disclaimer p { margin: 0; font-size: 0.78rem; color: #8FB3CC; }
.footer-disclaimer a { color: var(--aqua); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 16px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer-bottom p { margin: 0; font-size: 0.82rem; }
.back-to-top {
  background: transparent; color: var(--aqua);
  border: 1px solid rgba(81,199,223,0.5); border-radius: 999px;
  padding: 7px 18px; cursor: pointer; font-weight: 700; font-size: 0.82rem;
}
.back-to-top:hover { background: rgba(81,199,223,0.14); }

/* ---------- Sticky mobile enquiry button ---------- */
.sticky-enquire {
  display: none;
  position: fixed; left: 16px; bottom: 20px; z-index: 340;
}
.sticky-enquire .btn { box-shadow: 0 8px 24px rgba(7, 85, 155, 0.4); }

/* ---------- Policy pages ---------- */
.policy-content { max-width: 820px; }
.policy-content h2 { margin-top: 40px; font-size: 1.35rem; }
.policy-content h3 { margin-top: 26px; }
.policy-content ul li { margin-bottom: 6px; }
.policy-updated { color: var(--muted); font-size: 0.86rem; }

/* ---------- Office cards ---------- */
.office-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 28px; }
.office-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm);
}
.office-card h3 { display: flex; align-items: center; gap: 10px; }
.office-map-placeholder {
  margin-top: 16px; height: 170px; border-radius: var(--radius-sm);
  background: linear-gradient(140deg, var(--light), #E1F0F8);
  border: 1px dashed var(--aqua);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 0.85rem; text-align: center; padding: 12px;
}

/* ---------- Package cards ---------- */
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.package-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--white);
  display: flex; flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.package-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.package-media {
  height: 155px; position: relative;
  display: flex; align-items: flex-end;
}
.package-media .package-tag {
  margin: 0 0 12px 16px;
  background: rgba(255,255,255,0.92); color: var(--navy);
  font-family: var(--font-display); font-weight: 800; font-size: 0.8rem;
  border-radius: 999px; padding: 4px 13px;
}
.package-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.package-body h3 { font-size: 1.05rem; }
.package-body p { color: var(--muted); font-size: 0.9rem; flex: 1; }
.package-meta { font-size: 0.82rem; color: var(--royal); font-weight: 600; margin-bottom: 12px; }
.package-features { list-style: none; padding: 0; margin: 0 0 16px; font-size: 0.86rem; color: var(--muted); }
.package-features li { padding-left: 20px; position: relative; margin-bottom: 5px; }
.package-features li::before { content: "\2713"; position: absolute; left: 0; color: var(--green); font-weight: 800; }

/* Gradient themes for package media blocks */
.g-europe { background: linear-gradient(140deg, #0B3558, #07559B 60%, #51C7DF); }
.g-uk { background: linear-gradient(140deg, #14213D, #07559B); }
.g-middleeast { background: linear-gradient(140deg, #3A2E12, #8a6d2f 70%, #C9A24B); }
.g-turkiye { background: linear-gradient(140deg, #7B1E2B, #B03A48); }
.g-malaysia { background: linear-gradient(140deg, #0B4F3C, #148F6B 70%, #8BD51B); }
.g-sea { background: linear-gradient(140deg, #0B5058, #14a0a8); }
.g-na { background: linear-gradient(140deg, #23395B, #4062BB); }
.g-family { background: linear-gradient(140deg, #07559B, #51C7DF 75%, #8BD51B); }
.g-honeymoon { background: linear-gradient(140deg, #5B2A50, #97517F); }
.g-corporate { background: linear-gradient(140deg, #1B2A38, #37546B); }
.g-group { background: linear-gradient(140deg, #0B3558, #2A7AB8); }
.g-custom { background: linear-gradient(140deg, #123B33, #2A8F70); }
.g-hajj { background: linear-gradient(150deg, #0B3558, #10486f 55%, #C9A24B 150%); }
.g-umrah { background: linear-gradient(150deg, #0B3558, #07559B 60%, #51C7DF 130%); }
.g-ziarat { background: linear-gradient(150deg, #123B33, #1E6B54 70%, #8BD51B 160%); }

/* ---------- Filter panel (university network) ---------- */
.filter-panel {
  display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 14px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px; align-items: end;
  box-shadow: var(--shadow-sm); margin-top: 26px;
}
.filter-panel .form-field label { font-size: 0.84rem; }

/* ---------- Value grid ---------- */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px; }
.value-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 20px;
}
.value-card h3 { font-size: 1rem; margin-bottom: 6px; }
.value-card p { font-size: 0.87rem; color: var(--muted); margin: 0; }

/* ---------- Animations ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.section-head-center { text-align: center; max-width: 720px; margin: 0 auto; }
.section-head-center .lead { margin-left: auto; margin-right: auto; }
