/* ==========================================================================
   Armburu Travels Limited — main stylesheet
   ========================================================================== */

:root {
  --brand-blue: #1455a3;
  --brand-blue-dark: #0f4382;
  --brand-navy: #0b2e59;
  --brand-navy-deep: #071f3d;
  --brand-red: #d52027;
  --brand-red-dark: #b41a20;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --light-grey: #eef2f6;
  --border: #dfe6ee;
  --text-dark: #172033;
  --text-muted: #5a6779;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(11, 46, 89, 0.06), 0 4px 12px rgba(11, 46, 89, 0.05);
  --shadow-md: 0 12px 30px rgba(11, 46, 89, 0.12);
  --maxw: 1200px;
  --header-h: 78px;
  --font-head: "Plus Jakarta Sans", "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--brand-blue); text-decoration: none; }
a:hover { color: var(--brand-red); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--brand-navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.65rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.3rem); }
p { margin: 0 0 1.1em; }

:focus-visible { outline: 3px solid var(--brand-red); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tight { padding: clamp(44px, 5vw, 68px) 0; }
.section--grey { background: var(--off-white); }
.section--navy { background: var(--brand-navy); color: #dce6f3; }
.section--navy h2, .section--navy h3 { color: #fff; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brand-red); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-red);
  margin: 0 0 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--brand-red); display: inline-block; }
.section--navy .eyebrow { color: #ff8a8f; }
.section--navy .eyebrow::before { background: #ff8a8f; }
.lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--text-muted); }
.section--navy .lead, .section--navy p { color: #c6d5e8; }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 4vw, 52px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  text-align: center; line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--brand-red); color: #fff; box-shadow: 0 8px 22px rgba(213, 32, 39, .28); }
.btn--primary:hover { background: var(--brand-red-dark); color: #fff; }
.btn--blue { background: var(--brand-blue); color: #fff; }
.btn--blue:hover { background: var(--brand-blue-dark); color: #fff; }
.btn--outline { border-color: var(--brand-blue); color: var(--brand-blue); background: transparent; }
.btn--outline:hover { background: var(--brand-blue); color: #fff; }
.btn--ghost-light { border-color: rgba(255,255,255,.6); color: #fff; background: rgba(255,255,255,.06); }
.btn--ghost-light:hover { background: #fff; color: var(--brand-navy); border-color: #fff; }
.btn--sm { padding: 10px 20px; font-size: .88rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.textlink {
  font-family: var(--font-head); font-weight: 700; font-size: .9rem;
  display: inline-flex; align-items: center; gap: 8px; color: var(--brand-blue);
}
.textlink svg { transition: transform .2s ease; }
.textlink:hover svg { transform: translateX(4px); }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); }
.header__logo img { height: 42px; width: auto; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--brand-navy);
  padding: 10px 14px; border-radius: 8px; position: relative;
}
.nav a:hover { color: var(--brand-blue); background: var(--light-grey); }
.nav a.is-active { color: var(--brand-blue); }
.nav a.is-active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--brand-red); border-radius: 2px;
}
.header__cta { margin-left: 12px; }
.nav > .btn { display: none; }
.nav-toggle {
  display: none; margin-left: auto; width: 46px; height: 46px; border-radius: 10px;
  border: 1px solid var(--border); background: #fff; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 20px; height: 2px; background: var(--brand-navy); border-radius: 2px; position: relative;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; background: #fff; flex-direction: column;
    align-items: stretch; gap: 0; padding: 12px 20px 26px; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md); display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 6px; border-bottom: 1px solid var(--light-grey); border-radius: 0; }
  .nav a.is-active::after { display: none; }
  .header__cta { display: none; }
  .nav > .btn { display: inline-flex; margin-top: 16px; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- hero ---------- */
.hero { position: relative; color: #fff; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(7,31,61,.94) 0%, rgba(11,46,89,.86) 45%, rgba(20,85,163,.55) 100%);
}
.hero__inner { padding: clamp(72px, 11vw, 132px) 0 clamp(56px, 8vw, 96px); max-width: 780px; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero p.lead { color: #d5e2f2; max-width: 620px; }
.hero .eyebrow { color: #ff9ba0; }
.hero .eyebrow::before { background: #ff9ba0; }
.hero--page .hero__inner { padding: clamp(60px, 8vw, 104px) 0; }

.credibility-strip {
  border-top: 1px solid rgba(255,255,255,.18); background: rgba(7,31,61,.55);
  position: relative; z-index: 1;
}
.credibility-strip ul {
  list-style: none; margin: 0; padding: 16px 0; display: flex; flex-wrap: wrap; gap: 10px 28px;
  font-family: var(--font-head); font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  color: #cfe0f4; text-transform: uppercase;
}
.credibility-strip li { display: flex; align-items: center; gap: 10px; }
.credibility-strip li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand-red); }

/* route swoosh motif */
.swoosh { display: block; width: 120px; height: auto; margin-bottom: 22px; opacity: .9; }

/* ---------- grids & cards ---------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #c9d8ea; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-muted); font-size: .96rem; margin-bottom: 14px; }
.card p:last-child { margin-bottom: 0; }
.card__icon {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: var(--light-grey); color: var(--brand-blue); margin-bottom: 18px;
}
.card__icon svg { width: 24px; height: 24px; }
.card--plain { box-shadow: none; }
.card--plain:hover { transform: none; box-shadow: var(--shadow-sm); }
.section--navy .card {
  background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); box-shadow: none;
}
.section--navy .card p { color: #bccee4; }
.section--navy .card__icon { background: rgba(255,255,255,.1); color: #ff9ba0; }

.badge-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px; border-radius: 999px;
  background: var(--light-grey); border: 1px solid var(--border);
  font-family: var(--font-head); font-weight: 700; font-size: .84rem; color: var(--brand-navy);
}
.badge span.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-red); }

/* ---------- split section ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 66px); align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); width: 100%; height: 100%; max-height: 520px; object-fit: cover; }
.split__media::after {
  content: ""; position: absolute; left: -14px; bottom: -14px; width: 120px; height: 120px;
  border-left: 3px solid var(--brand-red); border-bottom: 3px solid var(--brand-red);
  border-radius: 0 0 0 var(--radius); z-index: -1;
}

/* ---------- destinations ---------- */
.dest {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 340px;
  display: flex; flex-direction: column; justify-content: flex-end; color: #fff; padding: 24px;
  isolation: isolate;
}
.dest img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .5s ease; }
.dest::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(7,31,61,.92) 8%, rgba(7,31,61,.15) 65%);
}
.dest:hover img { transform: scale(1.06); }
.dest h3 { color: #fff; margin-bottom: 6px; }
.dest a { color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .88rem; display: inline-flex; gap: 8px; align-items: center; }
.dest a:hover { color: #ff9ba0; }

/* ---------- steps ---------- */
.step { position: relative; padding-top: 26px; border-top: 3px solid var(--light-grey); }
.step__num { font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--brand-red); letter-spacing: .1em; display: block; margin-bottom: 10px; }
.step h3 { margin-bottom: 6px; }
.step p { color: var(--text-muted); font-size: .96rem; margin: 0; }

/* ---------- service blocks ---------- */
.service-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px);
  padding: clamp(34px, 4vw, 48px) 0; border-top: 1px solid var(--border);
}
@media (max-width: 860px) { .service-block { grid-template-columns: 1fr; gap: 18px; } }
.service-block:first-of-type { border-top: 0; }
.feature-list { list-style: none; margin: 0 0 20px; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 20px; }
@media (max-width: 560px) { .feature-list { grid-template-columns: 1fr; } }
.feature-list li { position: relative; padding-left: 26px; font-size: .95rem; color: var(--text-dark); }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 12px; height: 6px;
  border-left: 2px solid var(--brand-red); border-bottom: 2px solid var(--brand-red); transform: rotate(-45deg);
}
.section--navy .feature-list li { color: #d7e3f2; }
.note { font-size: .84rem; color: var(--text-muted); background: var(--light-grey); border-left: 3px solid var(--brand-blue); padding: 12px 16px; border-radius: 0 8px 8px 0; }

/* ---------- cta band ---------- */
.cta-band { position: relative; color: #fff; isolation: isolate; text-align: center; }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(7,31,61,.88), rgba(11,46,89,.9)); }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cddcee; max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-band .btn-row { justify-content: center; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info-card { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; margin-bottom: 18px; }
.info-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.info-card p, .info-card a { font-size: .96rem; }
.info-card ul { list-style: none; margin: 0; padding: 0; }
.info-card li { padding: 4px 0; }

.form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(22px, 3vw, 34px); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .86rem; color: var(--brand-navy); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: .98rem; color: var(--text-dark);
  padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: #fff; width: 100%; transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brand-blue); box-shadow: 0 0 0 3px rgba(20,85,163,.14); outline: none;
}
.field .error { color: var(--brand-red); font-size: .8rem; min-height: 1em; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--brand-red); }
.checkbox { display: flex; gap: 12px; align-items: flex-start; grid-column: 1 / -1; }
.checkbox input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--brand-blue); flex: none; }
.checkbox label { font-size: .92rem; font-family: var(--font-body); color: var(--text-dark); }
.form-status { grid-column: 1 / -1; font-size: .92rem; padding: 14px 16px; border-radius: var(--radius-sm); display: none; }
.form-status.is-visible { display: block; }
.form-status--info { background: #eaf1fa; border: 1px solid #c6d9f0; color: #123f74; }
.form-status--error { background: #fdecec; border: 1px solid #f5c3c5; color: #8f171c; }

/* ---------- map / location ---------- */
.info-card h3 { display: flex; align-items: center; gap: 10px; }
.info-icon { width: 22px; height: 22px; flex: none; color: var(--brand-red); display: inline-flex; }
.info-icon svg { width: 22px; height: 22px; }

.location-card {
  display: grid; grid-template-columns: 320px 1fr; gap: clamp(20px, 3vw, 40px);
  align-items: center; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: clamp(20px, 3vw, 32px); box-shadow: var(--shadow-sm);
}
@media (max-width: 780px) { .location-card { grid-template-columns: 1fr; } }
.location-card__map {
  height: 220px; border-radius: var(--radius-sm); display: grid; place-items: center;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.10) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.10) 0 1px, transparent 1px 46px),
    linear-gradient(135deg, var(--brand-navy), var(--brand-blue));
}
.location-card__pin { color: #fff; width: 56px; height: 56px; display: inline-flex; }
.location-card__pin svg { width: 56px; height: 56px; }
.location-card h3 { margin-bottom: 8px; }
.location-card p { color: var(--text-muted); font-size: .96rem; }

/* ---------- footer ---------- */
.footer { background: var(--brand-navy-deep); color: #b9cae0; padding: clamp(48px, 6vw, 76px) 0 0; }
.footer h4 { font-family: var(--font-head); color: #fff; font-size: .84rem; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 16px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 34px; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { padding: 5px 0; font-size: .94rem; }
.footer a { color: #b9cae0; }
.footer a:hover { color: #fff; }
.footer__logo { background: #fff; border-radius: 10px; padding: 12px 16px; display: inline-block; margin-bottom: 18px; }
.footer__logo img { height: 40px; width: auto; }
.footer p { font-size: .94rem; color: #9fb3cd; max-width: 320px; }
.footer__bottom {
  margin-top: 46px; border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0 26px;
  display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: space-between; font-size: .86rem;
}
.footer__bottom nav { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- whatsapp ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: #25d366; color: #fff; box-shadow: 0 10px 26px rgba(0,0,0,.22);
  border: none; cursor: pointer; transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.06); color: #fff; }
.wa-float svg { width: 30px; height: 30px; }
.wa-note {
  position: fixed; right: 18px; bottom: 84px; z-index: 90; max-width: 280px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 16px 18px; font-size: .88rem; color: var(--text-dark);
  display: none;
}
.wa-note.is-open { display: block; }
.wa-note strong { display: block; font-family: var(--font-head); margin-bottom: 6px; color: var(--brand-navy); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn:hover, .card:hover, .dest:hover img { transform: none; }
}

/* ---------- legal pages ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.35rem; margin-top: 2em; }
/* Hajj & Umrah gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery figure { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; }
.gallery figure img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 14px 12px;
  color: #fff; font-size: .82rem; line-height: 1.35;
  background: linear-gradient(to top, rgba(6,20,40,.85), rgba(6,20,40,0));
}
.gallery--wide figure { aspect-ratio: 16/10; }
@media (max-width: 980px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery { grid-template-columns: 1fr; } }
